Files
sign/packages/lib/translations/de/web.po

7271 lines
334 KiB
Plaintext
Raw Normal View History

feat: initial i18n marketing implementation (#1223) ## Description This PR introduces an initial i18n implementation using [Lingui](https://lingui.dev). We plan to combine it with Crowdin which will provide AI translations when PRs are merged into main. We plan to rollout i18n to only marketing for now, and will review how everything goes before continuing to introduce it into the main application. ## Reasoning Why not use i18n-next or other alternatives? To hopefully provide the best DX we chose Lingui because it allows us to simply wrap text that we want to translate in tags, instead of forcing users to do things such as: - Update the text to `t('some-text')` - Extract it to the file - The text becomes a bit unreadable unless done correctly Yes, plugins such as i18n-ally and Sherlock exist to simplify these chores, but these require the user to be correctly setup in vscode, and it also does not seem to provide the required configurations for our multi app and multi UI package setup. ## Super simple demo ```html // Before <p>Text to update</p> // After <p> <Trans>Text to update</Trans> </p> ``` ## Related Issue Relates to #885 but is only for marketing for now. Another branch is slowly being prepared for the changes required for the web application while we wait to see how this goes for marketing. ## Changes Made Our configuration does not follow the general standard since we have translations that cross: - Web app - Marketing app - Constants package - UI package This means we want to separate translations into: 1. Marketing - Only translations extracted from `apps/marketing` 2. Web - Only translations extracted from `apps/web` 3. Common - Translations from `packages/constants` and `packages/ui` Then we bundle, compile and minify the translations for production as follows: 1. Marketing = Marketing + Common 2. Web = Web + Common This allows us to only load the required translations when running each application. Overall general changes: - Add i18n to marketing - Add core i18n setup to web - Add pre-commit hook and GH action to extract any new <Trans> tags into the translation files <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Added Romanian localization for marketing messages to improve accessibility for Romanian-speaking users. - Introduced German and English translation modules and PO files to enhance the application's internationalization capabilities. - Integrated internationalization support in the RootLayout component for dynamic language settings based on server-side configurations. - Enhanced the Enterprise component with translation support to adapt to user language preferences. - Added a `<meta>` tag to prevent Google from translating the page content, supporting internationalization efforts. - **Bug Fixes** - Resolved minor issues related to the structure and accessibility of translation files. - **Chores** - Updated project dependencies to support the new localization features and ensure stability. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Lucas Smith <me@lucasjamessmith.me> Co-authored-by: Crowdin Bot <support+bot@crowdin.com> Co-authored-by: github-actions <github-actions@documenso.com>
2024-07-26 14:56:42 +10:00
msgid ""
msgstr ""
"POT-Creation-Date: 2024-07-24 13:01+1000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: @lingui/cli\n"
"Language: de\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
2025-03-24 10:03:49 +00:00
"PO-Revision-Date: 2025-03-24 08:04\n"
feat: initial i18n marketing implementation (#1223) ## Description This PR introduces an initial i18n implementation using [Lingui](https://lingui.dev). We plan to combine it with Crowdin which will provide AI translations when PRs are merged into main. We plan to rollout i18n to only marketing for now, and will review how everything goes before continuing to introduce it into the main application. ## Reasoning Why not use i18n-next or other alternatives? To hopefully provide the best DX we chose Lingui because it allows us to simply wrap text that we want to translate in tags, instead of forcing users to do things such as: - Update the text to `t('some-text')` - Extract it to the file - The text becomes a bit unreadable unless done correctly Yes, plugins such as i18n-ally and Sherlock exist to simplify these chores, but these require the user to be correctly setup in vscode, and it also does not seem to provide the required configurations for our multi app and multi UI package setup. ## Super simple demo ```html // Before <p>Text to update</p> // After <p> <Trans>Text to update</Trans> </p> ``` ## Related Issue Relates to #885 but is only for marketing for now. Another branch is slowly being prepared for the changes required for the web application while we wait to see how this goes for marketing. ## Changes Made Our configuration does not follow the general standard since we have translations that cross: - Web app - Marketing app - Constants package - UI package This means we want to separate translations into: 1. Marketing - Only translations extracted from `apps/marketing` 2. Web - Only translations extracted from `apps/web` 3. Common - Translations from `packages/constants` and `packages/ui` Then we bundle, compile and minify the translations for production as follows: 1. Marketing = Marketing + Common 2. Web = Web + Common This allows us to only load the required translations when running each application. Overall general changes: - Add i18n to marketing - Add core i18n setup to web - Add pre-commit hook and GH action to extract any new <Trans> tags into the translation files <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Added Romanian localization for marketing messages to improve accessibility for Romanian-speaking users. - Introduced German and English translation modules and PO files to enhance the application's internationalization capabilities. - Integrated internationalization support in the RootLayout component for dynamic language settings based on server-side configurations. - Enhanced the Enterprise component with translation support to adapt to user language preferences. - Added a `<meta>` tag to prevent Google from translating the page content, supporting internationalization efforts. - **Bug Fixes** - Resolved minor issues related to the structure and accessibility of translation files. - **Chores** - Updated project dependencies to support the new localization features and ensure stability. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Lucas Smith <me@lucasjamessmith.me> Co-authored-by: Crowdin Bot <support+bot@crowdin.com> Co-authored-by: github-actions <github-actions@documenso.com>
2024-07-26 14:56:42 +10:00
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Crowdin-Project: documenso-app\n"
"X-Crowdin-Project-ID: 694691\n"
"X-Crowdin-Language: de\n"
"X-Crowdin-File: web.po\n"
"X-Crowdin-File-ID: 8\n"
2024-08-21 11:06:26 +10:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2025-02-13 20:24:27 +11:00
msgid " Enable direct link signing"
2025-03-24 10:03:49 +00:00
msgstr " Direktlink-Signierung aktivieren"
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx
2025-02-13 20:24:27 +11:00
msgid " The events that will trigger a webhook to be sent to your URL."
2025-03-24 10:03:49 +00:00
msgstr " Die Ereignisse, die einen Webhook auslösen, der an Ihre URL gesendet wird."
2025-02-13 20:24:27 +11:00
#. placeholder {0}: team.name
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "\"{0}\" has invited you to sign \"example document\"."
2024-11-08 23:06:57 +11:00
msgstr "\"{0}\" hat Sie eingeladen, \"Beispieldokument\" zu unterschreiben."
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: field.customText
#. placeholder {1}: timezone || ''
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
2025-02-13 20:24:27 +11:00
msgid "\"{0}\" will appear on the document as it has a timezone of \"{1}\"."
2025-03-24 10:03:49 +00:00
msgstr "„{0}“ wird auf dem Dokument erscheinen, da es eine Zeitzone von „{1}“ hat."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-super-delete.tsx
msgid "\"{documentName}\" has been deleted by an admin."
msgstr "\"{documentName}\" wurde von einem Administrator gelöscht."
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-pending.tsx
msgid "“{documentName}” has been signed"
msgstr "„{documentName}“ wurde unterschrieben"
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-completed.tsx
msgid "“{documentName}” was signed by all signers"
msgstr "„{documentName}“ wurde von allen Unterzeichnern signiert"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "\"{documentTitle}\" has been successfully deleted"
2024-09-18 10:43:43 +10:00
msgstr "\"{documentTitle}\" wurde erfolgreich gelöscht"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: team.name
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
2024-11-12 12:37:34 +07:00
msgid "\"{placeholderEmail}\" on behalf of \"{0}\" has invited you to sign \"example document\"."
2024-11-18 08:40:25 +11:00
msgstr "\"{placeholderEmail}\" im Namen von \"{0}\" hat Sie eingeladen, \"Beispieldokument\" zu unterzeichnen."
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/embed/embed-document-signing-page.tsx
2025-02-13 20:24:27 +11:00
msgid "(You)"
2025-03-24 10:03:49 +00:00
msgstr "(Du)"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: Math.abs(charactersRemaining)
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
2024-08-27 20:34:39 +09:00
msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
2024-09-18 10:43:43 +10:00
msgstr "{0, plural, one {(1 Zeichen über dem Limit)} other {(# Zeichen über dem Limit)}}"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: Math.abs(remaningLength)
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "{0, plural, one {# character over the limit} other {# characters over the limit}}"
2024-09-18 10:43:43 +10:00
msgstr "{0, plural, one {# Zeichen über dem Limit} other {# Zeichen über dem Limit}}"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: template.recipients.length
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/d.$token+/_index.tsx
2024-08-27 20:34:39 +09:00
msgid "{0, plural, one {# recipient} other {# recipients}}"
2024-09-18 10:43:43 +10:00
msgstr "{0, plural, one {# Empfänger} other {# Empfänger}}"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: row.original.quantity
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/team-settings-billing-invoices-table.tsx
2024-08-27 20:34:39 +09:00
msgid "{0, plural, one {# Seat} other {# Seats}}"
2024-09-18 10:43:43 +10:00
msgstr "{0, plural, one {# Sitz} other {# Sitze}}"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: data.length
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-invitations.tsx
#: apps/remix/app/components/general/teams/team-invitations.tsx
2024-08-27 20:34:39 +09:00
msgid "{0, plural, one {<0>You have <1>1</1> pending team invitation</0>} other {<2>You have <3>#</3> pending team invitations</2>}}"
2024-09-18 10:43:43 +10:00
msgstr "{0, plural, one {<0>Du hast <1>1</1> ausstehende Team-Einladung</0>} other {<2>Du hast <3>#</3> ausstehende Team-Einladungen</2>}}"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: autoSignableFields.filter((f) => f.type === fieldType).length
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
msgid "{0, plural, one {1 matching field} other {# matching fields}}"
msgstr "{0, plural, one {1 passendes Feld} other {# passende Felder}}"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: recipients.length
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/documents.$id.edit.tsx
2024-08-27 20:34:39 +09:00
msgid "{0, plural, one {1 Recipient} other {# Recipients}}"
2024-09-18 10:43:43 +10:00
msgstr "{0, plural, one {1 Empfänger} other {# Empfänger}}"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: pendingRecipients.length
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx
2024-08-27 20:34:39 +09:00
msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}"
2024-09-18 10:43:43 +10:00
msgstr "{0, plural, one {Warte auf 1 Empfänger} other {Warte auf # Empfänger}}"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: selectedValues.length
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/webhook-multiselect-combobox.tsx
2024-08-27 20:34:39 +09:00
msgid "{0, plural, zero {Select values} other {# selected...}}"
2024-09-18 10:43:43 +10:00
msgstr "{0, plural, zero {Werte auswählen} other {# ausgewählt...}}"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: _(FRIENDLY_FIELD_TYPE[fieldType as FieldType])
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
msgid "{0}"
msgstr "{0}"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: team.name
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "{0} direct signing templates"
2024-09-18 10:43:43 +10:00
msgstr "{0} direkte Signaturvorlagen"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: team.name
#. placeholder {1}: document.title
2025-02-26 21:48:06 +11:00
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
msgid "{0} has invited you to {recipientActionVerb} the document \"{1}\"."
msgstr "{0} hat Sie eingeladen, das Dokument \"{1}\" {recipientActionVerb}."
2025-02-13 20:24:27 +11:00
#. placeholder {0}: team.name
2025-02-26 21:48:06 +11:00
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
msgid "{0} invited you to {recipientActionVerb} a document"
msgstr "{0} hat dich eingeladen, ein Dokument {recipientActionVerb}"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: memberName || memberEmail
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-join.tsx
msgid "{0} joined the team {teamName} on Documenso"
msgstr "{0} ist dem Team {teamName} bei Documenso beigetreten"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: memberName || memberEmail
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-leave.tsx
msgid "{0} left the team {teamName} on Documenso"
msgstr "{0} hat das Team {teamName} bei Documenso verlassen"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: remaining.documents
#. placeholder {1}: quota.documents
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-upload.tsx
2024-08-27 20:34:39 +09:00
msgid "{0} of {1} documents remaining this month."
2024-09-18 10:43:43 +10:00
msgstr "{0} von {1} Dokumenten verbleibend in diesem Monat."
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: table.getFilteredSelectedRowModel().rows.length
#. placeholder {1}: table.getFilteredRowModel().rows.length
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/data-table-pagination.tsx
msgid "{0} of {1} row(s) selected."
msgstr "{0} von {1} Zeile(n) ausgewählt."
2025-02-13 20:24:27 +11:00
#. placeholder {0}: user.name || user.email
#. placeholder {1}: document.team.name
#. placeholder {2}: document.title
2025-02-26 21:48:06 +11:00
#: packages/lib/server-only/document/resend-document.tsx
msgid "{0} on behalf of \"{1}\" has invited you to {recipientActionVerb} the document \"{2}\"."
2025-01-02 10:36:05 +11:00
msgstr "{0} im Namen von \"{1}\" hat Sie eingeladen, das Dokument \"{2}\" {recipientActionVerb}."
2025-02-13 20:24:27 +11:00
#. placeholder {0}: recipients.length
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx
2024-08-27 20:34:39 +09:00
msgid "{0} Recipient(s)"
msgstr "{0} Empfänger(in)"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
2024-08-27 20:34:39 +09:00
msgid "{charactersRemaining, plural, one {1 character remaining} other {{charactersRemaining} characters remaining}}"
2024-09-18 10:43:43 +10:00
msgstr "{charactersRemaining, plural, one {1 Zeichen verbleibend} other {{charactersRemaining} Zeichen verbleibend}}"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/document-invite.tsx
msgid "{inviterName} <0>({inviterEmail})</0>"
msgstr "{inviterName} <0>({inviterEmail})</0>"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/document-cancel.tsx
msgid "{inviterName} has cancelled the document {documentName}, you don't need to sign it anymore."
msgstr "{inviterName} hat das Dokument {documentName} storniert, du musst es nicht mehr unterzeichnen."
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-cancel.tsx
msgid "{inviterName} has cancelled the document<0/>\"{documentName}\""
msgstr "{inviterName} hat das Dokument<0/>\"{documentName}\" storniert"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: _(actionVerb).toLowerCase()
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-invite.tsx
msgid "{inviterName} has invited you to {0}<0/>\"{documentName}\""
msgstr "{inviterName} hat dich eingeladen, {0}<0/>\"{documentName}\""
2025-02-26 21:48:06 +11:00
#: packages/email/templates/document-invite.tsx
msgid "{inviterName} has invited you to {action} {documentName}"
msgstr "{inviterName} hat dich eingeladen, {action} {documentName}"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/document-invite.tsx
msgid "{inviterName} has invited you to {action} the document \"{documentName}\"."
msgstr "{inviterName} hat Sie eingeladen, das Dokument \"{documentName}\" {action}."
2025-02-26 21:48:06 +11:00
#: packages/email/templates/recipient-removed-from-document.tsx
msgid "{inviterName} has removed you from the document {documentName}."
msgstr "{inviterName} hat dich aus dem Dokument {documentName} entfernt."
2025-02-26 21:48:06 +11:00
#: packages/email/templates/recipient-removed-from-document.tsx
msgid "{inviterName} has removed you from the document<0/>\"{documentName}\""
msgstr "{inviterName} hat dich aus dem Dokument<0/>\"{documentName}\" entfernt"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: team.name
#. placeholder {1}: document.title
2025-02-26 21:48:06 +11:00
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
2025-02-13 20:24:27 +11:00
msgid "{inviterName} on behalf of \"{0}\" has invited you to {recipientActionVerb} the document \"{1}\"."
2025-03-24 10:03:49 +00:00
msgstr "{inviterName} im Auftrag von \"{0}\" hat Sie eingeladen, das Dokument \"{1}\" {recipientActionVerb}."
2025-02-13 20:24:27 +11:00
#. placeholder {0}: _(actionVerb).toLowerCase()
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-invite.tsx
2025-02-13 20:24:27 +11:00
msgid "{inviterName} on behalf of \"{teamName}\" has invited you to {0}<0/>\"{documentName}\""
msgstr "{inviterName} im Namen von \"{teamName}\" hat dich eingeladen, {0}<0/>\"{documentName}\""
2025-02-26 21:48:06 +11:00
#: packages/email/templates/document-invite.tsx
msgid "{inviterName} on behalf of \"{teamName}\" has invited you to {action} {documentName}"
2025-01-02 10:36:05 +11:00
msgstr "{inviterName} im Namen von \"{teamName}\" hat Sie eingeladen, das Dokument {documentName} {action}"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-join.tsx
msgid "{memberEmail} joined the following team"
msgstr "{memberEmail} ist dem folgenden Team beigetreten"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-leave.tsx
msgid "{memberEmail} left the following team"
msgstr "{memberEmail} hat das folgende Team verlassen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx
2024-08-27 20:34:39 +09:00
msgid "{numberOfSeats, plural, one {# member} other {# members}}"
2024-09-18 10:43:43 +10:00
msgstr "{numberOfSeats, plural, one {# Mitglied} other {# Mitglieder}}"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} added a field"
msgstr "{prefix} hat ein Feld hinzugefügt"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} added a recipient"
msgstr "{prefix} hat einen Empfänger hinzugefügt"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} created the document"
msgstr "{prefix} hat das Dokument erstellt"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} deleted the document"
msgstr "{prefix} hat das Dokument gelöscht"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} moved the document to team"
msgstr "{prefix} hat das Dokument ins Team verschoben"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} opened the document"
msgstr "{prefix} hat das Dokument geöffnet"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
2025-02-13 20:24:27 +11:00
msgid "{prefix} prefilled a field"
2025-03-24 10:03:49 +00:00
msgstr "{prefix} hat ein Feld vorab ausgefüllt"
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} removed a field"
msgstr "{prefix} hat ein Feld entfernt"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} removed a recipient"
msgstr "{prefix} hat einen Empfänger entfernt"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: data.recipientEmail
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} resent an email to {0}"
msgstr "{prefix} hat eine E-Mail an {0} erneut gesendet"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: data.recipientEmail
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} sent an email to {0}"
msgstr "{prefix} hat eine E-Mail an {0} gesendet"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} sent the document"
msgstr "{prefix} hat das Dokument gesendet"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} signed a field"
msgstr "{prefix} hat ein Feld unterschrieben"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} unsigned a field"
msgstr "{prefix} hat ein Feld ungültig gemacht"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} updated a field"
msgstr "{prefix} hat ein Feld aktualisiert"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} updated a recipient"
msgstr "{prefix} hat einen Empfänger aktualisiert"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} updated the document"
msgstr "{prefix} hat das Dokument aktualisiert"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} updated the document access auth requirements"
msgstr "{prefix} hat die Anforderungen an die Dokumentenzugriffsautorisierung aktualisiert"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} updated the document external ID"
msgstr "{prefix} hat die externe ID des Dokuments aktualisiert"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} updated the document signing auth requirements"
msgstr "{prefix} hat die Authentifizierungsanforderungen für die Dokumentenunterzeichnung aktualisiert"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} updated the document title"
msgstr "{prefix} hat den Titel des Dokuments aktualisiert"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} updated the document visibility"
msgstr "{prefix} hat die Sichtbarkeit des Dokuments aktualisiert"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
2024-11-08 00:34:25 +09:00
msgid "{recipientActionVerb} document"
2024-11-08 23:06:57 +11:00
msgstr "{recipientActionVerb} Dokument"
2024-11-08 00:34:25 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
2024-11-08 00:34:25 +09:00
msgid "{recipientActionVerb} the document to complete the process."
2024-11-08 23:06:57 +11:00
msgstr "{recipientActionVerb} das Dokument, um den Prozess abzuschließen."
2024-11-08 00:34:25 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/document-created-from-direct-template.tsx
msgid "{recipientName} {action} a document by using one of your direct links"
msgstr "{recipientName} {action} ein Dokument, indem Sie einen Ihrer direkten Links verwenden"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/document-rejected.tsx
msgid "{recipientName} has rejected the document '{documentName}'"
msgstr "{recipientName} hat das Dokument '{documentName}' abgelehnt"
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-recipient-signed.tsx
msgid "{recipientReference} has completed signing the document."
2025-01-02 10:36:05 +11:00
msgstr "{recipientReference} hat das Dokument vollständig unterschrieben."
2025-02-13 20:24:27 +11:00
#. placeholder {0}: document.title
2025-02-26 21:48:06 +11:00
#: packages/lib/jobs/definitions/emails/send-recipient-signed-email.handler.ts
msgid "{recipientReference} has signed \"{0}\""
2025-01-02 10:36:05 +11:00
msgstr "{recipientReference} hat \"{0}\" unterschrieben"
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-recipient-signed.tsx
msgid "{recipientReference} has signed \"{documentName}\""
2025-01-02 10:36:05 +11:00
msgstr "{recipientReference} hat \"{documentName}\" unterschrieben"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/document-recipient-signed.tsx
msgid "{recipientReference} has signed {documentName}"
2025-01-02 10:36:05 +11:00
msgstr "{recipientReference} hat {documentName} unterschrieben"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "{remaningLength, plural, one {# character remaining} other {# characters remaining}}"
2024-09-18 10:43:43 +10:00
msgstr "{remaningLength, plural, one {# Zeichen verbleibend} other {# Zeichen verbleibend}}"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-rejected.tsx
msgid "{signerName} has rejected the document \"{documentName}\"."
msgstr "{signerName} hat das Dokument \"{documentName}\" abgelehnt."
2025-02-13 20:24:27 +11:00
#. placeholder {0}: _(actionVerb).toLowerCase()
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-invite.tsx
2025-02-13 20:24:27 +11:00
msgid "{teamName} has invited you to {0}<0/>\"{documentName}\""
msgstr "{teamName} hat dich eingeladen, {0}<0/>\"{documentName}\""
2025-02-26 21:48:06 +11:00
#: packages/email/templates/document-invite.tsx
msgid "{teamName} has invited you to {action} {documentName}"
msgstr "{teamName} hat Sie eingeladen, {action} {documentName}"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-transfer-request.tsx
msgid "{teamName} ownership transfer request"
msgstr "Anfrage zur Übertragung des Eigentums von {teamName}"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{userName} approved the document"
msgstr "{userName} hat das Dokument genehmigt"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{userName} CC'd the document"
msgstr "{userName} hat das Dokument in CC gesetzt"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{userName} completed their task"
msgstr "{userName} hat ihre Aufgabe abgeschlossen"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{userName} rejected the document"
msgstr "{userName} hat das Dokument abgelehnt"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{userName} signed the document"
msgstr "{userName} hat das Dokument unterschrieben"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "{userName} viewed the document"
msgstr "{userName} hat das Dokument angesehen"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/data-table-pagination.tsx
msgid "{visibleRows, plural, one {Showing # result.} other {Showing # results.}}"
msgstr "{visibleRows, plural, one {Eine # Ergebnis wird angezeigt.} other {# Ergebnisse werden angezeigt.}}"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: document.title
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
2024-08-27 20:34:39 +09:00
msgid "<0>\"{0}\"</0>is no longer available to sign"
2024-09-18 10:43:43 +10:00
msgstr "<0>\"{0}\"</0> steht nicht mehr zur Unterschrift zur Verfügung"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-transfer-request.tsx
msgid "<0>{senderName}</0> has requested that you take ownership of the following team"
msgstr "<0>{senderName}</0> hat angefordert, dass du das folgende Team übernimmst"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/confirm-team-email.tsx
msgid "<0>{teamName}</0> has requested to use your email address for their team on Documenso."
msgstr "<0>{teamName}</0> hat angefragt, Ihre E-Mail-Adresse für ihr Team bei Documenso zu verwenden."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "<0>Click to upload</0> or drag and drop"
2025-02-13 20:24:27 +11:00
msgstr "<0>Klicken Sie hier, um hochzuladen</0> oder ziehen Sie die Datei per Drag & Drop"
#: packages/ui/components/document/document-signature-settings-tooltip.tsx
msgid "<0>Drawn</0> - A signature that is drawn using a mouse or stylus."
2025-03-24 10:03:49 +00:00
msgstr "<0>Gezeichnet</0> - Eine Signatur, die mit einer Maus oder einem Stift gezeichnet wird."
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "<0>Email</0> - The recipient will be emailed the document to sign, approve, etc."
msgstr "<0>E-Mail</0> - Der Empfänger erhält das Dokument zur Unterschrift, Genehmigung usw."
2025-02-26 21:48:06 +11:00
#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Inherit authentication method</0> - Use the global action signing authentication method configured in the \"General Settings\" step"
msgstr "<0>Authentifizierungsmethode erben</0> - Verwenden Sie die in den \"Allgemeinen Einstellungen\" konfigurierte globale Aktionssignatur-Authentifizierungsmethode"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-global-auth-action-select.tsx
msgid "<0>No restrictions</0> - No authentication required"
msgstr "<0>Keine Einschränkungen</0> - Keine Authentifizierung erforderlich"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-global-auth-access-select.tsx
msgid "<0>No restrictions</0> - The document can be accessed directly by the URL sent to the recipient"
msgstr "<0>Keine Einschränkungen</0> - Das Dokument kann direkt über die dem Empfänger gesendete URL abgerufen werden"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>None</0> - No authentication required"
msgstr "<0>Keine</0> - Keine Authentifizierung erforderlich"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "<0>None</0> - We will generate links which you can send to the recipients manually."
2025-01-02 10:36:05 +11:00
msgstr "<0>Keiner</0> - Wir werden Links generieren, die Sie manuell an die Empfänger senden können."
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "<0>Note</0> - If you use Links in combination with direct templates, you will need to manually send the links to the remaining recipients."
msgstr "<0>Hinweis</0> - Wenn Sie Links in Kombination mit direkten Vorlagen verwenden, müssen Sie die Links manuell an die restlichen Empfänger senden."
2025-02-26 21:48:06 +11:00
#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
msgid "<0>Require 2FA</0> - The recipient must have an account and 2FA enabled via their settings"
msgstr "<0>2FA erforderlich</0> - Der Empfänger muss ein Konto haben und die 2FA über seine Einstellungen aktiviert haben"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-global-auth-access-select.tsx
msgid "<0>Require account</0> - The recipient must be signed in to view the document"
msgstr "<0>Konto erforderlich</0> - Der Empfänger muss angemeldet sein, um das Dokument anzeigen zu können"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
msgid "<0>Require passkey</0> - The recipient must have an account and passkey configured via their settings"
msgstr "<0>Passkey erforderlich</0> - Der Empfänger muss ein Konto haben und den Passkey über seine Einstellungen konfiguriert haben"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
2024-08-27 20:34:39 +09:00
msgid "<0>Sender:</0> All"
2024-09-18 10:43:43 +10:00
msgstr "<0>Absender:</0> Alle"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-signature-settings-tooltip.tsx
msgid "<0>Typed</0> - A signature that is typed using a keyboard."
2025-03-24 10:03:49 +00:00
msgstr "<0>Getippt</0> - Eine Signatur, die mit einer Tastatur getippt wird."
#: packages/ui/components/document/document-signature-settings-tooltip.tsx
msgid "<0>Uploaded</0> - A signature that is uploaded from a file."
2025-03-24 10:03:49 +00:00
msgstr "<0>Hochgeladen</0> - Eine Signatur, die aus einer Datei hochgeladen wird."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "<0>You are about to complete approving <1>\"{documentTitle}\"</1>.</0><2/> Are you sure?"
2025-01-02 10:36:05 +11:00
msgstr "<0>Sie sind dabei, die Genehmigung von <1>\"{documentTitle}\"</1> abzuschließen.</0><2/> Sind Sie sicher?"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "<0>You are about to complete signing \"<1>{documentTitle}</1>\".</0><2/> Are you sure?"
2025-01-02 10:36:05 +11:00
msgstr "<0>Sie sind dabei, die Unterzeichnung von \"<1>{documentTitle}</1>\" abzuschließen.</0><2/> Sind Sie sicher?"
2025-03-08 01:21:29 +02:00
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "<0>You are about to complete viewing \"<1>{documentTitle}</1>\".</0><2/> Are you sure?"
2025-01-02 10:36:05 +11:00
msgstr "<0>Sie sind dabei, die Ansicht von \"<1>{documentTitle}</1>\" abzuschließen.</0><2/> Sind Sie sicher?"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
msgid "1 month"
2024-11-01 15:22:51 +11:00
msgstr "1 Monat"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
msgid "12 months"
2024-11-01 15:22:51 +11:00
msgstr "12 Monate"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
msgid "3 months"
2024-11-01 15:22:51 +11:00
msgstr "3 Monate"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/generic-error-layout.tsx
2025-02-21 15:53:23 +11:00
msgid "404 not found"
2025-03-24 10:03:49 +00:00
msgstr "404 nicht gefunden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_profile+/_layout.tsx
2024-08-27 20:34:39 +09:00
msgid "404 Profile not found"
2024-09-18 10:43:43 +10:00
msgstr "404 Profil nicht gefunden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/_layout.tsx
2024-08-27 20:34:39 +09:00
msgid "404 Team not found"
2024-09-18 10:43:43 +10:00
msgstr "404 Team nicht gefunden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/generic-error-layout.tsx
2025-02-13 20:24:27 +11:00
msgid "500 Internal Server Error"
2025-03-24 10:03:49 +00:00
msgstr "500 Interner Serverfehler"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
msgid "6 months"
2024-11-01 15:22:51 +11:00
msgstr "6 Monate"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
msgid "7 days"
2024-11-01 15:22:51 +11:00
msgstr "7 Tage"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/send-confirmation-email.tsx
2024-08-27 20:34:39 +09:00
msgid "A confirmation email has been sent, and it should arrive in your inbox shortly."
2024-09-18 10:43:43 +10:00
msgstr "Eine Bestätigungs-E-Mail wurde gesendet, und sie sollte in Kürze in deinem Posteingang ankommen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "A device capable of accessing, opening, and reading documents"
2024-11-01 15:22:51 +11:00
msgstr "Ein Gerät, das in der Lage ist, Dokumente zuzugreifen, zu öffnen und zu lesen"
2025-02-26 21:48:06 +11:00
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
msgid "A document was created by your direct template that requires you to {recipientActionVerb} it."
msgstr "Ein Dokument wurde von deiner direkten Vorlage erstellt, das erfordert, dass du {recipientActionVerb}."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "A draft document will be created"
2024-09-18 10:43:43 +10:00
msgstr "Ein Entwurf wird erstellt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "A field was added"
msgstr "Ein Feld wurde hinzugefügt"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "A field was removed"
msgstr "Ein Feld wurde entfernt"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "A field was updated"
msgstr "Ein Feld wurde aktualisiert"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "A means to print or download documents for your records"
2024-11-01 15:22:51 +11:00
msgstr "Ein Mittel, um Dokumente für Ihre Unterlagen zu drucken oder herunterzuladen"
2025-02-26 21:48:06 +11:00
#: packages/lib/jobs/definitions/emails/send-team-member-joined-email.handler.ts
msgid "A new member has joined your team"
msgstr "Ein neues Mitglied ist deinem Team beigetreten"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
2024-08-27 20:34:39 +09:00
msgid "A new token was created successfully."
2024-09-18 10:43:43 +10:00
msgstr "Ein neuer Token wurde erfolgreich erstellt."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
#: apps/remix/app/components/forms/forgot-password.tsx
2024-08-27 20:34:39 +09:00
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
2024-09-18 10:43:43 +10:00
msgstr "Eine E-Mail zum Zurücksetzen des Passworts wurde gesendet, wenn du ein Konto hast, solltest du sie in Kürze in deinem Posteingang sehen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "A recipient was added"
msgstr "Ein Empfänger wurde hinzugefügt"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "A recipient was removed"
msgstr "Ein Empfänger wurde entfernt"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "A recipient was updated"
msgstr "Ein Empfänger wurde aktualisiert"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: transferVerification.name
#. placeholder {1}: transferVerification.email
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-transfer-status.tsx
2024-08-27 20:34:39 +09:00
msgid "A request to transfer the ownership of this team has been sent to <0>{0} ({1})</0>"
2024-09-18 10:43:43 +10:00
msgstr "Eine Anfrage zur Übertragung des Eigentums dieses Teams wurde an <0>{0} ({1})</0> gesendet"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: team.name
2025-02-26 21:48:06 +11:00
#: packages/lib/server-only/team/create-team-email-verification.ts
msgid "A request to use your email has been initiated by {0} on Documenso"
msgstr "Eine Anfrage zur Verwendung Ihrer E-Mail wurde von {0} auf Documenso initiiert"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso"
2024-09-18 10:43:43 +10:00
msgstr "Ein Geheimnis, das an deine URL gesendet wird, damit du überprüfen kannst, dass die Anfrage von Documenso gesendet wurde"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso."
2024-09-18 10:43:43 +10:00
msgstr "Ein Geheimnis, das an deine URL gesendet wird, damit du überprüfen kannst, dass die Anfrage von Documenso gesendet wurde."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "A stable internet connection"
2024-11-01 15:22:51 +11:00
msgstr "Eine stabile Internetverbindung"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-join.tsx
msgid "A team member has joined a team on Documenso"
msgstr "Ein Teammitglied ist einem Team bei Documenso beigetreten"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: team.name
2025-02-26 21:48:06 +11:00
#: packages/lib/jobs/definitions/emails/send-team-member-left-email.handler.ts
msgid "A team member has left {0}"
msgstr "Ein Teammitglied hat {0} verlassen"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-leave.tsx
msgid "A team member has left a team on Documenso"
msgstr "Ein Teammitglied hat ein Team auf Documenso verlassen"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-delete.tsx
#: packages/email/templates/team-delete.tsx
msgid "A team you were a part of has been deleted"
msgstr "Ein Team, dem du angehörtest, wurde gelöscht"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/public-profile-form.tsx
2024-08-27 20:34:39 +09:00
msgid "A unique URL to access your profile"
2024-09-18 10:43:43 +10:00
msgstr "Eine eindeutige URL, um auf dein Profil zuzugreifen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "A unique URL to identify your team"
2024-09-18 10:43:43 +10:00
msgstr "Eine eindeutige URL, um dein Team zu identifizieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "A verification email will be sent to the provided email."
2024-09-18 10:43:43 +10:00
msgstr "Eine Bestätigungs-E-Mail wird an die angegebene E-Mail-Adresse gesendet."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-invitations.tsx
#: packages/email/templates/team-transfer-request.tsx
#: packages/email/templates/team-invite.tsx
#: packages/email/templates/confirm-team-email.tsx
2024-08-27 20:34:39 +09:00
msgid "Accept"
2024-09-18 10:43:43 +10:00
msgstr "Akzeptieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-invite.tsx
msgid "Accept invitation to join a team on Documenso"
msgstr "Einladung annehmen, um einem Team auf Documenso beizutreten"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/confirm-team-email.tsx
msgid "Accept team email request for {teamName} on Documenso"
msgstr "Akzeptiere die Team-E-Mail-Anfrage für {teamName} bei Documenso"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-transfer-request.tsx
msgid "Accept team transfer request on Documenso"
msgstr "Übertragungsanfrage des Teams auf Documenso annehmen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Acceptance and Consent"
2024-11-01 15:22:51 +11:00
msgstr "Zustimmung und Einverständnis"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-invitations.tsx
2024-08-27 20:34:39 +09:00
msgid "Accepted team invitation"
2024-09-18 10:43:43 +10:00
msgstr "Team-Einladung akzeptiert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
2024-11-05 18:26:09 +09:00
msgid "Account Authentication"
2024-11-05 20:53:33 +11:00
msgstr "Kontowauthentifizierung"
2024-11-05 18:26:09 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Account deleted"
2024-09-18 10:43:43 +10:00
msgstr "Konto gelöscht"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
msgid "Account disabled"
2025-01-02 10:36:05 +11:00
msgstr "Konto deaktiviert"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
msgid "Account enabled"
2025-01-02 10:36:05 +11:00
msgstr "Konto aktiviert"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
2024-11-05 18:26:09 +09:00
msgid "Account Re-Authentication"
2024-11-05 20:53:33 +11:00
msgstr "Kontowiederauthentifizierung"
2024-11-05 18:26:09 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Acknowledgment"
2024-11-01 15:22:51 +11:00
msgstr "Bestätigung"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-security-activity-table.tsx
#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/tables/document-logs-table.tsx
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
2024-08-27 20:34:39 +09:00
msgid "Action"
2024-09-18 10:43:43 +10:00
msgstr "Aktion"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/tables/team-settings-members-table.tsx
#: apps/remix/app/components/tables/team-settings-members-table.tsx
#: apps/remix/app/components/tables/team-settings-member-invites-table.tsx
#: apps/remix/app/components/tables/team-settings-member-invites-table.tsx
#: apps/remix/app/components/tables/documents-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Actions"
2024-09-18 10:43:43 +10:00
msgstr "Aktionen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
#: apps/remix/app/components/tables/user-settings-teams-page-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Active"
2024-09-18 10:43:43 +10:00
msgstr "Aktiv"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "Active Subscriptions"
2024-09-18 10:43:43 +10:00
msgstr "Aktive Abonnements"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Add"
2024-09-18 10:43:43 +10:00
msgstr "Hinzufügen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-dropzone.tsx
msgid "Add a document"
msgstr "Dokument hinzufügen"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Add a URL to redirect the user to once the document is signed"
msgstr "Fügen Sie eine URL hinzu, um den Benutzer nach der Unterzeichnung des Dokuments weiterzuleiten"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Add all relevant fields for each recipient."
2024-09-18 10:43:43 +10:00
msgstr "Fügen Sie alle relevanten Felder für jeden Empfänger hinzu."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-edit-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Add all relevant placeholders for each recipient."
2024-09-18 10:43:43 +10:00
msgstr "Fügen Sie alle relevanten Platzhalter für jeden Empfänger hinzu."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Add an authenticator to serve as a secondary authentication method for signing documents."
2024-09-18 10:43:43 +10:00
msgstr "Fügen Sie einen Authenticator hinzu, um als sekundäre Authentifizierungsmethode für die Unterzeichnung von Dokumenten zu dienen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Add an authenticator to serve as a secondary authentication method when signing in, or when signing documents."
2024-09-18 10:43:43 +10:00
msgstr "Fügen Sie einen Authenticator hinzu, um als sekundäre Authentifizierungsmethode beim Einloggen oder bei der Unterzeichnung von Dokumenten zu dienen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Add an external ID to the document. This can be used to identify the document in external systems."
msgstr "Fügen Sie dem Dokument eine externe ID hinzu. Diese kann verwendet werden, um das Dokument in externen Systemen zu identifizieren."
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Add an external ID to the template. This can be used to identify in external systems."
msgstr "Fügen Sie der Vorlage eine externe ID hinzu. Diese kann zur Identifizierung in externen Systemen verwendet werden."
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
msgid "Add another option"
msgstr "Weitere Option hinzufügen"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Add another value"
msgstr "Weiteren Wert hinzufügen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Add email"
2024-09-18 10:43:43 +10:00
msgstr "E-Mail hinzufügen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Add Fields"
2024-09-18 10:43:43 +10:00
msgstr "Felder hinzufügen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Add more"
2024-09-18 10:43:43 +10:00
msgstr "Mehr hinzufügen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Add myself"
msgstr "Mich selbst hinzufügen"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Add Myself"
msgstr "Mich hinzufügen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Add passkey"
2024-09-18 10:43:43 +10:00
msgstr "Passkey hinzufügen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Add Placeholder Recipient"
msgstr "Platzhalterempfänger hinzufügen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-edit-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Add Placeholders"
2024-09-18 10:43:43 +10:00
msgstr "Platzhalter hinzufügen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Add Signer"
msgstr "Unterzeichner hinzufügen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-edit-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Add Signers"
2024-09-18 10:43:43 +10:00
msgstr "Unterzeichner hinzufügen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Add team email"
2024-09-18 10:43:43 +10:00
msgstr "Team-E-Mail hinzufügen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Add text"
msgstr "Text hinzufügen"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Add text to the field"
msgstr "Text zum Feld hinzufügen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-edit-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Add the people who will sign the document."
2024-09-18 10:43:43 +10:00
msgstr "Fügen Sie die Personen hinzu, die das Dokument unterschreiben werden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Add the recipients to create the document with"
2024-09-18 10:43:43 +10:00
msgstr "Fügen Sie die Empfänger hinzu, um das Dokument zu erstellen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-checkout-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Adding and removing seats will adjust your invoice accordingly."
2024-09-18 10:43:43 +10:00
msgstr "Das Hinzufügen und Entfernen von Sitzplätzen wird Ihre Rechnung entsprechend anpassen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-branding-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Additional brand information to display at the bottom of emails"
2024-11-08 23:06:57 +11:00
msgstr "Zusätzliche Markeninformationen, die am Ende von E-Mails angezeigt werden sollen"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/teams.ts
msgid "Admin"
2025-01-02 10:36:05 +11:00
msgstr "Administrator"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "Admin Actions"
2024-09-18 10:43:43 +10:00
msgstr "Admin-Aktionen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/menu-switcher.tsx
2024-08-27 20:34:39 +09:00
msgid "Admin panel"
2024-09-18 10:43:43 +10:00
msgstr "Admin-Panel"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Advanced Options"
msgstr "Erweiterte Optionen"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
msgid "Advanced settings"
msgstr "Erweiterte Einstellungen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "After signing a document electronically, you will be provided the opportunity to view, download, and print the document for your records. It is highly recommended that you retain a copy of all electronically signed documents for your personal records. We will also retain a copy of the signed document for our records however we may not be able to provide you with a copy of the signed document after a certain period of time."
2024-11-01 15:22:51 +11:00
msgstr "Nach der elektronischen Unterzeichnung eines Dokuments haben Sie die Möglichkeit, das Dokument für Ihre Unterlagen anzusehen, herunterzuladen und auszudrucken. Es wird dringend empfohlen, eine Kopie aller elektronisch unterschriebenen Dokumente für Ihre persönlichen Unterlagen aufzubewahren. Wir werden ebenfalls eine Kopie des unterzeichneten Dokuments für unsere Unterlagen behalten, jedoch können wir Ihnen nach einer bestimmten Zeit möglicherweise keine Kopie des unterzeichneten Dokuments mehr zur Verfügung stellen."
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/template.ts
msgid "After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email."
msgstr "Nach der Übermittlung wird ein Dokument automatisch generiert und zu Ihrer Dokumentenseite hinzugefügt. Sie erhalten außerdem eine Benachrichtigung per E-Mail."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-status.tsx
2024-08-27 20:34:39 +09:00
msgid "All"
2024-09-18 10:43:43 +10:00
msgstr "Alle"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/app-command-menu.tsx
2024-08-27 20:34:39 +09:00
msgid "All documents"
2024-09-18 10:43:43 +10:00
msgstr "Alle Dokumente"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
2024-08-27 20:34:39 +09:00
msgid "All documents have been processed. Any new documents that are sent or received will show here."
2024-09-18 10:43:43 +10:00
msgstr "Alle Dokumente wurden verarbeitet. Alle neuen Dokumente, die gesendet oder empfangen werden, werden hier angezeigt."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "All documents related to the electronic signing process will be provided to you electronically through our platform or via email. It is your responsibility to ensure that your email address is current and that you can receive and open our emails."
2024-11-01 15:22:51 +11:00
msgstr "Alle Dokumente, die mit dem elektronischen Unterzeichnungsprozess zusammenhängen, werden Ihnen elektronisch über unsere Plattform oder per E-Mail zur Verfügung gestellt. Es liegt in Ihrer Verantwortung, sicherzustellen, dass Ihre E-Mail-Adresse aktuell ist und dass Sie unsere E-Mails empfangen und öffnen können."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "All inserted signatures will be voided"
2024-09-18 10:43:43 +10:00
msgstr "Alle eingefügten Unterschriften werden annulliert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "All recipients will be notified"
2024-09-18 10:43:43 +10:00
msgstr "Alle Empfänger werden benachrichtigt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-cancel.tsx
msgid "All signatures have been voided."
msgstr "Alle Unterschriften wurden ungültig gemacht."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
2024-11-06 22:03:51 +09:00
msgid "All signing links have been copied to your clipboard."
2024-11-08 23:06:57 +11:00
msgstr "Alle Signierlinks wurden in die Zwischenablage kopiert."
2024-11-06 22:03:51 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/app-command-menu.tsx
2024-08-27 20:34:39 +09:00
msgid "All templates"
2024-09-18 10:43:43 +10:00
msgstr "Alle Vorlagen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/period-selector.tsx
2024-08-27 20:34:39 +09:00
msgid "All Time"
2024-09-18 10:43:43 +10:00
msgstr "Alle Zeiten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/confirm-team-email.tsx
msgid "Allow document recipients to reply directly to this email address"
msgstr "Erlauben Sie den Dokumentempfängern, direkt an diese E-Mail-Adresse zu antworten"
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Allow signers to dictate next signer"
2025-03-24 10:03:49 +00:00
msgstr "Unterzeichner können nächsten Unterzeichner bestimmen"
#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Allowed Signature Types"
2025-03-24 10:03:49 +00:00
msgstr "Erlaubte Signaturtypen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Allows authenticating using biometrics, password managers, hardware keys, etc."
2024-09-18 10:43:43 +10:00
msgstr "Erlaubt die Authentifizierung mit biometrischen Daten, Passwort-Managern, Hardware-Schlüsseln usw."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-08-27 20:34:39 +09:00
msgid "Already have an account? <0>Sign in instead</0>"
2024-09-18 10:43:43 +10:00
msgstr "Hast du bereits ein Konto? <0>Stattdessen anmelden</0>"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/team-settings-billing-invoices-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Amount"
2024-09-18 10:43:43 +10:00
msgstr "Betrag"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/document-super-delete.tsx
msgid "An admin has deleted your document \"{documentName}\"."
msgstr "Ein Administrator hat dein Dokument \"{documentName}\" gelöscht."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "An electronic signature provided by you on our platform, achieved through clicking through to a document and entering your name, or any other electronic signing method we provide, is legally binding. It carries the same weight and enforceability as a manual signature written with ink on paper."
2024-11-01 15:22:51 +11:00
msgstr "Eine elektronische Unterschrift, die Sie auf unserer Plattform bereitstellen, durch Klicken auf ein Dokument und Eingabe Ihres Namens oder einer anderen von uns bereitgestellten elektronischen Unterzeichnungsart, ist rechtlich bindend. Sie hat das gleiche Gewicht und die gleiche Durchsetzbarkeit wie eine handschriftliche Unterschrift auf Papier."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "An email account"
2024-11-01 15:22:51 +11:00
msgstr "Ein E-Mail-Konto"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "An email containing an invitation will be sent to each member."
2024-09-18 10:43:43 +10:00
msgstr "Eine E-Mail mit einer Einladung wird an jedes Mitglied gesendet."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-transfer-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "An email requesting the transfer of this team has been sent."
2024-09-18 10:43:43 +10:00
msgstr "Eine E-Mail, in der die Übertragung dieses Teams angefordert wird, wurde gesendet."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/token.tsx
#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
#: apps/remix/app/components/forms/avatar-image.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred"
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "An error occurred while adding fields."
2025-01-02 10:36:05 +11:00
msgstr "Ein Fehler ist aufgetreten beim Hinzufügen von Feldern."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while adding signers."
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten, während Unterzeichner hinzugefügt wurden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-edit-form.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while adding the fields."
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten, während die Felder hinzugefügt wurden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
msgid "An error occurred while auto-signing the document, some fields may not be signed. Please review and manually sign any remaining fields."
msgstr "Beim automatischen Signieren des Dokuments ist ein Fehler aufgetreten, einige Felder wurden möglicherweise nicht signiert. Bitte überprüfen Sie und signieren Sie alle verbleibenden Felder manuell."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while creating document from template."
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten, während das Dokument aus der Vorlage erstellt wurde."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while creating the webhook. Please try again."
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten, während der Webhook erstellt wurde. Bitte versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "An error occurred while deleting the user."
2025-02-13 20:24:27 +11:00
msgstr "Ein Fehler ist beim Löschen des Benutzers aufgetreten."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while disabling direct link signing."
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten, während das direkte Links-Signieren deaktiviert wurde."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
msgid "An error occurred while disabling the user."
2025-01-02 10:36:05 +11:00
msgstr "Ein Fehler ist aufgetreten, während der Benutzer deaktiviert wurde."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-button.tsx
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
#: apps/remix/app/components/general/document/document-page-view-button.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while downloading your document."
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten, während dein Dokument heruntergeladen wurde."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while duplicating template."
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten, während die Vorlage dupliziert wurde."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while enabling direct link signing."
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten, während das direkte Links-Signieren aktiviert wurde."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
msgid "An error occurred while enabling the user."
2025-01-02 10:36:05 +11:00
msgstr "Ein Fehler ist aufgetreten, während der Benutzer aktiviert wurde."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-transfer-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while loading team members. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten, während die Teammitglieder geladen wurden. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/pdf-viewer.tsx
msgid "An error occurred while loading the document."
msgstr "Ein Fehler ist beim Laden des Dokuments aufgetreten."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-move-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while moving the document."
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten, während das Dokument verschoben wurde."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-move-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while moving the template."
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten, während die Vorlage verschoben wurde."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
msgid "An error occurred while removing the field."
2024-11-01 15:22:51 +11:00
msgstr "Ein Fehler ist beim Entfernen des Feldes aufgetreten."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
2025-02-13 20:24:27 +11:00
msgid "An error occurred while removing the selection."
2025-03-24 10:03:49 +00:00
msgstr "Beim Entfernen der Auswahl ist ein Fehler aufgetreten."
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while removing the signature."
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten, während die Unterschrift entfernt wurde."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-edit-form.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while sending the document."
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten, während das Dokument gesendet wurde."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/send-confirmation-email.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while sending your confirmation email"
2024-09-18 10:43:43 +10:00
msgstr "Beim Senden Ihrer Bestätigungs-E-Mail ist ein Fehler aufgetreten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
2025-02-13 20:24:27 +11:00
msgid "An error occurred while signing as assistant."
2025-03-24 10:03:49 +00:00
msgstr "Beim Unterschreiben als Assistent ist ein Fehler aufgetreten."
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while signing the document."
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten, während das Dokument unterzeichnet wurde."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/billing-plans.tsx
2025-02-21 15:53:23 +11:00
msgid "An error occurred while trying to create a checkout session."
2025-03-24 10:03:49 +00:00
msgstr "Ein Fehler ist aufgetreten, während versucht wurde, eine Checkout-Sitzung zu erstellen."
2025-02-21 15:53:23 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while updating the document settings."
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten, während die Dokumenteinstellungen aktualisiert wurden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while updating the signature."
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten, während die Unterschrift aktualisiert wurde."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while updating your profile."
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten, während dein Profil aktualisiert wurde."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-upload.tsx
2024-08-27 20:34:39 +09:00
msgid "An error occurred while uploading your document."
2024-09-18 10:43:43 +10:00
msgstr "Ein Fehler ist aufgetreten, während dein Dokument hochgeladen wurde."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/generic-error-layout.tsx
2025-02-13 20:24:27 +11:00
msgid "An unexpected error occurred."
2025-03-24 10:03:49 +00:00
msgstr "Ein unerwarteter Fehler ist aufgetreten."
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
#: apps/remix/app/components/general/app-command-menu.tsx
#: apps/remix/app/components/general/teams/team-transfer-status.tsx
#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/forms/profile.tsx
#: apps/remix/app/components/forms/avatar-image.tsx
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-transfer-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-leave-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "An unknown error occurred"
2024-09-18 10:43:43 +10:00
msgstr "Es ist ein unbekannter Fehler aufgetreten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-transfer-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Any payment methods attached to this team will remain attached to this team. Please contact us if you need to update this information."
2024-09-18 10:43:43 +10:00
msgstr "Alle Zahlungsmethoden, die mit diesem Team verbunden sind, bleiben diesem Team zugeordnet. Bitte kontaktiere uns, wenn du diese Informationen aktualisieren möchtest."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
2024-11-05 17:37:05 +09:00
msgid "Any Source"
2024-11-05 20:53:33 +11:00
msgstr "Jede Quelle"
2024-11-05 17:37:05 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
2024-11-05 17:37:05 +09:00
msgid "Any Status"
2024-11-05 20:53:33 +11:00
msgstr "Jeder Status"
2024-11-05 17:37:05 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx
#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx
#: apps/remix/app/components/general/teams/team-settings-nav-desktop.tsx
2024-08-27 20:34:39 +09:00
msgid "API Tokens"
2024-09-18 10:43:43 +10:00
msgstr "API-Token"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "App Version"
2024-09-18 10:43:43 +10:00
msgstr "App-Version"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-button.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
2025-03-08 01:21:29 +02:00
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-page-view-button.tsx
#: packages/lib/constants/recipient-roles.ts
2024-08-27 20:34:39 +09:00
msgid "Approve"
2024-09-18 10:43:43 +10:00
msgstr "Genehmigen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: packages/email/template-components/template-document-invite.tsx
msgid "Approve Document"
2024-11-01 15:22:51 +11:00
msgstr "Dokument genehmigen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: packages/lib/constants/recipient-roles.ts
2024-08-27 20:34:39 +09:00
msgid "Approved"
2024-09-18 10:43:43 +10:00
msgstr "Genehmigt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
msgid "Approver"
msgstr "Genehmiger"
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
msgid "Approvers"
msgstr "Genehmigende"
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
msgid "Approving"
msgstr "Genehmigung"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
2025-02-13 20:24:27 +11:00
msgid "Are you sure you want to complete the document? This action cannot be undone. Please ensure that you have completed prefilling all relevant fields before proceeding."
2025-03-24 10:03:49 +00:00
msgstr "Sind Sie sicher, dass Sie das Dokument abschließen möchten? Diese Aktion kann nicht rückgängig gemacht werden. Bitte stellen Sie sicher, dass Sie alle relevanten Felder vorab ausgefüllt haben, bevor Sie fortfahren."
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Are you sure you want to delete this token?"
2024-09-18 10:43:43 +10:00
msgstr "Bist du sicher, dass du dieses Token löschen möchtest?"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
msgid "Are you sure you want to reject this document? This action cannot be undone."
2024-11-18 08:40:25 +11:00
msgstr "Sind Sie sicher, dass Sie dieses Dokument ablehnen möchten? Diese Aktion kann nicht rückgängig gemacht werden."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
2024-08-27 20:34:39 +09:00
msgid "Are you sure you want to remove the <0>{passkeyName}</0> passkey."
2024-09-18 10:43:43 +10:00
msgstr "Bist du sicher, dass du den <0>{passkeyName}</0> Passkey entfernen möchtest."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Are you sure you wish to delete this team?"
2024-09-18 10:43:43 +10:00
msgstr "Bist du dir sicher, dass du dieses Team löschen möchtest?"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-email-usage.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-leave-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Are you sure?"
2024-09-18 10:43:43 +10:00
msgstr "Bist du dir sicher?"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
2025-02-13 20:24:27 +11:00
msgid "Assist"
2025-03-24 10:03:49 +00:00
msgstr "Hilfe"
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: packages/email/template-components/template-document-invite.tsx
2025-02-13 20:24:27 +11:00
msgid "Assist Document"
2025-03-24 10:03:49 +00:00
msgstr "Dokumentassistenz"
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/embed/embed-document-signing-page.tsx
2025-02-13 20:24:27 +11:00
msgid "Assist with signing"
2025-03-24 10:03:49 +00:00
msgstr "Unterstützung beim Unterschreiben"
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
2025-02-13 20:24:27 +11:00
msgid "Assistant"
2025-03-24 10:03:49 +00:00
msgstr "Assistent"
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: packages/ui/components/recipient/recipient-role-select.tsx
2025-02-13 20:24:27 +11:00
msgid "Assistant role is only available when the document is in sequential signing mode."
2025-03-24 10:03:49 +00:00
msgstr "Die Rolle des Assistenten ist nur verfügbar, wenn das Dokument im sequentiellen Unterschriftsmodus ist."
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
2025-02-13 20:24:27 +11:00
msgid "Assistants"
2025-03-24 10:03:49 +00:00
msgstr "Assistenten"
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: packages/lib/constants/recipient-roles.ts
2025-02-13 20:24:27 +11:00
msgid "Assisted"
2025-03-24 10:03:49 +00:00
msgstr "Unterstützt"
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
2025-02-13 20:24:27 +11:00
msgid "Assisting"
2025-03-24 10:03:49 +00:00
msgstr "Unterstützend"
2025-02-13 20:24:27 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
#: packages/ui/primitives/document-flow/add-settings.types.ts
#: packages/lib/types/document-meta.ts
msgid "At least one signature type must be enabled"
2025-03-24 10:03:49 +00:00
msgstr "Mindestens ein Signaturtyp muss aktiviert sein"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "Attempts sealing the document again, useful for after a code change has occurred to resolve an erroneous document."
2024-09-18 10:43:43 +10:00
msgstr "Versuche, das Dokument erneut zu versiegeln, nützlich nach einer Codeänderung, um ein fehlerhaftes Dokument zu beheben."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
2024-08-27 20:34:39 +09:00
msgid "Audit Log"
2024-09-18 10:43:43 +10:00
msgstr "Audit-Protokoll"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
2024-11-05 18:26:09 +09:00
msgid "Authentication Level"
2024-11-05 20:53:33 +11:00
msgstr "Authentifizierungsstufe"
2024-11-05 18:26:09 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
#: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx
2024-08-27 20:34:39 +09:00
msgid "Authentication required"
2024-09-18 10:43:43 +10:00
msgstr "Authentifizierung erforderlich"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/avatar-image.tsx
2024-08-27 20:34:39 +09:00
msgid "Avatar"
2024-09-18 10:43:43 +10:00
msgstr "Avatar"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/avatar-image.tsx
2024-08-27 20:34:39 +09:00
msgid "Avatar Updated"
2024-09-18 10:43:43 +10:00
msgstr "Avatar aktualisiert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Awaiting email confirmation"
2024-09-18 10:43:43 +10:00
msgstr "Warte auf E-Mail-Bestätigung"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
#: apps/remix/app/components/forms/signup.tsx
2024-08-27 20:34:39 +09:00
msgid "Back"
2024-09-18 10:43:43 +10:00
msgstr "Zurück"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
2024-08-27 20:34:39 +09:00
msgid "Back to Documents"
2024-09-18 10:43:43 +10:00
msgstr "Zurück zu Dokumenten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
2024-08-27 20:34:39 +09:00
msgid "Background Color"
2024-09-18 10:43:43 +10:00
msgstr "Hintergrundfarbe"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Backup Code"
2024-09-18 10:43:43 +10:00
msgstr "Backup-Code"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Backup codes"
2024-09-18 10:43:43 +10:00
msgstr "Backup-Codes"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
2024-08-27 20:34:39 +09:00
msgid "Banner Updated"
2024-09-18 10:43:43 +10:00
msgstr "Banner aktualisiert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-08-27 20:34:39 +09:00
msgid "Basic details"
2024-09-18 10:43:43 +10:00
msgstr "Basisdetails"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-confirmation-email.tsx
msgid "Before you get started, please confirm your email address by clicking the button below:"
msgstr "Bitte bestätige vor dem Start deine E-Mail-Adresse, indem du auf den Button unten klickst:"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx
#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx
#: apps/remix/app/components/general/teams/team-settings-nav-desktop.tsx
2024-08-27 20:34:39 +09:00
msgid "Billing"
2024-09-18 10:43:43 +10:00
msgstr "Abrechnung"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/signature-pad/signature-pad-color-picker.tsx
msgid "Black"
msgstr "Schwarz"
#: packages/ui/primitives/signature-pad/signature-pad-color-picker.tsx
msgid "Blue"
msgstr "Blau"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Branding Preferences"
2024-11-08 23:06:57 +11:00
msgstr "Markenpräferenzen"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-branding-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Branding preferences updated"
2024-11-08 23:06:57 +11:00
msgstr "Markenpräferenzen aktualisiert"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-security-activity-table.tsx
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Browser"
2024-09-18 10:43:43 +10:00
msgstr "Browser"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
2024-11-06 22:03:51 +09:00
msgid "Bulk Copy"
2024-11-08 23:06:57 +11:00
msgstr "Massenkopie"
2024-11-06 22:03:51 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Bulk Import"
2024-09-18 10:43:43 +10:00
msgstr "Bulk-Import"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: template.title
2025-02-26 21:48:06 +11:00
#: packages/lib/jobs/definitions/internal/bulk-send-template.handler.ts
2025-02-13 20:24:27 +11:00
msgid "Bulk Send Complete: {0}"
msgstr "Massenversand abgeschlossen: {0}"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/bulk-send-complete.tsx
2025-02-13 20:24:27 +11:00
msgid "Bulk send operation complete for template \"{templateName}\""
msgstr "Massenversand abgeschlossen für Vorlage \"{templateName}\""
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
2025-02-13 20:24:27 +11:00
msgid "Bulk Send Template via CSV"
msgstr "Bulk-Vorlage senden über CSV"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
2025-02-13 20:24:27 +11:00
msgid "Bulk Send via CSV"
msgstr "Massenversand per CSV"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-invite.tsx
msgid "by <0>{senderName}</0>"
msgstr "von <0>{senderName}</0>"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/confirm-team-email.tsx
msgid "By accepting this request, you will be granting <0>{teamName}</0> access to:"
msgstr "Durch die Annahme dieser Anfrage gewähren Sie <0>{teamName}</0> Zugriff auf:"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-transfer-request.tsx
msgid "By accepting this request, you will take responsibility for any billing items associated with this team."
msgstr "Indem du diese Anfrage annimmst, übernimmst du die Verantwortung für alle Abrechnungspunkte, die mit diesem Team verbunden sind."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "By deleting this document, the following will occur:"
2024-09-18 10:43:43 +10:00
msgstr "Durch das Löschen dieses Dokuments wird Folgendes passieren:"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
2025-02-13 20:24:27 +11:00
msgid "By enabling 2FA, you will be required to enter a code from your authenticator app every time you sign in using email password."
2025-03-24 10:03:49 +00:00
msgstr "Wenn 2FA aktiviert wird, müssen Sie bei jedem Anmelden mit E-Mail-Passwort einen Code aus Ihrer Authentifikator-App eingeben."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "By proceeding to use the electronic signature service provided by Documenso, you affirm that you have read and understood this disclosure. You agree to all terms and conditions related to the use of electronic signatures and electronic transactions as outlined herein."
2024-11-01 15:22:51 +11:00
msgstr "Indem Sie den elektronischen Unterzeichnungsdienst von Documenso verwenden, bestätigen Sie, dass Sie diese Offenlegung gelesen und verstanden haben. Sie stimmen allen Bedingungen und Konditionen zu, die mit der Verwendung elektronischer Unterschriften und elektronischer Transaktionen verbunden sind, wie hierin dargelegt."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-disclosure.tsx
msgid "By proceeding with your electronic signature, you acknowledge and consent that it will be used to sign the given document and holds the same legal validity as a handwritten signature. By completing the electronic signing process, you affirm your understanding and acceptance of these conditions."
2024-11-01 15:22:51 +11:00
msgstr "Indem Sie fortfahren, Ihre elektronische Unterschrift zu leisten, erkennen Sie an und stimmen zu, dass sie verwendet wird, um das gegebene Dokument zu unterzeichnen, und die gleiche rechtliche Gültigkeit wie eine handschriftliche Unterschrift hat. Durch den Abschluss des elektronischen Unterzeichnungsprozesses bestätigen Sie Ihr Verständnis und Ihre Akzeptanz dieser Bedingungen."
#: apps/remix/app/components/forms/signup.tsx
msgid "By proceeding, you agree to our <0>Terms of Service</0> and <1>Privacy Policy</1>."
2025-03-24 10:03:49 +00:00
msgstr "Indem Sie fortfahren, stimmen Sie unseren <0>Nutzungsbedingungen</0> und <1>Datenschutzrichtlinien</1> zu."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "By using the electronic signature feature, you are consenting to conduct transactions and receive disclosures electronically. You acknowledge that your electronic signature on documents is binding and that you accept the terms outlined in the documents you are signing."
2024-11-01 15:22:51 +11:00
msgstr "Durch die Verwendung der elektronischen Unterschriftsfunktion stimmen Sie zu, Transaktionen durchzuführen und Offenlegungen elektronisch zu erhalten. Sie erkennen an, dass Ihre elektronische Unterschrift auf Dokumenten bindend ist und dass Sie die Bedingungen akzeptieren, die in den Dokumenten dargelegt sind, die Sie unterzeichnen."
2025-02-26 21:48:06 +11:00
#: packages/ui/components/recipient/recipient-role-select.tsx
2025-02-13 20:24:27 +11:00
msgid "Can prepare"
2025-03-24 10:03:49 +00:00
msgstr "Kann vorbereiten"
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
#: apps/remix/app/components/general/teams/team-transfer-status.tsx
#: apps/remix/app/components/general/teams/team-email-usage.tsx
#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
#: apps/remix/app/components/dialogs/template-move-dialog.tsx
#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
#: apps/remix/app/components/dialogs/team-transfer-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-leave-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-checkout-create-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
2024-08-27 20:34:39 +09:00
msgid "Cancel"
2024-09-18 10:43:43 +10:00
msgstr "Abbrechen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Cancelled by user"
2024-09-18 10:43:43 +10:00
msgstr "Vom Benutzer abgebrochen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Cannot remove signer"
msgstr "Unterzeichner kann nicht entfernt werden"
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
msgid "Cc"
msgstr "Cc"
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
#: packages/lib/constants/recipient-roles.ts
msgid "CC"
msgstr "CC"
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
msgid "CC'd"
msgstr "CC'd"
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
msgid "Ccers"
2025-01-02 10:36:05 +11:00
msgstr "Kohlenstoffkopierer"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Character Limit"
msgstr "Zeichenbeschränkung"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "Charts"
2024-09-18 10:43:43 +10:00
msgstr "Diagramme"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/types.ts
msgid "Checkbox"
2025-01-02 10:36:05 +11:00
msgstr "Kontrollkästchen"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Checkbox values"
msgstr "Checkbox-Werte"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-checkout-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Checkout"
2024-09-18 10:43:43 +10:00
msgstr "Abrechnung"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Choose an existing recipient from below to continue"
2024-09-18 10:43:43 +10:00
msgstr "Wählen Sie einen vorhandenen Empfänger unten aus, um fortzufahren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Choose Direct Link Recipient"
2024-09-18 10:43:43 +10:00
msgstr "Wählen Sie den direkten Link Empfänger"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-edit-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Choose how the document will reach recipients"
2024-11-08 23:06:57 +11:00
msgstr "Wählen Sie, wie das Dokument die Empfänger erreichen soll"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
2024-08-27 20:34:39 +09:00
msgid "Choose..."
2024-09-18 10:43:43 +10:00
msgstr "Wählen..."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/claim-account.tsx
2024-08-27 20:34:39 +09:00
msgid "Claim account"
2024-09-18 10:43:43 +10:00
msgstr "Konto beanspruchen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-08-27 20:34:39 +09:00
msgid "Claim username"
2024-09-18 10:43:43 +10:00
msgstr "Benutzername beanspruchen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-08-27 20:34:39 +09:00
msgid "Claim your username now"
2024-09-18 10:43:43 +10:00
msgstr "Benutzername jetzt beanspruchen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Clear file"
2025-02-13 20:24:27 +11:00
msgstr "Datei löschen"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/data-table.tsx
msgid "Clear filters"
msgstr "Filter löschen"
#: packages/ui/primitives/signature-pad/signature-pad-draw.tsx
msgid "Clear Signature"
msgstr "Unterschrift löschen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Click here to get started"
2024-09-18 10:43:43 +10:00
msgstr "Klicken Sie hier, um zu beginnen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
#: apps/remix/app/components/general/template/template-page-view-recent-activity.tsx
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
#: apps/remix/app/components/general/document/document-history-sheet.tsx
2024-08-27 20:34:39 +09:00
msgid "Click here to retry"
2024-09-18 10:43:43 +10:00
msgstr "Klicken Sie hier, um es erneut zu versuchen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Click here to upload"
2024-09-18 10:43:43 +10:00
msgstr "Klicken Sie hier, um hochzuladen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/avatar-with-recipient.tsx
#: apps/remix/app/components/general/avatar-with-recipient.tsx
2024-08-27 20:34:39 +09:00
msgid "Click to copy signing link for sending to recipient"
2024-09-18 10:43:43 +10:00
msgstr "Klicken Sie, um den Signatur-Link zu kopieren, um ihn an den Empfänger zu senden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
#: apps/remix/app/components/embed/embed-document-signing-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
2024-08-27 20:34:39 +09:00
msgid "Click to insert field"
msgstr "Klicken, um das Feld auszufüllen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-transfer-status.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/template-create-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
#: packages/ui/primitives/document-flow/missing-signature-field-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Close"
2024-09-18 10:43:43 +10:00
msgstr "Schließen"
2024-08-27 20:34:39 +09:00
2025-03-08 01:21:29 +02:00
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/embed/embed-document-signing-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
2024-08-27 20:34:39 +09:00
msgid "Complete"
msgstr "Abschließen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Complete Approval"
2024-09-18 10:43:43 +10:00
msgstr "Genehmigung abschließen"
2024-08-27 20:34:39 +09:00
2025-03-08 01:21:29 +02:00
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Complete Assisting"
2025-03-24 10:03:49 +00:00
msgstr "Vervollständigen der Assistenz"
2025-03-08 01:21:29 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
2025-02-13 20:24:27 +11:00
msgid "Complete Document"
2025-03-24 10:03:49 +00:00
msgstr "Dokument abschließen"
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Complete Signing"
2024-09-18 10:43:43 +10:00
msgstr "Unterzeichnung abschließen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
2025-02-13 20:24:27 +11:00
msgid "Complete the fields for the following signers. Once reviewed, they will inform you if any modifications are needed."
2025-03-24 10:03:49 +00:00
msgstr "Füllen Sie die Felder für die folgenden Unterzeichner aus. Nach der Überprüfung werden sie Sie informieren, ob Änderungen erforderlich sind."
2025-02-13 20:24:27 +11:00
2025-03-08 01:21:29 +02:00
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Complete Viewing"
2024-09-18 10:43:43 +10:00
msgstr "Betrachten abschließen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/general/document/document-status.tsx
#: packages/lib/constants/document.ts
#: packages/email/template-components/template-document-self-signed.tsx
#: packages/email/template-components/template-document-recipient-signed.tsx
#: packages/email/template-components/template-document-completed.tsx
2024-08-27 20:34:39 +09:00
msgid "Completed"
2024-09-18 10:43:43 +10:00
msgstr "Abgeschlossen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/document-self-signed.tsx
#: packages/email/templates/document-completed.tsx
msgid "Completed Document"
msgstr "Abgeschlossenes Dokument"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/app-command-menu.tsx
2024-08-27 20:34:39 +09:00
msgid "Completed documents"
2024-09-18 10:43:43 +10:00
msgstr "Abgeschlossene Dokumente"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "Completed Documents"
2024-09-18 10:43:43 +10:00
msgstr "Abgeschlossene Dokumente"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/template.ts
msgid "Configure Direct Recipient"
msgstr "Direkten Empfänger konfigurieren"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-edit-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Configure general settings for the document."
2024-09-18 10:43:43 +10:00
msgstr "Konfigurieren Sie die allgemeinen Einstellungen für das Dokument."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-edit-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Configure general settings for the template."
2024-09-18 10:43:43 +10:00
msgstr "Konfigurieren Sie die allgemeinen Einstellungen für die Vorlage."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Configure template"
2024-09-18 10:43:43 +10:00
msgstr "Vorlage konfigurieren"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: parseMessageDescriptor( _, FRIENDLY_FIELD_TYPE[currentField.type], )
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
msgid "Configure the {0} field"
msgstr "Konfigurieren Sie das Feld {0}"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Confirm"
2024-09-18 10:43:43 +10:00
msgstr "Bestätigen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-transfer-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Confirm by typing <0>{confirmTransferMessage}</0>"
2024-09-18 10:43:43 +10:00
msgstr "Bestätigen Sie durch Eingabe von <0>{confirmTransferMessage}</0>"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Confirm by typing <0>{deleteMessage}</0>"
2024-09-18 10:43:43 +10:00
msgstr "Bestätigen Sie durch Eingabe von <0>{deleteMessage}</0>"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Confirm by typing: <0>{deleteMessage}</0>"
2024-09-18 10:43:43 +10:00
msgstr "Bestätigen Sie durch Eingabe: <0>{deleteMessage}</0>"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Confirm Deletion"
2024-09-18 10:43:43 +10:00
msgstr "Bestätigung der Löschung"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
#: packages/email/template-components/template-confirmation-email.tsx
2024-08-27 20:34:39 +09:00
msgid "Confirm email"
2024-09-18 10:43:43 +10:00
msgstr "E-Mail bestätigen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/send-confirmation-email.tsx
2024-08-27 20:34:39 +09:00
msgid "Confirmation email sent"
2024-09-18 10:43:43 +10:00
msgstr "Bestätigungs-E-Mail gesendet"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Consent to Electronic Transactions"
2024-11-01 15:22:51 +11:00
msgstr "Zustimmung zu elektronischen Transaktionen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Contact Information"
2024-11-01 15:22:51 +11:00
msgstr "Kontaktinformationen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
2024-08-27 20:34:39 +09:00
msgid "Content"
2024-09-18 10:43:43 +10:00
msgstr "Inhalt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/team.verify.transfer.token.tsx
#: apps/remix/app/routes/_unauthenticated+/team.verify.transfer.token.tsx
#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/team.invite.$token.tsx
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/document-flow-root.tsx
2024-08-27 20:34:39 +09:00
msgid "Continue"
msgstr "Fortsetzen"
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-invite.tsx
msgid "Continue by approving the document."
msgstr "Fahre fort, indem du das Dokument genehmigst."
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-invite.tsx
2025-02-13 20:24:27 +11:00
msgid "Continue by assisting with the document."
2025-03-24 10:03:49 +00:00
msgstr "Fahren Sie fort, indem Sie das Dokument unterstützen."
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-completed.tsx
msgid "Continue by downloading the document."
msgstr "Fahre fort, indem du das Dokument herunterlädst."
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-invite.tsx
msgid "Continue by signing the document."
msgstr "Fahre fort, indem du das Dokument signierst."
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-invite.tsx
msgid "Continue by viewing the document."
msgstr "Fahre fort, indem du das Dokument ansiehst."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.invite.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "Continue to login"
2024-09-18 10:43:43 +10:00
msgstr "Weiter zum Login"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Controls the default language of an uploaded document. This will be used as the language in email communications with the recipients."
2024-11-08 23:06:57 +11:00
msgstr "Steuert die Standardsprache eines hochgeladenen Dokuments. Diese wird als Sprache in der E-Mail-Kommunikation mit den Empfängern verwendet."
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Controls the default visibility of an uploaded document."
2024-11-08 23:06:57 +11:00
msgstr "Steuert die Standard-sichtbarkeit eines hochgeladenen Dokuments."
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Controls the formatting of the message that will be sent when inviting a recipient to sign a document. If a custom message has been provided while configuring the document, it will be used instead."
2024-11-08 23:06:57 +11:00
msgstr "Steuert das Format der Nachricht, die gesendet wird, wenn ein Empfänger eingeladen wird, ein Dokument zu unterschreiben. Wenn eine benutzerdefinierte Nachricht beim Konfigurieren des Dokuments bereitgestellt wurde, wird diese stattdessen verwendet."
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Controls the language for the document, including the language to be used for email notifications, and the final certificate that is generated and attached to the document."
2025-03-24 10:03:49 +00:00
msgstr "Legt die Sprache des Dokuments fest, einschließlich der Sprache für E-Mail-Benachrichtigungen und des endgültigen Zertifikats, das generiert und dem Dokument angehängt wird."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
msgid "Controls whether the signing certificate will be included in the document when it is downloaded. The signing certificate can still be downloaded from the logs page separately."
2025-01-02 10:36:05 +11:00
msgstr "Legt fest, ob das Signaturzertifikat in das Dokument aufgenommen wird, wenn es heruntergeladen wird. Das Signaturzertifikat kann weiterhin separat von der Protokollseite heruntergeladen werden."
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
msgid "Controls which signatures are allowed to be used when signing a document."
2025-03-24 10:03:49 +00:00
msgstr "Bestimmt, welche Signaturen beim Unterschreiben eines Dokuments verwendet werden dürfen."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
2024-11-06 22:03:51 +09:00
msgid "Copied"
2024-11-08 23:06:57 +11:00
msgstr "Kopiert"
2024-11-06 22:03:51 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
#: apps/remix/app/components/general/avatar-with-recipient.tsx
#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/components/document/document-share-button.tsx
2024-08-27 20:34:39 +09:00
msgid "Copied to clipboard"
2024-09-18 10:43:43 +10:00
msgstr "In die Zwischenablage kopiert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
2024-11-06 22:03:51 +09:00
msgid "Copy"
2024-11-08 23:06:57 +11:00
msgstr "Kopieren"
2024-11-06 22:03:51 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-share-button.tsx
msgid "Copy Link"
msgstr "Link kopieren"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Copy sharable link"
2024-09-18 10:43:43 +10:00
msgstr "Kopieren Sie den teilbaren Link"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Copy Shareable Link"
2024-09-18 10:43:43 +10:00
msgstr "Kopiere den teilbaren Link"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
2024-11-06 22:03:51 +09:00
msgid "Copy Signing Links"
2024-11-08 23:06:57 +11:00
msgstr "Signierlinks kopieren"
2024-11-06 22:03:51 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
2024-08-27 20:34:39 +09:00
msgid "Copy token"
2024-09-18 10:43:43 +10:00
msgstr "Token kopieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_profile+/_layout.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Create"
2024-09-18 10:43:43 +10:00
msgstr "Erstellen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-self-signed.tsx
msgid "Create a <0>free account</0> to access your signed documents at any time."
msgstr "Erstelle ein <0>kostenfreies Konto</0>, um jederzeit auf deine unterzeichneten Dokumente zuzugreifen."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-08-27 20:34:39 +09:00
msgid "Create a new account"
2024-09-18 10:43:43 +10:00
msgstr "Ein neues Konto erstellen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Create a team to collaborate with your team members."
2024-09-18 10:43:43 +10:00
msgstr "Ein Team erstellen, um mit Ihren Teammitgliedern zusammenzuarbeiten."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.invite.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/team.decline.$token.tsx
#: packages/email/template-components/template-document-self-signed.tsx
2024-08-27 20:34:39 +09:00
msgid "Create account"
2024-09-18 10:43:43 +10:00
msgstr "Konto erstellen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Create and send"
2024-09-18 10:43:43 +10:00
msgstr "Erstellen und senden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Create as draft"
2024-09-18 10:43:43 +10:00
msgstr "Als Entwurf erstellen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Create as pending"
2024-11-08 23:06:57 +11:00
msgstr "Als ausstehend erstellen"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog-wrapper.tsx
2024-08-27 20:34:39 +09:00
msgid "Create Direct Link"
2024-09-18 10:43:43 +10:00
msgstr "Direkten Link erstellen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Create Direct Signing Link"
2024-09-18 10:43:43 +10:00
msgstr "Direkten Signatur-Link erstellen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Create document from template"
2024-09-18 10:43:43 +10:00
msgstr "Dokument aus der Vorlage erstellen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_profile+/_layout.tsx
2024-08-27 20:34:39 +09:00
msgid "Create now"
2024-09-18 10:43:43 +10:00
msgstr "Jetzt erstellen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Create one automatically"
2024-09-18 10:43:43 +10:00
msgstr "Einen automatisch erstellen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Create signing links"
2024-11-08 23:06:57 +11:00
msgstr "Unterzeichnung Links erstellen"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Create team"
2024-09-18 10:43:43 +10:00
msgstr "Team erstellen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Create Team"
2024-09-18 10:43:43 +10:00
msgstr "Team erstellen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Create the document as pending and ready to sign."
2024-11-08 23:06:57 +11:00
msgstr "Erstellen Sie das Dokument als ausstehend und bereit zur Unterschrift."
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
#: apps/remix/app/components/forms/token.tsx
2024-08-27 20:34:39 +09:00
msgid "Create token"
2024-09-18 10:43:43 +10:00
msgstr "Token erstellen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Create webhook"
2024-09-18 10:43:43 +10:00
msgstr "Webhook erstellen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Create Webhook"
2024-09-18 10:43:43 +10:00
msgstr "Webhook erstellen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
2024-08-27 20:34:39 +09:00
msgid "Create your account and start using state-of-the-art document signing."
2024-09-18 10:43:43 +10:00
msgstr "Erstellen Sie Ihr Konto und beginnen Sie mit dem modernen Dokumentensignieren."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-08-27 20:34:39 +09:00
msgid "Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp."
2024-09-18 10:43:43 +10:00
msgstr "Erstellen Sie Ihr Konto und beginnen Sie mit dem modernen Dokumentensignieren. Offenes und schönes Signieren liegt in Ihrer Reichweite."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
#: apps/remix/app/components/tables/documents-table.tsx
#: apps/remix/app/components/tables/admin-leaderboard-table.tsx
#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Created"
2024-09-18 10:43:43 +10:00
msgstr "Erstellt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: apps/remix/app/routes/_authenticated+/admin+/subscriptions.tsx
2024-08-27 20:34:39 +09:00
msgid "Created At"
2024-09-18 10:43:43 +10:00
msgstr "Erstellt am"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx
2024-08-27 20:34:39 +09:00
msgid "Created by"
2024-09-18 10:43:43 +10:00
msgstr "Erstellt von"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
#: apps/remix/app/components/tables/user-settings-pending-teams-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Created on"
2024-09-18 10:43:43 +10:00
msgstr "Erstellt am"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: i18n.date(webhook.createdAt, DateTime.DATETIME_FULL)
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx
msgid "Created on {0}"
2024-09-18 10:43:43 +10:00
msgstr "Erstellt am {0}"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
2025-02-13 20:24:27 +11:00
msgid "CSV Structure"
msgstr "CSV-Struktur"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/password.tsx
2024-08-27 20:34:39 +09:00
msgid "Current Password"
2024-09-18 10:43:43 +10:00
msgstr "Aktuelles Passwort"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/password.tsx
2024-12-06 16:11:54 +09:00
msgid "Current password is incorrect."
2025-01-02 10:36:05 +11:00
msgstr "Aktuelles Passwort ist falsch."
2024-12-06 16:11:54 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
2025-02-13 20:24:27 +11:00
msgid "Current recipients:"
msgstr "Aktuelle Empfänger:"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/billing-plans.tsx
2025-02-21 15:53:23 +11:00
msgid "Daily"
2025-03-24 10:03:49 +00:00
msgstr "Täglich"
2025-02-21 15:53:23 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/app-command-menu.tsx
2024-08-27 20:34:39 +09:00
msgid "Dark Mode"
2024-09-18 10:43:43 +10:00
msgstr "Dunkelmodus"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-security-activity-table.tsx
#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/types.ts
#: packages/ui/primitives/document-flow/add-fields.tsx
2024-08-27 20:34:39 +09:00
msgid "Date"
2024-09-18 10:43:43 +10:00
msgstr "Datum"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx
2024-08-27 20:34:39 +09:00
msgid "Date created"
2024-09-18 10:43:43 +10:00
msgstr "Erstellungsdatum"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Date Format"
msgstr "Datumsformat"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-invitations.tsx
#: packages/email/templates/team-invite.tsx
2024-08-27 20:34:39 +09:00
msgid "Decline"
2024-09-18 10:43:43 +10:00
msgstr "Ablehnen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-invitations.tsx
2024-08-27 20:34:39 +09:00
msgid "Declined team invitation"
2024-09-18 10:43:43 +10:00
msgstr "Team-Einladung abgelehnt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Default Document Language"
2024-11-08 23:06:57 +11:00
msgstr "Standardsprache des Dokuments"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Default Document Visibility"
2024-11-08 23:06:57 +11:00
msgstr "Standard Sichtbarkeit des Dokuments"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
msgid "Default Signature Settings"
2025-03-24 10:03:49 +00:00
msgstr "Standard-Signatureinstellungen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "delete"
2024-11-01 15:22:51 +11:00
msgstr "löschen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx
#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Delete"
2024-09-18 10:43:43 +10:00
msgstr "Löschen"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: webhook.webhookUrl
#. placeholder {0}: token.name
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
msgid "delete {0}"
2024-11-01 15:22:51 +11:00
msgstr "löschen {0}"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
msgid "delete {teamName}"
2024-11-01 15:22:51 +11:00
msgstr "löschen {teamName}"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Delete account"
2024-09-18 10:43:43 +10:00
msgstr "Konto löschen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Delete Account"
2024-09-18 10:43:43 +10:00
msgstr "Konto löschen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Delete document"
2024-09-18 10:43:43 +10:00
msgstr "Dokument löschen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Delete Document"
2024-09-18 10:43:43 +10:00
msgstr "Dokument löschen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
2024-08-27 20:34:39 +09:00
msgid "Delete passkey"
2024-09-18 10:43:43 +10:00
msgstr "Passkey löschen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Delete team"
2024-09-18 10:43:43 +10:00
msgstr "Team löschen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Delete team member"
2024-09-18 10:43:43 +10:00
msgstr "Teammitglied löschen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Delete the document. This action is irreversible so proceed with caution."
2024-09-18 10:43:43 +10:00
msgstr "Löschen Sie das Dokument. Diese Aktion ist irreversibel, daher seien Sie vorsichtig."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Delete the users account and all its contents. This action is irreversible and will cancel their subscription, so proceed with caution."
2024-09-18 10:43:43 +10:00
msgstr "Löschen Sie das Benutzerkonto und seinen gesamten Inhalt. Diese Aktion ist irreversibel und wird das Abonnement kündigen, seien Sie also vorsichtig."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Delete Webhook"
2024-09-18 10:43:43 +10:00
msgstr "Webhook löschen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution."
2024-09-18 10:43:43 +10:00
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."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "Deleted"
2024-09-18 10:43:43 +10:00
msgstr "Gelöscht"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Deleting account..."
2024-09-18 10:43:43 +10:00
msgstr "Konto wird gelöscht..."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
2024-11-05 18:26:09 +09:00
msgid "Details"
2024-11-05 20:53:33 +11:00
msgstr "Einzelheiten"
2024-11-05 18:26:09 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/tables/settings-security-activity-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Device"
2024-09-18 10:43:43 +10:00
msgstr "Gerät"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/reset-password.tsx
msgid "Didn't request a password change? We are here to help you secure your account, just <0>contact us.</0>"
msgstr "Hast du keinen Passwortwechsel angefordert? Wir helfen dir, dein Konto abzusichern, kontaktiere uns einfach <0>hier.</0>"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
2024-08-27 20:34:39 +09:00
msgid "direct link"
2024-09-18 10:43:43 +10:00
msgstr "Direkter Link"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Direct link"
2024-09-18 10:43:43 +10:00
msgstr "Direkter Link"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
2024-11-05 17:37:05 +09:00
msgid "Direct Link"
2024-11-05 20:53:33 +11:00
msgstr "Direkter Link"
2024-11-05 17:37:05 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
2024-08-27 20:34:39 +09:00
msgid "direct link disabled"
2024-09-18 10:43:43 +10:00
msgstr "Direkter Link deaktiviert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Direct link receiver"
msgstr "Empfänger des direkten Links"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Direct Link Signing"
2024-09-18 10:43:43 +10:00
msgstr "Direkt-Link-Signatur"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Direct link signing has been disabled"
2024-09-18 10:43:43 +10:00
msgstr "Die direkte Links-Signatur wurde deaktiviert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Direct link signing has been enabled"
2024-09-18 10:43:43 +10:00
msgstr "Die direkte Links-Signatur wurde aktiviert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/templates-table.tsx
2024-08-27 20:34:39 +09:00
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."
2024-09-18 10:43:43 +10:00
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."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Direct template link deleted"
2024-09-18 10:43:43 +10:00
msgstr "Direkter Vorlagenlink gelöscht"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: quota.directTemplates
#. placeholder {1}: quota.directTemplates
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Direct template link usage exceeded ({0}/{1})"
2024-09-18 10:43:43 +10:00
msgstr "Die Verwendung des direkten Vorlagenlinks wurde überschritten ({0}/{1})"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Disable"
2024-09-18 10:43:43 +10:00
msgstr "Deaktivieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Disable 2FA"
2024-09-18 10:43:43 +10:00
msgstr "2FA deaktivieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
msgid "Disable account"
2025-01-02 10:36:05 +11:00
msgstr "Konto deaktivieren"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
msgid "Disable Account"
2025-01-02 10:36:05 +11:00
msgstr "Konto Deaktivieren"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Disable Two Factor Authentication before deleting your account."
2024-09-18 10:43:43 +10:00
msgstr "Deaktivieren Sie die Zwei-Faktor-Authentifizierung, bevor Sie Ihr Konto löschen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Disabled"
2024-09-18 10:43:43 +10:00
msgstr "Deaktiviert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Disabling direct link signing will prevent anyone from accessing the link."
2024-09-18 10:43:43 +10:00
msgstr "Das Deaktivieren der direkten Link-Signatur verhindert, dass jemand auf den Link zugreifen kann."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
msgid "Disabling the user results in the user not being able to use the account. It also disables all the related contents such as subscription, webhooks, teams, and API keys."
2025-01-02 10:36:05 +11:00
msgstr "Das Deaktivieren des Benutzers führt dazu, dass der Benutzer das Konto nicht mehr nutzen kann. Es werden auch alle zugehörigen Inhalte wie Abonnements, Webhooks, Teams und API-Schlüssel deaktiviert."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-email-usage.tsx
2024-08-27 20:34:39 +09:00
msgid "Display your name and email in documents"
2024-09-18 10:43:43 +10:00
msgstr "Zeigen Sie Ihren Namen und Ihre E-Mail in Dokumenten an"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-edit-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Distribute Document"
2024-11-08 23:06:57 +11:00
msgstr "Dokument verteilen"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Do you want to delete this template?"
2024-09-18 10:43:43 +10:00
msgstr "Möchten Sie diese Vorlage löschen?"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Do you want to duplicate this template?"
2024-09-18 10:43:43 +10:00
msgstr "Möchten Sie diese Vorlage duplizieren?"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Documenso will delete <0>all of your documents</0>, along with all of your completed documents, signatures, and all other resources belonging to your Account."
2024-09-18 10:43:43 +10:00
msgstr "Documenso wird <0>alle Ihre Dokumente</0> löschen, zusammen mit allen abgeschlossenen Dokumenten, Unterschriften und allen anderen Ressourcen, die zu Ihrem Konto gehören."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Document"
2024-09-18 10:43:43 +10:00
msgstr "Dokument"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: document.title
#. placeholder {1}: recipient.name
2025-02-26 21:48:06 +11:00
#: packages/lib/jobs/definitions/emails/send-rejection-emails.handler.ts
msgid "Document \"{0}\" - Rejected by {1}"
msgstr "Dokument \"{0}\" - Abgelehnt von {1}"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: document.title
2025-02-26 21:48:06 +11:00
#: packages/lib/jobs/definitions/emails/send-rejection-emails.handler.ts
msgid "Document \"{0}\" - Rejection Confirmed"
msgstr "Dokument \"{0}\" - Ablehnung Bestätigt"
#. placeholder {0}: document.title
#: packages/lib/jobs/definitions/emails/send-document-cancelled-emails.handler.ts
msgid "Document \"{0}\" Cancelled"
2025-03-24 10:03:49 +00:00
msgstr "Dokument „{0}“ abgebrochen"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
#: packages/ui/components/document/document-global-auth-access-select.tsx
msgid "Document access"
msgstr "Dokumentenzugriff"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "Document access auth updated"
msgstr "Die Authentifizierung für den Dokumentenzugriff wurde aktualisiert"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-status.tsx
2024-08-27 20:34:39 +09:00
msgid "Document All"
2024-09-18 10:43:43 +10:00
msgstr "Dokument Alle"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
2024-08-27 20:34:39 +09:00
msgid "Document Approved"
2024-09-18 10:43:43 +10:00
msgstr "Dokument genehmigt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: packages/lib/server-only/document/super-delete-document.ts
#: packages/lib/server-only/document/delete-document.ts
2024-08-27 20:34:39 +09:00
msgid "Document Cancelled"
msgstr "Dokument storniert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-status.tsx
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
2024-08-27 20:34:39 +09:00
msgid "Document completed"
2024-09-18 10:43:43 +10:00
msgstr "Dokument abgeschlossen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Document completed email"
msgstr "E-Mail zum Abschluss des Dokuments"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/embed/embed-document-completed.tsx
2024-09-04 23:13:00 +10:00
msgid "Document Completed!"
2024-09-18 10:43:43 +10:00
msgstr "Dokument abgeschlossen!"
2024-09-04 23:13:00 +10:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/lib/utils/document-audit-logs.ts
2024-08-27 20:34:39 +09:00
msgid "Document created"
2024-09-18 10:43:43 +10:00
msgstr "Dokument erstellt"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: document.user.name
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-recent-activity.tsx
2024-11-05 17:37:05 +09:00
msgid "Document created by <0>{0}</0>"
2024-11-05 20:53:33 +11:00
msgstr "Dokument erstellt von <0>{0}</0>"
2024-11-05 17:37:05 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/server-only/template/create-document-from-direct-template.ts
#: packages/email/templates/document-created-from-direct-template.tsx
msgid "Document created from direct template"
msgstr "Dokument erstellt aus direkter Vorlage"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-recent-activity.tsx
2024-11-05 17:37:05 +09:00
msgid "Document created using a <0>direct link</0>"
2024-11-05 20:53:33 +11:00
msgstr "Dokument erstellt mit einem <0>direkten Link</0>"
2024-11-05 17:37:05 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/template.ts
msgid "Document Creation"
msgstr "Dokumenterstellung"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
#: packages/lib/utils/document-audit-logs.ts
2024-08-27 20:34:39 +09:00
msgid "Document deleted"
2024-09-18 10:43:43 +10:00
msgstr "Dokument gelöscht"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Document deleted email"
msgstr "E-Mail zum Löschen des Dokuments"
2025-02-26 21:48:06 +11:00
#: packages/lib/server-only/document/send-delete-email.ts
msgid "Document Deleted!"
msgstr "Dokument gelöscht!"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Document Distribution Method"
msgstr "Verteilungsmethode für Dokumente"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-status.tsx
2024-08-27 20:34:39 +09:00
msgid "Document draft"
2024-09-18 10:43:43 +10:00
msgstr "Dokument-Entwurf"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Document Duplicated"
2024-09-18 10:43:43 +10:00
msgstr "Dokument dupliziert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "Document external ID updated"
msgstr "Externe ID des Dokuments aktualisiert"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx
#: apps/remix/app/components/general/document/document-history-sheet.tsx
2024-08-27 20:34:39 +09:00
msgid "Document history"
2024-09-18 10:43:43 +10:00
msgstr "Dokumentverlauf"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx
2024-08-27 20:34:39 +09:00
msgid "Document ID"
2024-09-18 10:43:43 +10:00
msgstr "Dokument-ID"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-status.tsx
2024-08-27 20:34:39 +09:00
msgid "Document inbox"
2024-09-18 10:43:43 +10:00
msgstr "Dokumenten-Posteingang"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/templates-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Document Limit Exceeded!"
2024-09-18 10:43:43 +10:00
msgstr "Dokumentenlimit überschritten!"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "Document metrics"
2024-09-18 10:43:43 +10:00
msgstr "Dokumentmetrik"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-move-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Document moved"
2024-09-18 10:43:43 +10:00
msgstr "Dokument verschoben"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "Document moved to team"
msgstr "Dokument ins Team verschoben"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
2024-08-27 20:34:39 +09:00
msgid "Document no longer available to sign"
2024-09-18 10:43:43 +10:00
msgstr "Dokument steht nicht mehr zur Unterschrift zur Verfügung"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "Document opened"
msgstr "Dokument geöffnet"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-status.tsx
2024-08-27 20:34:39 +09:00
msgid "Document pending"
2024-09-18 10:43:43 +10:00
msgstr "Dokument ausstehend"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Document pending email"
msgstr "E-Mail über ausstehende Dokumente"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Document preferences updated"
2024-11-08 23:06:57 +11:00
msgstr "Dokumentpräferenzen aktualisiert"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Document re-sent"
2024-09-18 10:43:43 +10:00
msgstr "Dokument erneut gesendet"
2024-08-27 20:34:39 +09:00
#: apps/remix/app/components/general/document/document-status.tsx
msgid "Document rejected"
2025-03-24 10:03:49 +00:00
msgstr "Dokument abgelehnt"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
#: packages/email/template-components/template-document-rejected.tsx
msgid "Document Rejected"
msgstr "Dokument Abgelehnt"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "Document resealed"
2024-09-18 10:43:43 +10:00
msgstr "Dokument wieder versiegelt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-edit-form.tsx
#: packages/lib/utils/document-audit-logs.ts
2024-08-27 20:34:39 +09:00
msgid "Document sent"
2024-09-18 10:43:43 +10:00
msgstr "Dokument gesendet"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
2024-08-27 20:34:39 +09:00
msgid "Document Signed"
2024-09-18 10:43:43 +10:00
msgstr "Dokument signiert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "Document signing auth updated"
msgstr "Dokument unterzeichnen Authentifizierung aktualisiert"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Document signing process will be cancelled"
2024-09-18 10:43:43 +10:00
msgstr "Der Dokumentenunterzeichnungsprozess wird abgebrochen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx
2024-08-27 20:34:39 +09:00
msgid "Document status"
2024-09-18 10:43:43 +10:00
msgstr "Dokumentenstatus"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx
2024-08-27 20:34:39 +09:00
msgid "Document title"
2024-09-18 10:43:43 +10:00
msgstr "Dokumenttitel"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "Document title updated"
msgstr "Dokumenttitel aktualisiert"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "Document updated"
msgstr "Dokument aktualisiert"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-upload.tsx
2024-08-27 20:34:39 +09:00
msgid "Document upload disabled due to unpaid invoices"
2024-09-18 10:43:43 +10:00
msgstr "Dokumenten-Upload deaktiviert aufgrund unbezahlter Rechnungen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-upload.tsx
2024-08-27 20:34:39 +09:00
msgid "Document uploaded"
2024-09-18 10:43:43 +10:00
msgstr "Dokument hochgeladen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
2024-08-27 20:34:39 +09:00
msgid "Document Viewed"
2024-09-18 10:43:43 +10:00
msgstr "Dokument angesehen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "Document visibility updated"
msgstr "Sichtbarkeit des Dokuments aktualisiert"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Document will be permanently deleted"
2024-09-18 10:43:43 +10:00
msgstr "Dokument wird dauerhaft gelöscht"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_profile+/p.$url.tsx
#: apps/remix/app/routes/_authenticated+/documents._index.tsx
#: apps/remix/app/routes/_authenticated+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
#: apps/remix/app/components/general/user-profile-timur.tsx
#: apps/remix/app/components/general/generic-error-layout.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/app-nav-desktop.tsx
#: apps/remix/app/components/general/app-command-menu.tsx
#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
2024-08-27 20:34:39 +09:00
msgid "Documents"
2024-09-18 10:43:43 +10:00
msgstr "Dokumente"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx
2024-11-05 17:37:05 +09:00
msgid "Documents created from template"
2024-11-05 20:53:33 +11:00
msgstr "Dokumente erstellt aus Vorlage"
2024-11-05 17:37:05 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "Documents Received"
2024-09-18 10:43:43 +10:00
msgstr "Dokumente empfangen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "Documents Viewed"
2024-09-18 10:43:43 +10:00
msgstr "Dokumente angesehen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "Don't have an account? <0>Sign up</0>"
2024-09-18 10:43:43 +10:00
msgstr "Haben Sie kein Konto? <0>Registrieren</0>"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/team-settings-billing-invoices-table.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-button.tsx
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
#: apps/remix/app/components/general/document/document-page-view-button.tsx
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
#: packages/ui/components/document/document-download-button.tsx
#: packages/email/template-components/template-document-completed.tsx
2024-08-27 20:34:39 +09:00
msgid "Download"
2024-09-18 10:43:43 +10:00
msgstr "Herunterladen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-audit-log-download-button.tsx
2024-08-27 20:34:39 +09:00
msgid "Download Audit Logs"
2024-09-18 10:43:43 +10:00
msgstr "Auditprotokolle herunterladen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-certificate-download-button.tsx
2024-08-27 20:34:39 +09:00
msgid "Download Certificate"
2024-09-18 10:43:43 +10:00
msgstr "Zertifikat herunterladen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
2025-02-13 20:24:27 +11:00
msgid "Download Template CSV"
msgstr "Vorlage CSV herunterladen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/general/document/document-status.tsx
#: packages/lib/constants/document.ts
2024-08-27 20:34:39 +09:00
msgid "Draft"
2024-09-18 10:43:43 +10:00
msgstr "Entwurf"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/app-command-menu.tsx
2024-08-27 20:34:39 +09:00
msgid "Draft documents"
2024-09-18 10:43:43 +10:00
msgstr "Entwurfdokumente"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "Drafted Documents"
2024-09-18 10:43:43 +10:00
msgstr "Entwurfte Dokumente"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-dropzone.tsx
msgid "Drag & drop your PDF here."
msgstr "Ziehen Sie Ihr PDF hierher."
#: packages/lib/constants/document.ts
msgid "Draw"
2025-03-24 10:03:49 +00:00
msgstr "Zeichnen"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
msgid "Dropdown"
msgstr "Dropdown"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
msgid "Dropdown options"
msgstr "Dropdown-Optionen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx
2024-08-27 20:34:39 +09:00
msgid "Due to an unpaid invoice, your team has been restricted. Please settle the payment to restore full access to your team."
2024-09-18 10:43:43 +10:00
msgstr "Aufgrund einer unbezahlten Rechnung wurde Ihrem Team der Zugriff eingeschränkt. Bitte begleichen Sie die Zahlung, um den vollumfänglichen Zugang zu Ihrem Team wiederherzustellen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Duplicate"
2024-09-18 10:43:43 +10:00
msgstr "Duplizieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx
#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-button.tsx
#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
#: apps/remix/app/components/general/document/document-page-view-button.tsx
2024-08-27 20:34:39 +09:00
msgid "Edit"
2024-09-18 10:43:43 +10:00
msgstr "Bearbeiten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx
2024-11-05 17:37:05 +09:00
msgid "Edit Template"
2024-11-05 20:53:33 +11:00
msgstr "Vorlage bearbeiten"
2024-11-05 17:37:05 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "Edit webhook"
2024-09-18 10:43:43 +10:00
msgstr "Webhook bearbeiten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Electronic Delivery of Documents"
2024-11-01 15:22:51 +11:00
msgstr "Elektronische Zustellung von Dokumenten"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Electronic Signature Disclosure"
2024-11-01 15:22:51 +11:00
msgstr "Offenlegung der elektronischen Unterschrift"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/direct-template/direct-template-configure-form.tsx
#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/profile.tsx
#: apps/remix/app/components/forms/forgot-password.tsx
#: apps/remix/app/components/embed/embed-document-signing-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/types.ts
#: packages/ui/primitives/document-flow/add-signers.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
#: packages/lib/constants/document.ts
2024-08-27 20:34:39 +09:00
msgid "Email"
2024-09-18 10:43:43 +10:00
msgstr "E-Mail"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/send-confirmation-email.tsx
#: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Email address"
2024-09-18 10:43:43 +10:00
msgstr "E-Mail-Adresse"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-08-27 20:34:39 +09:00
msgid "Email Address"
2024-09-18 10:43:43 +10:00
msgstr "E-Mail-Adresse"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
2025-02-13 20:24:27 +11:00
msgid "Email already confirmed"
2025-03-24 10:03:49 +00:00
msgstr "E-Mail bereits bestätigt"
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/direct-template/direct-template-configure-form.tsx
msgid "Email cannot already exist in the template"
2024-11-01 15:22:51 +11:00
msgstr "E-Mail darf nicht bereits in der Vorlage vorhanden sein"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "Email Confirmed!"
2024-09-18 10:43:43 +10:00
msgstr "E-Mail bestätigt!"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Email Options"
msgstr "E-Mail-Optionen"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "Email resent"
msgstr "E-Mail erneut gesendet"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "Email sent"
msgstr "E-Mail gesendet"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
2024-08-27 20:34:39 +09:00
msgid "Email sent!"
2024-09-18 10:43:43 +10:00
msgstr "E-Mail gesendet!"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Email verification has been removed"
2024-09-18 10:43:43 +10:00
msgstr "E-Mail-Verifizierung wurde entfernt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
2024-08-27 20:34:39 +09:00
msgid "Email verification has been resent"
2024-09-18 10:43:43 +10:00
msgstr "E-Mail-Verifizierung wurde erneut gesendet"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/add-fields.tsx
msgid "Empty field"
msgstr "Leeres Feld"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Enable 2FA"
2024-09-18 10:43:43 +10:00
msgstr "2FA aktivieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
msgid "Enable account"
2025-01-02 10:36:05 +11:00
msgstr "Konto aktivieren"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
msgid "Enable Account"
2025-01-02 10:36:05 +11:00
msgstr "Konto Aktivieren"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Enable Authenticator App"
2024-09-18 10:43:43 +10:00
msgstr "Authenticator-App aktivieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-branding-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Enable custom branding for all documents in this team."
2024-11-08 23:06:57 +11:00
msgstr "Aktivieren Sie individuelles Branding für alle Dokumente in diesem Team."
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: packages/lib/constants/template.ts
2024-08-27 20:34:39 +09:00
msgid "Enable Direct Link Signing"
msgstr "Direktlink-Signierung aktivieren"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Enable signing order"
msgstr "Aktiviere die Signaturreihenfolge"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Enabled"
2024-09-18 10:43:43 +10:00
msgstr "Aktiviert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
msgid "Enabling the account results in the user being able to use the account again, and all the related features such as webhooks, teams, and API keys for example."
2025-01-02 10:36:05 +11:00
msgstr "Das Aktivieren des Kontos führt dazu, dass der Benutzer das Konto wieder nutzen kann, sowie alle damit verbundenen Funktionen wie Webhooks, Teams und API-Schlüssel beispielsweise."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
2024-11-05 18:26:09 +09:00
msgid "Enclosed Document"
2024-11-05 20:53:33 +11:00
msgstr "Beigefügte Dokument"
2024-11-05 18:26:09 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/subscriptions.tsx
2024-08-27 20:34:39 +09:00
msgid "Ends On"
2024-09-18 10:43:43 +10:00
msgstr "Endet am"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-branding-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Enter your brand details"
2024-11-08 23:06:57 +11:00
msgstr "Geben Sie Ihre Markendaten ein"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/claim-account.tsx
2024-08-27 20:34:39 +09:00
msgid "Enter your email"
2024-09-18 10:43:43 +10:00
msgstr "Geben Sie Ihre E-Mail-Adresse ein"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/direct-template/direct-template-configure-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Enter your email address to receive the completed document."
2024-09-18 10:43:43 +10:00
msgstr "Geben Sie Ihre E-Mail-Adresse ein, um das abgeschlossene Dokument zu erhalten."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/claim-account.tsx
2024-08-27 20:34:39 +09:00
msgid "Enter your name"
2024-09-18 10:43:43 +10:00
msgstr "Geben Sie Ihren Namen ein"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
2024-08-27 20:34:39 +09:00
msgid "Enter your text here"
2024-09-18 10:43:43 +10:00
msgstr "Geben Sie hier Ihren Text ein"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
#: apps/remix/app/components/general/verify-email-banner.tsx
#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
#: apps/remix/app/components/general/document/document-upload.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/template-move-dialog.tsx
#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-dialog.tsx
#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
2024-08-27 20:34:39 +09:00
msgid "Error"
2024-09-18 10:43:43 +10:00
msgstr "Fehler"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Everyone can access and view the document"
2024-11-08 23:06:57 +11:00
msgstr "Jeder kann auf das Dokument zugreifen und es anzeigen"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
2024-08-27 20:34:39 +09:00
msgid "Everyone has signed"
2024-09-18 10:43:43 +10:00
msgstr "Alle haben unterschrieben"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
2024-08-27 20:34:39 +09:00
msgid "Everyone has signed! You will receive an Email copy of the signed document."
2024-09-18 10:43:43 +10:00
msgstr "Alle haben unterschrieben! Sie werden eine E-Mail-Kopie des unterzeichneten Dokuments erhalten."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Exceeded timeout"
2024-09-18 10:43:43 +10:00
msgstr "Zeitüberschreitung überschritten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Expired"
2024-09-18 10:43:43 +10:00
msgstr "Abgelaufen"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: i18n.date(token.expires, DateTime.DATETIME_FULL)
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx
msgid "Expires on {0}"
2024-11-01 12:37:54 +09:00
msgstr "Läuft ab am {0}"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "External ID"
msgstr "Externe ID"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "Failed to reseal document"
2024-09-18 10:43:43 +10:00
msgstr "Dokument konnte nicht erneut versiegelt werden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
msgid "Failed to save settings."
msgstr "Einstellungen konnten nicht gespeichert werden."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Failed to update recipient"
2024-09-18 10:43:43 +10:00
msgstr "Empfänger konnte nicht aktualisiert werden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "Failed to update webhook"
2024-09-18 10:43:43 +10:00
msgstr "Webhook konnte nicht aktualisiert werden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/bulk-send-complete.tsx
2025-02-13 20:24:27 +11:00
msgid "Failed: {failedCount}"
msgstr "Fehlgeschlagen: {failedCount}"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field character limit"
msgstr "Zeichenbeschränkung des Feldes"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx
msgid "Field font size"
msgstr "Feldschriftgröße"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Field format"
msgstr "Feldformat"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
2025-03-04 01:20:13 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Field label"
msgstr "Feldbeschriftung"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field placeholder"
msgstr "Feldplatzhalter"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
2025-02-13 20:24:27 +11:00
msgid "Field prefilled by assistant"
2025-03-24 10:03:49 +00:00
msgstr "Feld vorab ausgefüllt durch Assistenten"
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "Field signed"
msgstr "Feld unterschrieben"
2025-02-26 21:48:06 +11:00
#: packages/lib/utils/document-audit-logs.ts
msgid "Field unsigned"
msgstr "Feld nicht unterschrieben"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Fields"
2024-09-18 10:43:43 +10:00
msgstr "Felder"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-upload.tsx
2024-08-27 20:34:39 +09:00
msgid "File cannot be larger than {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
2024-09-18 10:43:43 +10:00
msgstr "Die Datei darf nicht größer als {APP_DOCUMENT_UPLOAD_SIZE_LIMIT} MB sein"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "File size exceeds the limit of {APP_DOCUMENT_UPLOAD_SIZE_LIMIT} MB"
2025-02-13 20:24:27 +11:00
msgstr "Dateigröße überschreitet das Limit von {APP_DOCUMENT_UPLOAD_SIZE_LIMIT} MB"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx
msgid "Font Size"
msgstr "Schriftgröße"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "For any questions regarding this disclosure, electronic signatures, or any related process, please contact us at: <0>{SUPPORT_EMAIL}</0>"
2024-11-01 15:22:51 +11:00
msgstr "Für Fragen zu dieser Offenlegung, elektronischen Unterschriften oder einem verwandten Verfahren kontaktieren Sie uns bitte unter: <0>{SUPPORT_EMAIL}</0>"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
2025-02-13 20:24:27 +11:00
msgid "For each recipient, provide their email (required) and name (optional) in separate columns. Download the template CSV below for the correct format."
msgstr "Für jeden Empfänger geben Sie dessen E-Mail (erforderlich) und Namen (optional) in separaten Spalten an. Laden Sie unten die CSV-Vorlage für das korrekte Format herunter."
2025-02-26 21:48:06 +11:00
#: packages/lib/server-only/auth/send-forgot-password.ts
msgid "Forgot Password?"
msgstr "Passwort vergessen?"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: apps/remix/app/components/forms/signin.tsx
#: packages/email/template-components/template-forgot-password.tsx
2024-08-27 20:34:39 +09:00
msgid "Forgot your password?"
msgstr "Hast du dein Passwort vergessen?"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/types.ts
msgid "Free Signature"
msgstr "Freie Unterschrift"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/profile.tsx
#: apps/remix/app/components/embed/embed-document-signing-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
2024-08-27 20:34:39 +09:00
msgid "Full Name"
2024-09-18 10:43:43 +10:00
msgstr "Vollständiger Name"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx
#: apps/remix/app/components/general/teams/team-settings-nav-desktop.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
2024-08-27 20:34:39 +09:00
msgid "General"
2024-09-18 10:43:43 +10:00
msgstr "Allgemein"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Generate Links"
msgstr "Links generieren"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-global-auth-action-select.tsx
msgid "Global recipient action authentication"
msgstr "Globale Empfängerauthentifizierung"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/_layout.tsx
#: apps/remix/app/routes/_profile+/_layout.tsx
#: apps/remix/app/components/general/generic-error-layout.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
2024-08-27 20:34:39 +09:00
msgid "Go Back"
2024-09-18 10:43:43 +10:00
msgstr "Zurück"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/verify-email._index.tsx
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "Go back home"
2024-09-18 10:43:43 +10:00
msgstr "Zurück nach Hause"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
2024-08-27 20:34:39 +09:00
msgid "Go Back Home"
2024-09-18 10:43:43 +10:00
msgstr "Zurück nach Hause"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "Go to owner"
2024-09-18 10:43:43 +10:00
msgstr "Zum Eigentümer gehen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_profile+/p.$url.tsx
2024-08-27 20:34:39 +09:00
msgid "Go to your <0>public profile settings</0> to add documents."
2024-09-18 10:43:43 +10:00
msgstr "Gehen Sie zu Ihren <0>öffentlichen Profileinstellungen</0>, um Dokumente hinzuzufügen."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/signature-pad/signature-pad-color-picker.tsx
msgid "Green"
msgstr "Grün"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-page-view.tsx
msgid "has invited you to approve this document"
2025-01-02 10:36:05 +11:00
msgstr "hat Sie eingeladen, dieses Dokument zu genehmigen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-page-view.tsx
2025-02-13 20:24:27 +11:00
msgid "has invited you to assist this document"
2025-03-24 10:03:49 +00:00
msgstr "hat dich eingeladen, bei diesem Dokument zu assistieren"
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-page-view.tsx
msgid "has invited you to sign this document"
2025-01-02 10:36:05 +11:00
msgstr "hat Sie eingeladen, dieses Dokument zu unterzeichnen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-page-view.tsx
msgid "has invited you to view this document"
2025-01-02 10:36:05 +11:00
msgstr "hat Sie eingeladen, dieses Dokument anzusehen"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
2025-02-13 20:24:27 +11:00
msgid "Having an assistant as the last signer means they will be unable to take any action as there are no subsequent signers to assist."
2025-03-24 10:03:49 +00:00
msgstr "Einen Assistenten als letzten Unterzeichner zu haben bedeutet, dass er keine Aktion vornehmen kann, da es keine nachfolgenden Unterzeichner gibt."
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/embed/embed-document-signing-page.tsx
2025-02-13 20:24:27 +11:00
msgid "Help complete the document for other signers."
2025-03-24 10:03:49 +00:00
msgstr "Hilfe beim Abschließen des Dokuments für andere Unterzeichner."
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/profile.tsx
2024-08-27 20:34:39 +09:00
msgid "Here you can edit your personal details."
2024-09-18 10:43:43 +10:00
msgstr "Hier können Sie Ihre persönlichen Daten bearbeiten."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Here you can manage your password and security settings."
2024-09-18 10:43:43 +10:00
msgstr "Hier können Sie Ihre Passwort- und Sicherheitseinstellungen verwalten."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Here you can set preferences and defaults for branding."
2024-11-08 23:06:57 +11:00
msgstr "Hier können Sie Präferenzen und Voreinstellungen für das Branding festlegen."
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Here you can set preferences and defaults for your team."
2024-11-08 23:06:57 +11:00
msgstr "Hier können Sie Präferenzen und Voreinstellungen für Ihr Team festlegen."
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Here's how it works:"
2024-09-18 10:43:43 +10:00
msgstr "So funktioniert es:"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/user-profile-timur.tsx
2024-08-27 20:34:39 +09:00
msgid "Hey Im Timur"
2024-09-18 10:43:43 +10:00
msgstr "Hey, ich bin Timur"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/bulk-send-complete.tsx
2025-02-13 20:24:27 +11:00
msgid "Hi {userName},"
msgstr "Hallo, {userName},"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/reset-password.tsx
msgid "Hi, {userName} <0>({userEmail})</0>"
msgstr "Hallo, {userName} <0>({userEmail})</0>"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Hide"
2024-09-18 10:43:43 +10:00
msgstr "Ausblenden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-history-sheet.tsx
2024-08-27 20:34:39 +09:00
msgid "Hide additional information"
2024-09-18 10:43:43 +10:00
msgstr "Zusätzliche Informationen ausblenden"
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
msgid "I am a signer of this document"
msgstr "Ich bin ein Unterzeichner dieses Dokuments"
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
msgid "I am a viewer of this document"
msgstr "Ich bin ein Betrachter dieses Dokuments"
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
msgid "I am an approver of this document"
msgstr "Ich bin ein Genehmiger dieses Dokuments"
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
2025-02-13 20:24:27 +11:00
msgid "I am an assistant of this document"
2025-03-24 10:03:49 +00:00
msgstr "Ich bin ein Assistent dieses Dokuments"
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
msgid "I am required to receive a copy of this document"
msgstr "Ich bin verpflichtet, eine Kopie dieses Dokuments zu erhalten"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
2024-11-05 18:26:09 +09:00
msgid "I am the owner of this document"
2024-11-05 20:53:33 +11:00
msgstr "Ich bin der Besitzer dieses Dokuments"
2024-11-05 18:26:09 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "I'm sure! Delete it"
2024-09-18 10:43:43 +10:00
msgstr "Ich bin mir sicher! Löschen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-transfer-status.tsx
2024-08-27 20:34:39 +09:00
msgid "If they accept this request, the team will be transferred to their account."
2024-09-18 10:43:43 +10:00
msgstr "Wenn sie diese Anfrage akzeptieren, wird das Team auf ihr Konto übertragen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "If you do not want to use the authenticator prompted, you can close it, which will then display the next available authenticator."
2024-09-18 10:43:43 +10:00
msgstr "Wenn Sie die angegebene Authentifizierung nicht verwenden möchten, können Sie sie schließen, wodurch die nächste verfügbare Authentifizierung angezeigt wird."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
2024-08-27 20:34:39 +09:00
msgid "If you don't find the confirmation link in your inbox, you can request a new one below."
2024-09-18 10:43:43 +10:00
msgstr "Wenn Sie den Bestätigungslink nicht in Ihrem Posteingang finden, können Sie unten einen neuen anfordern."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "If your authenticator app does not support QR codes, you can use the following code instead:"
2024-09-18 10:43:43 +10:00
msgstr "Wenn Ihre Authenticator-App keine QR-Codes unterstützt, können Sie stattdessen den folgenden Code verwenden:"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-status.tsx
2024-08-27 20:34:39 +09:00
msgid "Inbox"
2024-09-18 10:43:43 +10:00
msgstr "Posteingang"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/app-command-menu.tsx
2024-08-27 20:34:39 +09:00
msgid "Inbox documents"
2024-09-18 10:43:43 +10:00
msgstr "Posteingang Dokumente"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
msgid "Include the Signing Certificate in the Document"
2025-01-02 10:36:05 +11:00
msgstr "Signaturzertifikat in das Dokument einfügen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
2024-08-27 20:34:39 +09:00
msgid "Information"
2024-09-18 10:43:43 +10:00
msgstr "Information"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "Inherit authentication method"
msgstr "Authentifizierungsmethode erben"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
#: packages/ui/primitives/document-flow/types.ts
msgid "Initials"
msgstr "Initialen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Inserted"
2024-09-18 10:43:43 +10:00
msgstr "Eingefügt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "Instance Stats"
2024-09-18 10:43:43 +10:00
msgstr "Instanzstatistiken"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Invalid code. Please try again."
2024-09-18 10:43:43 +10:00
msgstr "Ungültiger Code. Bitte versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/add-signers.types.ts
msgid "Invalid email"
msgstr "Ungültige E-Mail"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.verify.transfer.token.tsx
#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "Invalid link"
2024-09-18 10:43:43 +10:00
msgstr "Ungültiger Link"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.invite.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/team.decline.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "Invalid token"
2024-09-18 10:43:43 +10:00
msgstr "Ungültiges Token"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/reset-password.tsx
2024-12-06 16:11:54 +09:00
msgid "Invalid token provided. Please try again."
2025-01-02 10:36:05 +11:00
msgstr "Ungültiges Token bereitgestellt. Bitte versuchen Sie es erneut."
2024-12-06 16:11:54 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.invite.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "Invitation accepted!"
2024-09-18 10:43:43 +10:00
msgstr "Einladung akzeptiert!"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.decline.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "Invitation declined"
2024-09-18 10:43:43 +10:00
msgstr "Einladung abgelehnt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/team-settings-member-invites-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Invitation has been deleted"
2024-09-18 10:43:43 +10:00
msgstr "Einladung wurde gelöscht"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/team-settings-member-invites-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Invitation has been resent"
2024-09-18 10:43:43 +10:00
msgstr "Einladung wurde erneut gesendet"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Invite"
2024-09-18 10:43:43 +10:00
msgstr "Einladen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Invite member"
2024-09-18 10:43:43 +10:00
msgstr "Mitglied einladen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Invite Members"
2024-09-18 10:43:43 +10:00
msgstr "Mitglieder einladen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Invite team members"
2024-09-18 10:43:43 +10:00
msgstr "Teammitglieder einladen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/team-settings-member-invites-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Invited At"
2024-09-18 10:43:43 +10:00
msgstr "Eingeladen am"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/team-settings-billing-invoices-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Invoice"
2024-09-18 10:43:43 +10:00
msgstr "Rechnung"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
2024-11-05 18:26:09 +09:00
msgid "IP Address"
2024-11-05 20:53:33 +11:00
msgstr "IP-Adresse"
2024-11-05 18:26:09 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "It is crucial to keep your contact information, especially your email address, up to date with us. Please notify us immediately of any changes to ensure that you continue to receive all necessary communications."
2024-11-01 15:22:51 +11:00
msgstr "Es ist entscheidend, dass Sie Ihre Kontaktinformationen, insbesondere Ihre E-Mail-Adresse, aktuell halten. Bitte informieren Sie uns sofort über Änderungen, damit Sie weiterhin alle notwendigen Mitteilungen erhalten."
2025-02-13 20:24:27 +11:00
#. placeholder {0}: publicProfile.name
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_profile+/p.$url.tsx
2024-08-27 20:34:39 +09:00
msgid "It looks like {0} hasn't added any documents to their profile yet."
2024-09-18 10:43:43 +10:00
msgstr "Es sieht so aus, als ob {0} noch keine Dokumente zu ihrem Profil hinzugefügt hat."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "It seems that the provided token has expired. We've just sent you another token, please check your email and try again."
2024-09-18 10:43:43 +10:00
msgstr "Es scheint, dass das bereitgestellte Token abgelaufen ist. Wir haben Ihnen gerade ein weiteres Token gesendet, bitte überprüfen Sie Ihre E-Mails und versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/verify-email._index.tsx
2024-08-27 20:34:39 +09:00
msgid "It seems that there is no token provided, if you are trying to verify your email please follow the link in your email."
2024-09-18 10:43:43 +10:00
msgstr "Es scheint, dass kein Token bereitgestellt wurde. Wenn Sie versuchen, Ihre E-Mail zu verifizieren, folgen Sie bitte dem Link in Ihrer E-Mail."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/embed/embed-document-waiting-for-turn.tsx
2025-02-13 20:24:27 +11:00
msgid "It's currently not your turn to sign. Please check back soon as this document should be available for you to sign shortly."
2025-03-24 10:03:49 +00:00
msgstr "Es ist momentan nicht Ihre Runde zum Unterschreiben. Bitte schauen Sie bald wieder vorbei, da dieses Dokument bald für Sie zum Unterschreiben verfügbar sein sollte."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
msgid "It's currently not your turn to sign. You will receive an email with instructions once it's your turn to sign the document."
2024-09-18 10:43:43 +10:00
msgstr "Es ist derzeit nicht deine Reihe zu unterschreiben. Du erhältst eine E-Mail mit Anweisungen, sobald es deine Reihe ist, das Dokument zu unterschreiben."
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-invite.tsx
msgid "Join {teamName} on Documenso"
msgstr "Tritt {teamName} auf Documenso bei"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
2025-03-04 01:20:13 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
2025-03-04 01:20:13 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Label"
msgstr "Beschriftung"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/menu-switcher.tsx
#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Language"
2024-09-18 10:43:43 +10:00
msgstr "Sprache"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/period-selector.tsx
2024-08-27 20:34:39 +09:00
msgid "Last 14 days"
2024-09-18 10:43:43 +10:00
msgstr "Die letzten 14 Tage"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/period-selector.tsx
2024-08-27 20:34:39 +09:00
msgid "Last 30 days"
2024-09-18 10:43:43 +10:00
msgstr "Die letzten 30 Tage"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/period-selector.tsx
2024-08-27 20:34:39 +09:00
msgid "Last 7 days"
2024-09-18 10:43:43 +10:00
msgstr "Die letzten 7 Tage"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
2024-08-27 20:34:39 +09:00
msgid "Last modified"
2024-09-18 10:43:43 +10:00
msgstr "Zuletzt geändert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx
2024-08-27 20:34:39 +09:00
msgid "Last updated"
2024-09-18 10:43:43 +10:00
msgstr "Zuletzt aktualisiert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
2024-11-05 18:26:09 +09:00
msgid "Last Updated"
2024-11-05 20:53:33 +11:00
msgstr "Zuletzt aktualisiert"
2024-11-05 18:26:09 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "Last updated at"
2024-09-18 10:43:43 +10:00
msgstr "Zuletzt aktualisiert am"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Last used"
2024-09-18 10:43:43 +10:00
msgstr "Zuletzt verwendet"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
msgid "Leaderboard"
2025-01-02 10:36:05 +11:00
msgstr "Bestenliste"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/user-settings-current-teams-table.tsx
#: apps/remix/app/components/dialogs/team-leave-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Leave"
2024-09-18 10:43:43 +10:00
msgstr "Verlassen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-leave-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Leave team"
2024-09-18 10:43:43 +10:00
msgstr "Team verlassen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Legality of Electronic Signatures"
2024-11-01 15:22:51 +11:00
msgstr "Rechtlichkeit elektronischer Unterschriften"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/app-command-menu.tsx
2024-08-27 20:34:39 +09:00
msgid "Light Mode"
2024-09-18 10:43:43 +10:00
msgstr "Lichtmodus"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_profile+/_layout.tsx
2024-08-27 20:34:39 +09:00
msgid "Like to have your own public profile with agreements?"
2024-09-18 10:43:43 +10:00
msgstr "Möchten Sie Ihr eigenes öffentliches Profil mit Vereinbarungen haben?"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-transfer-request.tsx
#: packages/email/templates/confirm-team-email.tsx
msgid "Link expires in 1 hour."
msgstr "Link läuft in 1 Stunde ab."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx
2024-08-27 20:34:39 +09:00
msgid "Link template"
2024-09-18 10:43:43 +10:00
msgstr "Vorlage verlinken"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-edit-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Links Generated"
2024-11-08 23:06:57 +11:00
msgstr "Links generiert"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: webhook.eventTriggers .map((trigger) => toFriendlyWebhookEventName(trigger)) .join(', ')
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Listening to {0}"
2024-09-18 10:43:43 +10:00
msgstr "Anhören von {0}"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
2024-08-27 20:34:39 +09:00
msgid "Load older activity"
2024-09-18 10:43:43 +10:00
msgstr "Ältere Aktivitäten laden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: packages/ui/primitives/pdf-viewer.tsx
2024-08-27 20:34:39 +09:00
msgid "Loading document..."
msgstr "Lade Dokument..."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Loading Document..."
2024-09-18 10:43:43 +10:00
msgstr "Dokument wird geladen..."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Loading teams..."
2024-09-18 10:43:43 +10:00
msgstr "Teams werden geladen..."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
2024-08-27 20:34:39 +09:00
msgid "Loading..."
2024-09-18 10:43:43 +10:00
msgstr "Wird geladen..."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
#: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx
2024-08-27 20:34:39 +09:00
msgid "Login"
2024-09-18 10:43:43 +10:00
msgstr "Anmelden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/user-settings-current-teams-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Manage"
2024-09-18 10:43:43 +10:00
msgstr "Verwalten"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: user?.name
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "Manage {0}'s profile"
2024-09-18 10:43:43 +10:00
msgstr "Verwalten Sie das Profil von {0}"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/teams.tsx
2024-08-27 20:34:39 +09:00
msgid "Manage all teams you are currently associated with."
2024-09-18 10:43:43 +10:00
msgstr "Verwalten Sie alle Teams, mit denen Sie derzeit verbunden sind."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx
2024-11-05 17:37:05 +09:00
msgid "Manage and view template"
2024-11-05 20:53:33 +11:00
msgstr "Vorlage verwalten und anzeigen"
2024-11-05 17:37:05 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
2025-02-21 15:53:23 +11:00
msgid "Manage billing"
2025-03-24 10:03:49 +00:00
msgstr "Rechnungsmanagement"
2025-02-21 15:53:23 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Manage details for this public template"
2024-09-18 10:43:43 +10:00
msgstr "Details für diese öffentliche Vorlage verwalten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog-wrapper.tsx
2024-08-27 20:34:39 +09:00
msgid "Manage Direct Link"
2024-09-18 10:43:43 +10:00
msgstr "Direktlink verwalten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Manage documents"
2024-09-18 10:43:43 +10:00
msgstr "Dokumente verwalten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Manage passkeys"
2024-09-18 10:43:43 +10:00
msgstr "Passkeys verwalten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-billing-portal-button.tsx
2024-08-27 20:34:39 +09:00
msgid "Manage subscription"
2024-09-18 10:43:43 +10:00
msgstr "Abonnement verwalten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/billing-portal-button.tsx
2025-02-21 15:53:23 +11:00
msgid "Manage Subscription"
2025-03-24 10:03:49 +00:00
msgstr "Abonnement verwalten"
2025-02-21 15:53:23 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/subscriptions.tsx
2024-08-27 20:34:39 +09:00
msgid "Manage subscriptions"
2024-09-18 10:43:43 +10:00
msgstr "Abonnements verwalten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx
2024-08-27 20:34:39 +09:00
msgid "Manage team subscription."
2024-09-18 10:43:43 +10:00
msgstr "Teamabonnement verwalten."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/menu-switcher.tsx
2024-08-27 20:34:39 +09:00
msgid "Manage teams"
2024-09-18 10:43:43 +10:00
msgstr "Teams verwalten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Manage the direct link signing for this template"
2024-09-18 10:43:43 +10:00
msgstr "Die direkte Linkunterzeichnung für diese Vorlage verwalten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
2024-08-27 20:34:39 +09:00
msgid "Manage the members or invite new members."
2024-09-18 10:43:43 +10:00
msgstr "Die Mitglieder verwalten oder neue Mitglieder einladen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/users._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Manage users"
2024-09-18 10:43:43 +10:00
msgstr "Benutzer verwalten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
2024-08-27 20:34:39 +09:00
msgid "Manage your passkeys."
2024-09-18 10:43:43 +10:00
msgstr "Verwalten Sie Ihre Passkeys."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
2024-08-27 20:34:39 +09:00
msgid "Manage your site settings here"
2024-09-18 10:43:43 +10:00
msgstr "Verwalten Sie hier Ihre Seiteneinstellungen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/teams.ts
msgid "Manager"
msgstr "Manager"
2025-03-08 01:21:29 +02:00
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Mark as viewed"
2025-03-24 10:03:49 +00:00
msgstr "Als gesehen markieren"
2025-03-08 01:21:29 +02:00
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Mark as Viewed"
2024-09-18 10:43:43 +10:00
msgstr "Als angesehen markieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "MAU (created document)"
2024-09-18 10:43:43 +10:00
msgstr "MAU (erstellt Dokument)"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "MAU (had document completed)"
2024-09-18 10:43:43 +10:00
msgstr "MAU (hat Dokument abgeschlossen)"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Max"
msgstr "Max"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
2025-02-13 20:24:27 +11:00
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
msgstr "Maximale Dateigröße: 4MB. Maximal 100 Zeilen pro Upload. Leere Werte verwenden die Vorlagenstandards."
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/teams.ts
msgid "Member"
msgstr "Mitglied"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/user-settings-current-teams-table.tsx
#: apps/remix/app/components/tables/team-settings-members-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Member Since"
2024-09-18 10:43:43 +10:00
msgstr "Mitglied seit"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
#: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx
#: apps/remix/app/components/general/teams/team-settings-nav-desktop.tsx
2024-08-27 20:34:39 +09:00
msgid "Members"
2024-09-18 10:43:43 +10:00
msgstr "Mitglieder"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Message <0>(Optional)</0>"
msgstr "Nachricht <0>(Optional)</0>"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Min"
msgstr "Min"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
2024-08-27 20:34:39 +09:00
msgid "Modify recipients"
2024-09-18 10:43:43 +10:00
msgstr "Empfänger ändern"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx
#: apps/remix/app/components/general/billing-plans.tsx
2024-08-27 20:34:39 +09:00
msgid "Monthly"
2024-09-18 10:43:43 +10:00
msgstr "Monatlich"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "Monthly Active Users: Users that created at least one Document"
2024-09-18 10:43:43 +10:00
msgstr "Monatlich aktive Benutzer: Benutzer, die mindestens ein Dokument erstellt haben"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "Monthly Active Users: Users that had at least one of their documents completed"
2024-09-18 10:43:43 +10:00
msgstr "Monatlich aktive Benutzer: Benutzer, die mindestens eines ihrer Dokumente abgeschlossen haben"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Move"
2024-09-18 10:43:43 +10:00
msgstr "Verschieben"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-move-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Move Document to Team"
2024-09-18 10:43:43 +10:00
msgstr "Dokument in Team verschieben"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-move-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Move Template to Team"
2024-09-18 10:43:43 +10:00
msgstr "Vorlage in Team verschieben"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
2024-08-27 20:34:39 +09:00
msgid "Move to Team"
2024-09-18 10:43:43 +10:00
msgstr "In Team verschieben"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Moving..."
2024-09-18 10:43:43 +10:00
msgstr "Verschieben..."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx
2024-08-27 20:34:39 +09:00
msgid "My templates"
2024-09-18 10:43:43 +10:00
msgstr "Meine Vorlagen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
#: apps/remix/app/components/tables/admin-leaderboard-table.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/types.ts
#: packages/ui/primitives/document-flow/add-signers.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
2024-08-27 20:34:39 +09:00
msgid "Name"
2024-09-18 10:43:43 +10:00
msgstr "Name"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
2024-08-27 20:34:39 +09:00
msgid "Need to sign documents?"
2024-09-18 10:43:43 +10:00
msgstr "Müssen Dokumente signieren?"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/components/recipient/recipient-role-select.tsx
msgid "Needs to approve"
msgstr "Muss genehmigen"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/recipient/recipient-role-select.tsx
msgid "Needs to sign"
msgstr "Muss unterzeichnen"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/recipient/recipient-role-select.tsx
msgid "Needs to view"
msgstr "Muss sehen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Never"
2024-09-18 10:43:43 +10:00
msgstr "Niemals"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
2024-08-27 20:34:39 +09:00
msgid "Never expire"
2024-09-18 10:43:43 +10:00
msgstr "Nie ablaufen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/password.tsx
2025-02-20 15:06:36 +11:00
msgid "New Password"
2025-03-24 10:03:49 +00:00
msgstr "Neues Passwort"
2025-02-20 15:06:36 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-transfer-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "New team owner"
2024-09-18 10:43:43 +10:00
msgstr "Neuer Teamowner"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-create-dialog.tsx
#: apps/remix/app/components/dialogs/template-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "New Template"
2024-09-18 10:43:43 +10:00
msgstr "Neue Vorlage"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/embed/embed-document-signing-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Next"
2024-09-18 10:43:43 +10:00
msgstr "Nächster"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Next field"
2024-09-18 10:43:43 +10:00
msgstr "Nächstes Feld"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
2024-08-27 20:34:39 +09:00
msgid "No active drafts"
2024-09-18 10:43:43 +10:00
msgstr "Keine aktiven Entwürfe"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
msgid "No further action is required from you at this time."
2024-11-18 08:40:25 +11:00
msgstr "Es sind derzeit keine weiteren Maßnahmen Ihrerseits erforderlich."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx
2024-08-27 20:34:39 +09:00
msgid "No payment required"
2024-09-18 10:43:43 +10:00
msgstr "Keine Zahlung erforderlich"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
2024-08-27 20:34:39 +09:00
msgid "No public profile templates found"
2024-09-18 10:43:43 +10:00
msgstr "Keine Vorlagen für das öffentliche Profil gefunden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
2024-08-27 20:34:39 +09:00
msgid "No recent activity"
2024-09-18 10:43:43 +10:00
msgstr "Keine aktuellen Aktivitäten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-recent-activity.tsx
2024-11-05 17:37:05 +09:00
msgid "No recent documents"
2024-11-05 20:53:33 +11:00
msgstr "Keine aktuellen Dokumente"
2024-11-05 17:37:05 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
msgid "No recipient matching this description was found."
msgstr "Kein passender Empfänger mit dieser Beschreibung gefunden."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
2024-08-27 20:34:39 +09:00
msgid "No recipients"
2024-09-18 10:43:43 +10:00
msgstr "Keine Empfänger"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
msgid "No recipients with this role"
msgstr "Keine Empfänger mit dieser Rolle"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-global-auth-action-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
#: packages/ui/components/document/document-global-auth-access-select.tsx
#: packages/ui/components/document/document-global-auth-access-select.tsx
msgid "No restrictions"
msgstr "Keine Einschränkungen"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/data-table.tsx
msgid "No results found"
msgstr "Keine Ergebnisse gefunden"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/app-command-menu.tsx
2024-08-27 20:34:39 +09:00
msgid "No results found."
2024-09-18 10:43:43 +10:00
msgstr "Keine Ergebnisse gefunden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/missing-signature-field-dialog.tsx
msgid "No signature field found"
msgstr "Kein Unterschriftsfeld gefunden"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "No valid direct templates found"
2024-09-18 10:43:43 +10:00
msgstr "Keine gültigen direkten Vorlagen gefunden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "No valid recipients found"
2024-09-18 10:43:43 +10:00
msgstr "Keine gültigen Empfänger gefunden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/webhook-multiselect-combobox.tsx
#: apps/remix/app/components/general/multiselect-role-combobox.tsx
#: packages/ui/primitives/multi-select-combobox.tsx
#: packages/ui/primitives/combobox.tsx
2024-08-27 20:34:39 +09:00
msgid "No value found."
2024-09-18 10:43:43 +10:00
msgstr "Kein Wert gefunden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
2024-08-27 20:34:39 +09:00
msgid "No worries, it happens! Enter your email and we'll email you a special link to reset your password."
2024-09-18 10:43:43 +10:00
msgstr "Keine Sorge, das passiert! Geben Sie Ihre E-Mail ein, und wir senden Ihnen einen speziellen Link zum Zurücksetzen Ihres Passworts."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/document.ts
msgid "None"
msgstr "Keine"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signin.tsx
2024-08-27 20:34:39 +09:00
msgid "Not supported"
2024-09-18 10:43:43 +10:00
msgstr "Nicht unterstützt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
2024-08-27 20:34:39 +09:00
msgid "Nothing to do"
2024-09-18 10:43:43 +10:00
msgstr "Nichts zu tun"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/types.ts
#: packages/ui/primitives/document-flow/add-fields.tsx
msgid "Number"
2024-09-18 10:43:43 +10:00
msgstr "Nummer"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Number format"
msgstr "Zahlenformat"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: document.team?.name
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-page-view.tsx
msgid "on behalf of \"{0}\" has invited you to approve this document"
2025-01-02 10:36:05 +11:00
msgstr "im Auftrag von \"{0}\" hat Sie eingeladen, dieses Dokument zu genehmigen"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: document.team?.name
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-page-view.tsx
2025-02-13 20:24:27 +11:00
msgid "on behalf of \"{0}\" has invited you to assist this document"
2025-03-24 10:03:49 +00:00
msgstr "im Namen von „{0}“ hat dich eingeladen, bei diesem Dokument zu assistieren"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: document.team?.name
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-page-view.tsx
msgid "on behalf of \"{0}\" has invited you to sign this document"
2025-01-02 10:36:05 +11:00
msgstr "im Auftrag von \"{0}\" hat Sie eingeladen, dieses Dokument zu unterzeichnen"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: document.team?.name
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-page-view.tsx
msgid "on behalf of \"{0}\" has invited you to view this document"
2025-01-02 10:36:05 +11:00
msgstr "im Auftrag von \"{0}\" hat Sie eingeladen, dieses Dokument anzusehen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "On this page, you can create a new webhook."
2024-09-18 10:43:43 +10:00
msgstr "Auf dieser Seite können Sie einen neuen Webhook erstellen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx
2025-02-21 15:53:23 +11:00
msgid "On this page, you can create and manage API tokens. See our <0>Documentation</0> for more information."
2025-03-24 10:03:49 +00:00
msgstr "Auf dieser Seite können Sie API-Token erstellen und verwalten. Weitere Informationen finden Sie in unserer <0>Dokumentation</0>."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx
2024-08-27 20:34:39 +09:00
msgid "On this page, you can create new Webhooks and manage the existing ones."
2024-09-18 10:43:43 +10:00
msgstr "Auf dieser Seite können Sie neue Webhooks erstellen und die vorhandenen verwalten."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "On this page, you can edit the webhook and its settings."
2024-09-18 10:43:43 +10:00
msgstr "Auf dieser Seite können Sie den Webhook und seine Einstellungen bearbeiten."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Once confirmed, the following will occur:"
2024-09-18 10:43:43 +10:00
msgstr "Sobald dies bestätigt ist, wird Folgendes geschehen:"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/template.ts
msgid "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."
msgstr "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."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Once you have scanned the QR code or entered the code manually, enter the code provided by your authenticator app below."
2024-09-18 10:43:43 +10:00
msgstr "Sobald Sie den QR-Code gescannt oder den Code manuell eingegeben haben, geben Sie den von Ihrer Authentifizierungs-App bereitgestellten Code unten ein."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/template.ts
msgid "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."
msgstr "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."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Only admins can access and view the document"
2024-11-08 23:06:57 +11:00
msgstr "Nur Administratoren können auf das Dokument zugreifen und es anzeigen"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Only managers and above can access and view the document"
2024-11-08 23:06:57 +11:00
msgstr "Nur Manager und darüber können auf das Dokument zugreifen und es anzeigen"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-12-06 16:11:54 +09:00
msgid "Only subscribers can have a username shorter than 6 characters"
2025-01-02 10:36:05 +11:00
msgstr "Nur Abonnenten können einen Benutzernamen mit weniger als 6 Zeichen haben"
2024-12-06 16:11:54 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_profile+/_layout.tsx
#: apps/remix/app/components/general/generic-error-layout.tsx
#: apps/remix/app/components/general/generic-error-layout.tsx
2024-08-27 20:34:39 +09:00
msgid "Oops! Something went wrong."
2024-09-18 10:43:43 +10:00
msgstr "Hoppla! Etwas ist schief gelaufen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
2024-08-27 20:34:39 +09:00
msgid "Opened"
2024-09-18 10:43:43 +10:00
msgstr "Geöffnet"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Or"
2024-09-18 10:43:43 +10:00
msgstr "Oder"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signin.tsx
2024-08-27 20:34:39 +09:00
msgid "Or continue with"
2024-09-18 10:43:43 +10:00
msgstr "Oder fahren Sie fort mit"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Otherwise, the document will be created as a draft."
2024-09-18 10:43:43 +10:00
msgstr "Andernfalls wird das Dokument als Entwurf erstellt."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
#: apps/remix/app/components/tables/user-settings-current-teams-table.tsx
#: apps/remix/app/components/tables/team-settings-members-table.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
2024-08-27 20:34:39 +09:00
msgid "Owner"
2024-09-18 10:43:43 +10:00
msgstr "Besitzer"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: table.getState().pagination.pageIndex + 1
#. placeholder {1}: table.getPageCount() || 1
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/data-table-pagination.tsx
msgid "Page {0} of {1}"
msgstr "Seite {0} von {1}"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: i + 1
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/pdf-viewer.tsx
msgid "Page {0} of {numPages}"
msgstr "Seite {0} von {numPages}"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/team-settings-billing-invoices-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Paid"
2024-09-18 10:43:43 +10:00
msgstr "Bezahlt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signin.tsx
2024-08-27 20:34:39 +09:00
msgid "Passkey"
2024-09-18 10:43:43 +10:00
msgstr "Passkey"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Passkey already exists for the provided authenticator"
2024-09-18 10:43:43 +10:00
msgstr "Passkey existiert bereits für den bereitgestellten Authentifikator"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Passkey creation cancelled due to one of the following reasons:"
2024-09-18 10:43:43 +10:00
msgstr "Die Erstellung der Passkey wurde aus einem der folgenden Gründe abgebrochen:"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
2024-08-27 20:34:39 +09:00
msgid "Passkey has been removed"
2024-09-18 10:43:43 +10:00
msgstr "Die Passkey wurde entfernt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
2024-08-27 20:34:39 +09:00
msgid "Passkey has been updated"
2024-09-18 10:43:43 +10:00
msgstr "Die Passkey wurde aktualisiert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Passkey name"
2024-09-18 10:43:43 +10:00
msgstr "Passkey-Name"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
2024-11-05 18:26:09 +09:00
msgid "Passkey Re-Authentication"
2024-11-05 20:53:33 +11:00
msgstr "Passwortwiederauthentifizierung"
2024-11-05 18:26:09 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Passkeys"
2024-09-18 10:43:43 +10:00
msgstr "Passkeys"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Passkeys allow you to sign in and authenticate using biometrics, password managers, etc."
2024-09-18 10:43:43 +10:00
msgstr "Passkeys ermöglichen das Anmelden und die Authentifizierung mit biometrischen Daten, Passwortmanagern usw."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signin.tsx
2024-08-27 20:34:39 +09:00
msgid "Passkeys are not supported on this browser"
2024-09-18 10:43:43 +10:00
msgstr "Passkeys werden von diesem Browser nicht unterstützt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/app-command-menu.tsx
#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/reset-password.tsx
2024-08-27 20:34:39 +09:00
msgid "Password"
2024-09-18 10:43:43 +10:00
msgstr "Passwort"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/forgot-password.tsx
msgid "Password Reset Requested"
msgstr "Passwortzurücksetzung angefordert"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/reset-password.tsx
msgid "Password Reset Successful"
msgstr "Passwort erfolgreich zurückgesetzt"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
2024-12-06 16:11:54 +09:00
msgid "Password should not be common or based on personal information"
2025-01-02 10:36:05 +11:00
msgstr "Das Passwort sollte nicht allgemein sein oder auf persönlichen Informationen basieren"
2024-12-06 16:11:54 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
2024-08-27 20:34:39 +09:00
msgid "Password updated"
2024-09-18 10:43:43 +10:00
msgstr "Passwort aktualisiert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-reset-password.tsx
msgid "Password updated!"
msgstr "Passwort aktualisiert!"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/user-settings-pending-teams-table-actions.tsx
2024-08-27 20:34:39 +09:00
msgid "Pay"
2024-09-18 10:43:43 +10:00
msgstr "Bezahle"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-checkout-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Payment is required to finalise the creation of your team."
2024-09-18 10:43:43 +10:00
msgstr "Zahlung ist erforderlich, um die Erstellung Ihres Teams abzuschließen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx
#: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx
2024-08-27 20:34:39 +09:00
msgid "Payment overdue"
2024-09-18 10:43:43 +10:00
msgstr "Zahlung überfällig"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
#: apps/remix/app/components/tables/user-settings-teams-page-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/general/document/document-status.tsx
#: apps/remix/app/components/general/document/document-read-only-fields.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: packages/lib/constants/document.ts
2024-08-27 20:34:39 +09:00
msgid "Pending"
2024-09-18 10:43:43 +10:00
msgstr "Ausstehend"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/document-pending.tsx
msgid "Pending Document"
msgstr "Ausstehendes Dokument"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/app-command-menu.tsx
2024-08-27 20:34:39 +09:00
msgid "Pending documents"
2024-09-18 10:43:43 +10:00
msgstr "Ausstehende Dokumente"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "Pending Documents"
2024-09-18 10:43:43 +10:00
msgstr "Ausstehende Dokumente"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-invitations.tsx
2024-08-27 20:34:39 +09:00
msgid "Pending invitations"
2024-09-18 10:43:43 +10:00
msgstr "Ausstehende Einladungen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/user-settings-pending-teams-table-actions.tsx
2024-08-27 20:34:39 +09:00
msgid "Pending team deleted."
2024-09-18 10:43:43 +10:00
msgstr "Ausstehendes Team gelöscht."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/menu-switcher.tsx
2024-08-27 20:34:39 +09:00
msgid "Personal"
2024-09-18 10:43:43 +10:00
msgstr "Persönlich"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/menu-switcher.tsx
2024-08-27 20:34:39 +09:00
msgid "Personal Account"
2024-09-18 10:43:43 +10:00
msgstr "Persönliches Konto"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Pick a number"
msgstr "Wählen Sie eine Zahl"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/claim-account.tsx
2024-08-27 20:34:39 +09:00
msgid "Pick a password"
2024-09-18 10:43:43 +10:00
msgstr "Wählen Sie ein Passwort"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/user-profile-timur.tsx
2024-08-27 20:34:39 +09:00
msgid "Pick any of the following agreements below and start signing to get started"
2024-09-18 10:43:43 +10:00
msgstr "Wählen Sie eine der folgenden Vereinbarungen aus und beginnen Sie das Signieren, um loszulegen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Placeholder"
msgstr "Platzhalter"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: _(actionVerb).toLowerCase()
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-invite.tsx
msgid "Please {0} your document<0/>\"{documentName}\""
msgstr "Bitte {0} dein Dokument<0/>\"{documentName}\""
2025-02-26 21:48:06 +11:00
#: packages/email/templates/document-invite.tsx
msgid "Please {action} your document {documentName}"
msgstr "Bitte {action} dein Dokument {documentName}"
2025-02-26 21:48:06 +11:00
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
msgid "Please {recipientActionVerb} this document"
msgstr "Bitte {recipientActionVerb} dieses Dokument"
2025-02-26 21:48:06 +11:00
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
msgid "Please {recipientActionVerb} this document created by your direct template"
msgstr "Bitte {recipientActionVerb} dieses Dokument, das von deiner direkten Vorlage erstellt wurde"
2025-02-26 21:48:06 +11:00
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
msgid "Please {recipientActionVerb} your document"
msgstr "Bitte {recipientActionVerb} dein Dokument"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Please check the CSV file and make sure it is according to our format"
2024-09-18 10:43:43 +10:00
msgstr "Bitte prüfen Sie die CSV-Datei und stellen Sie sicher, dass sie unserem Format entspricht"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/embed/embed-document-waiting-for-turn.tsx
2025-02-13 20:24:27 +11:00
msgid "Please check with the parent application for more information."
2025-03-24 10:03:49 +00:00
msgstr "Bitte überprüfen Sie bei der übergeordneten Anwendung weitere Informationen."
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
msgid "Please check your email for updates."
2024-09-18 10:43:43 +10:00
msgstr "Bitte überprüfe deine E-Mail auf Updates."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "Please choose your new password"
2024-09-18 10:43:43 +10:00
msgstr "Bitte wählen Sie Ihr neues Passwort"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/server-only/auth/send-confirmation-email.ts
msgid "Please confirm your email"
msgstr "Bitte bestätige deine E-Mail"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/confirm-email.tsx
msgid "Please confirm your email address"
msgstr "Bitte bestätige deine E-Mail-Adresse"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Please contact support if you would like to revert this action."
2024-09-18 10:43:43 +10:00
msgstr "Bitte kontaktieren Sie den Support, wenn Sie diese Aktion rückgängig machen möchten."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
2024-08-27 20:34:39 +09:00
msgid "Please enter a meaningful name for your token. This will help you identify it later."
2024-09-18 10:43:43 +10:00
msgstr "Bitte geben Sie einen aussagekräftigen Namen für Ihr Token ein. Dies wird Ihnen helfen, es später zu identifizieren."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/profile.tsx
2024-12-06 16:11:54 +09:00
msgid "Please enter a valid name."
2025-01-02 10:36:05 +11:00
msgstr "Bitte geben Sie einen gültigen Namen ein."
2024-12-06 16:11:54 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Please mark as viewed to complete"
2024-09-18 10:43:43 +10:00
msgstr "Bitte als angesehen markieren, um abzuschließen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Please note that proceeding will remove direct linking recipient and turn it into a placeholder."
2024-09-18 10:43:43 +10:00
msgstr "Bitte beachten Sie, dass das Fortfahren den direkten Linkempfänger entfernt und ihn in einen Platzhalter umwandelt."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Please note that this action is <0>irreversible</0>."
2024-09-18 10:43:43 +10:00
msgstr "Bitte beachten Sie, dass diese Aktion <0>irreversibel</0> ist."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Please note that this action is <0>irreversible</0>. Once confirmed, this document will be permanently deleted."
2024-09-18 10:43:43 +10:00
msgstr "Bitte beachten Sie, dass diese Aktion <0>irreversibel</0> ist. Nachdem dies bestätigt wurde, wird dieses Dokument dauerhaft gelöscht."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Please note that this action is irreversible. Once confirmed, your template will be permanently deleted."
2024-09-18 10:43:43 +10:00
msgstr "Bitte beachten Sie, dass diese Aktion irreversibel ist. Sobald sie bestätigt wird, wird Ihre Vorlage dauerhaft gelöscht."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Please note that this action is irreversible. Once confirmed, your token will be permanently deleted."
2024-09-18 10:43:43 +10:00
msgstr "Bitte beachten Sie, dass diese Aktion irreversibel ist. Sobald sie bestätigt wird, wird Ihr Token dauerhaft gelöscht."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Please note that this action is irreversible. Once confirmed, your webhook will be permanently deleted."
2024-09-18 10:43:43 +10:00
msgstr "Bitte beachten Sie, dass Sie den Zugriff auf alle Dokumente, die mit diesem Team verbunden sind, verlieren werden und alle Mitglieder entfernt und benachrichtigt werden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Please note that you will lose access to all documents associated with this team & all the members will be removed and notified"
2024-09-18 10:43:43 +10:00
msgstr "Bitte beachten Sie, dass Sie den Zugriff auf alle mit diesem Team verbundenen Dokumente verlieren werden und alle Mitglieder entfernt und benachrichtigt werden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Please provide a token from the authenticator, or a backup code. If you do not have a backup code available, please contact support."
2024-09-18 10:43:43 +10:00
msgstr "Bitte geben Sie ein Token von der Authentifizierungs-App oder einen Backup-Code an. Wenn Sie keinen Backup-Code haben, kontaktieren Sie bitte den Support."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Please provide a token from your authenticator, or a backup code."
2024-09-18 10:43:43 +10:00
msgstr "Bitte geben Sie ein Token von Ihrem Authentifizierer oder einen Backup-Code an."
2024-08-27 20:34:39 +09:00
2025-03-08 01:21:29 +02:00
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
msgid "Please review the document before approving."
2025-03-24 10:03:49 +00:00
msgstr "Bitte überprüfen Sie das Dokument, bevor Sie es genehmigen."
2025-03-08 01:21:29 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
msgid "Please review the document before signing."
2024-11-01 15:22:51 +11:00
msgstr "Bitte überprüfen Sie das Dokument vor der Unterzeichnung."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Please select a PDF file"
2025-02-13 20:24:27 +11:00
msgstr "Bitte wählen Sie eine PDF-Datei aus"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/send-confirmation-email.tsx
2024-08-27 20:34:39 +09:00
msgid "Please try again and make sure you enter the correct email address."
2024-09-18 10:43:43 +10:00
msgstr "Bitte versuchen Sie es erneut und stellen Sie sicher, dass Sie die korrekte E-Mail-Adresse eingeben."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Bitte versuchen Sie es später noch einmal."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/primitives/pdf-viewer.tsx
msgid "Please try again or contact our support."
msgstr "Bitte versuchen Sie es erneut oder kontaktieren Sie unseren Support."
2025-02-13 20:24:27 +11:00
#. placeholder {0}: `'${_(deleteMessage)}'`
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Please type {0} to confirm"
2025-01-02 10:36:05 +11:00
msgstr "Bitte {0} eingeben, um zu bestätigen"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: user.email
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Please type <0>{0}</0> to confirm."
2024-09-18 10:43:43 +10:00
msgstr "Bitte geben Sie <0>{0}</0> ein, um zu bestätigen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
2025-02-13 20:24:27 +11:00
msgid "Pre-formatted CSV template with example data."
msgstr "Vorformatiertes CSV-Template mit Beispieldaten."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/app-command-menu.tsx
#: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx
#: apps/remix/app/components/general/teams/team-settings-nav-desktop.tsx
2024-08-27 20:34:39 +09:00
msgid "Preferences"
2024-09-18 10:43:43 +10:00
msgstr "Einstellungen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Preview"
2024-11-08 23:06:57 +11:00
msgstr "Vorschau"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
2024-08-27 20:34:39 +09:00
msgid "Preview and configure template."
2024-09-18 10:43:43 +10:00
msgstr "Vorschau und Vorlagen konfigurieren."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
2024-08-27 20:34:39 +09:00
msgid "Private"
2024-09-18 10:43:43 +10:00
msgstr "Privat"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/templates-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Private templates can only be modified and viewed by you."
2024-09-18 10:43:43 +10:00
msgstr "Private Vorlagen können nur von Ihnen bearbeitet und angezeigt werden."
2024-08-27 20:34:39 +09:00
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
msgid "Proceed"
2025-03-24 10:03:49 +00:00
msgstr "Fortfahren"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/profile.tsx
#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/components/general/app-command-menu.tsx
2024-08-27 20:34:39 +09:00
msgid "Profile"
2024-09-18 10:43:43 +10:00
msgstr "Profil"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx
2024-08-27 20:34:39 +09:00
msgid "Profile is currently <0>hidden</0>."
2024-09-18 10:43:43 +10:00
msgstr "Profil ist derzeit <0>versteckt</0>."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx
2024-08-27 20:34:39 +09:00
msgid "Profile is currently <0>visible</0>."
2024-09-18 10:43:43 +10:00
msgstr "Profil ist derzeit <0>sichtbar</0>."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/forms/profile.tsx
2024-08-27 20:34:39 +09:00
msgid "Profile updated"
2024-09-18 10:43:43 +10:00
msgstr "Profil aktualisiert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
2024-08-27 20:34:39 +09:00
msgid "Public"
2024-09-18 10:43:43 +10:00
msgstr "Öffentlich"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx
#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx
#: apps/remix/app/components/general/teams/team-settings-nav-desktop.tsx
2024-08-27 20:34:39 +09:00
msgid "Public Profile"
2024-09-18 10:43:43 +10:00
msgstr "Öffentliches Profil"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/public-profile-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Public profile URL"
2024-09-18 10:43:43 +10:00
msgstr "Öffentlicher Profil-URL"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-08-27 20:34:39 +09:00
msgid "Public profile username"
2024-09-18 10:43:43 +10:00
msgstr "Öffentlicher Profil-Benutzername"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/templates-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Public templates are connected to your public profile. Any modifications to public templates will also appear in your public profile."
2024-09-18 10:43:43 +10:00
msgstr "Öffentliche Vorlagen sind mit Ihrem öffentlichen Profil verbunden. Änderungen an öffentlichen Vorlagen erscheinen auch in Ihrem öffentlichen Profil."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/types.ts
msgid "Radio"
msgstr "Radio"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
msgid "Radio values"
msgstr "Radio-Werte"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Read only"
msgstr "Nur lesen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
2024-08-27 20:34:39 +09:00
msgid "Read only field"
2024-09-18 10:43:43 +10:00
msgstr "Nur-Lese-Feld"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-disclosure.tsx
msgid "Read the full <0>signature disclosure</0>."
2024-11-01 15:22:51 +11:00
msgstr "Lesen Sie die vollständige <0>Offenlegung der Unterschrift</0>."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
2024-08-27 20:34:39 +09:00
msgid "Ready"
2024-09-18 10:43:43 +10:00
msgstr "Bereit"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
2024-11-05 18:26:09 +09:00
msgid "Reason"
2024-11-05 20:53:33 +11:00
msgstr "Grund"
2024-11-05 18:26:09 +09:00
#: packages/email/template-components/template-document-cancel.tsx
msgid "Reason for cancellation: {cancellationReason}"
2025-03-24 10:03:49 +00:00
msgstr "Stornierungsgrund: {cancellationReason}"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
2025-02-13 20:24:27 +11:00
msgid "Reason for rejection: "
2025-03-24 10:03:49 +00:00
msgstr "Grund für die Ablehnung: "
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-rejected.tsx
msgid "Reason for rejection: {rejectionReason}"
msgstr "Grund für die Ablehnung: {rejectionReason}"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
msgid "Reason must be less than 500 characters"
2024-11-18 08:40:25 +11:00
msgstr "Der Grund muss weniger als 500 Zeichen lang sein"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Reauthentication is required to sign this field"
2024-09-18 10:43:43 +10:00
msgstr "Eine erneute Authentifizierung ist erforderlich, um dieses Feld zu unterschreiben"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/components/recipient/recipient-role-select.tsx
msgid "Receives copy"
msgstr "Erhält Kopie"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
2024-08-27 20:34:39 +09:00
msgid "Recent activity"
2024-09-18 10:43:43 +10:00
msgstr "Aktuelle Aktivitäten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-recent-activity.tsx
2024-11-05 17:37:05 +09:00
msgid "Recent documents"
2024-11-05 20:53:33 +11:00
msgstr "Neueste Dokumente"
2024-11-05 17:37:05 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/documents-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
2024-08-27 20:34:39 +09:00
msgid "Recipient"
2024-09-18 10:43:43 +10:00
msgstr "Empfänger"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "Recipient action authentication"
msgstr "Empfängeraktion Authentifizierung"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Recipient removed email"
msgstr "E-Mail des entfernten Empfängers"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Recipient signed email"
2025-01-02 10:36:05 +11:00
msgstr "E-Mail über Empfänger-unterschrieben"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Recipient signing request email"
msgstr "E-Mail zur Unterzeichnungsanfrage des Empfängers"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Recipient updated"
2024-09-18 10:43:43 +10:00
msgstr "Empfänger aktualisiert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
2024-08-27 20:34:39 +09:00
msgid "Recipients"
2024-09-18 10:43:43 +10:00
msgstr "Empfänger"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "Recipients metrics"
2024-09-18 10:43:43 +10:00
msgstr "Empfängermetriken"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Recipients will still retain their copy of the document"
2024-09-18 10:43:43 +10:00
msgstr "Empfänger behalten weiterhin ihre Kopie des Dokuments"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/recovery-code-list.tsx
2024-08-27 20:34:39 +09:00
msgid "Recovery code copied"
2024-09-18 10:43:43 +10:00
msgstr "Wiederherstellungscode kopiert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Recovery codes"
2024-09-18 10:43:43 +10:00
msgstr "Wiederherstellungscodes"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/signature-pad/signature-pad-color-picker.tsx
msgid "Red"
msgstr "Rot"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Redirect URL"
msgstr "Weiterleitungs-URL"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
2024-08-27 20:34:39 +09:00
msgid "Registration Successful"
2024-09-18 10:43:43 +10:00
msgstr "Registrierung erfolgreich"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
#: packages/email/template-components/template-document-invite.tsx
msgid "Reject Document"
msgstr "Dokument Ablehnen"
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
#: apps/remix/app/components/general/document/document-status.tsx
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: packages/lib/constants/document.ts
msgid "Rejected"
2024-11-18 08:40:25 +11:00
msgstr "Abgelehnt"
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-rejection-confirmed.tsx
msgid "Rejection Confirmed"
msgstr "Ablehnung Bestätigt"
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-rejection-confirmed.tsx
msgid "Rejection reason: {reason}"
msgstr "Ablehnungsgrund: {reason}"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
2024-08-27 20:34:39 +09:00
msgid "Remembered your password? <0>Sign In</0>"
2024-09-18 10:43:43 +10:00
msgstr "Haben Sie Ihr Passwort vergessen? <0>Einloggen</0>"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: customEmail.subject
2025-02-26 21:48:06 +11:00
#: packages/lib/server-only/document/resend-document.tsx
msgid "Reminder: {0}"
msgstr "Erinnerung: {0}"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: document.team.name
2025-02-26 21:48:06 +11:00
#: packages/lib/server-only/document/resend-document.tsx
msgid "Reminder: {0} invited you to {recipientActionVerb} a document"
msgstr "Erinnerung: {0} hat dich eingeladen, ein Dokument {recipientActionVerb}"
2025-02-26 21:48:06 +11:00
#: packages/lib/server-only/document/resend-document.tsx
msgid "Reminder: Please {recipientActionVerb} this document"
msgstr "Erinnerung: Bitte {recipientActionVerb} dieses Dokument"
2025-02-26 21:48:06 +11:00
#: packages/lib/server-only/document/resend-document.tsx
msgid "Reminder: Please {recipientActionVerb} your document"
msgstr "Erinnerung: Bitte {recipientActionVerb} dein Dokument"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/user-settings-pending-teams-table-actions.tsx
#: apps/remix/app/components/tables/team-settings-members-table.tsx
#: apps/remix/app/components/tables/team-settings-member-invites-table.tsx
#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
#: apps/remix/app/components/forms/team-branding-preferences-form.tsx
#: apps/remix/app/components/forms/avatar-image.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
2024-08-27 20:34:39 +09:00
msgid "Remove"
2024-09-18 10:43:43 +10:00
msgstr "Entfernen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Remove team email"
2024-09-18 10:43:43 +10:00
msgstr "Team-E-Mail entfernen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/team-settings-members-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Remove team member"
2024-09-18 10:43:43 +10:00
msgstr "Teammitglied entfernen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx
2024-12-26 22:08:52 +11:00
msgid "Renews: {formattedDate}"
2025-01-02 10:36:05 +11:00
msgstr "Erneuert: {formattedDate}"
2024-12-26 22:08:52 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
2024-08-27 20:34:39 +09:00
msgid "Repeat Password"
2024-09-18 10:43:43 +10:00
msgstr "Passwort wiederholen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-transfer-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Request transfer"
2024-09-18 10:43:43 +10:00
msgstr "Übertragung anfordern"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Required field"
msgstr "Pflichtfeld"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "Reseal document"
2024-09-18 10:43:43 +10:00
msgstr "Dokument wieder versiegeln"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/team-settings-member-invites-table.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
2024-08-27 20:34:39 +09:00
msgid "Resend"
2024-09-18 10:43:43 +10:00
msgstr "Erneut senden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/verify-email-banner.tsx
2024-08-27 20:34:39 +09:00
msgid "Resend Confirmation Email"
2024-09-18 10:43:43 +10:00
msgstr "Bestätigungs-E-Mail erneut senden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
2024-08-27 20:34:39 +09:00
msgid "Resend verification"
2024-09-18 10:43:43 +10:00
msgstr "Bestätigung erneut senden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/forms/public-profile-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Reset"
2024-09-18 10:43:43 +10:00
msgstr "Zurücksetzen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/forgot-password.tsx
2024-08-27 20:34:39 +09:00
msgid "Reset email sent"
2024-09-18 10:43:43 +10:00
msgstr "Zurücksetzungs-E-Mail gesendet"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/forgot-password.tsx
#: packages/email/template-components/template-forgot-password.tsx
2024-08-27 20:34:39 +09:00
msgid "Reset Password"
2024-09-18 10:43:43 +10:00
msgstr "Passwort zurücksetzen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/reset-password.tsx
2024-08-27 20:34:39 +09:00
msgid "Resetting Password..."
2024-09-18 10:43:43 +10:00
msgstr "Passwort wird zurückgesetzt..."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx
2024-08-27 20:34:39 +09:00
msgid "Resolve"
2024-09-18 10:43:43 +10:00
msgstr "Zahlung klären"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx
2024-08-27 20:34:39 +09:00
msgid "Resolve payment"
2024-09-18 10:43:43 +10:00
msgstr "Zahlung klären"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-share-button.tsx
msgid "Rest assured, your document is strictly confidential and will never be shared. Only your signing experience will be highlighted. Share your personalized signing card to showcase your signature!"
msgstr "Seien Sie versichert, Ihr Dokument ist streng vertraulich und wird niemals geteilt. Nur Ihre Unterzeichnungserfahrung wird hervorgehoben. Teilen Sie Ihre personalisierte Unterschriftkarte, um Ihre Unterschrift zu präsentieren!"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Retention of Documents"
2024-11-01 15:22:51 +11:00
msgstr "Aufbewahrung von Dokumenten"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
2024-08-27 20:34:39 +09:00
msgid "Retry"
2024-09-18 10:43:43 +10:00
msgstr "Wiederholen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.verify.transfer.token.tsx
#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/team.invite.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/team.decline.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "Return"
2024-09-18 10:43:43 +10:00
msgstr "Zurück"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.decline.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "Return to Dashboard"
2024-09-18 10:43:43 +10:00
msgstr "Zurück zum Dashboard"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.decline.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "Return to Home"
2024-09-18 10:43:43 +10:00
msgstr "Zurück zur Startseite"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
2024-08-27 20:34:39 +09:00
msgid "Return to sign in"
2024-09-18 10:43:43 +10:00
msgstr "Zurück zur Anmeldung"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-email-usage.tsx
2024-08-27 20:34:39 +09:00
msgid "Revoke"
2024-09-18 10:43:43 +10:00
msgstr "Zugriff widerrufen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-email-usage.tsx
2024-08-27 20:34:39 +09:00
msgid "Revoke access"
2024-09-18 10:43:43 +10:00
msgstr "Zugriff widerrufen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/user-settings-current-teams-table.tsx
#: apps/remix/app/components/tables/team-settings-members-table.tsx
#: apps/remix/app/components/tables/team-settings-member-invites-table.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Role"
2024-09-18 10:43:43 +10:00
msgstr "Rolle"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Roles"
2024-09-18 10:43:43 +10:00
msgstr "Rollen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/data-table-pagination.tsx
msgid "Rows per page"
msgstr "Zeilen pro Seite"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
2024-08-27 20:34:39 +09:00
msgid "Save"
2024-09-18 10:43:43 +10:00
msgstr "Speichern"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Save Template"
msgstr "Vorlage speichern"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
#: apps/remix/app/components/tables/user-settings-teams-page-table.tsx
#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
#: apps/remix/app/components/general/app-nav-desktop.tsx
2024-08-27 20:34:39 +09:00
msgid "Search"
2024-09-18 10:43:43 +10:00
msgstr "Suchen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Search by document title"
2024-09-18 10:43:43 +10:00
msgstr "Nach Dokumenttitel suchen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/admin-leaderboard-table.tsx
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Search by name or email"
2024-09-18 10:43:43 +10:00
msgstr "Nach Name oder E-Mail suchen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-search.tsx
msgid "Search documents..."
2024-11-01 15:22:51 +11:00
msgstr "Dokumente suchen..."
2025-02-26 21:48:06 +11:00
#: packages/ui/components/common/language-switcher-dialog.tsx
msgid "Search languages..."
msgstr "Sprachen suchen..."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Secret"
2024-09-18 10:43:43 +10:00
msgstr "Geheim"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
2024-08-27 20:34:39 +09:00
msgid "Security"
2024-09-18 10:43:43 +10:00
msgstr "Sicherheit"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/security.activity.tsx
2024-08-27 20:34:39 +09:00
msgid "Security activity"
2024-09-18 10:43:43 +10:00
msgstr "Sicherheitsaktivität"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
#: packages/ui/primitives/document-flow/types.ts
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
2024-08-27 20:34:39 +09:00
msgid "Select"
2024-09-18 10:43:43 +10:00
msgstr "Auswählen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Select a team"
2024-09-18 10:43:43 +10:00
msgstr "Wählen Sie ein Team aus"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-move-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Select a team to move this document to. This action cannot be undone."
2024-09-18 10:43:43 +10:00
msgstr "Wählen Sie ein Team aus, um dieses Dokument dorthin zu verschieben. Diese Aktion kann nicht rückgängig gemacht werden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-move-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Select a team to move this template to. This action cannot be undone."
2024-09-18 10:43:43 +10:00
msgstr "Wählen Sie ein Team aus, um diese Vorlage dorthin zu verschieben. Diese Aktion kann nicht rückgängig gemacht werden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Select a template you'd like to display on your public profile"
2024-09-18 10:43:43 +10:00
msgstr "Wählen Sie eine Vorlage aus, die Sie in Ihrem öffentlichen Profil anzeigen möchten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Select a template you'd like to display on your team's public profile"
2024-09-18 10:43:43 +10:00
msgstr "Wählen Sie eine Vorlage aus, die Sie im öffentlichen Profil Ihres Teams anzeigen möchten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/combobox.tsx
msgid "Select an option"
msgstr "Option auswählen"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Select at least"
msgstr "Wählen Sie mindestens"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
msgid "Select default option"
msgstr "Standardoption auswählen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
2024-08-27 20:34:39 +09:00
msgid "Select passkey"
2024-09-18 10:43:43 +10:00
msgstr "Passkey auswählen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Send"
msgstr "Senden"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/send-confirmation-email.tsx
2024-08-27 20:34:39 +09:00
msgid "Send confirmation email"
2024-09-18 10:43:43 +10:00
msgstr "Bestätigungs-E-Mail senden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Send document"
2024-09-18 10:43:43 +10:00
msgstr "Dokument senden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send Document"
msgstr "Dokument senden"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Send document completed email"
msgstr "E-Mail über den Abschluss des Dokuments senden"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Send document completed email to the owner"
2025-01-02 10:36:05 +11:00
msgstr "E-Mail über den Abschluss des Dokuments an den Eigentümer senden"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Send document deleted email"
msgstr "E-Mail über das Löschen des Dokuments senden"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Send document pending email"
msgstr "E-Mail über ausstehende Dokumente senden"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/confirm-team-email.tsx
msgid "Send documents on behalf of the team using the email address"
msgstr "Dokumente im Namen des Teams über die E-Mail-Adresse senden"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
2025-02-13 20:24:27 +11:00
msgid "Send documents to recipients immediately"
msgstr "Dokumente sofort an Empfänger senden"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Send on Behalf of Team"
2024-11-08 23:06:57 +11:00
msgstr "Im Namen des Teams senden"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Send recipient removed email"
msgstr "E-Mail über entfernten Empfänger senden"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Send recipient signed email"
2025-01-02 10:36:05 +11:00
msgstr "E-Mail über Empfänger-unterschrieben senden"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Send recipient signing request email"
msgstr "E-Mail über Unterzeichnungsanfrage des Empfängers senden"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Send reminder"
2024-09-18 10:43:43 +10:00
msgstr "Erinnerung senden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/documents-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Sender"
2024-09-18 10:43:43 +10:00
msgstr "Absender"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/forgot-password.tsx
2024-08-27 20:34:39 +09:00
msgid "Sending Reset Email..."
2024-09-18 10:43:43 +10:00
msgstr "Zurücksetzungs-E-Mail wird gesendet..."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/verify-email-banner.tsx
2024-08-27 20:34:39 +09:00
msgid "Sending..."
2024-09-18 10:43:43 +10:00
msgstr "Senden..."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
2024-08-27 20:34:39 +09:00
msgid "Sent"
2024-09-18 10:43:43 +10:00
msgstr "Gesendet"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/claim-account.tsx
2024-08-27 20:34:39 +09:00
msgid "Set a password"
2024-09-18 10:43:43 +10:00
msgstr "Ein Passwort festlegen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/_layout.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/app-command-menu.tsx
#: apps/remix/app/components/general/app-command-menu.tsx
2024-08-27 20:34:39 +09:00
msgid "Settings"
2024-09-18 10:43:43 +10:00
msgstr "Einstellungen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
2024-08-27 20:34:39 +09:00
msgid "Setup"
2024-09-18 10:43:43 +10:00
msgstr "Einrichten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
2024-08-27 20:34:39 +09:00
msgid "Share"
2024-09-18 10:43:43 +10:00
msgstr "Teilen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-share-button.tsx
msgid "Share Signature Card"
msgstr "Unterschriftenkarte teilen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
2024-08-27 20:34:39 +09:00
msgid "Share Signing Card"
2024-09-18 10:43:43 +10:00
msgstr "Signaturkarte teilen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/template.ts
msgid "Share the Link"
msgstr "Link teilen"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-share-button.tsx
msgid "Share your signing experience!"
msgstr "Teilen Sie Ihre Unterzeichnungserfahrung!"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx
2024-08-27 20:34:39 +09:00
msgid "Show"
2024-09-18 10:43:43 +10:00
msgstr "Anzeigen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-history-sheet.tsx
2024-08-27 20:34:39 +09:00
msgid "Show additional information"
2024-09-18 10:43:43 +10:00
msgstr "Zusätzliche Informationen anzeigen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Show advanced settings"
msgstr "Erweiterte Einstellungen anzeigen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx
2024-08-27 20:34:39 +09:00
msgid "Show templates in your public profile for your audience to sign and get started quickly"
2024-09-18 10:43:43 +10:00
msgstr "Vorlagen in Ihrem öffentlichen Profil anzeigen, damit Ihre Zielgruppe unterschreiben und schnell loslegen kann"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx
2024-08-27 20:34:39 +09:00
msgid "Show templates in your team public profile for your audience to sign and get started quickly"
2024-09-18 10:43:43 +10:00
msgstr "Vorlagen in Ihrem Team-Öffentliches Profil anzeigen, damit Ihre Zielgruppe unterschreiben und schnell loslegen kann"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_profile+/p.$url.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-button.tsx
#: apps/remix/app/components/general/user-profile-timur.tsx
#: apps/remix/app/components/general/user-profile-skeleton.tsx
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
#: apps/remix/app/components/general/document/document-page-view-button.tsx
#: packages/lib/constants/recipient-roles.ts
2024-08-27 20:34:39 +09:00
msgid "Sign"
msgstr "Unterschreiben"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: recipient.name
#. placeholder {1}: recipient.email
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
2024-08-27 20:34:39 +09:00
msgid "Sign as {0} <0>({1})</0>"
2024-09-18 10:43:43 +10:00
msgstr "Unterzeichnen als {0} <0>({1})</0>"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: recipient.name
#. placeholder {1}: recipient.email
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
2024-08-27 20:34:39 +09:00
msgid "Sign as<0>{0} <1>({1})</1></0>"
2024-09-18 10:43:43 +10:00
msgstr "Unterzeichnen als<0>{0} <1>({1})</1></0>"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/embed/embed-document-signing-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
2024-09-04 23:13:00 +10:00
msgid "Sign document"
2024-09-18 10:43:43 +10:00
msgstr "Dokument unterschreiben"
2024-09-04 23:13:00 +10:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: packages/email/template-components/template-document-invite.tsx
msgid "Sign Document"
msgstr "Dokument signieren"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Sign field"
2024-09-18 10:43:43 +10:00
msgstr "Unterzeichnen-Feld"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-08-27 20:34:39 +09:00
msgid "Sign Here"
2024-09-18 10:43:43 +10:00
msgstr "Hier unterzeichnen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/signin.tsx
#: packages/email/template-components/template-reset-password.tsx
2024-08-27 20:34:39 +09:00
msgid "Sign In"
msgstr "Anmelden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/signin.tsx
2024-08-27 20:34:39 +09:00
msgid "Sign in to your account"
2024-09-18 10:43:43 +10:00
msgstr "Melden Sie sich bei Ihrem Konto an"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/menu-switcher.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
2024-08-27 20:34:39 +09:00
msgid "Sign Out"
2024-09-18 10:43:43 +10:00
msgstr "Ausloggen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/embed/embed-document-signing-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
2024-09-04 23:13:00 +10:00
msgid "Sign the document to complete the process."
2024-09-18 10:43:43 +10:00
msgstr "Unterschreiben Sie das Dokument, um den Vorgang abzuschließen."
2024-09-04 23:13:00 +10:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
2024-08-27 20:34:39 +09:00
msgid "Sign up"
2024-09-18 10:43:43 +10:00
msgstr "Registrieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-08-27 20:34:39 +09:00
msgid "Sign Up with Google"
2024-09-18 10:43:43 +10:00
msgstr "Registrieren mit Google"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-08-27 20:34:39 +09:00
msgid "Sign Up with OIDC"
2024-09-18 10:43:43 +10:00
msgstr "Registrieren mit OIDC"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
#: apps/remix/app/components/forms/profile.tsx
#: apps/remix/app/components/embed/embed-document-signing-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/types.ts
#: packages/ui/primitives/document-flow/field-icon.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
2024-08-27 20:34:39 +09:00
msgid "Signature"
2024-09-18 10:43:43 +10:00
msgstr "Unterschrift"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
2024-11-05 18:26:09 +09:00
msgid "Signature ID"
2024-11-05 20:53:33 +11:00
msgstr "Signatur-ID"
2024-11-05 18:26:09 +09:00
#: packages/ui/primitives/signature-pad/signature-pad-draw.tsx
msgid "Signature is too small"
2025-03-24 10:03:49 +00:00
msgstr "Signatur ist zu klein"
#: apps/remix/app/components/forms/profile.tsx
msgid "Signature Pad cannot be empty."
2025-03-24 10:03:49 +00:00
msgstr "Signaturfeld darf nicht leer sein."
#: packages/ui/components/document/document-signature-settings-tooltip.tsx
msgid "Signature types"
2025-03-24 10:03:49 +00:00
msgstr "Signaturtypen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "Signatures Collected"
2024-09-18 10:43:43 +10:00
msgstr "Gesammelte Unterschriften"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
2024-08-27 20:34:39 +09:00
msgid "Signatures will appear once the document has been completed"
2024-09-18 10:43:43 +10:00
msgstr "Unterschriften erscheinen, sobald das Dokument abgeschlossen ist"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-read-only-fields.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: packages/lib/constants/recipient-roles.ts
2024-08-27 20:34:39 +09:00
msgid "Signed"
2024-09-18 10:43:43 +10:00
msgstr "Unterzeichnet"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
msgid "Signer"
msgstr "Unterzeichner"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
2024-11-05 18:26:09 +09:00
msgid "Signer Events"
2024-11-05 20:53:33 +11:00
msgstr "Signer-Ereignisse"
2024-11-05 18:26:09 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
msgid "Signers"
msgstr "Unterzeichner"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/add-signers.types.ts
msgid "Signers must have unique emails"
msgstr "Unterzeichner müssen eindeutige E-Mails haben"
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
msgid "Signing"
msgstr "Unterzeichnung"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
2024-11-05 18:26:09 +09:00
msgid "Signing Certificate"
2024-11-05 20:53:33 +11:00
msgstr "Unterzeichnungszertifikat"
2024-11-05 18:26:09 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
2024-11-05 18:26:09 +09:00
msgid "Signing certificate provided by"
2024-11-05 20:53:33 +11:00
msgstr "Unterzeichnungszertifikat bereitgestellt von"
2024-11-05 18:26:09 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/server-only/document/send-completed-email.ts
#: packages/lib/server-only/document/send-completed-email.ts
msgid "Signing Complete!"
msgstr "Unterzeichnung abgeschlossen!"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/embed/embed-document-signing-page.tsx
2025-02-13 20:24:27 +11:00
msgid "Signing for"
2025-03-24 10:03:49 +00:00
msgstr "Unterzeichne für"
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/signin.tsx
2024-08-27 20:34:39 +09:00
msgid "Signing in..."
2024-09-18 10:43:43 +10:00
msgstr "Anmeldung..."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
2024-11-06 22:03:51 +09:00
msgid "Signing Links"
2024-11-08 23:06:57 +11:00
msgstr "Signierlinks"
2024-11-06 22:03:51 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-edit-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Signing links have been generated for this document."
2024-11-08 23:06:57 +11:00
msgstr "Unterzeichnungslinks wurden für dieses Dokument erstellt."
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
2025-02-13 20:24:27 +11:00
msgid "Signing order is enabled."
2025-03-24 10:03:49 +00:00
msgstr "Unterzeichnungsreihenfolge ist aktiviert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/leaderboard.tsx
#: apps/remix/app/components/tables/admin-leaderboard-table.tsx
msgid "Signing Volume"
2025-01-02 10:36:05 +11:00
msgstr "Unterzeichnungsvolumen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-12-06 16:11:54 +09:00
msgid "Signups are disabled."
2025-01-02 10:36:05 +11:00
msgstr "Registrierungen sind deaktiviert."
2024-12-06 16:11:54 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: DateTime.fromJSDate(publicProfile.badge.since).toFormat('LLL yy')
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_profile+/p.$url.tsx
2024-08-27 20:34:39 +09:00
msgid "Since {0}"
2024-09-18 10:43:43 +10:00
msgstr "Seit {0}"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
2024-08-27 20:34:39 +09:00
msgid "Site Banner"
2024-09-18 10:43:43 +10:00
msgstr "Website Banner"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
2024-08-27 20:34:39 +09:00
msgid "Site Settings"
2024-09-18 10:43:43 +10:00
msgstr "Website Einstellungen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/missing-signature-field-dialog.tsx
msgid "Some signers have not been assigned a signature field. Please assign at least 1 signature field to each signer before proceeding."
msgstr "Einige Unterzeichner haben noch kein Unterschriftsfeld zugewiesen bekommen. Bitte weisen Sie jedem Unterzeichner mindestens ein Unterschriftsfeld zu, bevor Sie fortfahren."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx
#: apps/remix/app/components/tables/user-settings-pending-teams-table-actions.tsx
#: apps/remix/app/components/tables/team-settings-member-invites-table.tsx
#: apps/remix/app/components/tables/team-settings-member-invites-table.tsx
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-button.tsx
#: apps/remix/app/components/general/billing-portal-button.tsx
#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx
#: apps/remix/app/components/general/teams/team-invitations.tsx
#: apps/remix/app/components/general/teams/team-invitations.tsx
#: apps/remix/app/components/general/teams/team-email-usage.tsx
#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
#: apps/remix/app/components/general/teams/team-billing-portal-button.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
#: apps/remix/app/components/general/document/document-page-view-button.tsx
#: apps/remix/app/components/general/document/document-certificate-download-button.tsx
#: apps/remix/app/components/general/document/document-audit-log-download-button.tsx
#: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx
#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
#: apps/remix/app/components/forms/team-branding-preferences-form.tsx
#: apps/remix/app/components/embed/embed-document-signing-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
#: apps/remix/app/components/dialogs/template-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-checkout-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-checkout-create-dialog.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: packages/ui/components/document/document-share-button.tsx
2024-08-27 20:34:39 +09:00
msgid "Something went wrong"
msgstr "Etwas ist schief gelaufen"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: data.teamName
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.verify.transfer.token.tsx
2024-08-27 20:34:39 +09:00
msgid "Something went wrong while attempting to transfer the ownership of team <0>{0}</0> to your. Please try again later or contact support."
2024-09-18 10:43:43 +10:00
msgstr "Etwas ist schiefgelaufen beim Versuch, das Eigentum des Teams <0>{0}</0> auf Ihre zu übertragen. Bitte versuchen Sie es später erneut oder kontaktieren Sie den Support."
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: data.teamName
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "Something went wrong while attempting to verify your email address for <0>{0}</0>. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Etwas ist schiefgelaufen beim Versuch, Ihre E-Mail-Adresse für <0>{0}</0> zu bestätigen. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/primitives/pdf-viewer.tsx
msgid "Something went wrong while loading the document."
msgstr "Beim Laden des Dokuments ist ein Fehler aufgetreten."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
2024-08-27 20:34:39 +09:00
msgid "Something went wrong while loading your passkeys."
2024-09-18 10:43:43 +10:00
msgstr "Etwas ist schiefgelaufen beim Laden Ihrer Passkeys."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/verify-email-banner.tsx
2024-08-27 20:34:39 +09:00
msgid "Something went wrong while sending the confirmation email."
2024-09-18 10:43:43 +10:00
msgstr "Etwas ist schiefgelaufen beim Senden der Bestätigungs-E-Mail."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Something went wrong while updating the team billing subscription, please contact support."
2024-09-18 10:43:43 +10:00
msgstr "Etwas ist schiefgelaufen beim Aktualisieren des Abonnements für die Team-Zahlung. Bitte kontaktieren Sie den Support."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Something went wrong!"
2024-11-08 23:06:57 +11:00
msgstr "Etwas ist schiefgelaufen!"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/data-table.tsx
msgid "Something went wrong."
msgstr "Etwas ist schief gelaufen."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
msgid "Something went wrong. Please try again later."
2025-02-13 20:24:27 +11:00
msgstr "Etwas ist schiefgelaufen. Bitte versuchen Sie es später noch einmal."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Something went wrong. Please try again or contact support."
2024-09-18 10:43:43 +10:00
msgstr "Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut oder kontaktieren Sie den Support."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-audit-log-download-button.tsx
2024-08-27 20:34:39 +09:00
msgid "Sorry, we were unable to download the audit logs. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Entschuldigung, wir konnten die Prüfprotokolle nicht herunterladen. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-certificate-download-button.tsx
2024-08-27 20:34:39 +09:00
msgid "Sorry, we were unable to download the certificate. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Entschuldigung, wir konnten das Zertifikat nicht herunterladen. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
2024-11-05 17:37:05 +09:00
msgid "Source"
2024-11-05 20:53:33 +11:00
msgstr "Quelle"
2024-11-05 17:37:05 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
2024-08-27 20:34:39 +09:00
msgid "Stats"
2024-09-18 10:43:43 +10:00
msgstr "Statistiken"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: apps/remix/app/routes/_authenticated+/admin+/subscriptions.tsx
#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
#: apps/remix/app/components/tables/team-settings-billing-invoices-table.tsx
#: apps/remix/app/components/tables/documents-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Status"
2024-09-18 10:43:43 +10:00
msgstr "Status"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Step <0>{step} of {maxStep}</0>"
msgstr "Schritt <0>{step} von {maxStep}</0>"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Subject <0>(Optional)</0>"
msgstr "Betreff <0>(Optional)</0>"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
2025-02-13 20:24:27 +11:00
msgid "Submitting..."
2025-03-24 10:03:49 +00:00
msgstr "Wird übermittelt..."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/billing-plans.tsx
2025-02-21 15:53:23 +11:00
msgid "Subscribe"
2025-03-24 10:03:49 +00:00
msgstr "Abonnieren"
2025-02-21 15:53:23 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Subscription"
2024-09-18 10:43:43 +10:00
msgstr "Abonnement"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
2024-08-27 20:34:39 +09:00
msgid "Subscriptions"
2024-09-18 10:43:43 +10:00
msgstr "Abonnements"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
#: apps/remix/app/components/tables/user-settings-pending-teams-table-actions.tsx
#: apps/remix/app/components/tables/team-settings-member-invites-table.tsx
#: apps/remix/app/components/tables/team-settings-member-invites-table.tsx
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
#: apps/remix/app/components/general/verify-email-banner.tsx
#: apps/remix/app/components/general/teams/team-transfer-status.tsx
#: apps/remix/app/components/general/teams/team-invitations.tsx
#: apps/remix/app/components/general/teams/team-invitations.tsx
#: apps/remix/app/components/general/teams/team-email-usage.tsx
#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
#: apps/remix/app/components/dialogs/team-transfer-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-leave-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Success"
2024-09-18 10:43:43 +10:00
msgstr "Erfolg"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Successfully created passkey"
2024-09-18 10:43:43 +10:00
msgstr "Passkey erfolgreich erstellt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/bulk-send-complete.tsx
2025-02-13 20:24:27 +11:00
msgid "Successfully created: {successCount}"
msgstr "Erfolgreich erstellt: {successCount}"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/bulk-send-complete.tsx
2025-02-13 20:24:27 +11:00
msgid "Summary:"
msgstr "Zusammenfassung:"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "System Requirements"
2024-11-01 15:22:51 +11:00
msgstr "Systemanforderungen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/app-command-menu.tsx
2024-08-27 20:34:39 +09:00
msgid "System Theme"
2024-09-18 10:43:43 +10:00
msgstr "Systemthema"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/user-settings-pending-teams-table.tsx
#: apps/remix/app/components/tables/user-settings-current-teams-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Team"
2024-09-18 10:43:43 +10:00
msgstr "Team"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: team.name
2025-02-26 21:48:06 +11:00
#: packages/lib/server-only/team/delete-team.ts
msgid "Team \"{0}\" has been deleted on Documenso"
msgstr "Team \"{0}\" wurde auf Documenso gelöscht"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-checkout-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Team checkout"
2024-09-18 10:43:43 +10:00
msgstr "Teameinkaufs-Prüfung"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Team email"
2024-09-18 10:43:43 +10:00
msgstr "Team E-Mail"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-email-usage.tsx
2024-08-27 20:34:39 +09:00
msgid "Team Email"
2024-09-18 10:43:43 +10:00
msgstr "Team-E-Mail"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "Team email already verified!"
2024-09-18 10:43:43 +10:00
msgstr "Team-E-Mail bereits verifiziert!"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Team email has been removed"
2024-09-18 10:43:43 +10:00
msgstr "Team-E-Mail wurde entfernt"
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: team.name
2025-02-26 21:48:06 +11:00
#: packages/lib/server-only/team/delete-team-email.ts
msgid "Team email has been revoked for {0}"
msgstr "Team-E-Mail wurde für {0} widerrufen"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-email-removed.tsx
msgid "Team email removed"
msgstr "Team-E-Mail entfernt"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-email-removed.tsx
msgid "Team email removed for {teamName} on Documenso"
msgstr "Team-E-Mail für {teamName} auf Documenso entfernt"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "Team email verification"
2024-09-18 10:43:43 +10:00
msgstr "Team-E-Mail-Verifizierung"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "Team email verified!"
2024-09-18 10:43:43 +10:00
msgstr "Team-E-Mail verifiziert!"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Team email was updated."
2024-09-18 10:43:43 +10:00
msgstr "Team-E-Mail wurde aktualisiert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.invite.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/team.decline.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "Team invitation"
2024-09-18 10:43:43 +10:00
msgstr "Teameinladung"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Team invitations have been sent."
2024-09-18 10:43:43 +10:00
msgstr "Teameinladungen wurden gesendet."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/team-settings-members-table.tsx
#: apps/remix/app/components/tables/team-settings-member-invites-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Team Member"
2024-09-18 10:43:43 +10:00
msgstr "Teammitglied"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Team Name"
2024-09-18 10:43:43 +10:00
msgstr "Teamname"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/_layout.tsx
2025-02-17 22:46:36 +11:00
msgid "Team not found"
2025-03-24 10:03:49 +00:00
msgstr "Team nicht gefunden"
2025-02-17 22:46:36 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/templates-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Team Only"
2024-09-18 10:43:43 +10:00
msgstr "Nur Team"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/templates-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Team only templates are not linked anywhere and are visible only to your team."
2024-09-18 10:43:43 +10:00
msgstr "Nur Teamvorlagen sind nirgendwo verlinkt und nur für Ihr Team sichtbar."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.verify.transfer.token.tsx
2024-08-27 20:34:39 +09:00
msgid "Team ownership transfer"
2024-09-18 10:43:43 +10:00
msgstr "Team-Eigentumsübertragung"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.verify.transfer.token.tsx
msgid "Team ownership transfer already completed!"
2024-09-18 10:43:43 +10:00
msgstr "Team-Eigentumsübertragung bereits abgeschlossen!"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.verify.transfer.token.tsx
2024-08-27 20:34:39 +09:00
msgid "Team ownership transferred!"
2024-09-18 10:43:43 +10:00
msgstr "Team-Eigentum übertragen!"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Team Preferences"
2024-11-08 23:06:57 +11:00
msgstr "Teampräferenzen"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx
2024-08-27 20:34:39 +09:00
msgid "Team Public Profile"
2024-09-18 10:43:43 +10:00
msgstr "Öffentliches Profil des Teams"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/menu-switcher.tsx
2024-08-27 20:34:39 +09:00
msgid "Team settings"
2024-09-18 10:43:43 +10:00
msgstr "Teameinstellungen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
2024-08-27 20:34:39 +09:00
msgid "Team Settings"
2024-09-18 10:43:43 +10:00
msgstr "Team-Einstellungen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx
2024-08-27 20:34:39 +09:00
msgid "Team templates"
2024-09-18 10:43:43 +10:00
msgstr "Teamvorlagen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-transfer-status.tsx
2024-08-27 20:34:39 +09:00
msgid "Team transfer in progress"
2024-09-18 10:43:43 +10:00
msgstr "Teamübertragung im Gange"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-transfer-status.tsx
2024-08-27 20:34:39 +09:00
msgid "Team transfer request expired"
2024-09-18 10:43:43 +10:00
msgstr "Der Antrag auf Teamübertragung ist abgelaufen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Team URL"
2024-09-18 10:43:43 +10:00
msgstr "Team-URL"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/teams.tsx
#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
2024-08-27 20:34:39 +09:00
msgid "Teams"
2024-09-18 10:43:43 +10:00
msgstr "Teams"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx
2024-08-27 20:34:39 +09:00
msgid "Teams restricted"
msgstr "Teams beschränkt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/templates.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Template"
msgstr "Vorlage"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Template deleted"
msgstr "Vorlage gelöscht"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Template document uploaded"
msgstr "Vorlagendokument hochgeladen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Template duplicated"
msgstr "Vorlage dupliziert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Template has been removed from your public profile."
msgstr "Vorlage ist von Deinem öffentlichen Profil entfernt worden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Template has been updated."
msgstr "Vorlage wurde aktualisiert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-move-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Template moved"
msgstr "Vorlage verschoben"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-move-dialog.tsx
2024-12-26 22:08:52 +11:00
msgid "Template not found or already associated with a team."
2025-01-02 10:36:05 +11:00
msgstr "Vorlage nicht gefunden oder bereits mit einem Team verknüpft."
2024-12-26 22:08:52 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-edit-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Template saved"
msgstr "Vorlage gespeichert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Template title"
msgstr "Vorlagentitel"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/templates._index.tsx
#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/app-nav-desktop.tsx
#: apps/remix/app/components/general/app-command-menu.tsx
2024-08-27 20:34:39 +09:00
msgid "Templates"
msgstr "Vorlagen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Templates allow you to quickly generate documents with pre-filled recipients and fields."
msgstr "Vorlagen erlauben dir das schnelle Erstlelen von Dokumenten mit vorausgefüllten Empfängern und Feldern."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/types.ts
#: packages/ui/primitives/document-flow/add-fields.tsx
msgid "Text"
2024-09-18 10:43:43 +10:00
msgstr "Text"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx
2025-02-13 20:24:27 +11:00
msgid "Text Align"
msgstr "Textausrichtung"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
2024-08-27 20:34:39 +09:00
msgid "Text Color"
msgstr "Textfarbe"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Thank you for using Documenso to perform your electronic document signing. The purpose of this disclosure is to inform you about the process, legality, and your rights regarding the use of electronic signatures on our platform. By opting to use an electronic signature, you are agreeing to the terms and conditions outlined below."
2024-11-01 15:22:51 +11:00
msgstr "Vielen Dank, dass Sie Documenso zur elektronischen Unterzeichnung Ihrer Dokumente verwenden. Der Zweck dieser Offenlegung besteht darin, Sie über den Prozess, die Rechtmäßigkeit und Ihre Rechte in Bezug auf die Verwendung elektronischer Unterschriften auf unserer Plattform zu informieren. Indem Sie sich entscheiden, eine elektronische Unterschrift zu verwenden, stimmen Sie den nachfolgend dargelegten Bedingungen zu."
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-forgot-password.tsx
msgid "That's okay, it happens! Click the button below to reset your password."
msgstr "Das ist in Ordnung, das passiert! Klicke auf den Button unten, um dein Passwort zurückzusetzen."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "The account has been deleted successfully."
msgstr "Das Konto wurde erfolgreich gelöscht."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
msgid "The account has been disabled successfully."
2025-01-02 10:36:05 +11:00
msgstr "Das Konto wurde erfolgreich deaktiviert."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
msgid "The account has been enabled successfully."
2025-01-02 10:36:05 +11:00
msgstr "Das Konto wurde erfolgreich aktiviert."
2025-02-26 21:48:06 +11:00
#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "The authentication required for recipients to sign fields"
msgstr "Die Authentifizierung, die erforderlich ist, damit Empfänger Felder signieren"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-global-auth-action-select.tsx
msgid "The authentication required for recipients to sign the signature field."
msgstr "Die Authentifizierung, die erforderlich ist, damit Empfänger das Signaturfeld signieren können."
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-global-auth-access-select.tsx
msgid "The authentication required for recipients to view the document."
msgstr "Die Authentifizierung, die erforderlich ist, damit Empfänger das Dokument anzeigen können."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
2024-08-27 20:34:39 +09:00
msgid "The content to show in the banner, HTML is allowed"
msgstr "Der Inhalt, der im Banne rgezeig wird, HTML ist erlaubt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "The direct link has been copied to your clipboard"
msgstr "Der direkte Linkt wurde in die Zwischenablage kopiert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-move-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "The document has been successfully moved to the selected team."
msgstr "Das Dokument wurde erfolgreich in das ausgewählte Team verschoben."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/embed/embed-document-completed.tsx
2024-09-04 23:13:00 +10:00
msgid "The document is now completed, please follow any instructions provided within the parent application."
2024-09-18 10:43:43 +10:00
msgstr "Das Dokument ist jetzt abgeschlossen. Bitte folgen Sie allen Anweisungen, die in der übergeordneten Anwendung bereitgestellt werden."
2024-09-04 23:13:00 +10:00
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-rejection-confirmed.tsx
msgid "The document owner has been notified of this rejection. No further action is required from you at this time. The document owner may contact you with any questions regarding this rejection."
msgstr "Der Dokumenteninhaber wurde über diese Ablehnung informiert. Es sind derzeit keine weiteren Maßnahmen von Ihnen erforderlich. Der Dokumenteninhaber kann Sie bei Fragen zu dieser Ablehnung kontaktieren."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
msgid "The document owner has been notified of your decision. They may contact you with further instructions if necessary."
2024-11-18 08:40:25 +11:00
msgstr "Der Dokumenteneigentümer wurde über Ihre Entscheidung informiert. Er kann Sie bei Bedarf mit weiteren Anweisungen kontaktieren."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "The document was created but could not be sent to recipients."
msgstr "Das Dokument wurde erstellt, konnte aber nicht an die Empfänger versendet werden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "The document will be hidden from your account"
2024-11-01 15:22:51 +11:00
msgstr "Das Dokument wird von Ihrem Konto verborgen werden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "The document will be immediately sent to recipients if this is checked."
2024-11-01 15:22:51 +11:00
msgstr "Das Dokument wird sofort an die Empfänger gesendet, wenn dies angehakt ist."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-send-email-message-helper.tsx
msgid "The document's name"
msgstr "Der Name des Dokuments"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signin.tsx
2025-02-13 20:24:27 +11:00
msgid "The email or password provided is incorrect"
2025-03-24 10:03:49 +00:00
msgstr "Die angegebene E-Mail oder das Passwort ist falsch"
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "The events that will trigger a webhook to be sent to your URL."
2024-11-01 15:22:51 +11:00
msgstr "Die Ereignisse, die einen Webhook auslösen, der an Ihre URL gesendet wird."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/bulk-send-complete.tsx
2025-02-13 20:24:27 +11:00
msgid "The following errors occurred:"
msgstr "Die folgenden Fehler sind aufgetreten:"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-delete.tsx
msgid "The following team has been deleted by its owner. You will no longer be able to access this team and its documents"
msgstr "Das folgende Team wurde von seinem Besitzer gelöscht. Du kannst nicht mehr auf dieses Team und seine Dokumente zugreifen"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-delete.tsx
msgid "The following team has been deleted by you"
msgstr "Das folgende Team wurde von dir gelöscht"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: data.teamName
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.verify.transfer.token.tsx
2024-08-27 20:34:39 +09:00
msgid "The ownership of team <0>{0}</0> has been successfully transferred to you."
2024-11-01 15:22:51 +11:00
msgstr "Die Inhaberschaft des Teams <0>{0}</0> wurde erfolgreich auf Sie übertragen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/generic-error-layout.tsx
2024-08-27 20:34:39 +09:00
msgid "The page you are looking for was moved, removed, renamed or might never have existed."
2024-11-01 15:22:51 +11:00
msgstr "Die Seite, die Sie suchen, wurde verschoben, entfernt, umbenannt oder hat möglicherweise nie existiert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/public-profile-form.tsx
2024-08-27 20:34:39 +09:00
msgid "The profile link has been copied to your clipboard"
2024-11-01 15:22:51 +11:00
msgstr "Der Profil-Link wurde in die Zwischenablage kopiert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_profile+/_layout.tsx
2024-08-27 20:34:39 +09:00
msgid "The profile you are looking for could not be found."
2024-11-01 15:22:51 +11:00
msgstr "Das Profil, nach dem Sie suchen, konnte nicht gefunden werden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "The public description that will be displayed with this template"
2024-11-01 15:22:51 +11:00
msgstr "Die öffentliche Beschreibung, die mit dieser Vorlage angezeigt wird"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "The public name for your template"
2024-11-01 15:22:51 +11:00
msgstr "Der öffentliche Name für Ihre Vorlage"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-super-delete.tsx
msgid "The reason provided for deletion is the following:"
msgstr "Der angegebene Grund für die Löschung ist folgender:"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/recipient/recipient-role-select.tsx
2025-02-13 20:24:27 +11:00
msgid "The recipient can prepare the document for later signers by pre-filling suggest values."
2025-03-24 10:03:49 +00:00
msgstr "Der Empfänger kann das Dokument für spätere Unterzeichner vorbereiten, indem er vorgeschlagene Werte vorab ausfüllt."
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
2024-08-27 20:34:39 +09:00
msgid "The recipient has been updated successfully"
2024-11-01 15:22:51 +11:00
msgstr "Der Empfänger wurde erfolgreich aktualisiert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/components/recipient/recipient-role-select.tsx
msgid "The recipient is not required to take any action and receives a copy of the document after it is completed."
msgstr "Der Empfänger muss keine Aktion ausführen und erhält nach Abschluss eine Kopie des Dokuments."
2025-02-26 21:48:06 +11:00
#: packages/ui/components/recipient/recipient-role-select.tsx
msgid "The recipient is required to approve the document for it to be completed."
msgstr "Der Empfänger muss das Dokument genehmigen, damit es abgeschlossen werden kann."
2025-02-26 21:48:06 +11:00
#: packages/ui/components/recipient/recipient-role-select.tsx
msgid "The recipient is required to sign the document for it to be completed."
msgstr "Der Empfänger muss das Dokument unterschreiben, damit es abgeschlossen werden kann."
2025-02-26 21:48:06 +11:00
#: packages/ui/components/recipient/recipient-role-select.tsx
msgid "The recipient is required to view the document for it to be completed."
msgstr "Der Empfänger muss das Dokument anzeigen, damit es abgeschlossen werden kann."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-transfer-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "The selected team member will receive an email which they must accept before the team is transferred"
2024-11-01 15:22:51 +11:00
msgstr "Das ausgewählte Teammitglied erhält eine E-Mail, die es akzeptieren muss, bevor das Team übertragen wird"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-share-button.tsx
msgid "The sharing link could not be created at this time. Please try again."
msgstr "Der Freigabelink konnte in diesem Moment nicht erstellt werden. Bitte versuchen Sie es erneut."
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-share-button.tsx
msgid "The sharing link has been copied to your clipboard."
msgstr "Der Freigabelink wurde in Ihre Zwischenablage kopiert."
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-send-email-message-helper.tsx
msgid "The signer's email"
msgstr "Die E-Mail des Unterzeichners"
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-send-email-message-helper.tsx
msgid "The signer's name"
msgstr "Der Name des Unterzeichners"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/avatar-with-recipient.tsx
#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
2024-08-27 20:34:39 +09:00
msgid "The signing link has been copied to your clipboard."
2024-11-01 15:22:51 +11:00
msgstr "Der Signierlink wurde in die Zwischenablage kopiert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
2024-08-27 20:34:39 +09:00
msgid "The site banner is a message that is shown at the top of the site. It can be used to display important information to your users."
2024-11-01 15:22:51 +11:00
msgstr "Das Seitenbanner ist eine Nachricht, die oben auf der Seite angezeigt wird. Es kann verwendet werden, um Ihren Nutzern wichtige Informationen anzuzeigen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-email-removed.tsx
msgid "The team email <0>{teamEmail}</0> has been removed from the following team"
msgstr "Die Team-E-Mail <0>{teamEmail}</0> wurde aus dem folgenden Team entfernt"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-transfer-status.tsx
2024-08-27 20:34:39 +09:00
msgid "The team transfer invitation has been successfully deleted."
2024-11-01 15:22:51 +11:00
msgstr "Die Einladung zur Teamübertragung wurde erfolgreich gelöscht."
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: transferVerification.name
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-transfer-status.tsx
2024-08-27 20:34:39 +09:00
msgid "The team transfer request to <0>{0}</0> has expired."
2024-11-01 15:22:51 +11:00
msgstr "Die Teamübertragungsanfrage an <0>{0}</0> ist abgelaufen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/_layout.tsx
2025-03-24 10:03:49 +00:00
msgid "The team you are looking for may have been removed, renamed or may have never\n"
2025-02-17 22:46:36 +11:00
" existed."
2025-03-24 10:03:49 +00:00
msgstr "Das Team, das Sie suchen, könnte entfernt, umbenannt oder nie existiert haben."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-move-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "The template has been successfully moved to the selected team."
2024-11-01 15:22:51 +11:00
msgstr "Die Vorlage wurde erfolgreich in das ausgewählte Team verschoben."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "The template will be removed from your profile"
2024-11-01 15:22:51 +11:00
msgstr "Die Vorlage wird von Ihrem Profil entfernt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
2024-08-27 20:34:39 +09:00
msgid "The token was copied to your clipboard."
2024-11-01 15:22:51 +11:00
msgstr "Der Token wurde in die Zwischenablage kopiert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "The token was deleted successfully."
2024-11-01 15:22:51 +11:00
msgstr "Das Token wurde erfolgreich gelöscht."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
2024-08-27 20:34:39 +09:00
msgid "The token you have used to reset your password is either expired or it never existed. If you have still forgotten your password, please request a new reset link."
2024-11-01 15:22:51 +11:00
msgstr "Der Token, den Sie zur Zurücksetzung Ihres Passworts verwendet haben, ist entweder abgelaufen oder hat nie existiert. Wenn Sie Ihr Passwort immer noch vergessen haben, fordern Sie bitte einen neuen Zurücksetzungslink an."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signin.tsx
2025-02-13 20:24:27 +11:00
msgid "The two-factor authentication code provided is incorrect"
2025-03-24 10:03:49 +00:00
msgstr "Der bereitgestellte Code der Zwei-Faktor-Authentifizierung ist falsch"
2025-02-13 20:24:27 +11:00
#: packages/ui/components/document/document-signature-settings-tooltip.tsx
msgid "The types of signatures that recipients are allowed to use when signing the document."
2025-03-24 10:03:49 +00:00
msgstr "Die Signaturtypen, die Empfänger beim Unterschreiben des Dokuments verwenden dürfen."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "The URL for Documenso to send webhook events to."
2024-11-01 15:22:51 +11:00
msgstr "Die URL für Documenso, um Webhook-Ereignisse zu senden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "The webhook has been successfully deleted."
2024-11-01 15:22:51 +11:00
msgstr "Das Webhook wurde erfolgreich gelöscht."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "The webhook has been updated successfully."
2024-11-01 15:22:51 +11:00
msgstr "Der Webhook wurde erfolgreich aktualisiert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "The webhook was successfully created."
2024-11-01 15:22:51 +11:00
msgstr "Der Webhook wurde erfolgreich erstellt."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
2024-08-27 20:34:39 +09:00
msgid "There are no active drafts at the current moment. You can upload a document to start drafting."
2024-11-01 15:22:51 +11:00
msgstr "Es gibt derzeit keine aktiven Entwürfe. Sie können ein Dokument hochladen, um mit dem Entwerfen zu beginnen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
2024-08-27 20:34:39 +09:00
msgid "There are no completed documents yet. Documents that you have created or received will appear here once completed."
2024-11-01 15:22:51 +11:00
msgstr "Es gibt noch keine abgeschlossenen Dokumente. Dokumente, die Sie erstellt oder erhalten haben, werden hier angezeigt, sobald sie abgeschlossen sind."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-email-usage.tsx
2024-08-27 20:34:39 +09:00
msgid "They have permission on your behalf to:"
2024-11-01 15:22:51 +11:00
msgstr "Sie haben in Ihrem Namen die Erlaubnis, zu:"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signin.tsx
2025-02-13 20:24:27 +11:00
msgid "This account has been disabled. Please contact support."
2025-03-24 10:03:49 +00:00
msgstr "Dieses Konto wurde deaktiviert. Bitte kontaktieren Sie den Support."
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signin.tsx
2025-02-13 20:24:27 +11:00
msgid "This account has not been verified. Please verify your account before signing in."
2025-03-24 10:03:49 +00:00
msgstr "Dieses Konto wurde nicht verifiziert. Bitte verifizieren Sie Ihr Konto, bevor Sie sich anmelden."
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "This action is not reversible. Please be certain."
2024-11-01 15:22:51 +11:00
msgstr "Diese Aktion ist nicht umkehrbar. Bitte seien Sie sicher."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
msgid "This action is reversible, but please be careful as the account may be affected permanently (e.g. their settings and contents not being restored properly)."
2025-01-02 10:36:05 +11:00
msgstr "Diese Aktion ist umkehrbar, jedoch bitte seien Sie vorsichtig, da das Konto dauerhaft betroffen sein könnte (z.B. könnten deren Einstellungen und Inhalte nicht richtig wiederhergestellt werden)."
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-global-auth-action-select.tsx
msgid "This can be overriden by setting the authentication requirements directly on each recipient in the next step."
msgstr "Dies kann überschrieben werden, indem die Authentifizierungsanforderungen im nächsten Schritt direkt für jeden Empfänger festgelegt werden."
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-super-delete.tsx
msgid "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
msgstr "Dieses Dokument kann nicht wiederhergestellt werden. Wenn du den Grund für zukünftige Dokumente anfechten möchtest, kontaktiere bitte den Support."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "This document could not be deleted at this time. Please try again."
2024-11-01 15:22:51 +11:00
msgstr "Dieses Dokument konnte derzeit nicht gelöscht werden. Bitte versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "This document could not be duplicated at this time. Please try again."
2024-11-01 15:22:51 +11:00
msgstr "Dieses Dokument konnte derzeit nicht dupliziert werden. Bitte versuche es erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "This document could not be re-sent at this time. Please try again."
2024-11-01 15:22:51 +11:00
msgstr "Dieses Dokument konnte zu diesem Zeitpunkt nicht erneut gesendet werden. Bitte versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/add-fields.tsx
msgid "This document has already been sent to this recipient. You can no longer edit this recipient."
msgstr "Dieses Dokument wurde bereits an diesen Empfänger gesendet. Sie können diesen Empfänger nicht mehr bearbeiten."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
2024-08-27 20:34:39 +09:00
msgid "This document has been cancelled by the owner and is no longer available for others to sign."
2024-11-01 15:22:51 +11:00
msgstr "Dieses Dokument wurde vom Eigentümer storniert und steht anderen nicht mehr zur Unterzeichnung zur Verfügung."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
2024-08-27 20:34:39 +09:00
msgid "This document has been cancelled by the owner."
2024-11-01 15:22:51 +11:00
msgstr "Dieses Dokument wurde vom Eigentümer storniert."
2024-08-27 20:34:39 +09:00
#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx
msgid "This document has been rejected by a recipient"
2025-03-24 10:03:49 +00:00
msgstr "Dieses Dokument wurde von einem Empfänger abgelehnt"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx
2024-08-27 20:34:39 +09:00
msgid "This document has been signed by all recipients"
2024-11-01 15:22:51 +11:00
msgstr "Dieses Dokument wurde von allen Empfängern unterschrieben"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx
2024-08-27 20:34:39 +09:00
msgid "This document is currently a draft and has not been sent"
2024-11-01 15:22:51 +11:00
msgstr "Dieses Dokument ist momentan ein Entwurf und wurde nicht gesendet"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
2024-11-05 17:37:05 +09:00
msgid "This document was created by you or a team member using the template above."
2024-11-05 20:53:33 +11:00
msgstr "Dieses Dokument wurde von Ihnen oder einem Teammitglied unter Verwendung der oben genannten Vorlage erstellt."
2024-11-05 17:37:05 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
2024-11-05 17:37:05 +09:00
msgid "This document was created using a direct link."
2024-11-05 20:53:33 +11:00
msgstr "Dieses Dokument wurde mit einem direkten Link erstellt."
2024-11-05 17:37:05 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-footer.tsx
msgid "This document was sent using <0>Documenso.</0>"
msgstr "Dieses Dokument wurde mit <0>Documenso.</0> gesendet"
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-rejection-confirmed.tsx
msgid "This email confirms that you have rejected the document <0>\"{documentName}\"</0> sent by {documentOwnerName}."
msgstr "Diese E-Mail bestätigt, dass Sie das Dokument <0>\"{documentName}\"</0> abgelehnt haben, das von {documentOwnerName} gesendet wurde."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "This email is already being used by another team."
2024-11-01 15:22:51 +11:00
msgstr "Diese E-Mail-Adresse wird bereits von einem anderen Team verwendet."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "This email is sent to the document owner when a recipient has signed the document."
2025-01-02 10:36:05 +11:00
msgstr "Diese E-Mail wird an den Dokumenteneigentümer gesendet, wenn ein Empfänger das Dokument unterschrieben hat."
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "This email is sent to the recipient if they are removed from a pending document."
msgstr "Diese E-Mail wird an den Empfänger gesendet, wenn er von einem ausstehenden Dokument entfernt wird."
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "This email is sent to the recipient requesting them to sign the document."
msgstr "Diese E-Mail wird an den Empfänger gesendet und fordert ihn auf, das Dokument zu unterschreiben."
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "This email will be sent to the recipient who has just signed the document, if there are still other recipients who have not signed yet."
msgstr "Diese E-Mail wird an den Empfänger gesendet, der das Dokument gerade unterschrieben hat, wenn es noch andere Empfänger gibt, die noch nicht unterschrieben haben."
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "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."
msgstr "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."
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "This is how the document will reach the recipients once the document is ready for signing."
msgstr "So wird das Dokument die Empfänger erreichen, sobald es zum Unterschreiben bereit ist."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.verify.transfer.token.tsx
2024-08-27 20:34:39 +09:00
msgid "This link is invalid or has expired. Please contact your team to resend a transfer request."
2024-11-01 15:22:51 +11:00
msgstr "Dieser Link ist ungültig oder abgelaufen. Bitte kontaktieren Sie Ihr Team, um eine erneute Überweisungsanfrage zu senden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "This link is invalid or has expired. Please contact your team to resend a verification."
2024-11-01 15:22:51 +11:00
msgstr "Dieser Link ist ungültig oder abgelaufen. Bitte kontaktieren Sie Ihr Team, um eine neue Bestätigungsanfrage zu senden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "This passkey has already been registered."
2024-11-01 15:22:51 +11:00
msgstr "Dieser Zugangsschlüssel wurde bereits registriert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signin.tsx
2024-08-27 20:34:39 +09:00
msgid "This passkey is not configured for this application. Please login and add one in the user settings."
2024-11-01 15:22:51 +11:00
msgstr "Dieser Passkey ist für diese Anwendung nicht konfiguriert. Bitte melden Sie sich an und fügen Sie einen in den Benutzereinstellungen hinzu."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-checkout-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "This price includes minimum 5 seats."
2024-11-01 15:22:51 +11:00
msgstr "Dieser Preis beinhaltet mindestens 5 Plätze."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/add-fields.tsx
msgid "This recipient can no longer be modified as they have signed a field, or completed the document."
msgstr "Dieser Empfänger kann nicht mehr bearbeitet werden, da er ein Feld unterschrieben oder das Dokument abgeschlossen hat."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signin.tsx
2024-08-27 20:34:39 +09:00
msgid "This session has expired. Please try again."
2024-11-01 15:22:51 +11:00
msgstr "Diese Sitzung ist abgelaufen. Bitte versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "This signer has already signed the document."
msgstr "Dieser Unterzeichner hat das Dokument bereits unterschrieben."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
2024-08-27 20:34:39 +09:00
msgid "This team, and any associated data excluding billing invoices will be permanently deleted."
2024-11-01 15:22:51 +11:00
msgstr "Dieses Team und alle zugehörigen Daten, ausgenommen Rechnungen, werden permanent gelöscht."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "This template could not be deleted at this time. Please try again."
2024-11-01 15:22:51 +11:00
msgstr "Diese Vorlage konnte derzeit nicht gelöscht werden. Bitte versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.decline.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "This token is invalid or has expired. No action is needed."
2024-11-01 15:22:51 +11:00
msgstr "Dieses Token ist ungültig oder abgelaufen. Es sind keine weiteren Maßnahmen erforderlich."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.invite.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "This token is invalid or has expired. Please contact your team for a new invitation."
2024-11-01 15:22:51 +11:00
msgstr "Dieser Token ist ungültig oder abgelaufen. Bitte kontaktieren Sie Ihr Team für eine neue Einladung."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "This URL is already in use."
2024-11-01 15:22:51 +11:00
msgstr "Diese URL wird bereits verwendet."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-08-27 20:34:39 +09:00
msgid "This username has already been taken"
2024-11-01 15:22:51 +11:00
msgstr "Dieser Benutzername ist bereits vergeben"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "This will be sent to all recipients if a pending document has been deleted."
msgstr "Dies wird an alle Empfänger gesendet, wenn ein ausstehendes Dokument gelöscht wurde."
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "This will be sent to all recipients once the document has been fully completed."
msgstr "Dies wird an alle Empfänger gesendet, sobald das Dokument vollständig abgeschlossen ist."
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "This will be sent to the document owner once the document has been fully completed."
2025-01-02 10:36:05 +11:00
msgstr "Dies wird an den Dokumenteneigentümer gesendet, sobald das Dokument vollständig abgeschlossen wurde."
2025-02-26 21:48:06 +11:00
#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "This will override any global settings."
msgstr "Dies überschreibt alle globalen Einstellungen."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
#: apps/remix/app/components/tables/document-logs-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Time"
2024-11-01 15:22:51 +11:00
msgstr "Zeit"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx
2024-08-27 20:34:39 +09:00
msgid "Time zone"
2024-11-01 15:22:51 +11:00
msgstr "Zeitzone"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
2024-11-05 18:26:09 +09:00
msgid "Time Zone"
2024-11-05 20:53:33 +11:00
msgstr "Zeitzone"
2024-11-05 18:26:09 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/tables/documents-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
2024-08-27 20:34:39 +09:00
msgid "Title"
2024-11-01 15:22:51 +11:00
msgstr "Titel"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-settings.types.ts
msgid "Title cannot be empty"
2025-03-24 10:03:49 +00:00
msgstr "Titel darf nicht leer sein"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.invite.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "To accept this invitation you must create an account."
2024-11-01 15:22:51 +11:00
msgstr "Um diese Einladung anzunehmen, müssen Sie ein Konto erstellen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "To change the email you must remove and add a new email address."
2024-11-01 15:22:51 +11:00
msgstr "Um die E-Mail zu ändern, müssen Sie die aktuelle entfernen und eine neue hinzufügen."
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: userToEnable.email
#. placeholder {0}: userToDisable.email
#. placeholder {0}: user.email
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "To confirm, please enter the accounts email address <0/>({0})."
2024-11-01 15:22:51 +11:00
msgstr "Um zu bestätigen, geben Sie bitte die E-Mail-Adresse des Kontos <0/>({0}) ein."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "To confirm, please enter the reason"
2024-11-01 15:22:51 +11:00
msgstr "Um zu bestätigen, geben Sie bitte den Grund ein"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.decline.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "To decline this invitation you must create an account."
2024-11-01 15:22:51 +11:00
msgstr "Um diese Einladung abzulehnen, müssen Sie ein Konto erstellen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "To enable two-factor authentication, scan the following QR code using your authenticator app."
2024-11-01 15:22:51 +11:00
msgstr "Um die Zwei-Faktor-Authentifizierung zu aktivieren, scannen Sie den folgenden QR-Code mit Ihrer Authentifizierungs-App."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
2024-08-27 20:34:39 +09:00
msgid "To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox."
2024-11-01 15:22:51 +11:00
msgstr "Um Zugang zu Ihrem Konto zu erhalten, bestätigen Sie bitte Ihre E-Mail-Adresse, indem Sie auf den Bestätigungslink in Ihrem Posteingang klicken."
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: recipient.email
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
2024-08-27 20:34:39 +09:00
msgid "To mark this document as viewed, you need to be logged in as <0>{0}</0>"
2024-11-01 15:22:51 +11:00
msgstr "Um dieses Dokument als angesehen zu markieren, müssen Sie als <0>{0}</0> angemeldet sein"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
msgid "To proceed further, please set at least one value for the {0} field."
msgstr "Um fortzufahren, legen Sie bitte mindestens einen Wert für das Feld {0} fest."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "To use our electronic signature service, you must have access to:"
2024-11-01 15:22:51 +11:00
msgstr "Um unseren elektronischen Signaturdienst nutzen zu können, müssen Sie Zugriff auf Folgendes haben:"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/embed/embed-authentication-required.tsx
2024-09-04 23:13:00 +10:00
msgid "To view this document you need to be signed into your account, please sign in to continue."
2024-11-01 15:22:51 +11:00
msgstr "Um dieses Dokument anzusehen, müssen Sie in Ihr Konto eingeloggt sein. Bitte melden Sie sich an, um fortzufahren."
2024-09-04 23:13:00 +10:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx
2024-08-27 20:34:39 +09:00
msgid "Toggle the switch to hide your profile from the public."
2024-11-01 15:22:51 +11:00
msgstr "Schalten Sie den Schalter um, um Ihr Profil vor der Öffentlichkeit zu verbergen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx
2024-08-27 20:34:39 +09:00
msgid "Toggle the switch to show your profile to the public."
2024-11-01 15:22:51 +11:00
msgstr "Schalten Sie den Schalter um, um Ihr Profil der Öffentlichkeit anzuzeigen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Token"
2024-11-01 15:22:51 +11:00
msgstr "Token"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
2024-08-27 20:34:39 +09:00
msgid "Token copied to clipboard"
2024-11-01 15:22:51 +11:00
msgstr "Token wurde in die Zwischenablage kopiert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
2024-08-27 20:34:39 +09:00
msgid "Token created"
2024-11-01 15:22:51 +11:00
msgstr "Token erstellt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Token deleted"
2024-11-01 15:22:51 +11:00
msgstr "Token gelöscht"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx
2024-08-27 20:34:39 +09:00
msgid "Token doesn't have an expiration date"
2024-11-01 15:22:51 +11:00
msgstr "Token hat kein Ablaufdatum"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
2024-08-27 20:34:39 +09:00
msgid "Token expiration date"
2024-11-01 15:22:51 +11:00
msgstr "Ablaufdatum des Tokens"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/reset-password.tsx
2024-12-06 16:11:54 +09:00
msgid "Token has expired. Please try again."
2025-01-02 10:36:05 +11:00
msgstr "Das Token ist abgelaufen. Bitte versuchen Sie es erneut."
2024-12-06 16:11:54 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
2024-08-27 20:34:39 +09:00
msgid "Token name"
2024-11-01 15:22:51 +11:00
msgstr "Token-Name"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "Total Documents"
2024-11-01 15:22:51 +11:00
msgstr "Gesamtdokumente"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "Total Recipients"
2024-11-01 15:22:51 +11:00
msgstr "Gesamtempfänger"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/bulk-send-complete.tsx
2025-02-13 20:24:27 +11:00
msgid "Total rows processed: {totalProcessed}"
msgstr "Insgesamt verarbeitete Zeilen: {totalProcessed}"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "Total Signers that Signed Up"
2024-11-01 15:22:51 +11:00
msgstr "Gesamtanzahl der Unterzeichner, die sich angemeldet haben"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
2024-08-27 20:34:39 +09:00
msgid "Total Users"
2024-11-01 15:22:51 +11:00
msgstr "Gesamtanzahl der Benutzer"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-transfer-dialog.tsx
msgid "transfer {teamName}"
2024-11-01 15:22:51 +11:00
msgstr "übertragen {teamName}"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-transfer-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Transfer ownership of this team to a selected team member."
2024-11-01 15:22:51 +11:00
msgstr "Übertragen Sie die Inhaberschaft dieses Teams auf ein ausgewähltes Teammitglied."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
#: apps/remix/app/components/dialogs/team-transfer-dialog.tsx
#: apps/remix/app/components/dialogs/team-transfer-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Transfer team"
2024-11-01 15:22:51 +11:00
msgstr "Team übertragen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Transfer the ownership of the team to another team member."
2024-11-01 15:22:51 +11:00
msgstr "Übertragen Sie das Eigentum des Teams auf ein anderes Teammitglied."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Triggers"
2024-11-01 15:22:51 +11:00
msgstr "Auslöser"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Two factor authentication"
2024-11-01 15:22:51 +11:00
msgstr "Zwei-Faktor-Authentifizierung"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app."
2024-11-01 15:22:51 +11:00
msgstr "Wiederherstellungscodes für die Zwei-Faktor-Authentifizierung werden verwendet, um auf Ihr Konto zuzugreifen, falls Sie den Zugang zu Ihrer Authentifizierungs-App verlieren."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signin.tsx
2024-08-27 20:34:39 +09:00
msgid "Two-Factor Authentication"
2024-11-01 15:22:51 +11:00
msgstr "Zwei-Faktor-Authentifizierung"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Two-factor authentication disabled"
2024-11-01 15:22:51 +11:00
msgstr "Zwei-Faktor-Authentifizierung deaktiviert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Two-factor authentication enabled"
2024-11-01 15:22:51 +11:00
msgstr "Zwei-Faktor-Authentifizierung aktiviert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Two-factor authentication has been disabled for your account. You will no longer be required to enter a code from your authenticator app when signing in."
2024-11-01 15:22:51 +11:00
msgstr "Die Zwei-Faktor-Authentifizierung wurde für Ihr Konto deaktiviert. Sie müssen beim Anmelden keinen Code aus Ihrer Authentifizierungs-App mehr eingeben."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
2024-11-05 18:26:09 +09:00
msgid "Two-Factor Re-Authentication"
2024-11-05 20:53:33 +11:00
msgstr "Zwei-Faktor-Wiederauthentifizierung"
2024-11-05 18:26:09 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
#: packages/lib/constants/document.ts
2024-08-27 20:34:39 +09:00
msgid "Type"
2024-11-01 15:22:51 +11:00
msgstr "Typ"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/app-command-menu.tsx
2024-08-27 20:34:39 +09:00
msgid "Type a command or search..."
2024-11-01 15:22:51 +11:00
msgstr "Geben Sie einen Befehl ein oder suchen Sie..."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
msgid "Typed signatures are not allowed. Please draw your signature."
2025-01-02 10:36:05 +11:00
msgstr "Getippte Unterschriften sind nicht erlaubt. Bitte zeichnen Sie Ihre Unterschrift."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/verify-email._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Uh oh! Looks like you're missing a token"
2024-11-01 15:22:51 +11:00
msgstr "Oh oh! Es sieht so aus, als fehlt Ihnen ein Token"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Unable to change the language at this time. Please try again later."
2024-11-01 15:22:51 +11:00
msgstr "Zurzeit kann die Sprache nicht geändert werden. Bitte versuchen Sie es später noch einmal."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/recovery-code-list.tsx
2024-08-27 20:34:39 +09:00
msgid "Unable to copy recovery code"
2024-11-01 15:22:51 +11:00
msgstr "Kann Code zur Wiederherstellung nicht kopieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
2024-08-27 20:34:39 +09:00
msgid "Unable to copy token"
2024-11-01 15:22:51 +11:00
msgstr "Token kann nicht kopiert werden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Unable to create direct template access. Please try again later."
2024-11-01 15:22:51 +11:00
msgstr "Direkter Zugriff auf die Vorlage kann nicht erstellt werden. Bitte versuche es später noch einmal."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-invitations.tsx
2024-08-27 20:34:39 +09:00
msgid "Unable to decline this team invitation at this time."
2024-11-01 15:22:51 +11:00
msgstr "Zurzeit kann diese Teameinladung nicht abgelehnt werden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/team-settings-member-invites-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Unable to delete invitation. Please try again."
2024-11-01 15:22:51 +11:00
msgstr "Einladung kann nicht gelöscht werden. Bitte versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Unable to delete team"
2024-11-01 15:22:51 +11:00
msgstr "Team konnte nicht gelöscht werden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Unable to disable two-factor authentication"
2024-11-01 15:22:51 +11:00
msgstr "Zwei-Faktor-Authentifizierung kann nicht deaktiviert werden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-invitations.tsx
2024-08-27 20:34:39 +09:00
msgid "Unable to join this team at this time."
2024-11-01 15:22:51 +11:00
msgstr "Zurzeit kann diesem Team nicht beigetreten werden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
#: apps/remix/app/components/general/document/document-history-sheet.tsx
2024-08-27 20:34:39 +09:00
msgid "Unable to load document history"
2024-11-01 15:22:51 +11:00
msgstr "Kann den Dokumentverlauf nicht laden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-recent-activity.tsx
2024-11-05 17:37:05 +09:00
msgid "Unable to load documents"
2024-11-05 20:53:33 +11:00
msgstr "Dokumente können nicht geladen werden"
2024-11-05 17:37:05 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Unable to load your public profile templates at this time"
2024-11-01 15:22:51 +11:00
msgstr "Derzeit können Ihre öffentlichen Profilvorlagen nicht geladen werden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Unable to remove email verification at this time. Please try again."
2024-11-01 15:22:51 +11:00
msgstr "Derzeit ist es nicht möglich, die E-Mail-Verifizierung zu entfernen. Bitte versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Unable to remove team email at this time. Please try again."
2024-11-01 15:22:51 +11:00
msgstr "Das Team-E-Mail kann zurzeit nicht entfernt werden. Bitte versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/team-settings-member-invites-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Unable to resend invitation. Please try again."
2024-11-01 15:22:51 +11:00
msgstr "Einladung kann nicht erneut gesendet werden. Bitte versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
2024-08-27 20:34:39 +09:00
msgid "Unable to resend verification at this time. Please try again."
2024-11-01 15:22:51 +11:00
msgstr "Derzeit ist es nicht möglich, die Verifizierung erneut zu senden. Bitte versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
2024-08-27 20:34:39 +09:00
msgid "Unable to reset password"
2024-11-01 15:22:51 +11:00
msgstr "Passwort kann nicht zurückgesetzt werden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Unable to setup two-factor authentication"
2024-11-01 15:22:51 +11:00
msgstr "Zwei-Faktor-Authentifizierung kann nicht eingerichtet werden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/signin.tsx
2024-08-27 20:34:39 +09:00
msgid "Unable to sign in"
2024-11-01 15:22:51 +11:00
msgstr "Anmeldung nicht möglich"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
2024-08-27 20:34:39 +09:00
msgid "Unauthorized"
2024-11-01 15:22:51 +11:00
msgstr "Nicht autorisiert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
2024-08-27 20:34:39 +09:00
msgid "Uncompleted"
2024-11-01 15:22:51 +11:00
msgstr "Unvollendet"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx
2024-11-05 18:26:09 +09:00
msgid "Unknown"
2024-11-05 20:53:33 +11:00
msgstr "Unbekannt"
2024-11-05 18:26:09 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/team-settings-billing-invoices-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Unpaid"
2024-11-01 15:22:51 +11:00
msgstr "Unbezahlt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
#: apps/remix/app/components/forms/team-branding-preferences-form.tsx
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
2024-08-27 20:34:39 +09:00
msgid "Update"
2024-11-01 15:22:51 +11:00
msgstr "Aktualisieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
2024-08-27 20:34:39 +09:00
msgid "Update Banner"
2024-11-01 15:22:51 +11:00
msgstr "Banner aktualisieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
2024-08-27 20:34:39 +09:00
msgid "Update passkey"
2024-11-01 15:22:51 +11:00
msgstr "Passkey aktualisieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/password.tsx
2024-08-27 20:34:39 +09:00
msgid "Update password"
2024-11-01 15:22:51 +11:00
msgstr "Passwort aktualisieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/profile.tsx
2024-08-27 20:34:39 +09:00
msgid "Update profile"
2024-11-01 15:22:51 +11:00
msgstr "Profil aktualisieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Update Recipient"
2024-11-01 15:22:51 +11:00
msgstr "Empfänger aktualisieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/team-settings-members-table.tsx
2024-08-27 20:34:39 +09:00
msgid "Update role"
2024-11-01 15:22:51 +11:00
msgstr "Rolle aktualisieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-update-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Update team"
2024-11-01 15:22:51 +11:00
msgstr "Team aktualisieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Update team email"
2024-09-18 10:43:43 +10:00
msgstr "Team-E-Mail aktualisieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Update team member"
2024-09-18 10:43:43 +10:00
msgstr "Teammitglied aktualisieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/template.ts
msgid "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."
msgstr "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."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "Update user"
2024-09-18 10:43:43 +10:00
msgstr "Benutzer aktualisieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "Update webhook"
2024-09-18 10:43:43 +10:00
msgstr "Webhook aktualisieren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/password.tsx
2024-08-27 20:34:39 +09:00
msgid "Updating password..."
2024-09-18 10:43:43 +10:00
msgstr "Passwort wird aktualisiert..."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Updating Your Information"
2024-11-01 15:22:51 +11:00
msgstr "Aktualisierung Ihrer Informationen"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-dropzone.tsx
msgid "Upgrade"
msgstr "Upgrade"
#: packages/lib/constants/document.ts
msgid "Upload"
2025-03-24 10:03:49 +00:00
msgstr "Hochladen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
2025-02-13 20:24:27 +11:00
msgid "Upload a CSV file to create multiple documents from this template. Each row represents one document with its recipient details."
msgstr "Laden Sie eine CSV-Datei hoch, um mehrere Dokumente aus dieser Vorlage zu erstellen. Jede Zeile repräsentiert ein Dokument mit den Empfängerdaten."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Upload a custom document to use instead of the template's default document"
2025-02-13 20:24:27 +11:00
msgstr "Laden Sie ein benutzerdefiniertes Dokument hoch, um es anstelle des Standarddokuments der Vorlage zu verwenden"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
2025-02-13 20:24:27 +11:00
msgid "Upload and Process"
msgstr "Hochladen und verarbeiten"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/avatar-image.tsx
2024-08-27 20:34:39 +09:00
msgid "Upload Avatar"
2024-09-18 10:43:43 +10:00
msgstr "Avatar hochladen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
2025-02-13 20:24:27 +11:00
msgid "Upload CSV"
msgstr "CSV hochladen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Upload custom document"
2025-02-13 20:24:27 +11:00
msgstr "Benutzerdefiniertes Dokument hochladen"
#: packages/ui/primitives/signature-pad/signature-pad-upload.tsx
msgid "Upload Signature"
2025-01-02 10:36:05 +11:00
msgstr "Signatur hochladen"
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-dropzone.tsx
msgid "Upload Template Document"
msgstr "Vorlagendokument hochladen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-branding-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Upload your brand logo (max 5MB, JPG, PNG, or WebP)"
2024-11-08 23:06:57 +11:00
msgstr "Laden Sie Ihr Markenlogo hoch (max. 5MB, JPG, PNG oder WebP)"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
2024-08-27 20:34:39 +09:00
msgid "Uploaded by"
2024-09-18 10:43:43 +10:00
msgstr "Hochgeladen von"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/avatar-image.tsx
2024-08-27 20:34:39 +09:00
msgid "Uploaded file is too large"
2024-09-18 10:43:43 +10:00
msgstr "Die hochgeladene Datei ist zu groß"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/avatar-image.tsx
2024-08-27 20:34:39 +09:00
msgid "Uploaded file is too small"
2024-09-18 10:43:43 +10:00
msgstr "Die hochgeladene Datei ist zu klein"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/avatar-image.tsx
2024-08-27 20:34:39 +09:00
msgid "Uploaded file not an allowed file type"
2024-09-18 10:43:43 +10:00
msgstr "Die hochgeladene Datei ist kein zulässiger Dateityp"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx
2024-11-05 17:37:05 +09:00
msgid "Use"
2024-11-05 20:53:33 +11:00
msgstr "Verwenden"
2024-11-05 17:37:05 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Use Authenticator"
2024-09-18 10:43:43 +10:00
msgstr "Authenticator verwenden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Use Backup Code"
2024-09-18 10:43:43 +10:00
msgstr "Backup-Code verwenden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Use Template"
2024-09-18 10:43:43 +10:00
msgstr "Vorlage verwenden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
#: apps/remix/app/components/tables/document-logs-table.tsx
2024-08-27 20:34:39 +09:00
msgid "User"
2024-09-18 10:43:43 +10:00
msgstr "Benutzer"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/password.tsx
2024-12-06 16:11:54 +09:00
msgid "User has no password."
2025-01-02 10:36:05 +11:00
msgstr "Benutzer hat kein Passwort."
2024-12-06 16:11:54 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/subscriptions.tsx
2024-08-27 20:34:39 +09:00
msgid "User ID"
2024-09-18 10:43:43 +10:00
msgstr "Benutzer-ID"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "User not found."
2025-01-02 10:36:05 +11:00
msgstr "Benutzer nicht gefunden."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-08-27 20:34:39 +09:00
msgid "User profiles are here!"
2024-09-18 10:43:43 +10:00
msgstr "Benutzerprofile sind hier!"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/menu-switcher.tsx
2024-08-27 20:34:39 +09:00
msgid "User settings"
2024-09-18 10:43:43 +10:00
msgstr "Benutzereinstellungen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-12-06 16:11:54 +09:00
msgid "User with this email already exists. Please use a different email address."
2025-01-02 10:36:05 +11:00
msgstr "Ein Benutzer mit dieser E-Mail existiert bereits. Bitte verwenden Sie eine andere E-Mail-Adresse."
2024-12-06 16:11:54 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-12-06 16:11:54 +09:00
msgid "Username can only container alphanumeric characters and dashes."
2025-01-02 10:36:05 +11:00
msgstr "Der Benutzername darf nur alphanumerische Zeichen und Bindestriche enthalten."
2024-12-06 16:11:54 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
2024-08-27 20:34:39 +09:00
msgid "Users"
2024-09-18 10:43:43 +10:00
msgstr "Benutzer"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Validation"
msgstr "Validierung"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
2024-08-27 20:34:39 +09:00
msgid "Value"
2024-09-18 10:43:43 +10:00
msgstr "Wert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/verify-email-banner.tsx
2024-08-27 20:34:39 +09:00
msgid "Verification Email Sent"
2024-09-18 10:43:43 +10:00
msgstr "Bestätigungs-E-Mail gesendet"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/verify-email-banner.tsx
2024-08-27 20:34:39 +09:00
msgid "Verification email sent successfully."
2024-09-18 10:43:43 +10:00
msgstr "Bestätigungs-E-Mail erfolgreich gesendet."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/verify-email-banner.tsx
2024-08-27 20:34:39 +09:00
msgid "Verify Now"
2024-09-18 10:43:43 +10:00
msgstr "Jetzt überprüfen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/verify-email-banner.tsx
2024-08-27 20:34:39 +09:00
msgid "Verify your email address"
2024-09-18 10:43:43 +10:00
msgstr "Überprüfen Sie Ihre E-Mail-Adresse"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/verify-email-banner.tsx
2024-08-27 20:34:39 +09:00
msgid "Verify your email address to unlock all features."
2024-09-18 10:43:43 +10:00
msgstr "Überprüfen Sie Ihre E-Mail-Adresse, um alle Funktionen freizuschalten."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-upload.tsx
2024-08-27 20:34:39 +09:00
msgid "Verify your email to upload documents."
2024-09-18 10:43:43 +10:00
msgstr "Überprüfen Sie Ihre E-Mail, um Dokumente hochzuladen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/confirm-team-email.tsx
msgid "Verify your team email address"
msgstr "Überprüfen Sie Ihre Team-E-Mail-Adresse"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
2024-11-05 18:26:09 +09:00
msgid "Version History"
2024-11-05 20:53:33 +11:00
msgstr "Versionsverlauf"
2024-11-05 18:26:09 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/team-settings-billing-invoices-table.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-button.tsx
#: apps/remix/app/components/tables/documents-table-action-button.tsx
#: apps/remix/app/components/general/document/document-page-view-button.tsx
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: packages/lib/constants/recipient-roles.ts
2024-08-27 20:34:39 +09:00
msgid "View"
msgstr "Betrachten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
2024-08-27 20:34:39 +09:00
msgid "View activity"
2024-09-18 10:43:43 +10:00
msgstr "Aktivität ansehen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/confirm-team-email.tsx
msgid "View all documents sent to and from this email address"
msgstr "Sehen Sie sich alle Dokumente an, die an diese E-Mail-Adresse gesendet wurden und von dieser E-Mail-Adresse gesendet wurden"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-email-usage.tsx
2024-08-27 20:34:39 +09:00
msgid "View all documents sent to your account"
2024-09-18 10:43:43 +10:00
msgstr "Alle Dokumente anzeigen, die an Ihr Konto gesendet wurden"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
2024-08-27 20:34:39 +09:00
msgid "View all recent security activity related to your account."
2024-09-18 10:43:43 +10:00
msgstr "Sehen Sie sich alle aktuellen Sicherheitsaktivitäten in Ihrem Konto an."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-recent-activity.tsx
2024-11-05 17:37:05 +09:00
msgid "View all related documents"
2024-11-05 20:53:33 +11:00
msgstr "Alle verwandten Dokumente anzeigen"
2024-11-05 17:37:05 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/security.activity.tsx
2024-08-27 20:34:39 +09:00
msgid "View all security activity related to your account."
2024-09-18 10:43:43 +10:00
msgstr "Sehen Sie sich alle Sicherheitsaktivitäten in Ihrem Konto an."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "View Codes"
2024-09-18 10:43:43 +10:00
msgstr "Codes ansehen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/document-created-from-direct-template.tsx
msgid "View document"
2024-11-01 15:22:51 +11:00
msgstr "Dokument anzeigen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-rejected.tsx
#: packages/email/template-components/template-document-invite.tsx
msgid "View Document"
msgstr "Dokument ansehen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
2024-08-27 20:34:39 +09:00
msgid "View documents associated with this email"
2024-09-18 10:43:43 +10:00
msgstr "Dokumente ansehen, die mit dieser E-Mail verknüpft sind"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-invitations.tsx
2024-08-27 20:34:39 +09:00
msgid "View invites"
2024-09-18 10:43:43 +10:00
msgstr "Einladungen ansehen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-recent-activity.tsx
2024-11-05 17:37:05 +09:00
msgid "View more"
2024-11-05 20:53:33 +11:00
msgstr "Mehr anzeigen"
2024-11-05 17:37:05 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
2024-08-27 20:34:39 +09:00
msgid "View Original Document"
2024-09-18 10:43:43 +10:00
msgstr "Originaldokument ansehen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-self-signed.tsx
msgid "View plans"
msgstr "Pläne anzeigen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "View Recovery Codes"
2024-09-18 10:43:43 +10:00
msgstr "Wiederherstellungscodes ansehen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/_layout.tsx
2024-08-27 20:34:39 +09:00
msgid "View teams"
2024-09-18 10:43:43 +10:00
msgstr "Teams ansehen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: packages/lib/constants/recipient-roles.ts
2024-08-27 20:34:39 +09:00
msgid "Viewed"
msgstr "Betrachtet"
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
msgid "Viewer"
msgstr "Betrachter"
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
msgid "Viewers"
msgstr "Betrachter"
2025-02-26 21:48:06 +11:00
#: packages/lib/constants/recipient-roles.ts
msgid "Viewing"
msgstr "Betrachten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
2024-08-27 20:34:39 +09:00
msgid "Waiting"
2024-09-18 10:43:43 +10:00
msgstr "Warten"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-pending.tsx
msgid "Waiting for others"
msgstr "Warten auf andere"
2025-02-26 21:48:06 +11:00
#: packages/lib/server-only/document/send-pending-email.ts
msgid "Waiting for others to complete signing."
msgstr "Warten auf andere, um die Unterzeichnung abzuschließen."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
2024-08-27 20:34:39 +09:00
msgid "Waiting for others to sign"
2024-09-18 10:43:43 +10:00
msgstr "Warten auf andere, um zu unterschreiben"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
#: apps/remix/app/components/embed/embed-document-waiting-for-turn.tsx
msgid "Waiting for Your Turn"
2024-09-18 10:43:43 +10:00
msgstr "Warten auf deine Reihe"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
2024-08-27 20:34:39 +09:00
msgid "Want to send slick signing links like this one? <0>Check out Documenso.</0>"
2024-09-18 10:43:43 +10:00
msgstr "Möchten Sie auffällige Signatur-Links wie diesen senden? <0>Überprüfen Sie Documenso.</0>"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_profile+/_layout.tsx
2024-08-27 20:34:39 +09:00
msgid "Want your own public profile?"
2024-09-18 10:43:43 +10:00
msgstr "Möchten Sie Ihr eigenes öffentliches Profil haben?"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
2025-02-13 20:24:27 +11:00
msgid "Warning: Assistant as last signer"
2025-03-24 10:03:49 +00:00
msgstr "Warnung: Assistent als letzter Unterzeichner"
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/billing-portal-button.tsx
#: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx
#: apps/remix/app/components/general/teams/team-billing-portal-button.tsx
2024-08-27 20:34:39 +09:00
msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
2024-09-18 10:43:43 +10:00
msgstr "Wir können zurzeit nicht auf das Abrechnungsportal zugreifen. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
2024-08-27 20:34:39 +09:00
msgid "We are unable to remove this passkey at the moment. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir können diesen Schlüssel im Moment nicht entfernen. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
2024-08-27 20:34:39 +09:00
msgid "We are unable to update this passkey at the moment. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir können diesen Schlüssel im Moment nicht aktualisieren. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an error while removing the direct template link. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen Fehler gestoßen, während wir den direkten Vorlagenlink entfernt haben. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an error while updating the webhook. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen Fehler gestoßen, während wir den Webhook aktualisieren wollten. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to add this email. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, diese E-Mail hinzuzufügen. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to create a team. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, ein Team zu erstellen. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to delete it. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, es zu löschen. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/user-settings-pending-teams-table-actions.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to delete the pending team. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, das ausstehende Team zu löschen. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to delete this team. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, dieses Team zu löschen. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to delete this token. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, dieses Token zu löschen. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to delete your account. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Ihr Konto zu löschen. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to invite team members. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Teammitglieder einzuladen. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-leave-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to leave this team. Please try again later."
2024-09-18 10:43:43 +10:00
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."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to remove this template from your profile. Please try again later."
2024-09-18 10:43:43 +10:00
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."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-transfer-status.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to remove this transfer. Please try again or contact support."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, diese Übertragung zu entfernen. Bitte versuchen Sie es später oder kontaktieren Sie den Support."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to remove this user. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, diesen Benutzer zu entfernen. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-transfer-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to request a transfer of this team. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, eine Übertragung dieses Teams anzufordern. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/reset-password.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to reset your password. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Ihr Passwort zurückzusetzen. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-email-usage.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, den Zugriff zu widerrufen. Bitte versuchen Sie es später oder kontaktieren Sie den Support."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/signin.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to sign you In. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Sie anzumelden. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/signup.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to sign you Up. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Sie anzumelden. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to update the banner. Please try again later."
2024-09-18 10:43:43 +10:00
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."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to update the template. Please try again later."
2024-09-18 10:43:43 +10:00
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."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to update this team member. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, dieses Teammitglied zu aktualisieren. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/password.tsx
#: apps/remix/app/components/forms/avatar-image.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to update your password. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Ihr Passwort zu aktualisieren. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/public-profile-form.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to update your public profile. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Ihr öffentliches Profil zu aktualisieren. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-update-form.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting to update your team. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Ihr Team zu aktualisieren. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We encountered an unknown error while attempting update the team email. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, die Team-E-Mail zu aktualisieren. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/profile.tsx
msgid "We encountered an unknown error while attempting update your profile. Please try again later."
2025-02-13 20:24:27 +11:00
msgstr "Wir haben einen unbekannten Fehler festgestellt, während wir versuchten, Ihr Profil zu aktualisieren. Bitte versuchen Sie es später noch einmal."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We have sent a confirmation email for verification."
2024-09-18 10:43:43 +10:00
msgstr "Wir haben eine Bestätigungs-E-Mail zur Überprüfung gesendet."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-12-06 16:11:54 +09:00
msgid "We need a username to create your profile"
2025-01-02 10:36:05 +11:00
msgstr "Wir benötigen einen Benutzernamen, um Ihr Profil zu erstellen"
2024-12-06 16:11:54 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-12-06 16:11:54 +09:00
msgid "We need your signature to sign documents"
2025-01-02 10:36:05 +11:00
msgstr "Wir benötigen Ihre Unterschrift, um Dokumente zu unterschreiben"
2024-12-06 16:11:54 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
2024-08-27 20:34:39 +09:00
msgid "We were unable to copy the token to your clipboard. Please try again."
2024-09-18 10:43:43 +10:00
msgstr "Wir konnten das Token nicht in Ihre Zwischenablage kopieren. Bitte versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/recovery-code-list.tsx
2024-08-27 20:34:39 +09:00
msgid "We were unable to copy your recovery code to your clipboard. Please try again."
2024-09-18 10:43:43 +10:00
msgstr "Wir konnten Ihren Wiederherstellungscode nicht in Ihre Zwischenablage kopieren. Bitte versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-checkout-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We were unable to create a checkout session. Please try again, or contact support"
2024-09-18 10:43:43 +10:00
msgstr "Wir konnten keine Checkout-Sitzung erstellen. Bitte versuchen Sie es erneut oder kontaktieren Sie den Support"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-12-06 16:11:54 +09:00
msgid "We were unable to create your account. Please review the information you provided and try again."
2025-01-02 10:36:05 +11:00
msgstr "Wir konnten Ihr Konto nicht erstellen. Bitte überprüfen Sie die von Ihnen angegebenen Informationen und versuchen Sie es erneut."
2024-12-06 16:11:54 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We were unable to disable two-factor authentication for your account. Please ensure that you have entered your password and backup code correctly and try again."
2024-09-18 10:43:43 +10:00
msgstr "Wir konnten die Zwei-Faktor-Authentifizierung für Ihr Konto nicht deaktivieren. Bitte stellen Sie sicher, dass Sie Ihr Passwort und den Backup-Code korrekt eingegeben haben und versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
#: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx
2024-08-27 20:34:39 +09:00
msgid "We were unable to log you out at this time."
2024-09-18 10:43:43 +10:00
msgstr "Wir konnten Sie zurzeit nicht abmelden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx
2024-08-27 20:34:39 +09:00
msgid "We were unable to set your public profile to public. Please try again."
2024-09-18 10:43:43 +10:00
msgstr "Wir konnten Ihr öffentliches Profil nicht auf öffentlich setzen. Bitte versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "We were unable to setup two-factor authentication for your account. Please ensure that you have entered your code correctly and try again."
2024-09-18 10:43:43 +10:00
msgstr "Wir konnten die Zwei-Faktor-Authentifizierung für Ihr Konto nicht einrichten. Bitte stellen Sie sicher, dass Sie den Code korrekt eingegeben haben und versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
#: apps/remix/app/components/embed/embed-document-signing-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
2024-08-27 20:34:39 +09:00
msgid "We were unable to submit this document at this time. Please try again later."
2024-09-18 10:43:43 +10:00
msgstr "Wir konnten dieses Dokument zurzeit nicht einreichen. Bitte versuchen Sie es später erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-branding-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "We were unable to update your branding preferences at this time, please try again later"
2024-11-08 23:06:57 +11:00
msgstr "Wir konnten Ihre Markenpräferenzen zu diesem Zeitpunkt nicht aktualisieren, bitte versuchen Sie es später noch einmal"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "We were unable to update your document preferences at this time, please try again later"
2024-11-08 23:06:57 +11:00
msgstr "Wir konnten Ihre Dokumentpräferenzen zu diesem Zeitpunkt nicht aktualisieren, bitte versuchen Sie es später noch einmal"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
2024-08-27 20:34:39 +09:00
msgid "We were unable to verify your details. Please try again or contact support"
2024-09-18 10:43:43 +10:00
msgstr "Wir konnten Ihre Angaben nicht verifizieren. Bitte versuchen Sie es erneut oder kontaktieren Sie den Support"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
2025-02-13 20:24:27 +11:00
msgid "We were unable to verify your email at this time."
2025-03-24 10:03:49 +00:00
msgstr "Wir konnten Ihre E-Mail derzeit nicht verifizieren."
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "We were unable to verify your email. If your email is not verified already, please try again."
2024-09-18 10:43:43 +10:00
msgstr "Wir konnten Ihre E-Mail nicht bestätigen. Wenn Ihre E-Mail noch nicht bestätigt wurde, versuchen Sie es bitte erneut."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We will generate signing links for with you, which you can send to the recipients through your method of choice."
msgstr "Wir generieren Signierlinks mit Ihnen, die Sie den Empfängern über Ihre bevorzugte Methode senden können."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "We will generate signing links for you, which you can send to the recipients through your method of choice."
2024-11-08 23:06:57 +11:00
msgstr "Wir werden Unterzeichnungslinks für Sie erstellen, die Sie an die Empfänger über Ihre bevorzugte Methode senden können."
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "We won't send anything to notify recipients."
2024-11-08 23:06:57 +11:00
msgstr "Wir werden nichts senden, um die Empfänger zu benachrichtigen."
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/templates._index.tsx
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
2024-08-27 20:34:39 +09:00
msgid "We're all empty"
2024-09-18 10:43:43 +10:00
msgstr "Wir sind alle leer"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-pending.tsx
msgid "We're still waiting for other signers to sign this document.<0/>We'll notify you as soon as it's ready."
msgstr "Wir warten noch darauf, dass andere Unterzeichner dieses Dokument unterzeichnen.<0/>Wir benachrichtigen dich, sobald es bereit ist."
2025-02-26 21:48:06 +11:00
#: packages/email/templates/reset-password.tsx
msgid "We've changed your password as you asked. You can now sign in with your new password."
msgstr "Wir haben dein Passwort wie gewünscht geändert. Du kannst dich jetzt mit deinem neuen Passwort anmelden."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/verify-email-banner.tsx
2024-08-27 20:34:39 +09:00
msgid "We've sent a confirmation email to <0>{email}</0>. Please check your inbox and click the link in the email to verify your account."
2024-09-18 10:43:43 +10:00
msgstr "Wir haben eine Bestätigungs-E-Mail an <0>{email}</0> gesendet. Bitte überprüfen Sie Ihren Posteingang und klicken Sie auf den Link in der E-Mail, um Ihr Konto zu bestätigen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Webhook created"
2024-09-18 10:43:43 +10:00
msgstr "Webhook erstellt"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Webhook deleted"
2024-09-18 10:43:43 +10:00
msgstr "Webhook gelöscht"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "Webhook updated"
2024-09-18 10:43:43 +10:00
msgstr "Webhook aktualisiert"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Webhook URL"
2024-09-18 10:43:43 +10:00
msgstr "Webhook-URL"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx
#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx
#: apps/remix/app/components/general/teams/team-settings-nav-desktop.tsx
2024-08-27 20:34:39 +09:00
msgid "Webhooks"
2024-09-18 10:43:43 +10:00
msgstr "Webhooks"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/billing-plans.tsx
2025-02-21 15:53:23 +11:00
msgid "Weekly"
2025-03-24 10:03:49 +00:00
msgstr "Wöchentlich"
2025-02-21 15:53:23 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Welcome"
2024-11-01 15:22:51 +11:00
msgstr "Willkommen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/signin.tsx
2024-08-27 20:34:39 +09:00
msgid "Welcome back, we are lucky to have you."
2024-09-18 10:43:43 +10:00
msgstr "Willkommen zurück, wir freuen uns, Sie zu haben."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-confirmation-email.tsx
msgid "Welcome to Documenso!"
msgstr "Willkommen bei Documenso!"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
msgid "Were you trying to edit this document instead?"
2024-09-18 10:43:43 +10:00
msgstr "Hast du stattdessen versucht, dieses Dokument zu bearbeiten?"
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "When enabled, signers can choose who should sign next in the sequence instead of following the predefined order."
2025-03-24 10:03:49 +00:00
msgstr "Wenn aktiviert, können Unterzeichner auswählen, wer als nächster in der Reihenfolge unterzeichnen soll, anstatt der vorgegebenen Reihenfolge zu folgen."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "When you click continue, you will be prompted to add the first available authenticator on your system."
2024-09-18 10:43:43 +10:00
msgstr "Wenn Sie auf Fortfahren klicken, werden Sie aufgefordert, den ersten verfügbaren Authenticator auf Ihrem System hinzuzufügen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
msgid "When you sign a document, we can automatically fill in and sign the following fields using information that has already been provided. You can also manually sign or remove any automatically signed fields afterwards if you desire."
msgstr "Wenn Sie ein Dokument unterschreiben, können wir die folgenden Felder automatisch ausfüllen und signieren, indem wir bereits bereitgestellte Informationen verwenden. Sie können auch nachträglich manuell unterschreiben oder automatisch signierte Felder entfernen, wenn Sie möchten."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "When you use our platform to affix your electronic signature to documents, you are consenting to do so under the Electronic Signatures in Global and National Commerce Act (E-Sign Act) and other applicable laws. This action indicates your agreement to use electronic means to sign documents and receive notifications."
2024-11-01 15:22:51 +11:00
msgstr "Wenn Sie unsere Plattform nutzen, um Ihre elektronische Unterschrift auf Dokumente anzubringen, stimmen Sie zu, dies unter dem Gesetz über elektronische Unterschriften im globalen und nationalen Handel (E-Sign-Gesetz) und anderen anwendbaren Gesetzen zu tun. Diese Handlung zeigt Ihre Zustimmung zur Verwendung elektronischer Mittel zum Unterzeichnen von Dokumenten und zum Empfang von Benachrichtigungen an."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_profile+/p.$url.tsx
2024-08-27 20:34:39 +09:00
msgid "While waiting for them to do so you can create your own Documenso account and get started with document signing right away."
2024-09-18 10:43:43 +10:00
msgstr "Während Sie darauf warten, können Sie Ihr eigenes Documenso-Konto erstellen und sofort mit der Dokumentenunterzeichnung beginnen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Who do you want to remind?"
2024-09-18 10:43:43 +10:00
msgstr "Wen möchten Sie erinnern?"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Withdrawing Consent"
2024-11-01 15:22:51 +11:00
msgstr "Zustimmung widerrufen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/public-profile-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Write about the team"
2024-09-18 10:43:43 +10:00
msgstr "Schreiben Sie über das Team"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/public-profile-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Write about yourself"
2024-09-18 10:43:43 +10:00
msgstr "Schreiben Sie über sich selbst"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx
#: apps/remix/app/components/general/billing-plans.tsx
2024-08-27 20:34:39 +09:00
msgid "Yearly"
2024-09-18 10:43:43 +10:00
msgstr "Jährlich"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
#: packages/lib/utils/document-audit-logs.ts
2024-08-27 20:34:39 +09:00
msgid "You"
msgstr "Du"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "You are about to delete <0>\"{documentTitle}\"</0>"
2024-09-18 10:43:43 +10:00
msgstr "Sie sind dabei, <0>\"{documentTitle}\"</0> zu löschen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "You are about to delete the following team email from <0>{teamName}</0>."
2024-09-18 10:43:43 +10:00
msgstr "Sie stehen kurz davor, die folgende Team-E-Mail von <0>{teamName}</0> zu löschen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "You are about to hide <0>\"{documentTitle}\"</0>"
2024-09-18 10:43:43 +10:00
msgstr "Sie sind dabei, <0>\"{documentTitle}\"</0> zu verstecken"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-leave-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "You are about to leave the following team."
2024-09-18 10:43:43 +10:00
msgstr "Sie stehen kurz davor, das folgende Team zu verlassen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "You are about to remove the following user from <0>{teamName}</0>."
2024-09-18 10:43:43 +10:00
msgstr "Sie stehen kurz davor, den folgenden Benutzer aus <0>{teamName}</0> zu entfernen."
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: teamEmail.team.name
#. placeholder {1}: teamEmail.team.url
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-email-usage.tsx
2024-08-27 20:34:39 +09:00
msgid "You are about to revoke access for team <0>{0}</0> ({1}) to use your email."
2024-09-18 10:43:43 +10:00
msgstr "Sie stehen kurz davor, den Zugriff für das Team <0>{0}</0> ({1}) zu widerrufen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "You are about to send this document to the recipients. Are you sure you want to continue?"
msgstr "Sie sind dabei, dieses Dokument an die Empfänger zu senden. Sind Sie sicher, dass Sie fortfahren möchten?"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
2025-02-21 15:53:23 +11:00
msgid "You are currently on the <0>Free Plan</0>."
2025-03-24 10:03:49 +00:00
msgstr "Sie befinden sich derzeit im <0>kostenlosen Plan</0>."
2025-02-21 15:53:23 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "You are currently updating <0>{teamMemberName}.</0>"
2024-09-18 10:43:43 +10:00
msgstr "Sie aktualisieren derzeit <0>{teamMemberName}.</0>"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
2024-08-27 20:34:39 +09:00
msgid "You are currently updating the <0>{passkeyName}</0> passkey."
2024-09-18 10:43:43 +10:00
msgstr "Sie aktualisieren derzeit den <0>{passkeyName}</0> Passkey."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-move-dialog.tsx
2024-12-26 22:08:52 +11:00
msgid "You are not a member of this team."
2025-01-02 10:36:05 +11:00
msgstr "Sie sind kein Mitglied dieses Teams."
2024-12-26 22:08:52 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "You are not authorized to delete this user."
2025-02-13 20:24:27 +11:00
msgstr "Sie sind nicht berechtigt, diesen Benutzer zu löschen."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
msgid "You are not authorized to disable this user."
2025-01-02 10:36:05 +11:00
msgstr "Sie sind nicht berechtigt, diesen Benutzer zu deaktivieren."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
msgid "You are not authorized to enable this user."
2025-01-02 10:36:05 +11:00
msgstr "Sie sind nicht berechtigt, diesen Benutzer zu aktivieren."
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-confirmation-email.tsx
msgid "You can also copy and paste this link into your browser: {confirmationLink} (link expires in 1 hour)"
msgstr "Du kannst diesen Link auch kopieren und in deinen Browser einfügen: {confirmationLink} (Link läuft in 1 Stunde ab)"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx
2024-08-27 20:34:39 +09:00
msgid "You can choose to enable or disable your profile for public view."
2024-09-18 10:43:43 +10:00
msgstr "Sie können wählen, ob Sie Ihr Profil für die öffentliche Ansicht aktivieren oder deaktivieren möchten."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx
2024-08-27 20:34:39 +09:00
msgid "You can choose to enable or disable your team profile for public view."
2024-09-18 10:43:43 +10:00
msgstr "Sie können wählen, ob Sie Ihr Teamprofil für die öffentliche Ansicht aktivieren oder deaktivieren möchten."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
2024-11-06 22:03:51 +09:00
msgid "You can copy and share these links to recipients so they can action the document."
2024-11-08 23:06:57 +11:00
msgstr "Sie können diese Links kopieren und mit den Empfängern teilen, damit sie das Dokument bearbeiten können."
2024-11-06 22:03:51 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/confirm-team-email.tsx
msgid "You can revoke access at any time in your team settings on Documenso <0>here.</0>"
msgstr "Sie können den Zugriff jederzeit in Ihren Teameinstellungen auf Documenso <0>hier.</0> widerrufen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/public-profile-form.tsx
2024-08-27 20:34:39 +09:00
msgid "You can update the profile URL by updating the team URL in the general settings page."
2024-09-18 10:43:43 +10:00
msgstr "Sie können die Profil-URL aktualisieren, indem Sie die Team-URL auf der Seite mit den allgemeinen Einstellungen aktualisieren."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/components/document/document-send-email-message-helper.tsx
msgid "You can use the following variables in your message:"
msgstr "Sie können die folgenden Variablen in Ihrer Nachricht verwenden:"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
2024-08-27 20:34:39 +09:00
msgid "You can view documents associated with this email and use this identity when sending documents."
2024-09-18 10:43:43 +10:00
msgstr "Sie können Dokumente ansehen, die mit dieser E-Mail verknüpft sind, und diese Identität beim Senden von Dokumenten verwenden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/bulk-send-complete.tsx
2025-02-13 20:24:27 +11:00
msgid "You can view the created documents in your dashboard under the \"Documents created from template\" section."
msgstr "Sie können die erstellten Dokumente in Ihrem Dashboard unter der Rubrik \"Dokumente, die aus Vorlage erstellt wurden\" einsehen."
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-rejected.tsx
msgid "You can view the document and its status by clicking the button below."
msgstr "Sie können das Dokument und seinen Status einsehen, indem Sie auf die Schaltfläche unten klicken."
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
2025-02-13 20:24:27 +11:00
msgid "You cannot add assistants when signing order is disabled."
2025-03-24 10:03:49 +00:00
msgstr "Sie können keine Assistenten hinzufügen, wenn die Unterschriftenreihenfolge deaktiviert ist."
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "You cannot have more than {MAXIMUM_PASSKEYS} passkeys."
2024-09-18 10:43:43 +10:00
msgstr "Sie dürfen nicht mehr als {MAXIMUM_PASSKEYS} Passkeys haben."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "You cannot modify a team member who has a higher role than you."
2024-09-18 10:43:43 +10:00
msgstr "Sie können ein Teammitglied, das eine höhere Rolle als Sie hat, nicht ändern."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/ui/primitives/document-dropzone.tsx
msgid "You cannot upload documents at this time."
msgstr "Sie können derzeit keine Dokumente hochladen."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-upload.tsx
2024-08-27 20:34:39 +09:00
msgid "You cannot upload encrypted PDFs"
2024-09-18 10:43:43 +10:00
msgstr "Sie können keine verschlüsselten PDFs hochladen"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/billing-portal-button.tsx
2025-02-21 15:53:23 +11:00
msgid "You do not currently have a customer record, this should not happen. Please contact support for assistance."
2025-03-24 10:03:49 +00:00
msgstr "Sie haben derzeit keinen Kundenrecord, das sollte nicht passieren. Bitte kontaktieren Sie den Support um Hilfe."
2025-02-21 15:53:23 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
msgid "You do not have permission to create a token for this team"
2025-02-13 20:24:27 +11:00
msgstr "Sie haben keine Berechtigung, ein Token für dieses Team zu erstellen"
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-cancel.tsx
msgid "You don't need to sign it anymore."
msgstr "Du musst es nicht mehr unterschreiben."
2025-02-13 20:24:27 +11:00
#. placeholder {0}: data.teamName
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.invite.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "You have accepted an invitation from <0>{0}</0> to join their team."
2024-09-18 10:43:43 +10:00
msgstr "Sie haben eine Einladung von <0>{0}</0> angenommen, um ihrem Team beizutreten."
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: data.teamName
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.verify.transfer.token.tsx
msgid "You have already completed the ownership transfer for <0>{0}</0>."
2024-09-18 10:43:43 +10:00
msgstr "Sie haben die Eigentumsübertragung für <0>{0}</0> bereits abgeschlossen."
2025-02-13 20:24:27 +11:00
#. placeholder {0}: data.teamName
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "You have already verified your email address for <0>{0}</0>."
2024-09-18 10:43:43 +10:00
msgstr "Sie haben Ihre E-Mail-Adresse für <0>{0}</0> bereits bestätigt."
2025-02-13 20:24:27 +11:00
#. placeholder {0}: data.teamName
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.invite.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/team.decline.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "You have been invited by <0>{0}</0> to join their team."
2024-09-18 10:43:43 +10:00
msgstr "Sie wurden von <0>{0}</0> eingeladen, ihrem Team beizutreten."
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: team.name
2025-02-26 21:48:06 +11:00
#: packages/lib/server-only/team/create-team-member-invites.ts
msgid "You have been invited to join {0} on Documenso"
msgstr "Du wurdest eingeladen, {0} auf Documenso beizutreten"
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-invite.tsx
msgid "You have been invited to join the following team"
msgstr "Du wurdest eingeladen, dem folgenden Team beizutreten"
2025-02-26 21:48:06 +11:00
#: packages/lib/server-only/recipient/set-document-recipients.ts
#: packages/lib/server-only/recipient/delete-document-recipient.ts
msgid "You have been removed from a document"
msgstr "Du wurdest von einem Dokument entfernt"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: team.name
2025-02-26 21:48:06 +11:00
#: packages/lib/server-only/team/request-team-ownership-transfer.ts
msgid "You have been requested to take ownership of team {0} on Documenso"
msgstr "Du wurdest gebeten, das Team {0} auf Documenso zu übernehmen"
2025-02-13 20:24:27 +11:00
#. placeholder {0}: data.teamName
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.decline.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "You have declined the invitation from <0>{0}</0> to join their team."
2024-09-18 10:43:43 +10:00
msgstr "Sie haben die Einladung von <0>{0}</0> abgelehnt, ihrem Team beizutreten."
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: `"${document.title}"`
2025-02-26 21:48:06 +11:00
#: packages/lib/server-only/document/resend-document.tsx
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
msgstr "Du hast das Dokument {0} initiiert, das erfordert, dass du {recipientActionVerb}."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx
2024-08-27 20:34:39 +09:00
msgid "You have no webhooks yet. Your webhooks will be shown here once you create them."
2024-09-18 10:43:43 +10:00
msgstr "Sie haben noch keine Webhooks. Ihre Webhooks werden hier angezeigt, sobald Sie sie erstellt haben."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/templates._index.tsx
2024-08-27 20:34:39 +09:00
msgid "You have not yet created any templates. To create a template please upload one."
2024-09-18 10:43:43 +10:00
msgstr "Sie haben noch keine Vorlagen erstellt. Bitte laden Sie eine Datei hoch, um eine Vorlage zu erstellen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
2024-08-27 20:34:39 +09:00
msgid "You have not yet created or received any documents. To create a document please upload one."
2024-09-18 10:43:43 +10:00
msgstr "Sie haben noch keine Dokumente erstellt oder erhalten. Bitte laden Sie ein Dokument hoch, um eines zu erstellen."
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: quota.directTemplates
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "You have reached the maximum limit of {0} direct templates. <0>Upgrade your account to continue!</0>"
2024-09-18 10:43:43 +10:00
msgstr "Sie haben das maximale Limit von {0} direkten Vorlagen erreicht. <0>Upgrade your account to continue!</0>"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-upload.tsx
msgid "You have reached your document limit for this month. Please upgrade your plan."
2025-02-13 20:24:27 +11:00
msgstr "Sie haben Ihr Dokumentenlimit für diesen Monat erreicht. Bitte aktualisieren Sie Ihren Plan."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-upload.tsx
#: packages/ui/primitives/document-dropzone.tsx
2024-08-27 20:34:39 +09:00
msgid "You have reached your document limit."
2024-09-18 10:43:43 +10:00
msgstr "Sie haben Ihr Dokumentenlimit erreicht."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/tables/templates-table.tsx
2024-08-27 20:34:39 +09:00
msgid "You have reached your document limit. <0>Upgrade your account to continue!</0>"
2024-09-18 10:43:43 +10:00
msgstr "Sie haben Ihr Dokumentenlimit erreicht. <0>Upgrade your account to continue!</0>"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/document-rejection-confirmed.tsx
msgid "You have rejected the document '{documentName}'"
msgstr "Sie haben das Dokument '{documentName}' abgelehnt"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
msgid "You have rejected this document"
2024-11-18 08:40:25 +11:00
msgstr "Sie haben dieses Dokument abgelehnt"
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-self-signed.tsx
msgid "You have signed “{documentName}”"
msgstr "Du hast „{documentName}“ unterzeichnet"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-leave-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "You have successfully left this team."
2024-09-18 10:43:43 +10:00
msgstr "Sie haben dieses Team erfolgreich verlassen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
2024-08-27 20:34:39 +09:00
msgid "You have successfully registered. Please verify your account by clicking on the link you received in the email."
2024-09-18 10:43:43 +10:00
msgstr "Sie haben sich erfolgreich registriert. Bitte bestätigen Sie Ihr Konto, indem Sie auf den Link klicken, den Sie per E-Mail erhalten haben."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "You have successfully removed this user from the team."
2024-09-18 10:43:43 +10:00
msgstr "Sie haben diesen Benutzer erfolgreich aus dem Team entfernt."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-email-usage.tsx
2024-08-27 20:34:39 +09:00
msgid "You have successfully revoked access."
2024-09-18 10:43:43 +10:00
msgstr "Sie haben den Zugriff erfolgreich widerrufen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "You have the right to withdraw your consent to use electronic signatures at any time before completing the signing process. To withdraw your consent, please contact the sender of the document. In failing to contact the sender you may reach out to <0>{SUPPORT_EMAIL}</0> for assistance. Be aware that withdrawing consent may delay or halt the completion of the related transaction or service."
2024-11-01 15:22:51 +11:00
msgstr "Sie haben das Recht, Ihre Zustimmung zur Verwendung elektronischer Unterschriften jederzeit vor Abschluss des Unterzeichnungsprozesses zu widerrufen. Um Ihre Zustimmung zu widerrufen, kontaktieren Sie bitte den Absender des Dokuments. Sollten Sie den Absender nicht erreichen, können Sie sich für Unterstützung an <0>{SUPPORT_EMAIL}</0> wenden. Seien Sie sich bewusst, dass der Widerruf der Zustimmung den Abschluss der zugehörigen Transaktion oder Dienstleistung verzögern oder stoppen kann."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "You have updated {teamMemberName}."
2024-09-18 10:43:43 +10:00
msgstr "Sie haben {teamMemberName} aktualisiert."
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: data.teamName
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "You have verified your email address for <0>{0}</0>."
2024-09-18 10:43:43 +10:00
msgstr "Sie haben Ihre E-Mail-Adresse für <0>{0}</0> bestätigt."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx
2024-08-27 20:34:39 +09:00
msgid "You must be an admin of this team to manage billing."
2024-09-18 10:43:43 +10:00
msgstr "Sie müssen Administrator dieses Teams sein, um die Abrechnung zu verwalten."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "You must enter '{deleteMessage}' to proceed"
2024-09-18 10:43:43 +10:00
msgstr "Sie müssen '{deleteMessage}' eingeben, um fortzufahren"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-transfer-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "You must have at least one other team member to transfer ownership."
2024-09-18 10:43:43 +10:00
msgstr "Sie müssen mindestens einen anderen Teamkollegen haben, um die Eigentumsübertragung durchzuführen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx
2024-08-27 20:34:39 +09:00
msgid "You must set a profile URL before enabling your public profile."
2024-09-18 10:43:43 +10:00
msgstr "Sie müssen eine Profil-URL festlegen, bevor Sie Ihr öffentliches Profil aktivieren."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx
2025-02-21 15:53:23 +11:00
msgid "You need to be an admin to manage API tokens."
2025-03-24 10:03:49 +00:00
msgstr "Sie müssen Administrator sein, um API-Token zu verwalten."
2025-02-21 15:53:23 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
2024-08-27 20:34:39 +09:00
msgid "You need to be logged in as <0>{email}</0> to view this page."
2024-09-18 10:43:43 +10:00
msgstr "Sie müssen als <0>{email}</0> angemeldet sein, um diese Seite anzuzeigen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx
2024-08-27 20:34:39 +09:00
msgid "You need to be logged in to view this page."
2024-09-18 10:43:43 +10:00
msgstr "Sie müssen angemeldet sein, um diese Seite anzuzeigen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
2024-08-27 20:34:39 +09:00
msgid "You need to setup 2FA to mark this document as viewed."
2024-09-18 10:43:43 +10:00
msgstr "Sie müssen 2FA einrichten, um dieses Dokument als angesehen zu markieren."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/signup.tsx
2024-08-27 20:34:39 +09:00
msgid "You will get notified & be able to set up your documenso public profile when we launch the feature."
2024-09-18 10:43:43 +10:00
msgstr "Sie werden benachrichtigt und können Ihr Documenso öffentliches Profil einrichten, wenn wir die Funktion starten."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "You will now be required to enter a code from your authenticator app when signing in."
2024-09-18 10:43:43 +10:00
msgstr "Sie müssen bei der Anmeldung jetzt einen Code von Ihrer Authenticator-App eingeben."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
2024-08-27 20:34:39 +09:00
msgid "You will receive an Email copy of the signed document once everyone has signed."
2024-09-18 10:43:43 +10:00
msgstr "Sie erhalten eine E-Mail-Kopie des unterzeichneten Dokuments, sobald alle unterschrieben haben."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Your account has been deleted successfully."
2024-09-18 10:43:43 +10:00
msgstr "Ihr Konto wurde erfolgreich gelöscht."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/avatar-image.tsx
2024-08-27 20:34:39 +09:00
msgid "Your avatar has been updated successfully."
2024-09-18 10:43:43 +10:00
msgstr "Ihr Avatar wurde erfolgreich aktualisiert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
2024-08-27 20:34:39 +09:00
msgid "Your banner has been updated successfully."
2024-09-18 10:43:43 +10:00
msgstr "Ihr Banner wurde erfolgreich aktualisiert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-branding-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Your brand website URL"
2024-11-08 23:06:57 +11:00
msgstr "Ihre Marken-Website-URL"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-branding-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Your branding preferences have been updated"
2024-11-08 23:06:57 +11:00
msgstr "Ihre Markenpräferenzen wurden aktualisiert"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
2025-02-13 20:24:27 +11:00
msgid "Your bulk send has been initiated. You will receive an email notification upon completion."
msgstr "Ihr Massenversand wurde gestartet. Sie erhalten eine E-Mail-Benachrichtigung nach Abschluss."
2025-02-26 21:48:06 +11:00
#: packages/email/templates/bulk-send-complete.tsx
2025-02-13 20:24:27 +11:00
msgid "Your bulk send operation for template \"{templateName}\" has completed."
msgstr "Ihre Massenversandoperation für Vorlage \"{templateName}\" ist abgeschlossen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
2025-02-21 15:53:23 +11:00
msgid "Your current plan is past due. Please update your payment information."
2025-03-24 10:03:49 +00:00
msgstr "Ihr aktueller Plan ist überfällig. Bitte aktualisieren Sie Ihre Zahlungsinformationen."
2025-02-21 15:53:23 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Your direct signing templates"
2024-09-18 10:43:43 +10:00
msgstr "Ihre direkten Unterzeichnungsvorlagen"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-upload.tsx
2024-08-27 20:34:39 +09:00
msgid "Your document failed to upload."
2024-09-18 10:43:43 +10:00
msgstr "Ihr Dokument konnte nicht hochgeladen werden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Your document has been created from the template successfully."
2024-09-18 10:43:43 +10:00
msgstr "Ihr Dokument wurde erfolgreich aus der Vorlage erstellt."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-document-super-delete.tsx
msgid "Your document has been deleted by an admin!"
msgstr "Dein Dokument wurde von einem Administrator gelöscht!"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Your document has been re-sent successfully."
2024-09-18 10:43:43 +10:00
msgstr "Ihr Dokument wurde erfolgreich erneut gesendet."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-edit-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Your document has been sent successfully."
2024-09-18 10:43:43 +10:00
msgstr "Ihr Dokument wurde erfolgreich gesendet."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Your document has been successfully duplicated."
2024-09-18 10:43:43 +10:00
msgstr "Ihr Dokument wurde erfolgreich dupliziert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/document/document-upload.tsx
2024-08-27 20:34:39 +09:00
msgid "Your document has been uploaded successfully."
2024-09-18 10:43:43 +10:00
msgstr "Ihr Dokument wurde erfolgreich hochgeladen."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Your document has been uploaded successfully. You will be redirected to the template page."
2024-09-18 10:43:43 +10:00
msgstr "Ihr Dokument wurde erfolgreich hochgeladen. Sie werden zur Vorlagenseite weitergeleitet."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-document-preferences-form.tsx
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
msgid "Your document preferences have been updated"
2024-11-08 23:06:57 +11:00
msgstr "Ihre Dokumentpräferenzen wurden aktualisiert"
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/app-command-menu.tsx
2024-08-27 20:34:39 +09:00
msgid "Your documents"
2024-09-18 10:43:43 +10:00
msgstr "Ihre Dokumente"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
2025-02-13 20:24:27 +11:00
msgid "Your email has already been confirmed. You can now use all features of Documenso."
2025-03-24 10:03:49 +00:00
msgstr "Ihre E-Mail wurde bereits bestätigt. Sie können jetzt alle Funktionen von Documenso nutzen."
2025-02-13 20:24:27 +11:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "Your email has been successfully confirmed! You can now use all features of Documenso."
2024-09-18 10:43:43 +10:00
msgstr "Ihre E-Mail wurde erfolgreich bestätigt! Sie können jetzt alle Funktionen von Documenso nutzen."
2024-08-27 20:34:39 +09:00
2025-02-13 20:24:27 +11:00
#. placeholder {0}: teamEmail.team.name
#. placeholder {1}: teamEmail.team.url
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-email-usage.tsx
2024-08-27 20:34:39 +09:00
msgid "Your email is currently being used by team <0>{0}</0> ({1})."
2024-09-18 10:43:43 +10:00
msgstr "Ihre E-Mail wird derzeit von Team <0>{0}</0> ({1}) verwendet."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx
2024-08-27 20:34:39 +09:00
msgid "Your existing tokens"
2024-09-18 10:43:43 +10:00
msgstr "Ihre vorhandenen Tokens"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
2024-12-06 16:11:54 +09:00
msgid "Your new password cannot be the same as your old password."
2025-01-02 10:36:05 +11:00
msgstr "Ihr neues Passwort darf nicht mit Ihrem alten Passwort identisch sein."
feat: add global settings for teams (#1391) ## Description This PR introduces global settings for teams. At the moment, it allows team admins to configure the following: * The default visibility of the documents uploaded to the team account * Whether to include the document owner (sender) details when sending emails to the recipients. ### Include Sender Details If the Sender Details setting is enabled, the emails sent by the team will include the sender's name: > "Example User" on behalf of "Example Team" has invited you to sign "document.pdf" Otherwise, the email will say: > "Example Team" has invited you to sign "document.pdf" ### Default Document Visibility This new option allows users to set the default visibility for the documents uploaded to the team account. It can have the following values: * Everyone * Manager and above * Admins only If the default document visibility isn't set, the document will be set to the role of the user who created the document: * If a user with the "User" role creates a document, the document's visibility is set to "Everyone". * Manager role -> "Manager and above" * Admin role -> "Admins only" Otherwise, if there is a default document visibility value, it uses that value. #### Gotcha To avoid issues, the `document owner` and the `recipient` can access the document irrespective of their role. For example: * If a team member with the role "Member" uploads a document and the default document visibility is "Admins", only the document owner and admins can access the document. * Similar to the other scenarios. * If an admin uploads a document and the default document visibility is "Admins", the recipient can access the document. * The admins have access to all the documents. * Managers have access to documents with the visibility set to "Everyone" and "Manager and above" * Members have access only to the documents with the visibility set to "Everyone". ## Testing Performed Tested it locally.
2024-11-08 13:50:49 +02:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
2024-08-27 20:34:39 +09:00
msgid "Your password has been updated successfully."
2024-09-18 10:43:43 +10:00
msgstr "Ihr Passwort wurde erfolgreich aktualisiert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/template-components/template-reset-password.tsx
msgid "Your password has been updated."
msgstr "Dein Passwort wurde aktualisiert."
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx
2024-08-27 20:34:39 +09:00
msgid "Your payment for teams is overdue. Please settle the payment to avoid any service disruptions."
2024-09-18 10:43:43 +10:00
msgstr "Ihre Zahlung für Teams ist überfällig. Bitte begleichen Sie die Zahlung, um Unterbrechungen des Dienstes zu vermeiden."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/profile.tsx
2024-08-27 20:34:39 +09:00
msgid "Your profile has been updated successfully."
2024-09-18 10:43:43 +10:00
msgstr "Ihr Profil wurde erfolgreich aktualisiert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
2024-08-27 20:34:39 +09:00
msgid "Your profile has been updated."
2024-09-18 10:43:43 +10:00
msgstr "Ihr Profil wurde aktualisiert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/public-profile-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Your public profile has been updated."
2024-09-18 10:43:43 +10:00
msgstr "Ihr öffentliches Profil wurde aktualisiert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/recovery-code-list.tsx
2024-08-27 20:34:39 +09:00
msgid "Your recovery code has been copied to your clipboard."
2024-09-18 10:43:43 +10:00
msgstr "Ihr Wiederherstellungscode wurde in die Zwischenablage kopiert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Your recovery codes are listed below. Please store them in a safe place."
2024-09-18 10:43:43 +10:00
msgstr "Ihre Wiederherstellungscodes sind unten aufgeführt. Bitte bewahren Sie sie an einem sicheren Ort auf."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx
2024-08-27 20:34:39 +09:00
msgid "Your subscription is currently active."
2024-09-18 10:43:43 +10:00
msgstr "Ihr Abonnement ist derzeit aktiv."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Your team has been created."
2024-09-18 10:43:43 +10:00
msgstr "Ihr Team wurde erstellt."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: packages/email/templates/team-delete.tsx
#: packages/email/templates/team-delete.tsx
msgid "Your team has been deleted"
msgstr "Dein Team wurde gelöscht"
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Your team has been successfully deleted."
2024-09-18 10:43:43 +10:00
msgstr "Ihr Team wurde erfolgreich gelöscht."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/team-update-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Your team has been successfully updated."
2024-09-18 10:43:43 +10:00
msgstr "Ihr Team wurde erfolgreich aktualisiert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Your template has been duplicated successfully."
2024-09-18 10:43:43 +10:00
msgstr "Ihre Vorlage wurde erfolgreich dupliziert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Your template has been successfully deleted."
2024-09-18 10:43:43 +10:00
msgstr "Ihre Vorlage wurde erfolgreich gelöscht."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
2024-08-27 20:34:39 +09:00
msgid "Your template will be duplicated."
2024-09-18 10:43:43 +10:00
msgstr "Ihre Vorlage wird dupliziert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/general/template/template-edit-form.tsx
2024-08-27 20:34:39 +09:00
msgid "Your templates has been saved successfully."
2024-09-18 10:43:43 +10:00
msgstr "Ihre Vorlagen wurden erfolgreich gespeichert."
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
2024-08-27 20:34:39 +09:00
msgid "Your token has expired!"
2024-09-18 10:43:43 +10:00
msgstr "Ihr Token ist abgelaufen!"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/components/forms/token.tsx
2024-08-27 20:34:39 +09:00
msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!"
2024-09-18 10:43:43 +10:00
msgstr "Ihr Token wurde erfolgreich erstellt! Stellen Sie sicher, dass Sie es kopieren, da Sie es später nicht mehr sehen können!"
2024-08-27 20:34:39 +09:00
2025-02-26 21:48:06 +11:00
#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx
2024-08-27 20:34:39 +09:00
msgid "Your tokens will be shown here once you create them."
2024-09-18 10:43:43 +10:00
msgstr "Ihre Tokens werden hier angezeigt, sobald Sie sie erstellt haben."
2025-03-24 10:03:49 +00:00