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

793 lines
32 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"
2024-09-18 10:43:43 +10:00
"PO-Revision-Date: 2024-09-16 16:03\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: common.po\n"
"X-Crowdin-File-ID: 4\n"
2024-08-21 11:06:26 +10:00
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/data-table-pagination.tsx:30
msgid "{0} of {1} row(s) selected."
2024-09-18 10:43:43 +10:00
msgstr "{0} von {1} Zeile(n) ausgewählt."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/data-table-pagination.tsx:41
msgid "{visibleRows, plural, one {Showing # result.} other {Showing # results.}}"
2024-09-18 10:43:43 +10:00
msgstr "{visibleRows, plural, one {Eine # Ergebnis wird angezeigt.} other {# Ergebnisse werden angezeigt.}}"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/recipient/recipient-action-auth-select.tsx:53
msgid "<0>Inherit authentication method</0> - Use the global action signing authentication method configured in the \"General Settings\" step"
2024-09-18 10:43:43 +10:00
msgstr "<0>Authentifizierungsmethode erben</0> - Verwenden Sie die in den \"Allgemeinen Einstellungen\" konfigurierte globale Aktionssignatur-Authentifizierungsmethode"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-global-auth-action-select.tsx:95
msgid "<0>No restrictions</0> - No authentication required"
2024-09-18 10:43:43 +10:00
msgstr "<0>Keine Einschränkungen</0> - Keine Authentifizierung erforderlich"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-global-auth-access-select.tsx:77
msgid "<0>No restrictions</0> - The document can be accessed directly by the URL sent to the recipient"
2024-09-18 10:43:43 +10:00
msgstr "<0>Keine Einschränkungen</0> - Das Dokument kann direkt über die dem Empfänger gesendete URL abgerufen werden"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/recipient/recipient-action-auth-select.tsx:75
msgid "<0>None</0> - No authentication required"
2024-09-18 10:43:43 +10:00
msgstr "<0>Keine</0> - Keine Authentifizierung erforderlich"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-global-auth-action-select.tsx:89
#: packages/ui/components/recipient/recipient-action-auth-select.tsx:69
msgid "<0>Require 2FA</0> - The recipient must have an account and 2FA enabled via their settings"
2024-09-18 10:43:43 +10:00
msgstr "<0>2FA erforderlich</0> - Der Empfänger muss ein Konto haben und die 2FA über seine Einstellungen aktiviert haben"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-global-auth-access-select.tsx:72
msgid "<0>Require account</0> - The recipient must be signed in to view the document"
2024-09-18 10:43:43 +10:00
msgstr "<0>Konto erforderlich</0> - Der Empfänger muss angemeldet sein, um das Dokument anzeigen zu können"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-global-auth-action-select.tsx:83
#: packages/ui/components/recipient/recipient-action-auth-select.tsx:63
msgid "<0>Require passkey</0> - The recipient must have an account and passkey configured via their settings"
2024-09-18 10:43:43 +10:00
msgstr "<0>Passkey erforderlich</0> - Der Empfänger muss ein Konto haben und den Passkey über seine Einstellungen konfiguriert haben"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-dropzone.tsx:69
msgid "Add a document"
2024-09-18 10:43:43 +10:00
msgstr "Dokument hinzufügen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-settings.tsx:336
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx:339
msgid "Add a URL to redirect the user to once the document is signed"
2024-09-18 10:43:43 +10:00
msgstr "Fügen Sie eine URL hinzu, um den Benutzer nach der Unterzeichnung des Dokuments weiterzuleiten"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-settings.tsx:248
2024-08-27 20:34:39 +09:00
msgid "Add an external ID to the document. This can be used to identify the document in external systems."
2024-09-18 10:43:43 +10:00
msgstr "Fügen Sie dem Dokument eine externe ID hinzu. Diese kann verwendet werden, um das Dokument in externen Systemen zu identifizieren."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx:256
msgid "Add an external ID to the template. This can be used to identify in external systems."
2024-09-18 10:43:43 +10:00
msgstr "Fügen Sie der Vorlage eine externe ID hinzu. Diese kann zur Identifizierung in externen Systemen verwendet werden."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx:177
msgid "Add another option"
2024-09-18 10:43:43 +10:00
msgstr "Weitere Option hinzufügen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx:230
#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx:167
msgid "Add another value"
2024-09-18 10:43:43 +10:00
msgstr "Weiteren Wert hinzufügen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-signers.tsx:662
2024-08-27 20:34:39 +09:00
msgid "Add myself"
2024-09-18 10:43:43 +10:00
msgstr "Mich selbst hinzufügen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:637
2024-08-27 20:34:39 +09:00
msgid "Add Myself"
2024-09-18 10:43:43 +10:00
msgstr "Mich hinzufügen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:623
2024-08-27 20:34:39 +09:00
msgid "Add Placeholder Recipient"
2024-09-18 10:43:43 +10:00
msgstr "Platzhalterempfänger hinzufügen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-signers.tsx:651
2024-08-27 20:34:39 +09:00
msgid "Add Signer"
2024-09-18 10:43:43 +10:00
msgstr "Unterzeichner hinzufügen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx:70
msgid "Add text"
2024-09-18 10:43:43 +10:00
msgstr "Text hinzufügen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx:75
msgid "Add text to the field"
2024-09-18 10:43:43 +10:00
msgstr "Text zum Feld hinzufügen"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/teams.ts:10
msgid "Admin"
2024-09-18 10:43:43 +10:00
msgstr "Admin"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-settings.tsx:230
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx:238
msgid "Advanced Options"
2024-09-18 10:43:43 +10:00
msgstr "Erweiterte Optionen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-fields.tsx:527
#: packages/ui/primitives/template-flow/add-template-fields.tsx:402
2024-08-27 20:34:39 +09:00
msgid "Advanced settings"
2024-09-18 10:43:43 +10:00
msgstr "Erweiterte Einstellungen"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/template.ts:21
msgid "After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email."
2024-09-18 10:43:43 +10:00
msgstr "Nach der Übermittlung wird ein Dokument automatisch generiert und zu Ihrer Dokumentenseite hinzugefügt. Sie erhalten außerdem eine Benachrichtigung per E-Mail."
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/recipient-roles.ts:8
msgid "Approve"
2024-09-18 10:43:43 +10:00
msgstr "Genehmigen"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/recipient-roles.ts:9
msgid "Approved"
2024-09-18 10:43:43 +10:00
msgstr "Genehmigt"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/recipient-roles.ts:11
msgid "Approver"
2024-09-18 10:43:43 +10:00
msgstr "Genehmiger"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/recipient-roles.ts:10
msgid "Approving"
2024-09-18 10:43:43 +10:00
msgstr "Genehmigung"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/signature-pad/signature-pad.tsx:276
msgid "Black"
2024-09-18 10:43:43 +10:00
msgstr "Schwarz"
#: packages/ui/primitives/signature-pad/signature-pad.tsx:290
msgid "Blue"
2024-09-18 10:43:43 +10:00
msgstr "Blau"
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:287
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx:58
msgid "Cancel"
2024-09-18 10:43:43 +10:00
msgstr "Abbrechen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-signers.tsx:193
2024-08-27 20:34:39 +09:00
msgid "Cannot remove signer"
2024-09-18 10:43:43 +10:00
msgstr "Unterzeichner kann nicht entfernt werden"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-signers.tsx:221
#~ msgid "Cannot update signer because they have already signed a field"
#~ msgstr ""
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/recipient-roles.ts:17
msgid "Cc"
2024-09-18 10:43:43 +10:00
msgstr "Cc"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/recipient-roles.ts:14
#: packages/lib/constants/recipient-roles.ts:16
msgid "CC"
2024-09-18 10:43:43 +10:00
msgstr "CC"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/recipient-roles.ts:15
msgid "CC'd"
2024-09-18 10:43:43 +10:00
msgstr "CC'd"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx:83
msgid "Character Limit"
2024-09-18 10:43:43 +10:00
msgstr "Zeichenbeschränkung"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-fields.tsx:950
#: packages/ui/primitives/template-flow/add-template-fields.tsx:788
2024-08-27 20:34:39 +09:00
msgid "Checkbox"
2024-09-18 10:43:43 +10:00
msgstr "Checkbox"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx:195
msgid "Checkbox values"
2024-09-18 10:43:43 +10:00
msgstr "Checkbox-Werte"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/data-table.tsx:156
2024-08-27 20:34:39 +09:00
msgid "Clear filters"
2024-09-18 10:43:43 +10:00
msgstr "Filter löschen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/signature-pad/signature-pad.tsx:310
2024-08-27 20:34:39 +09:00
msgid "Clear Signature"
2024-09-18 10:43:43 +10:00
msgstr "Unterschrift löschen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-signature.tsx:394
msgid "Click to insert field"
2024-09-18 10:43:43 +10:00
msgstr "Klicken, um das Feld einzufügen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/missing-signature-field-dialog.tsx:44
msgid "Close"
2024-09-18 10:43:43 +10:00
msgstr "Schließen"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/template.ts:12
msgid "Configure Direct Recipient"
2024-09-18 10:43:43 +10:00
msgstr "Direkten Empfänger konfigurieren"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-fields.tsx:528
#: packages/ui/primitives/template-flow/add-template-fields.tsx:403
2024-08-27 20:34:39 +09:00
msgid "Configure the {0} field"
2024-09-18 10:43:43 +10:00
msgstr "Konfigurieren Sie das Feld {0}"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/document-flow-root.tsx:141
msgid "Continue"
2024-09-18 10:43:43 +10:00
msgstr "Fortsetzen"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-share-button.tsx:46
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
#: packages/ui/primitives/document-flow/add-signature.tsx:360
msgid "Custom Text"
2024-09-18 10:43:43 +10:00
msgstr "Benutzerdefinierter Text"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-fields.tsx:846
#: packages/ui/primitives/template-flow/add-template-fields.tsx:684
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
#: packages/ui/primitives/document-flow/add-settings.tsx:271
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx:279
msgid "Date Format"
2024-09-18 10:43:43 +10:00
msgstr "Datumsformat"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:570
2024-08-27 20:34:39 +09:00
msgid "Direct link receiver"
2024-09-18 10:43:43 +10:00
msgstr "Empfänger des direkten Links"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-global-auth-access-select.tsx:62
#: packages/ui/primitives/document-flow/add-settings.tsx:174
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx:151
msgid "Document access"
2024-09-18 10:43:43 +10:00
msgstr "Dokumentenzugriff"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/template.ts:20
msgid "Document Creation"
2024-09-18 10:43:43 +10:00
msgstr "Dokumenterstellung"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-download-button.tsx:68
msgid "Download"
2024-09-18 10:43:43 +10:00
msgstr "Herunterladen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-dropzone.tsx:162
msgid "Drag & drop your PDF here."
2024-09-18 10:43:43 +10:00
msgstr "Ziehen Sie Ihr PDF hierher."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-fields.tsx:976
#: packages/ui/primitives/template-flow/add-template-fields.tsx:814
2024-08-27 20:34:39 +09:00
msgid "Dropdown"
2024-09-18 10:43:43 +10:00
msgstr "Dropdown"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx:148
msgid "Dropdown options"
2024-09-18 10:43:43 +10:00
msgstr "Dropdown-Optionen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-fields.tsx:794
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-signature.tsx:272
#: packages/ui/primitives/document-flow/add-signers.tsx:500
#: packages/ui/primitives/template-flow/add-template-fields.tsx:632
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:463
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:470
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
#: packages/ui/primitives/template-flow/add-template-settings.tsx:184
msgid "Email Options"
2024-09-18 10:43:43 +10:00
msgstr "E-Mail-Optionen"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/template.ts:8
msgid "Enable Direct Link Signing"
2024-09-18 10:43:43 +10:00
msgstr "Direktlink-Signierung aktivieren"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-signers.tsx:401
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:362
msgid "Enable signing order"
2024-09-18 10:43:43 +10:00
msgstr "Aktiviere die Signaturreihenfolge"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-password-dialog.tsx:84
msgid "Enter password"
2024-09-18 10:43:43 +10:00
msgstr "Passwort eingeben"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:216
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
#: packages/ui/primitives/document-flow/add-settings.tsx:241
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx:249
msgid "External ID"
2024-09-18 10:43:43 +10:00
msgstr "Externe ID"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:217
2024-08-27 20:34:39 +09:00
msgid "Failed to save settings."
2024-09-18 10:43:43 +10:00
msgstr "Einstellungen konnten nicht gespeichert werden."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx:90
msgid "Field character limit"
2024-09-18 10:43:43 +10:00
msgstr "Zeichenbeschränkung des Feldes"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx:107
msgid "Field format"
2024-09-18 10:43:43 +10:00
msgstr "Feldformat"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx:50
msgid "Field label"
2024-09-18 10:43:43 +10:00
msgstr "Feldbeschriftung"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx:62
msgid "Field placeholder"
2024-09-18 10:43:43 +10:00
msgstr "Feldplatzhalter"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-global-auth-action-select.tsx:64
msgid "Global recipient action authentication"
2024-09-18 10:43:43 +10:00
msgstr "Globale Empfängerauthentifizierung"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/document-flow-root.tsx:142
msgid "Go Back"
2024-09-18 10:43:43 +10:00
msgstr "Zurück"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/signature-pad/signature-pad.tsx:297
msgid "Green"
2024-09-18 10:43:43 +10:00
msgstr "Grün"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/recipient-roles.ts:72
msgid "I am a signer of this document"
2024-09-18 10:43:43 +10:00
msgstr "Ich bin ein Unterzeichner dieses Dokuments"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/recipient-roles.ts:75
msgid "I am a viewer of this document"
2024-09-18 10:43:43 +10:00
msgstr "Ich bin ein Betrachter dieses Dokuments"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/recipient-roles.ts:73
msgid "I am an approver of this document"
2024-09-18 10:43:43 +10:00
msgstr "Ich bin ein Genehmiger dieses Dokuments"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/recipient-roles.ts:74
2024-08-27 23:22:27 +09:00
msgid "I am required to receive a copy of this document"
2024-09-18 10:43:43 +10:00
msgstr "Ich bin verpflichtet, eine Kopie dieses Dokuments zu erhalten"
#: packages/lib/constants/recipient-roles.ts:74
#~ msgid "I am required to recieve a copy of this document"
#~ msgstr "I am required to recieve a copy of this document"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/recipient/recipient-action-auth-select.tsx:29
#: packages/ui/components/recipient/recipient-action-auth-select.tsx:87
msgid "Inherit authentication method"
2024-09-18 10:43:43 +10:00
msgstr "Authentifizierungsmethode erben"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx:64
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx:69
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx:45
msgid "Label"
2024-09-18 10:43:43 +10:00
msgstr "Beschriftung"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/teams.ts:11
msgid "Manager"
2024-09-18 10:43:43 +10:00
msgstr "Manager"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx:168
msgid "Max"
2024-09-18 10:43:43 +10:00
msgstr "Max"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/teams.ts:12
msgid "Member"
2024-09-18 10:43:43 +10:00
msgstr "Mitglied"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-subject.tsx:95
#: packages/ui/primitives/template-flow/add-template-settings.tsx:215
msgid "Message <0>(Optional)</0>"
2024-09-18 10:43:43 +10:00
msgstr "Nachricht <0>(Optional)</0>"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx:156
msgid "Min"
2024-09-18 10:43:43 +10:00
msgstr "Min"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-fields.tsx:820
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-signature.tsx:298
#: packages/ui/primitives/document-flow/add-signers.tsx:535
#: packages/ui/primitives/document-flow/add-signers.tsx:541
#: packages/ui/primitives/template-flow/add-template-fields.tsx:658
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:498
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:504
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
#: packages/ui/components/recipient/recipient-role-select.tsx:52
msgid "Needs to approve"
2024-09-18 10:43:43 +10:00
msgstr "Muss genehmigen"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/recipient/recipient-role-select.tsx:31
msgid "Needs to sign"
2024-09-18 10:43:43 +10:00
msgstr "Muss unterzeichnen"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/recipient/recipient-role-select.tsx:73
msgid "Needs to view"
2024-09-18 10:43:43 +10:00
msgstr "Muss sehen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-fields.tsx:631
#: packages/ui/primitives/template-flow/add-template-fields.tsx:497
2024-08-27 20:34:39 +09:00
msgid "No recipient matching this description was found."
2024-09-18 10:43:43 +10:00
msgstr "Kein passender Empfänger mit dieser Beschreibung gefunden."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-fields.tsx:647
#: packages/ui/primitives/template-flow/add-template-fields.tsx:513
2024-08-27 20:34:39 +09:00
msgid "No recipients with this role"
2024-09-18 10:43:43 +10:00
msgstr "Keine Empfänger mit dieser Rolle"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-global-auth-access-select.tsx:30
#: packages/ui/components/document/document-global-auth-access-select.tsx:43
#: packages/ui/components/document/document-global-auth-action-select.tsx:31
#: packages/ui/components/document/document-global-auth-action-select.tsx:46
msgid "No restrictions"
2024-09-18 10:43:43 +10:00
msgstr "Keine Einschränkungen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/data-table.tsx:148
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
#: packages/ui/primitives/document-flow/missing-signature-field-dialog.tsx:30
msgid "No signature field found"
2024-09-18 10:43:43 +10:00
msgstr "Kein Unterschriftsfeld gefunden"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/combobox.tsx:60
#: packages/ui/primitives/multi-select-combobox.tsx:153
msgid "No value found."
2024-09-18 10:43:43 +10:00
msgstr "Kein Wert gefunden."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-fields.tsx:898
#: packages/ui/primitives/template-flow/add-template-fields.tsx:736
2024-08-27 20:34:39 +09:00
msgid "Number"
2024-09-18 10:43:43 +10:00
msgstr "Nummer"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx:100
msgid "Number format"
2024-09-18 10:43:43 +10:00
msgstr "Zahlenformat"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/template.ts:9
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."
2024-09-18 10:43:43 +10:00
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."
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/template.ts:17
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."
2024-09-18 10:43:43 +10:00
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."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/data-table-pagination.tsx:77
msgid "Page {0} of {1}"
2024-09-18 10:43:43 +10:00
msgstr "Seite {0} von {1}"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-password-dialog.tsx:62
msgid "Password Required"
2024-09-18 10:43:43 +10:00
msgstr "Passwort erforderlich"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx:154
msgid "Pick a number"
2024-09-18 10:43:43 +10:00
msgstr "Wählen Sie eine Zahl"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx:76
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx:81
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx:57
msgid "Placeholder"
2024-09-18 10:43:43 +10:00
msgstr "Platzhalter"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-fields.tsx:924
#: packages/ui/primitives/template-flow/add-template-fields.tsx:762
2024-08-27 20:34:39 +09:00
msgid "Radio"
2024-09-18 10:43:43 +10:00
msgstr "Radio"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx:133
msgid "Radio values"
2024-09-18 10:43:43 +10:00
msgstr "Radio-Werte"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx:184
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx:137
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx:136
#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx:122
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx:114
msgid "Read only"
2024-09-18 10:43:43 +10:00
msgstr "Nur lesen"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/recipient/recipient-role-select.tsx:95
msgid "Receives copy"
2024-09-18 10:43:43 +10:00
msgstr "Erhält Kopie"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/recipient/recipient-action-auth-select.tsx:39
#: packages/ui/primitives/document-flow/add-settings.tsx:215
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx:169
msgid "Recipient action authentication"
2024-09-18 10:43:43 +10:00
msgstr "Empfängeraktion Authentifizierung"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/signature-pad/signature-pad.tsx:283
msgid "Red"
2024-09-18 10:43:43 +10:00
msgstr "Rot"
#: packages/ui/primitives/document-flow/add-settings.tsx:329
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx:332
msgid "Redirect URL"
2024-09-18 10:43:43 +10:00
msgstr "Weiterleitungs-URL"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-fields.tsx:1027
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
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx:174
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx:127
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx:126
#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx:112
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx:104
msgid "Required field"
2024-09-18 10:43:43 +10:00
msgstr "Pflichtfeld"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/data-table-pagination.tsx:55
msgid "Rows per page"
2024-09-18 10:43:43 +10:00
msgstr "Zeilen pro Seite"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:286
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
#: packages/ui/primitives/template-flow/add-template-fields.tsx:848
2024-08-27 20:34:39 +09:00
msgid "Save Template"
2024-09-18 10:43:43 +10:00
msgstr "Vorlage speichern"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/common/language-switcher-dialog.tsx:34
msgid "Search languages..."
2024-09-18 10:43:43 +10:00
msgstr "Sprachen suchen..."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx:105
msgid "Select"
2024-09-18 10:43:43 +10:00
msgstr "Auswählen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/combobox.tsx:38
msgid "Select an option"
2024-09-18 10:43:43 +10:00
msgstr "Option auswählen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx:137
msgid "Select at least"
2024-09-18 10:43:43 +10:00
msgstr "Wählen Sie mindestens"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx:95
msgid "Select default option"
2024-09-18 10:43:43 +10:00
msgstr "Standardoption auswählen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-subject.tsx:124
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx:34
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx:64
msgid "Send"
2024-09-18 10:43:43 +10:00
msgstr "Senden"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx:41
msgid "Send Document"
2024-09-18 10:43:43 +10:00
msgstr "Dokument senden"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-share-button.tsx:135
msgid "Share Signature Card"
2024-09-18 10:43:43 +10:00
msgstr "Unterschriftenkarte teilen"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/template.ts:16
msgid "Share the Link"
2024-09-18 10:43:43 +10:00
msgstr "Link teilen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-signers.tsx:680
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:655
2024-08-27 20:34:39 +09:00
msgid "Show advanced settings"
2024-09-18 10:43:43 +10:00
msgstr "Erweiterte Einstellungen anzeigen"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/recipient-roles.ts:20
msgid "Sign"
2024-09-18 10:43:43 +10:00
msgstr "Unterschreiben"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-fields.tsx:742
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-signature.tsx:323
#: packages/ui/primitives/document-flow/field-icon.tsx:52
#: packages/ui/primitives/template-flow/add-template-fields.tsx:580
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
#: packages/lib/constants/recipient-roles.ts:21
msgid "Signed"
2024-09-18 10:43:43 +10:00
msgstr "Unterzeichnet"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/recipient-roles.ts:23
msgid "Signer"
2024-09-18 10:43:43 +10:00
msgstr "Unterzeichner"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/recipient-roles.ts:22
msgid "Signing"
2024-09-18 10:43:43 +10:00
msgstr "Unterzeichnung"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/missing-signature-field-dialog.tsx:34
msgid "Some signers have not been assigned a signature field. Please assign at least 1 signature field to each signer before proceeding."
2024-09-18 10:43:43 +10:00
msgstr "Einige Unterzeichner haben noch kein Unterschriftsfeld zugewiesen bekommen. Bitte weisen Sie jedem Unterzeichner mindestens ein Unterschriftsfeld zu, bevor Sie fortfahren."
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-share-button.tsx:51
msgid "Something went wrong"
2024-09-18 10:43:43 +10:00
msgstr "Etwas ist schief gelaufen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/data-table.tsx:136
2024-08-27 20:34:39 +09:00
msgid "Something went wrong."
2024-09-18 10:43:43 +10:00
msgstr "Etwas ist schief gelaufen."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/document-flow-root.tsx:107
msgid "Step <0>{step} of {maxStep}</0>"
2024-09-18 10:43:43 +10:00
msgstr "Schritt <0>{step} von {maxStep}</0>"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-subject.tsx:78
#: packages/ui/primitives/template-flow/add-template-settings.tsx:195
msgid "Subject <0>(Optional)</0>"
2024-09-18 10:43:43 +10:00
msgstr "Betreff <0>(Optional)</0>"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-password-dialog.tsx:97
msgid "Submit"
2024-09-18 10:43:43 +10:00
msgstr "Einreichen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx:134
msgid "Template title"
2024-09-18 10:43:43 +10:00
msgstr "Vorlagentitel"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-fields.tsx:872
#: packages/ui/primitives/template-flow/add-template-fields.tsx:710
2024-08-27 20:34:39 +09:00
msgid "Text"
2024-09-18 10:43:43 +10:00
msgstr "Text"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/recipient/recipient-action-auth-select.tsx:44
msgid "The authentication required for recipients to sign fields"
2024-09-18 10:43:43 +10:00
msgstr "Die Authentifizierung, die erforderlich ist, damit Empfänger Felder signieren"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-global-auth-action-select.tsx:68
msgid "The authentication required for recipients to sign the signature field."
2024-09-18 10:43:43 +10:00
msgstr "Die Authentifizierung, die erforderlich ist, damit Empfänger das Signaturfeld signieren können."
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-global-auth-access-select.tsx:67
msgid "The authentication required for recipients to view the document."
2024-09-18 10:43:43 +10:00
msgstr "Die Authentifizierung, die erforderlich ist, damit Empfänger das Dokument anzeigen können."
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-send-email-message-helper.tsx:31
msgid "The document's name"
2024-09-18 10:43:43 +10:00
msgstr "Der Name des Dokuments"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-password-dialog.tsx:52
msgid "The password you have entered is incorrect. Please try again."
2024-09-18 10:43:43 +10:00
msgstr "Das eingegebene Passwort ist falsch. Bitte versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
#: packages/ui/components/recipient/recipient-role-select.tsx:103
msgid "The recipient is not required to take any action and receives a copy of the document after it is completed."
2024-09-18 10:43:43 +10:00
msgstr "Der Empfänger muss keine Aktion ausführen und erhält nach Abschluss eine Kopie des Dokuments."
2024-08-27 20:34:39 +09:00
#: packages/ui/components/recipient/recipient-role-select.tsx:60
msgid "The recipient is required to approve the document for it to be completed."
2024-09-18 10:43:43 +10:00
msgstr "Der Empfänger muss das Dokument genehmigen, damit es abgeschlossen werden kann."
2024-08-27 20:34:39 +09:00
#: packages/ui/components/recipient/recipient-role-select.tsx:39
msgid "The recipient is required to sign the document for it to be completed."
2024-09-18 10:43:43 +10:00
msgstr "Der Empfänger muss das Dokument unterschreiben, damit es abgeschlossen werden kann."
2024-08-27 20:34:39 +09:00
#: packages/ui/components/recipient/recipient-role-select.tsx:81
msgid "The recipient is required to view the document for it to be completed."
2024-09-18 10:43:43 +10:00
msgstr "Der Empfänger muss das Dokument anzeigen, damit es abgeschlossen werden kann."
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-share-button.tsx:52
msgid "The sharing link could not be created at this time. Please try again."
2024-09-18 10:43:43 +10:00
msgstr "Der Freigabelink konnte in diesem Moment nicht erstellt werden. Bitte versuchen Sie es erneut."
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-share-button.tsx:47
msgid "The sharing link has been copied to your clipboard."
2024-09-18 10:43:43 +10:00
msgstr "Der Freigabelink wurde in Ihre Zwischenablage kopiert."
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-send-email-message-helper.tsx:25
msgid "The signer's email"
2024-09-18 10:43:43 +10:00
msgstr "Die E-Mail des Unterzeichners"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-send-email-message-helper.tsx:19
msgid "The signer's name"
2024-09-18 10:43:43 +10:00
msgstr "Der Name des Unterzeichners"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-global-auth-action-select.tsx:72
msgid "This can be overriden by setting the authentication requirements directly on each recipient in the next step."
2024-09-18 10:43:43 +10:00
msgstr "Dies kann überschrieben werden, indem die Authentifizierungsanforderungen im nächsten Schritt direkt für jeden Empfänger festgelegt werden."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-fields.tsx:703
2024-08-27 20:34:39 +09:00
msgid "This document has already been sent to this recipient. You can no longer edit this recipient."
2024-09-18 10:43:43 +10:00
msgstr "Dieses Dokument wurde bereits an diesen Empfänger gesendet. Sie können diesen Empfänger nicht mehr bearbeiten."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-password-dialog.tsx:66
msgid "This document is password protected. Please enter the password to view the document."
2024-09-18 10:43:43 +10:00
msgstr "Dieses Dokument ist durch ein Passwort geschützt. Bitte geben Sie das Passwort ein, um das Dokument anzusehen."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:573
2024-08-27 20:34:39 +09:00
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."
2024-09-18 10:43:43 +10:00
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."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-fields.tsx:1007
msgid "This recipient can no longer be modified as they have signed a field, or completed the document."
msgstr ""
#: packages/ui/primitives/document-flow/add-signers.tsx:195
#~ msgid "This signer has already received the document."
#~ msgstr "Dieser Unterzeichner hat das Dokument bereits erhalten."
#: packages/ui/primitives/document-flow/add-signers.tsx:194
msgid "This signer has already signed the document."
msgstr ""
2024-08-27 20:34:39 +09:00
#: packages/ui/components/recipient/recipient-action-auth-select.tsx:48
msgid "This will override any global settings."
2024-09-18 10:43:43 +10:00
msgstr "Dies überschreibt alle globalen Einstellungen."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-settings.tsx:305
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/template-flow/add-template-settings.tsx:309
msgid "Time Zone"
2024-09-18 10:43:43 +10:00
msgstr "Zeitzone"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-settings.tsx:153
2024-08-27 20:34:39 +09:00
msgid "Title"
2024-09-18 10:43:43 +10:00
msgstr "Titel"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-fields.tsx:990
#: packages/ui/primitives/template-flow/add-template-fields.tsx:828
2024-08-27 20:34:39 +09:00
msgid "To proceed further, please set at least one value for the {0} field."
2024-09-18 10:43:43 +10:00
msgstr "Um fortzufahren, legen Sie bitte mindestens einen Wert für das Feld {0} fest."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/add-subject.tsx:124
msgid "Update"
2024-09-18 10:43:43 +10:00
msgstr "Aktualisieren"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/template.ts:13
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."
2024-09-18 10:43:43 +10:00
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."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-dropzone.tsx:168
msgid "Upgrade"
2024-09-18 10:43:43 +10:00
msgstr "Upgrade"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-dropzone.tsx:70
msgid "Upload Template Document"
2024-09-18 10:43:43 +10:00
msgstr "Vorlagendokument hochladen"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx:130
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx:147
msgid "Validation"
2024-09-18 10:43:43 +10:00
msgstr "Validierung"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx:88
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx:93
msgid "Value"
2024-09-18 10:43:43 +10:00
msgstr "Wert"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/recipient-roles.ts:26
msgid "View"
2024-09-18 10:43:43 +10:00
msgstr "View"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/recipient-roles.ts:27
msgid "Viewed"
2024-09-18 10:43:43 +10:00
msgstr "Viewed"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/recipient-roles.ts:29
msgid "Viewer"
2024-09-18 10:43:43 +10:00
msgstr "Viewer"
2024-08-27 20:34:39 +09:00
#: packages/lib/constants/recipient-roles.ts:28
msgid "Viewing"
2024-09-18 10:43:43 +10:00
msgstr "Viewing"
#: packages/ui/primitives/signature-pad/signature-pad.tsx:280
#~ msgid "White"
#~ msgstr "White"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx:44
msgid "You are about to send this document to the recipients. Are you sure you want to continue?"
2024-09-18 10:43:43 +10:00
msgstr "Sie sind dabei, dieses Dokument an die Empfänger zu senden. Sind Sie sicher, dass Sie fortfahren möchten?"
2024-08-27 20:34:39 +09:00
#: packages/ui/components/document/document-send-email-message-helper.tsx:11
msgid "You can use the following variables in your message:"
2024-09-18 10:43:43 +10:00
msgstr "Sie können die folgenden Variablen in Ihrer Nachricht verwenden:"
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-dropzone.tsx:43
msgid "You cannot upload documents at this time."
2024-09-18 10:43:43 +10:00
msgstr "Sie können derzeit keine Dokumente hochladen."
2024-08-27 20:34:39 +09:00
#: packages/ui/primitives/document-dropzone.tsx:69
msgid "You have reached your document limit."
2024-09-18 10:43:43 +10:00
msgstr "Sie haben Ihr Dokumentenlimit erreicht."