@@ -203,15 +203,15 @@ export const DocumentSigningForm = ({
{r.name}
{r.id === recipient.id && (
-
+
{_(msg`(You)`)}
)}
- {r.email}
+ {r.email}
-
+
{r.fields.length} {r.fields.length === 1 ? 'field' : 'fields'}
@@ -265,7 +265,7 @@ export const DocumentSigningForm = ({
setFullName(e.target.value.trimStart())}
/>
@@ -294,7 +294,7 @@ export const DocumentSigningForm = ({
{
return;
}
- if (nextField.envelopeItemId !== currentEnvelopeItem?.id) {
+ const isEnvelopeItemSwitch = nextField.envelopeItemId !== currentEnvelopeItem?.id;
+
+ if (isEnvelopeItemSwitch) {
setCurrentEnvelopeItem(nextField.envelopeItemId);
}
- const fieldTooltip = document.querySelector(`#field-tooltip`);
-
- if (fieldTooltip) {
- fieldTooltip.scrollIntoView({ behavior: 'smooth', block: 'center' });
- }
-
setShowPendingFieldTooltip(true);
+
+ setTimeout(
+ () => {
+ const fieldTooltip = document.querySelector(`#field-tooltip`);
+
+ if (fieldTooltip) {
+ fieldTooltip.scrollIntoView({ behavior: 'smooth', block: 'center' });
+ }
+ },
+ isEnvelopeItemSwitch ? 150 : 50,
+ );
};
const handleOnCompleteClick = async (
diff --git a/packages/lib/translations/de/web.po b/packages/lib/translations/de/web.po
index 2d9b3d9b4..6b4836225 100644
--- a/packages/lib/translations/de/web.po
+++ b/packages/lib/translations/de/web.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: de\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-11-12 06:14\n"
+"PO-Revision-Date: 2025-11-27 05:32\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -52,9 +52,9 @@ msgstr "\"{placeholderEmail}\" im Auftrag des \"Team Name\" hat Sie eingeladen,
msgid "\"Team Name\" has invited you to sign \"example document\"."
msgstr "\"Team Name\" hat Sie eingeladen, das \"Beispieldokument\" zu unterschreiben."
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "(You)"
msgstr "(Du)"
@@ -64,8 +64,8 @@ msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
msgstr "{0, plural, one {(1 Zeichen über dem Limit)} other {(# Zeichen über dem Limit)}}"
#. placeholder {0}: Math.abs(remaningLength)
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{0, plural, one {# character over the limit} other {# characters over the limit}}"
msgstr "{0, plural, one {# Zeichen über dem Limit} other {# Zeichen über dem Limit}}"
@@ -79,6 +79,11 @@ msgstr "{0, plural, one {# Zeichen verbleibend} other {# Zeichen verbleibend}}"
msgid "{0, plural, one {# document} other {# documents}}"
msgstr "{0, plural, one {# Dokument} other {# Dokumente}}"
+#. placeholder {0}: row.original.eventTriggers.length
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "{0, plural, one {# Event} other {# Events}}"
+msgstr "{0, plural, one {# Ereignis} other {# Ereignisse}}"
+
#. placeholder {0}: assistantFields.filter((field) => field.recipientId === r.id).length
#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "{0, plural, one {# field} other {# fields}}"
@@ -116,16 +121,16 @@ msgid "{0, plural, one {<0>You have <1>11> pending invitation0>} other {<2>Y
msgstr "{0, plural, one {<0>Sie haben <1>11> ausstehende Einladung0>} other {<2>Sie haben <3>#3> ausstehende Einladungen2>}}"
#. placeholder {0}: recipientFieldsRemaining.length
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "{0, plural, one {1 Field Remaining} other {# Fields Remaining}}"
msgstr "{0, plural, one {1 Feld verbleibend} other {# Felder verbleibend}}"
#. placeholder {0}: fields.filter((field) => field.envelopeItemId === doc.id).length
#. placeholder {0}: remainingFields.filter((field) => field.envelopeItemId === doc.id).length
-#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
msgid "{0, plural, one {1 Field} other {# Fields}}"
msgstr "{0, plural, one {1 Feld} other {# Felder}}"
@@ -144,11 +149,11 @@ msgstr "{0, plural, one {1 Empfänger} other {# Empfänger}}"
msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}"
msgstr "{0, plural, one {Warte auf 1 Empfänger} other {Warte auf # Empfänger}}"
-#. placeholder {0}: route.label
#. placeholder {0}: _(FRIENDLY_FIELD_TYPE[fieldType as FieldType])
+#. placeholder {0}: route.label
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
msgid "{0}"
msgstr "{0}"
@@ -175,9 +180,9 @@ msgstr "{0} hat dich eingeladen, ein Dokument {recipientActionVerb}"
#. placeholder {0}: remaining.documents
#. placeholder {1}: quota.documents
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "{0} of {1} documents remaining this month."
msgstr "{0} von {1} Dokumenten verbleibend in diesem Monat."
@@ -405,8 +410,8 @@ msgstr "{recipientReference} hat \"{documentName}\" unterschrieben"
msgid "{recipientReference} has signed {documentName}"
msgstr "{recipientReference} hat {documentName} unterschrieben"
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{remaningLength, plural, one {# character remaining} other {# characters remaining}}"
msgstr "{remaningLength, plural, one {# Zeichen verbleibend} other {# Zeichen verbleibend}}"
@@ -515,6 +520,10 @@ msgstr "<0>Gezeichnet0> - Eine Signatur, die mit einer Maus oder einem Stift g
msgid "<0>Email0> - The recipient will be emailed the document to sign, approve, etc."
msgstr "<0>E-Mail0> - Der Empfänger erhält das Dokument zur Unterschrift, Genehmigung usw."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "<0>Events:0> All"
+msgstr "<0>Ereignisse:0> Alle"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "<0>Full account access:0> View all your profile information, settings, and activity"
msgstr "<0>Voller Zugang zum Konto:0> Sehen Sie alle Ihre Profilinformationen, Einstellungen und Aktivitäten."
@@ -545,8 +554,8 @@ msgstr "<0>Keiner0> - Wir werden Links generieren, die Sie manuell an die Empf
msgid "<0>Note0> - If you use Links in combination with direct templates, you will need to manually send the links to the remaining recipients."
msgstr "<0>Hinweis0> - Wenn Sie Links in Kombination mit direkten Vorlagen verwenden, müssen Sie die Links manuell an die restlichen Empfänger senden."
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require 2FA0> - The recipient must have an account and 2FA enabled via their settings"
msgstr "<0>2FA erforderlich0> - Der Empfänger muss ein Konto haben und die 2FA über seine Einstellungen aktiviert haben"
@@ -554,8 +563,8 @@ msgstr "<0>2FA erforderlich0> - Der Empfänger muss ein Konto haben und die 2F
msgid "<0>Require account0> - The recipient must be signed in to view the document"
msgstr "<0>Konto erforderlich0> - Der Empfänger muss angemeldet sein, um das Dokument anzeigen zu können"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require passkey0> - The recipient must have an account and passkey configured via their settings"
msgstr "<0>Passkey erforderlich0> - Der Empfänger muss ein Konto haben und den Passkey über seine Einstellungen konfiguriert haben"
@@ -624,9 +633,9 @@ msgstr "404 E-Mail-Domain nicht gefunden"
msgid "404 not found"
msgstr "404 nicht gefunden"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "404 Not found"
msgstr "404 Nicht gefunden"
@@ -660,7 +669,7 @@ msgstr "404 Vorlage nicht gefunden"
msgid "404 User not found"
msgstr "404 Benutzer nicht gefunden"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "404 Webhook not found"
msgstr "404 Webhook nicht gefunden"
@@ -747,8 +756,8 @@ msgstr "Ein neues Mitglied ist Ihrer Organisation {organisationName} beigetreten
msgid "A new token was created successfully."
msgstr "Ein neuer Token wurde erfolgreich erstellt."
-#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
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."
@@ -784,7 +793,7 @@ msgstr "Eine Anfrage zur Verwendung Ihrer E-Mail wurde von {0} auf Documenso ini
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso"
msgstr "Ein Geheimnis, das an deine URL gesendet wird, damit du überprüfen kannst, dass die Anfrage von Documenso gesendet wurde"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso."
msgstr "Ein Geheimnis, das an deine URL gesendet wird, damit du überprüfen kannst, dass die Anfrage von Documenso gesendet wurde."
@@ -809,8 +818,8 @@ msgstr "Eine eindeutige URL zur Identifizierung der Organisation"
msgid "A unique URL to identify your organisation"
msgstr "Eine eindeutige URL zur Identifizierung Ihrer Organisation"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "A unique URL to identify your team"
msgstr "Eine eindeutige URL, um dein Team zu identifizieren"
@@ -819,8 +828,8 @@ msgid "A verification email will be sent to the provided email."
msgstr "Eine Bestätigungs-E-Mail wird an die angegebene E-Mail-Adresse gesendet."
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: packages/email/templates/organisation-invite.tsx
#: packages/email/templates/confirm-team-email.tsx
+#: packages/email/templates/organisation-invite.tsx
msgid "Accept"
msgstr "Akzeptieren"
@@ -848,9 +857,9 @@ msgstr "Zugriff deaktiviert"
msgid "Access enabled"
msgstr "Zugang aktiviert"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Account"
msgstr "Konto"
@@ -866,8 +875,8 @@ msgstr "Kontoerstellungsanfrage"
msgid "Account Creation Request"
msgstr "Kontoerstellungsanfrage"
-#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "Account deleted"
msgstr "Konto gelöscht"
@@ -895,46 +904,50 @@ msgstr "Konto entkoppelt"
msgid "Acknowledgment"
msgstr "Bestätigung"
-#: 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/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
+#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Action"
msgstr "Aktion"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Actions"
msgstr "Aktionen"
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
msgid "Active"
msgstr "Aktiv"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Active sessions"
msgstr "Aktive Sitzungen"
@@ -942,8 +955,8 @@ msgstr "Aktive Sitzungen"
msgid "Active Subscriptions"
msgstr "Aktive Abonnements"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Add"
msgstr "Hinzufügen"
@@ -960,15 +973,15 @@ msgstr "Fügen Sie eine benutzerdefinierte Domain hinzu, um E-Mails im Namen Ihr
msgid "Add a document"
msgstr "Dokument hinzufügen"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-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"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add all relevant fields for each recipient."
msgstr "Fügen Sie alle relevanten Felder für jeden Empfänger hinzu."
@@ -1001,8 +1014,8 @@ msgstr "Mehrere Dokumente hinzufügen und konfigurieren"
msgid "Add another option"
msgstr "Weitere Option hinzufügen"
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
msgid "Add another value"
msgstr "Weiteren Wert hinzufügen"
@@ -1026,11 +1039,11 @@ msgstr "E-Mail hinzufügen"
msgid "Add Email Domain"
msgstr "E-Mail-Domain hinzufügen"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add Fields"
msgstr "Felder hinzufügen"
@@ -1094,8 +1107,8 @@ msgstr "Platzhalter hinzufügen"
msgid "Add Recipients"
msgstr "Empfänger hinzufügen"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Add Signer"
msgstr "Unterzeichner hinzufügen"
@@ -1144,8 +1157,8 @@ msgstr "Zusätzliche Markeninformationen, die am Ende von E-Mails angezeigt werd
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Admin"
msgstr "Administrator"
@@ -1153,8 +1166,8 @@ msgstr "Administrator"
msgid "Admin Actions"
msgstr "Admin-Aktionen"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Admin panel"
msgstr "Admin-Panel"
@@ -1166,15 +1179,15 @@ msgstr "Admin-Panel"
msgid "Admins only"
msgstr "Nur Admins"
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Advanced Options"
msgstr "Erweiterte Optionen"
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Advanced settings"
msgstr "Erweiterte Einstellungen"
@@ -1191,6 +1204,7 @@ msgid "After submission, a document will be automatically generated and added to
msgstr "Nach der Übermittlung wird ein Dokument automatisch generiert und zu Ihrer Dokumentenseite hinzugefügt. Sie erhalten außerdem eine Benachrichtigung per E-Mail."
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "All"
msgstr "Alle"
@@ -1214,8 +1228,8 @@ msgstr "Alle Dokumente, die mit dem elektronischen Unterzeichnungsprozess zusamm
msgid "All email domains have been synced successfully"
msgstr "Alle E-Mail-Domains wurden erfolgreich synchronisiert"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "All Folders"
msgstr "Alle Ordner"
@@ -1223,6 +1237,10 @@ msgstr "Alle Ordner"
msgid "All inserted signatures will be voided"
msgstr "Alle eingefügten Unterschriften werden annulliert"
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
+msgid "All recipients have signed. The document is being processed and you will receive an email copy shortly."
+msgstr "Alle Empfänger haben unterschrieben. Das Dokument wird verarbeitet und Sie erhalten in Kürze eine Kopie per E-Mail."
+
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "All recipients will be notified"
msgstr "Alle Empfänger werden benachrichtigt"
@@ -1239,8 +1257,8 @@ msgstr "Alle Signierlinks wurden in die Zwischenablage kopiert."
msgid "All templates"
msgstr "Alle Vorlagen"
-#: apps/remix/app/components/general/period-selector.tsx
#: apps/remix/app/components/filters/date-range-filter.tsx
+#: apps/remix/app/components/general/period-selector.tsx
msgid "All Time"
msgstr "Alle Zeiten"
@@ -1252,10 +1270,10 @@ msgstr "Erlaube allen Organisationsmitgliedern den Zugriff auf dieses Team"
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"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Allow signers to dictate next signer"
msgstr "Unterzeichner können nächsten Unterzeichner bestimmen"
@@ -1263,10 +1281,10 @@ msgstr "Unterzeichner können nächsten Unterzeichner bestimmen"
msgid "Allowed Email Domains"
msgstr "Erlaubte E-Mail-Domains"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Allowed Signature Types"
msgstr "Erlaubte Signaturtypen"
@@ -1306,19 +1324,19 @@ msgstr "Eine E-Mail mit einer Einladung wird an jedes Mitglied gesendet."
msgid "An email with this address already exists."
msgstr "Eine E-Mail mit dieser Adresse existiert bereits."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/token.tsx
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.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
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "An error occurred"
msgstr "Ein Fehler ist aufgetreten"
@@ -1330,9 +1348,9 @@ msgstr "Ein Fehler ist beim Hochladen aufgetreten"
msgid "An error occurred while adding fields."
msgstr "Ein Fehler ist aufgetreten beim Hinzufügen von Feldern."
+#: 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/template/template-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "An error occurred while adding signers."
msgstr "Ein Fehler ist aufgetreten, während Unterzeichner hinzugefügt wurden."
@@ -1400,7 +1418,7 @@ msgstr "Ein Fehler ist aufgetreten, während das direkte Links-Signieren aktivie
msgid "An error occurred while enabling the user."
msgstr "Ein Fehler ist aufgetreten, während der Benutzer aktiviert wurde."
-#: packages/ui/primitives/pdf-viewer.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "An error occurred while loading the document."
msgstr "Ein Fehler ist beim Laden des Dokuments aufgetreten."
@@ -1412,14 +1430,14 @@ msgstr "Ein Fehler ist aufgetreten, während das Dokument verschoben wurde."
msgid "An error occurred while moving the template."
msgstr "Ein Fehler ist aufgetreten, während die Vorlage verschoben wurde."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while removing the field."
msgstr "Ein Fehler ist beim Entfernen des Feldes aufgetreten."
@@ -1443,29 +1461,29 @@ msgstr "Ein Fehler ist aufgetreten, während das Dokument gesendet wurde."
msgid "An error occurred while sending your confirmation email"
msgstr "Beim Senden Ihrer Bestätigungs-E-Mail ist ein Fehler aufgetreten"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing as assistant."
msgstr "Beim Unterschreiben als Assistent ist ein Fehler aufgetreten."
-#: 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
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing the document."
msgstr "Ein Fehler ist aufgetreten, während das Dokument unterzeichnet wurde."
@@ -1478,8 +1496,8 @@ msgstr "Ein Fehler ist beim Signieren des Feldes aufgetreten."
msgid "An error occurred while trying to create a checkout session."
msgstr "Ein Fehler ist aufgetreten, während versucht wurde, eine Checkout-Sitzung zu erstellen."
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "An error occurred while updating the document settings."
msgstr "Ein Fehler ist aufgetreten, während die Dokumenteinstellungen aktualisiert wurden."
@@ -1491,8 +1509,8 @@ msgstr "Ein Fehler ist aufgetreten, während die Unterschrift aktualisiert wurde
msgid "An error occurred while updating your profile."
msgstr "Ein Fehler ist aufgetreten, während dein Profil aktualisiert wurde."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "An error occurred while uploading your document."
msgstr "Ein Fehler ist aufgetreten, während dein Dokument hochgeladen wurde."
@@ -1512,53 +1530,53 @@ msgstr "Eine Organisation möchte Ihr Konto verknüpfen. Bitte überprüfen Sie
msgid "An unexpected error occurred."
msgstr "Ein unerwarteter Fehler ist aufgetreten."
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/public-profile-form.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/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/general/app-command-menu.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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/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/signin.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/profile.tsx
-#: apps/remix/app/components/forms/organisation-update-form.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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "An unknown error occurred"
msgstr "Es ist ein unbekannter Fehler aufgetreten"
@@ -1586,10 +1604,10 @@ msgstr "Jede Quelle"
msgid "Any Status"
msgstr "Jeder Status"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "API Tokens"
msgstr "API-Token"
@@ -1597,12 +1615,12 @@ msgstr "API-Token"
msgid "App Version"
msgstr "App-Version"
-#: apps/remix/app/components/tables/inbox-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-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Approve"
msgstr "Genehmigen"
@@ -1611,9 +1629,9 @@ msgctxt "Recipient role action verb"
msgid "Approve"
msgstr "Genehmigen"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Approve Document"
msgstr "Dokument genehmigen"
@@ -1666,8 +1684,8 @@ msgid "Are you sure you want to reject this document? This action cannot be undo
msgstr "Sind Sie sicher, dass Sie dieses Dokument ablehnen möchten? Diese Aktion kann nicht rückgängig gemacht werden."
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
-msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey."
-msgstr "Bist du sicher, dass du den <0>{passkeyName}0> Passkey entfernen möchtest."
+msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey?"
+msgstr "Möchten Sie den Passkey <0>{passkeyName}0> wirklich entfernen?"
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
msgid "Are you sure you wish to delete this organisation?"
@@ -1677,23 +1695,23 @@ msgstr "Sind Sie sicher, dass Sie diese Organisation löschen möchten?"
msgid "Are you sure you wish to delete this team?"
msgstr "Bist du dir sicher, dass du dieses Team löschen möchtest?"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/components/general/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Are you sure?"
msgstr "Bist du dir sicher?"
@@ -1706,9 +1724,9 @@ msgctxt "Recipient role action verb"
msgid "Assist"
msgstr "Helfen"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Assist Document"
msgstr "Dokumentassistenz"
@@ -1752,11 +1770,11 @@ msgctxt "Recipient role progressive verb"
msgid "Assisting"
msgstr "Helfen"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
-#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/lib/types/document-meta.ts
+#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
msgid "At least one signature type must be enabled"
msgstr "Mindestens ein Signaturtyp muss aktiviert sein"
@@ -1768,9 +1786,9 @@ msgstr "Anlage erfolgreich hinzugefügt."
msgid "Attachment removed successfully."
msgstr "<<<<<<< Updated upstream======="
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Attachments"
@@ -1796,8 +1814,8 @@ msgstr "Authentifizierungsstufe"
msgid "Authentication Portal Not Found"
msgstr "Authentifizierungsportal nicht gefunden"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Authentication required"
msgstr "Authentifizierung erforderlich"
@@ -1817,12 +1835,12 @@ msgstr "Avatar aktualisiert"
msgid "Awaiting email confirmation"
msgstr "Warte auf E-Mail-Bestätigung"
-#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
msgid "Back"
msgstr "Zurück"
@@ -1838,8 +1856,8 @@ msgstr "Hintergrundfarbe"
msgid "Background Jobs"
msgstr "Hintergrundjobs"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Backup Code"
msgstr "Backup-Code"
@@ -1855,10 +1873,11 @@ msgstr "Banner aktualisiert"
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:"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
msgid "Billing"
msgstr "Abrechnung"
@@ -1882,9 +1901,9 @@ msgstr "Markendetails"
msgid "Brand Website"
msgstr "Marken-Website"
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
msgid "Branding"
msgstr "Marken"
@@ -1892,10 +1911,10 @@ msgstr "Marken"
msgid "Branding Logo"
msgstr "Branding-Logo"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Branding Preferences"
msgstr "Markenpräferenzen"
@@ -1929,8 +1948,8 @@ msgstr "Massenversand abgeschlossen für Vorlage \"{templateName}\""
msgid "Bulk Send Template via CSV"
msgstr "Bulk-Vorlage senden über CSV"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Bulk Send via CSV"
msgstr "Massenversand per CSV"
@@ -1975,96 +1994,95 @@ msgstr "Durch die Verwendung der elektronischen Unterschriftsfunktion stimmen Si
msgid "Can prepare"
msgstr "Kann vorbereiten"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.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/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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-password.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/general/document/document-attachments-popover.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-test-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-to-folder-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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-create-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-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/claim-update-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.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-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.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/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Cancel"
msgstr "Abbrechen"
@@ -2114,6 +2132,10 @@ msgstr "Ccers"
msgid "Center"
msgstr "Zentrum"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Change Recipient"
+msgstr "Empfänger ändern"
+
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
msgid "Character limit"
msgstr "Zeichenbeschränkung"
@@ -2128,8 +2150,8 @@ msgid "Charts"
msgstr "Diagramme"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Checkbox"
msgstr "Kontrollkästchen"
@@ -2142,9 +2164,9 @@ msgstr "Einstellungen für das Kontrollkästchen"
msgid "Checkbox values"
msgstr "Checkbox-Werte"
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Checkout"
msgstr "Abrechnung"
@@ -2196,9 +2218,9 @@ msgstr "Unterschrift löschen"
msgid "Click here to get started"
msgstr "Klicken Sie hier, um zu beginnen"
-#: 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/template/template-page-view-recent-activity.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "Click here to retry"
msgstr "Klicken Sie hier, um es erneut zu versuchen"
@@ -2211,12 +2233,12 @@ msgstr "Klicken Sie hier, um hochzuladen"
msgid "Click to copy signing link for sending to recipient"
msgstr "Klicken Sie, um den Signatur-Link zu kopieren, um ihn an den Empfänger zu senden"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.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/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
msgid "Click to insert field"
msgstr "Klicken, um das Feld auszufüllen"
@@ -2236,23 +2258,25 @@ msgstr "Kundengeheimnis"
msgid "Client secret is required"
msgstr "Kundengeheimnis erforderlich"
-#: apps/remix/app/components/general/billing-plans.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/support-ticket-form.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/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-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/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/missing-signature-field-dialog.tsx
msgid "Close"
msgstr "Schließen"
@@ -2265,14 +2289,14 @@ msgstr "Kommunikation"
msgid "Compare all plans and features in detail"
msgstr "Vergleichen Sie alle Pläne und Funktionen im Detail"
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Complete"
msgstr "Abschließen"
@@ -2284,22 +2308,22 @@ msgstr "Dokument abschließen"
msgid "Complete the fields for the following signers."
msgstr "Vervollständigen Sie die Felder für die folgenden Unterzeichner."
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: 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/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
-#: packages/lib/constants/document.ts
-#: packages/email/template-components/template-document-self-signed.tsx
-#: packages/email/template-components/template-document-recipient-signed.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
#: packages/email/template-components/template-document-completed.tsx
+#: packages/email/template-components/template-document-recipient-signed.tsx
+#: packages/email/template-components/template-document-self-signed.tsx
+#: packages/lib/constants/document.ts
msgid "Completed"
msgstr "Abgeschlossen"
-#: packages/email/templates/document-self-signed.tsx
#: packages/email/templates/document-completed.tsx
+#: packages/email/templates/document-self-signed.tsx
msgid "Completed Document"
msgstr "Abgeschlossenes Dokument"
@@ -2375,8 +2399,8 @@ msgstr "Vorlage konfigurieren"
#. placeholder {0}: parseMessageDescriptor( _, FRIENDLY_FIELD_TYPE[currentField.type], )
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Configure the {0} field"
msgstr "Konfigurieren Sie das Feld {0}"
@@ -2393,20 +2417,20 @@ msgstr "Konfigurieren Sie die Teamrollen für jede Gruppe"
msgid "Configure the team roles for each member"
msgstr "Konfigurieren Sie die Teamrollen für jedes Mitglied"
-#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Confirm"
msgstr "Bestätigen"
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
msgid "Confirm by typing <0>{deleteMessage}0>"
msgstr "Bestätigen Sie durch Eingabe von <0>{deleteMessage}0>"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "Confirm by typing: <0>{deleteMessage}0>"
msgstr "Bestätigen Sie durch Eingabe: <0>{deleteMessage}0>"
@@ -2419,8 +2443,8 @@ msgstr "Bestätigung der Löschung"
msgid "Confirm email"
msgstr "E-Mail bestätigen"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Confirmation email sent"
msgstr "Bestätigungs-E-Mail gesendet"
@@ -2444,17 +2468,17 @@ msgstr "Kontaktieren Sie uns"
msgid "Content"
msgstr "Inhalt"
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$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+/organisation.invite.$token.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-view.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/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$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+/verify-email.$token.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Continue"
msgstr "Fortsetzen"
@@ -2521,21 +2545,22 @@ msgstr "Bestimmt, welche Signaturen beim Unterschreiben eines Dokuments verwende
msgid "Copied"
msgstr "Kopiert"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: 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/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: packages/ui/primitives/document-flow/add-subject.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/avatar-with-recipient.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.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/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/components/document/document-share-button.tsx
+#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Copied to clipboard"
msgstr "In die Zwischenablage kopiert"
@@ -2556,8 +2581,8 @@ msgstr "Kopieren Sie den teilbaren Link"
msgid "Copy Shareable Link"
msgstr "Kopiere den teilbaren Link"
-#: 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/general/document/document-recipient-link-copy-dialog.tsx
msgid "Copy Signing Links"
msgstr "Signierlinks kopieren"
@@ -2565,12 +2590,12 @@ msgstr "Signierlinks kopieren"
msgid "Copy token"
msgstr "Token kopieren"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Create"
msgstr "Erstellen"
@@ -2681,17 +2706,17 @@ msgstr "Jetzt erstellen"
msgid "Create one automatically"
msgstr "Einen automatisch erstellen"
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
msgid "Create organisation"
msgstr "Organisation erstellen"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Create Organisation"
msgstr "Organisation erstellen"
@@ -2715,14 +2740,14 @@ msgstr "Abonnement erstellen"
msgid "Create Subscription Claim"
msgstr "Abonnementsanspruch erstellen"
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
msgid "Create team"
msgstr "Team erstellen"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Create Team"
msgstr "Team erstellen"
@@ -2751,26 +2776,27 @@ msgstr "Erstellen Sie Ihr Konto und beginnen Sie mit dem modernen Dokumentensign
msgid "Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp."
msgstr "Erstellen Sie Ihr Konto und beginnen Sie mit dem modernen Dokumentensignieren. Offenes und schönes Signieren liegt in Ihrer Reichweite."
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: 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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-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
+#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Created"
msgstr "Erstellt"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Created At"
msgstr "Erstellt am"
@@ -2782,9 +2808,7 @@ msgstr "Erstellt von"
msgid "Created on"
msgstr "Erstellt am"
-#. placeholder {0}: i18n.date(webhook.createdAt, DateTime.DATETIME_FULL)
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Created on {0}"
msgstr "Erstellt am {0}"
@@ -2842,13 +2866,13 @@ msgstr "Dunkelmodus"
msgid "Dashboard"
msgstr "Dashboard"
-#: apps/remix/app/components/tables/settings-security-activity-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Date"
msgstr "Datum"
@@ -2856,10 +2880,10 @@ msgstr "Datum"
msgid "Date created"
msgstr "Erstellungsdatum"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Date Format"
msgstr "Datumsformat"
@@ -2867,8 +2891,8 @@ msgstr "Datumsformat"
msgid "Date Settings"
msgstr "Datumseinstellungen"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: packages/email/templates/organisation-invite.tsx
msgid "Decline"
msgstr "Ablehnen"
@@ -2918,46 +2942,47 @@ msgstr "Standardwert"
msgid "delete"
msgstr "löschen"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/folder/folder-card.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-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-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/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Delete"
msgstr "Löschen"
-#. placeholder {0}: webhook.webhookUrl
-#. placeholder {0}: token.name
+#. placeholder {0}: folder.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#. placeholder {0}: token.name
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "delete {0}"
msgstr "löschen {0}"
@@ -2973,11 +2998,11 @@ msgstr "löschen {teamName}"
msgid "Delete account"
msgstr "Konto löschen"
+#: 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
#: 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
msgid "Delete Account"
msgstr "Konto löschen"
@@ -2985,10 +3010,10 @@ msgstr "Konto löschen"
msgid "Delete document"
msgstr "Dokument löschen"
+#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: 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
msgid "Delete Document"
msgstr "Dokument löschen"
@@ -2996,8 +3021,8 @@ msgstr "Dokument löschen"
msgid "Delete email"
msgstr "E-Mail löschen"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Delete email domain"
msgstr "E-Mail-Domain löschen"
@@ -3057,8 +3082,8 @@ msgstr "Webhook löschen"
msgid "Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution."
msgstr "Löschen Sie Ihr Konto und alle Inhalte, einschließlich abgeschlossener Dokumente. Diese Aktion ist irreversibel und führt zur Kündigung Ihres Abonnements, seien Sie also vorsichtig."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Deleted"
msgstr "Gelöscht"
@@ -3066,13 +3091,22 @@ msgstr "Gelöscht"
msgid "Deleting account..."
msgstr "Konto wird gelöscht..."
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Destination"
+msgstr "Ziel"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Details"
msgstr "Einzelheiten"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+msgid "Developer Mode"
+msgstr "Entwicklermodus"
+
#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Device"
msgstr "Gerät"
@@ -3080,19 +3114,19 @@ msgstr "Gerät"
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>"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "direct link"
msgstr "Direkter Link"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Direct link"
msgstr "Direkter Link"
-#: 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/envelope-editor/envelope-editor.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
msgid "Direct Link"
msgstr "Direkter Link"
@@ -3130,14 +3164,14 @@ msgstr "Direkter Vorlagenlink gelöscht"
msgid "Direct template link usage exceeded ({0}/{1})"
msgstr "Die Verwendung des direkten Vorlagenlinks wurde überschritten ({0}/{1})"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Direction"
msgstr "Richtung"
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
msgid "Disable"
msgstr "Deaktivieren"
@@ -3165,6 +3199,7 @@ msgid "Disable Two Factor Authentication before deleting your account."
msgstr "Deaktivieren Sie die Zwei-Faktor-Authentifizierung, bevor Sie Ihr Konto löschen."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Disabled"
msgstr "Deaktiviert"
@@ -3180,8 +3215,8 @@ msgstr "Das Deaktivieren des Benutzers führt dazu, dass der Benutzer das Konto
msgid "Discord"
msgstr "Discord"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "Display Name"
msgstr "Anzeigename"
@@ -3217,11 +3252,11 @@ msgstr "Möchten Sie diese Vorlage duplizieren?"
msgid "Documenso will delete <0>all of your documents0>, along with all of your completed documents, signatures, and all other resources belonging to your Account."
msgstr "Documenso wird <0>alle Ihre Dokumente0> löschen, zusammen mit allen abgeschlossenen Dokumenten, Unterschriften und allen anderen Ressourcen, die zu Ihrem Konto gehören."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Document"
msgstr "Dokument"
@@ -3250,9 +3285,9 @@ msgid "Document & Recipients"
msgstr "Dokument & Empfänger"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Document access"
msgstr "Dokumentenzugriff"
@@ -3271,8 +3306,8 @@ msgstr "Dokument genehmigt"
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: packages/lib/server-only/document/delete-document.ts
#: packages/lib/server-only/admin/admin-super-delete-document.ts
+#: packages/lib/server-only/document/delete-document.ts
msgid "Document Cancelled"
msgstr "Dokument storniert"
@@ -3313,8 +3348,8 @@ msgstr "Dokument erstellt"
msgid "Document created by <0>{0}0>"
msgstr "Dokument erstellt von <0>{0}0>"
-#: packages/lib/server-only/template/create-document-from-direct-template.ts
#: packages/email/templates/document-created-from-direct-template.tsx
+#: packages/lib/server-only/template/create-document-from-direct-template.ts
msgid "Document created from direct template"
msgstr "Dokument erstellt aus direkter Vorlage"
@@ -3326,9 +3361,9 @@ msgstr "Dokument erstellt mit einem <0>direkten Link0>"
msgid "Document Creation"
msgstr "Dokumenterstellung"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
msgid "Document deleted"
msgstr "Dokument gelöscht"
@@ -3427,9 +3462,9 @@ msgstr "Dokument ausstehend"
msgid "Document pending email"
msgstr "E-Mail über ausstehende Dokumente"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Document Preferences"
msgstr "Dokumenteinstellungen"
@@ -3446,8 +3481,8 @@ msgstr "Dokument erneut gesendet"
msgid "Document rejected"
msgstr "Dokument abgelehnt"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: packages/email/template-components/template-document-rejected.tsx
msgid "Document Rejected"
msgstr "Dokument Abgelehnt"
@@ -3504,15 +3539,15 @@ msgstr "Dokument aktualisiert"
msgid "Document updated successfully"
msgstr "Dokument erfolgreich aktualisiert"
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Document upload disabled due to unpaid invoices"
msgstr "Dokumenten-Upload deaktiviert aufgrund unbezahlter Rechnungen"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Document uploaded"
msgstr "Dokument hochgeladen"
@@ -3546,20 +3581,20 @@ msgstr "Dokument wird dauerhaft gelöscht"
msgid "Documentation"
msgstr "Dokumentation"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.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/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
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Documents"
msgstr "Dokumente"
@@ -3608,22 +3643,22 @@ msgstr "Domain bereits in Verwendung"
msgid "Domain Name"
msgstr "Domain-Name"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Don't have an account? <0>Sign up0>"
msgstr "Haben Sie kein Konto? <0>Registrieren0>"
-#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-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/general/document/document-certificate-qr-view.tsx
-#: apps/remix/app/components/general/document/document-certificate-qr-view.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/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
#: packages/email/template-components/template-document-completed.tsx
msgid "Download"
msgstr "Herunterladen"
@@ -3640,9 +3675,9 @@ msgstr "Zertifikat herunterladen"
msgid "Download Files"
msgstr "Dateien herunterladen"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Download PDF"
msgstr "PDF herunterladen"
@@ -3650,9 +3685,9 @@ msgstr "PDF herunterladen"
msgid "Download Template CSV"
msgstr "Vorlage CSV herunterladen"
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: packages/lib/constants/document.ts
msgid "Draft"
msgstr "Entwurf"
@@ -3677,12 +3712,9 @@ msgstr "Ziehen Sie die Datei hierher oder klicken Sie, um hochzuladen"
msgid "Drag and drop your PDF file here"
msgstr "Ziehen Sie Ihre PDF-Datei hierher"
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
-msgid "Draw"
-msgstr "Zeichnen"
-
#: packages/lib/constants/document.ts
-msgctxt "Draw signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Draw signature"
msgid "Draw"
msgstr "Zeichnen"
@@ -3691,8 +3723,8 @@ msgid "Drop your document here"
msgstr "Legen Sie Ihr Dokument hier ab"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Dropdown"
msgstr "Dropdown"
@@ -3712,20 +3744,20 @@ msgstr "Dropdown-Einstellungen"
msgid "Dropdown values"
msgstr "Dropdown-Werte"
-#: 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/envelope-editor/envelope-editor-fields-page-renderer.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
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Duplicate"
msgstr "Duplizieren"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Document"
msgstr "Dokument duplizieren"
@@ -3734,8 +3766,8 @@ msgstr "Dokument duplizieren"
msgid "Duplicate on all pages"
msgstr "Auf allen Seiten duplizieren"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Template"
msgstr "Vorlage duplizieren"
@@ -3743,14 +3775,23 @@ msgstr "Vorlage duplizieren"
msgid "Duplicate values are not allowed"
msgstr "Doppelte Werte sind nicht erlaubt"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 0"
+msgstr "Z. B. 0"
+
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 100"
+msgstr "Z. B. 100"
+
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Edit"
msgstr "Bearbeiten"
@@ -3758,10 +3799,19 @@ msgstr "Bearbeiten"
msgid "Edit Template"
msgstr "Vorlage bearbeiten"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Edit webhook"
msgstr "Webhook bearbeiten"
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+msgid "eg. Legal"
+msgstr "z. B. Legal"
+
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+msgid "eg. Mac"
+msgstr "z. B. Mac"
+
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Electronic Delivery of Documents"
msgstr "Elektronische Zustellung von Dokumenten"
@@ -3770,57 +3820,57 @@ msgstr "Elektronische Zustellung von Dokumenten"
msgid "Electronic Signature Disclosure"
msgstr "Offenlegung der elektronischen Unterschrift"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-insights-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/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.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
-#: 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/utils/fields.ts
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-configure-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
+#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Email"
msgstr "E-Mail"
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/send-confirmation-email.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Email address"
msgstr "E-Mail-Adresse"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Email Address"
msgstr "E-Mail-Adresse"
@@ -3852,9 +3902,9 @@ msgstr "E-Mail-Domain nicht gefunden"
msgid "Email Domain Settings"
msgstr "E-Mail-Domaineinstellungen"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Email Domains"
msgstr "E-Mail-Domains"
@@ -3870,9 +3920,9 @@ msgstr "E-Mail erforderlich"
msgid "Email Options"
msgstr "E-Mail-Optionen"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Email Preferences"
msgstr "E-Mail-Präferenzen"
@@ -3885,10 +3935,10 @@ msgstr "E-Mail-Präferenzen aktualisiert"
msgid "Email resent"
msgstr "E-Mail erneut gesendet"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Email Sender"
msgstr "E-Mail-Absender"
@@ -3916,8 +3966,8 @@ msgstr "E-Mail-Verifizierung wurde entfernt"
msgid "Email verification has been resent"
msgstr "E-Mail-Verifizierung wurde erneut gesendet"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Emails"
msgstr "E-Mails"
@@ -3976,10 +4026,10 @@ msgstr "Direktlink-Signierung aktivieren"
msgid "Enable Direct Link Signing"
msgstr "Direktlink-Signierung aktivieren"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Enable signing order"
msgstr "Aktiviere die Signaturreihenfolge"
@@ -3987,10 +4037,11 @@ msgstr "Aktiviere die Signaturreihenfolge"
msgid "Enable SSO portal"
msgstr "SSO-Portal aktivieren"
-#: 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+/admin+/site-settings.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Enabled"
msgstr "Aktiviert"
@@ -4014,10 +4065,12 @@ msgstr "Anspruchsname eingeben"
msgid "Enter the domain you want to use for sending emails (without http:// or www)"
msgstr "Geben Sie die Domain ein, die Sie zum Versenden von E-Mails verwenden möchten (ohne http:// oder www)"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's email"
msgstr "Geben Sie die E-Mail des nächsten Unterzeichners ein"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's name"
msgstr "Geben Sie den Namen des nächsten Unterzeichners ein"
@@ -4053,11 +4106,12 @@ msgid "Enter your number here"
msgstr "Geben Sie Ihre Nummer hier ein"
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Enter your password"
msgstr "Geben Sie Ihr Passwort ein"
-#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "Enter your text here"
msgstr "Geben Sie hier Ihren Text ein"
@@ -4077,8 +4131,8 @@ msgstr "Umschlag dupliziert"
msgid "Envelope ID"
msgstr "Umschlag-ID"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Envelope Item Count"
msgstr "Anzahl der Umschlag-Elemente"
@@ -4102,75 +4156,75 @@ msgstr "Umschlagtitel"
msgid "Envelope updated"
msgstr "Umschlag aktualisiert"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$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/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/envelope-signing/envelope-signer-page-renderer.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.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-button-legacy.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/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/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.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-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-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-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-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-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-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-text-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.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/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/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.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/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/verify-email-banner.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Error"
msgstr "Fehler"
@@ -4178,11 +4232,17 @@ msgstr "Fehler"
msgid "Error uploading file"
msgstr "Fehler beim Hochladen der Datei"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Event"
+msgstr "Ereignis"
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Event Type"
msgstr "Ereignistyp"
#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: packages/ui/components/document/document-visibility-select.tsx
msgid "Everyone"
msgstr "Jeder"
@@ -4195,8 +4255,8 @@ msgid "Everyone has signed"
msgstr "Alle haben unterschrieben"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "Everyone has signed! You will receive an Email copy of the signed document."
-msgstr "Alle haben unterschrieben! Sie werden eine E-Mail-Kopie des unterzeichneten Dokuments erhalten."
+msgid "Everyone has signed! You will receive an email copy of the signed document."
+msgstr "Alle haben unterschrieben! Sie erhalten eine Kopie des unterschriebenen Dokuments per E-Mail."
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "Exceeded timeout"
@@ -4217,11 +4277,16 @@ msgid "Expires on {0}"
msgstr "Läuft ab am {0}"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "External ID"
msgstr "Externe ID"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Failed"
+msgstr "Fehlgeschlagen"
+
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
msgid "Failed to create folder"
msgstr "Ordner konnte nicht erstellt werden"
@@ -4286,7 +4351,7 @@ msgstr "Fehler beim Aktualisieren des Abonnementsanspruchs."
msgid "Failed to update template"
msgstr "Vorlage konnte nicht aktualisiert werden"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Failed to update webhook"
msgstr "Webhook konnte nicht aktualisiert werden"
@@ -4294,9 +4359,9 @@ msgstr "Webhook konnte nicht aktualisiert werden"
msgid "Failed: {failedCount}"
msgstr "Fehlgeschlagen: {failedCount}"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Feature Flags"
msgstr "Funktionsflaggen"
@@ -4305,12 +4370,12 @@ msgid "Field character limit"
msgstr "Zeichenbeschränkung des Feldes"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field font size"
msgstr "Feldschriftgröße"
@@ -4319,11 +4384,11 @@ msgstr "Feldschriftgröße"
msgid "Field format"
msgstr "Feldformat"
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field label"
msgstr "Feldbeschriftung"
@@ -4355,10 +4420,10 @@ msgstr "Felder"
msgid "Fields updated"
msgstr "Felder aktualisiert"
+#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "File cannot be larger than {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
msgstr "Die Datei darf nicht größer als {APP_DOCUMENT_UPLOAD_SIZE_LIMIT} MB sein"
@@ -4378,8 +4443,8 @@ msgstr "Dateigröße überschreitet das Limit von {APP_DOCUMENT_UPLOAD_SIZE_LIMI
msgid "Fill in the details to create a new subscription claim."
msgstr "Füllen Sie die Details aus, um einen neuen Abonnementsanspruch zu erstellen."
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Folder"
msgstr "Ordner"
@@ -4399,9 +4464,9 @@ msgstr "Ordner erfolgreich verschoben"
msgid "Folder Name"
msgstr "Ordnername"
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
msgid "Folder not found"
msgstr "Ordner nicht gefunden"
@@ -4414,12 +4479,12 @@ msgid "Folder updated successfully"
msgstr "Ordner erfolgreich aktualisiert"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Font Size"
msgstr "Schriftgröße"
@@ -4439,19 +4504,20 @@ msgstr "Wenn der Anspruch zum Beispiel das neue Flag 'FLAG_1' hat, das auf wahr
msgid "Forgot Password?"
msgstr "Passwort vergessen?"
-#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Forgot your password?"
msgstr "Hast du dein Passwort vergessen?"
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Free"
msgstr "Kostenlos"
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Free Signature"
msgstr "Freie Unterschrift"
@@ -4459,26 +4525,26 @@ msgstr "Freie Unterschrift"
msgid "Free Signature Settings"
msgstr "Einstellungen für freie Unterschrift"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.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/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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "Full Name"
msgstr "Vollständiger Name"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "General"
msgstr "Allgemein"
@@ -4495,24 +4561,24 @@ msgstr "Links generieren"
msgid "Global recipient action authentication"
msgstr "Globale Empfängerauthentifizierung"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Go back"
msgstr "Zurückgehen"
-#: apps/remix/app/routes/_recipient+/_layout.tsx
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
+#: apps/remix/app/routes/_recipient+/_layout.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Go Back"
msgstr "Zurück"
@@ -4524,9 +4590,9 @@ msgstr "Zurück"
msgid "Go back home"
msgstr "Zurück nach Hause"
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
msgid "Go Back Home"
msgstr "Zurück nach Hause"
@@ -4555,10 +4621,10 @@ msgstr "Gehen Sie zu Ihren <0>öffentlichen Profileinstellungen0>, um Dokument
msgid "Green"
msgstr "Grün"
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Group"
msgstr "Gruppe"
@@ -4570,15 +4636,15 @@ msgstr "Gruppe wurde erstellt."
msgid "Group has been updated successfully"
msgstr "Gruppe wurde erfolgreich aktualisiert"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Group Name"
msgstr "Gruppenname"
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
msgid "Groups"
msgstr "Gruppen"
@@ -4601,12 +4667,12 @@ msgstr "hat Sie eingeladen, dieses Dokument anzusehen"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
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."
msgstr "Einen Assistenten als letzten Unterzeichner zu haben bedeutet, dass er keine Aktion vornehmen kann, da es keine nachfolgenden Unterzeichner gibt."
@@ -4678,25 +4744,25 @@ msgstr "Hallo {userName}, Sie müssen einen Verifizierungscode eingeben, um das
msgid "Hi, {userName} <0>({userEmail})0>"
msgstr "Hallo, {userName} <0>({userEmail})0>"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Hide"
msgstr "Ausblenden"
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/folder/folder-grid.tsx
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-grid.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
msgid "Home"
msgstr "Startseite"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Home (No Folder)"
msgstr "Startseite (kein Ordner)"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Horizontal"
msgstr "Horizontal"
@@ -4733,7 +4799,6 @@ msgstr "Ich bin der Besitzer dieses Dokuments"
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
msgstr "Ich verstehe, dass ich meine Anmeldedaten einem Drittanbieter-Service zur Verfügung stelle, der von dieser Organisation konfiguriert wurde."
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
msgid "I'm sure! Delete it"
msgstr "Ich bin mir sicher! Löschen"
@@ -4770,6 +4835,10 @@ msgstr "Wenn Ihre Authenticator-App keine QR-Codes unterstützt, können Sie sta
msgid "Important: What This Means"
msgstr "Wichtig: Was dies bedeutet"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Inactive"
+msgstr "Inaktiv"
+
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/document/document-status.tsx
@@ -4788,8 +4857,8 @@ msgstr "Audit-Logs im Dokument einbeziehen"
msgid "Include the Signing Certificate in the Document"
msgstr "Signaturzertifikat in das Dokument einfügen"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Information"
msgstr "Information"
@@ -4797,17 +4866,17 @@ msgstr "Information"
msgid "Inherit authentication method"
msgstr "Authentifizierungsmethode erben"
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
msgid "Inherit from organisation"
msgstr "Von der Organisation erben"
@@ -4820,11 +4889,11 @@ msgstr "Organisationsmitglieder erben"
msgid "Inherited subscription claim"
msgstr "Geerbter Abonnementsanspruch"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: packages/ui/primitives/document-flow/types.ts
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Initials"
msgstr "Initialen"
@@ -4869,8 +4938,8 @@ msgstr "Ungültige E-Mail"
msgid "Invalid link"
msgstr "Ungültiger Link"
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
msgid "Invalid token"
msgstr "Ungültiges Token"
@@ -4890,8 +4959,8 @@ msgstr "Einladung angenommen"
msgid "Invitation accepted!"
msgstr "Einladung akzeptiert!"
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
msgid "Invitation declined"
msgstr "Einladung abgelehnt"
@@ -4931,9 +5000,9 @@ msgstr "Eingeladen am"
msgid "Invoice"
msgstr "Rechnung"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "IP Address"
msgstr "IP-Adresse"
@@ -4987,23 +5056,23 @@ msgstr "Beigetreten"
msgid "Joined {0}"
msgstr "Beigetreten {0}"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Label"
msgstr "Beschriftung"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Language"
msgstr "Sprache"
@@ -5031,8 +5100,8 @@ msgstr "Letzte 90 Tage"
msgid "Last Active"
msgstr "Zuletzt aktiv"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Last modified"
msgstr "Zuletzt geändert"
@@ -5060,15 +5129,15 @@ msgstr "Zuletzt verwendet"
msgid "Last Year"
msgstr "Letztes Jahr"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Leave"
msgstr "Verlassen"
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Leave blank to inherit from the organisation."
msgstr "Leer lassen, um von der Organisation zu erben."
@@ -5124,8 +5193,8 @@ msgstr "Vorlage verlinken"
msgid "Link your Documenso account"
msgstr "Verknüpfen Sie Ihr Documenso-Konto"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Linked Accounts"
msgstr "Verknüpfte Konten"
@@ -5137,30 +5206,29 @@ msgstr "Verknüpft um"
msgid "Links Generated"
msgstr "Links generiert"
-#. placeholder {0}: webhook.eventTriggers .map((trigger) => toFriendlyWebhookEventName(trigger)) .join(', ')
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-msgid "Listening to {0}"
-msgstr "Anhören von {0}"
+msgid "Listening to"
+msgstr "Abonniert"
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
msgid "Load older activity"
msgstr "Ältere Aktivitäten laden"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Loading"
msgstr "Wird geladen"
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Loading document..."
msgstr "Lade Dokument..."
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
msgid "Loading Document..."
msgstr "Dokument wird geladen..."
@@ -5176,15 +5244,19 @@ msgstr "Wird geladen..."
msgid "Local timezone"
msgstr "Lokale Zeitzone"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Login"
msgstr "Anmelden"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "Logs"
+msgstr "Protokolle"
+
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Manage"
msgstr "Verwalten"
@@ -5214,9 +5286,14 @@ msgid "Manage billing"
msgstr "Rechnungsmanagement"
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Manage Billing"
msgstr "Rechnungsverwaltung"
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
+msgid "Manage billing and subscriptions for organisations where you have billing management permissions."
+msgstr "Verwalten Sie Abrechnung und Abonnements für Organisationen, für die Sie Berechtigungen zur Abrechnungsverwaltung haben."
+
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "Manage details for this public template"
msgstr "Details für diese öffentliche Vorlage verwalten"
@@ -5233,6 +5310,7 @@ msgstr "Dokumente verwalten"
msgid "Manage linked accounts"
msgstr "Verknüpfte Konten verwalten"
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Manage organisation"
msgstr "Organisation verwalten"
@@ -5318,8 +5396,8 @@ msgstr "Verwalten Sie hier Ihre Seiteneinstellungen"
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Manager"
msgstr "Manager"
@@ -5357,24 +5435,24 @@ msgstr "Max"
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."
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Maximum number of uploaded files per envelope allowed"
msgstr "Maximale Anzahl hochgeladener Dateien pro Umschlag erlaubt"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Member"
msgstr "Mitglied"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Member Count"
msgstr "Mitgliederanzahl"
@@ -5382,25 +5460,25 @@ msgstr "Mitgliederanzahl"
msgid "Member Since"
msgstr "Mitglied seit"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Members"
msgstr "Mitglieder"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Message"
msgstr "Nachricht"
@@ -5421,8 +5499,8 @@ msgstr "Min"
msgid "Missing Recipients"
msgstr "Fehlende Empfänger"
-#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
msgid "Modify recipients"
msgstr "Empfänger ändern"
@@ -5430,8 +5508,8 @@ msgstr "Empfänger ändern"
msgid "Modify the details of the subscription claim."
msgstr "Ändern Sie die Details des Abonnementsanspruchs."
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Monthly"
msgstr "Monatlich"
@@ -5443,10 +5521,10 @@ msgstr "Monatlich aktive Benutzer: Benutzer, die mindestens ein Dokument erstell
msgid "Monthly Active Users: Users that had at least one of their documents completed"
msgstr "Monatlich aktive Benutzer: Benutzer, die mindestens eines ihrer Dokumente abgeschlossen haben"
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
msgid "Move"
msgstr "Verschieben"
@@ -5466,8 +5544,8 @@ msgstr "Ordner verschieben"
msgid "Move Template to Folder"
msgstr "Vorlage in Ordner verschieben"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Move to Folder"
msgstr "In Ordner verschieben"
@@ -5483,43 +5561,43 @@ msgstr "Mein Ordner"
msgid "N/A"
msgstr "N/A"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: 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/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
-#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
-#: apps/remix/app/components/forms/subscription-claim-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: 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
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/forms/subscription-claim-form.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/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Name"
msgstr "Name"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Name is required"
msgstr "Name ist erforderlich"
@@ -5559,11 +5637,11 @@ msgstr "Neues Passwort"
msgid "New Template"
msgstr "Neue Vorlage"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Next"
msgstr "Nächster"
@@ -5580,10 +5658,10 @@ msgstr "Nächste Empfänger-E-Mail"
msgid "Next Recipient Name"
msgstr "Nächster Empfängername"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "No"
msgstr "Nein"
@@ -5591,24 +5669,24 @@ msgstr "Nein"
msgid "No active drafts"
msgstr "Keine aktiven Entwürfe"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "No documents found"
msgstr "Keine Dokumente gefunden"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "No folders found"
msgstr "Keine Ordner gefunden"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "No folders found matching \"{searchTerm}\""
msgstr "Keine Ordner gefunden, die \"{searchTerm}\" entsprechen"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "No further action is required from you at this time."
msgstr "Es sind derzeit keine weiteren Maßnahmen Ihrerseits erforderlich."
@@ -5628,25 +5706,27 @@ msgstr "Keine aktuellen Aktivitäten"
msgid "No recent documents"
msgstr "Keine aktuellen Dokumente"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipient matching this description was found."
msgstr "Kein passender Empfänger mit dieser Beschreibung gefunden."
-#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "No recipients"
msgstr "Keine Empfänger"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipients with this role"
msgstr "Keine Empfänger mit dieser Rolle"
-#: 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-action-select.tsx
msgid "No restrictions"
msgstr "Keine Einschränkungen"
@@ -5687,8 +5767,8 @@ msgid "No valid recipients found"
msgstr "Keine gültigen Empfänger gefunden"
#: apps/remix/app/components/general/multiselect-role-combobox.tsx
-#: packages/ui/primitives/multi-select-combobox.tsx
#: packages/ui/primitives/combobox.tsx
+#: packages/ui/primitives/multi-select-combobox.tsx
msgid "No value found."
msgstr "Kein Wert gefunden."
@@ -5696,16 +5776,16 @@ msgstr "Kein Wert gefunden."
msgid "No worries, it happens! Enter your email and we'll email you a special link to reset your password."
msgstr "Keine Sorge, das passiert! Geben Sie Ihre E-Mail ein, und wir senden Ihnen einen speziellen Link zum Zurücksetzen Ihres Passworts."
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
#: packages/lib/constants/document.ts
msgid "None"
msgstr "Keine"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Not found"
msgstr "Nicht gefunden"
@@ -5718,12 +5798,12 @@ msgstr "Nicht unterstützt"
msgid "Nothing to do"
msgstr "Nichts zu tun"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: 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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Number"
msgstr "Nummer"
@@ -5736,13 +5816,13 @@ msgstr "Zahlenformat"
msgid "Number needs to be formatted as {numberFormat}"
msgstr "Die Nummer muss als {numberFormat} formatiert werden."
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of members allowed. 0 = Unlimited"
msgstr "Anzahl der erlaubten Mitglieder. 0 = Unbegrenzt"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of teams allowed. 0 = Unlimited"
msgstr "Anzahl der erlaubten Teams. 0 = Unbegrenzt"
@@ -5782,10 +5862,6 @@ msgstr "Auf dieser Seite können Sie API-Token erstellen und verwalten. Weitere
msgid "On this page, you can create new Webhooks and manage the existing ones."
msgstr "Auf dieser Seite können Sie neue Webhooks erstellen und die vorhandenen verwalten."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "On this page, you can edit the webhook and its settings."
-msgstr "Auf dieser Seite können Sie den Webhook und seine Einstellungen bearbeiten."
-
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Once confirmed, the following will occur:"
msgstr "Sobald dies bestätigt ist, wird Folgendes geschehen:"
@@ -5826,11 +5902,11 @@ msgstr "Es kann jeweils nur eine Datei hochgeladen werden."
msgid "Only PDF files are allowed"
msgstr "Nur PDF-Dateien sind erlaubt"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Oops! Something went wrong."
msgstr "Hoppla! Etwas ist schief gelaufen."
@@ -5846,8 +5922,8 @@ msgstr "Optionswert darf nicht leer sein"
msgid "Options"
msgstr "Optionen"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Or"
msgstr "Oder"
@@ -5859,9 +5935,10 @@ msgstr "ODER"
msgid "Or continue with"
msgstr "Oder fahren Sie fort mit"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Organisation"
msgstr "Organisation"
@@ -5890,8 +5967,8 @@ msgstr "Einstellungen für Organisationsgruppen"
msgid "Organisation has been updated successfully"
msgstr "Organisation wurde erfolgreich aktualisiert"
-#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
msgid "Organisation Insights"
msgstr "Organisationseinblicke"
@@ -5907,22 +5984,22 @@ msgstr "Organisationseinladungen wurden verschickt."
msgid "Organisation Manager"
msgstr "Organisationsmanager"
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: packages/lib/constants/organisations-translations.ts
msgid "Organisation Member"
msgstr "Organisationsmitglied"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
msgid "Organisation Members"
msgstr "Organisationsmitglieder"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation Name"
msgstr "Organisationsname"
@@ -5935,8 +6012,8 @@ msgstr "Organisation nicht gefunden"
msgid "Organisation role"
msgstr "Organisationsrolle"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Organisation Role"
msgstr "Organisationsrolle"
@@ -5956,17 +6033,17 @@ msgstr "Organisations SSO-Portal"
msgid "Organisation Teams"
msgstr "Organisationsteams"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation URL"
msgstr "Organisations-URL"
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
#: apps/remix/app/routes/_authenticated+/settings+/organisations.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Organisations"
msgstr "Organisationen"
@@ -6003,16 +6080,16 @@ msgstr "Andernfalls wird das Dokument als Entwurf erstellt."
msgid "Override organisation settings"
msgstr "Organisationseinstellungen überschreiben"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Owner"
msgstr "Besitzer"
@@ -6027,8 +6104,8 @@ msgid "Page {0} of {1}"
msgstr "Seite {0} von {1}"
#. placeholder {0}: i + 1
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Page {0} of {numPages}"
msgstr "Seite {0} von {numPages}"
@@ -6036,8 +6113,8 @@ msgstr "Seite {0} von {numPages}"
msgid "Paid"
msgstr "Bezahlt"
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
msgid "Passkey"
msgstr "Passkey"
@@ -6065,8 +6142,8 @@ msgstr "Passkey-Name"
msgid "Passkey Re-Authentication"
msgstr "Passwortwiederauthentifizierung"
-#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
msgid "Passkeys"
msgstr "Passkeys"
@@ -6078,12 +6155,12 @@ msgstr "Passkeys ermöglichen das Anmelden und die Authentifizierung mit biometr
msgid "Passkeys are not supported on this browser"
msgstr "Passkeys werden von diesem Browser nicht unterstützt"
-#: apps/remix/app/components/general/app-command-menu.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
-#: apps/remix/app/components/forms/signup.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Password"
msgstr "Passwort"
@@ -6099,13 +6176,13 @@ msgstr "Passwortzurücksetzung angefordert"
msgid "Password Reset Successful"
msgstr "Passwort erfolgreich zurückgesetzt"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Password should not be common or based on personal information"
msgstr "Das Passwort sollte nicht allgemein sein oder auf persönlichen Informationen basieren"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Password updated"
msgstr "Passwort aktualisiert"
@@ -6113,6 +6190,10 @@ msgstr "Passwort aktualisiert"
msgid "Password updated!"
msgstr "Passwort aktualisiert!"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Past Due"
+msgstr "Überfällig"
+
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
msgid "Payment overdue"
@@ -6122,15 +6203,15 @@ msgstr "Zahlung überfällig"
msgid "PDF Document"
msgstr "PDF-Dokument"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
-#: packages/ui/components/document/document-read-only-fields.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: packages/lib/constants/document.ts
+#: packages/ui/components/document/document-read-only-fields.tsx
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Pending"
msgstr "Ausstehend"
@@ -6150,13 +6231,13 @@ msgstr "Ausstehende Dokumente"
msgid "Pending invitations"
msgstr "Ausstehende Einladungen"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per month"
msgstr "pro Monat"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per year"
msgstr "pro Jahr"
@@ -6165,15 +6246,15 @@ msgctxt "Personal organisation (adjective)"
msgid "Personal"
msgstr "Persönlich"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Personal Account"
msgstr "Persönliches Konto"
-#: apps/remix/app/routes/_authenticated+/inbox.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/inbox.tsx
msgid "Personal Inbox"
msgstr "Persönlicher Posteingang"
@@ -6198,12 +6279,12 @@ msgstr "Anheften"
msgid "Place and configure form fields in the document"
msgstr "Platzieren und konfigurieren Sie Formularfelder im Dokument"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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
#: 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"
@@ -6250,8 +6331,8 @@ msgstr "Bitte wählen Sie Ihr neues Passwort"
msgid "Please complete the document once reviewed"
msgstr "Bitte das Dokument nach Überprüfung abschließen"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Please configure the document first"
msgstr "Bitte konfigurieren Sie zuerst das Dokument"
@@ -6275,9 +6356,9 @@ msgstr "Bitte kontaktieren Sie den Webseiteninhaber für weitere Unterstützung.
msgid "Please enter a meaningful name for your token. This will help you identify it later."
msgstr "Bitte geben Sie einen aussagekräftigen Namen für Ihr Token ein. Dies wird Ihnen helfen, es später zu identifizieren."
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Please enter a valid name."
msgstr "Bitte geben Sie einen gültigen Namen ein."
@@ -6329,6 +6410,10 @@ msgstr "Bitte beachten Sie, dass Sie den Zugriff auf alle mit diesem Team verbun
msgid "Please open your authenticator app and enter the 6-digit code for this document."
msgstr "Bitte öffnen Sie Ihre Authentifizierungs-App und geben Sie den 6-stelligen Code für dieses Dokument ein."
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+msgid "Please provide a reason for rejecting this document"
+msgstr "Bitte geben Sie einen Grund für die Ablehnung dieses Dokuments an"
+
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
msgid "Please provide a token from the authenticator, or a backup code. If you do not have a backup code available, please contact support."
msgstr "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."
@@ -6365,10 +6450,10 @@ msgstr "Bitte versuchen Sie es erneut und stellen Sie sicher, dass Sie die korre
msgid "Please try again later."
msgstr "Bitte versuchen Sie es später noch einmal."
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Please try again or contact our support."
msgstr "Bitte versuchen Sie es erneut oder kontaktieren Sie unseren Support."
@@ -6382,8 +6467,8 @@ msgstr "Bitte {0} eingeben, um zu bestätigen"
msgid "Please type <0>{0}0> to confirm."
msgstr "Bitte geben Sie <0>{0}0> ein, um zu bestätigen."
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Please upload a document to continue"
msgstr "Bitte laden Sie ein Dokument hoch, um fortzufahren."
@@ -6395,15 +6480,15 @@ msgstr "Bitte laden Sie ein Logo hoch"
msgid "Pre-formatted CSV template with example data."
msgstr "Vorformatiertes CSV-Template mit Beispieldaten."
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Preferences"
msgstr "Einstellungen"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Preview"
msgstr "Vorschau"
@@ -6425,8 +6510,8 @@ msgstr "Dokument vor dem Versand überprüfen"
msgid "Preview what the signed document will look like with placeholder data"
msgstr "Dokumentenvorschau mit Platzhaltern anzeigen"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Private"
msgstr "Privat"
@@ -6442,10 +6527,14 @@ msgstr "Private Vorlagen können nur von Ihnen bearbeitet und angezeigt werden."
msgid "Proceed"
msgstr "Fortfahren"
-#: 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/routes/_recipient+/sign.$token+/complete.tsx
+msgid "Processing document"
+msgstr "Dokument wird verarbeitet"
+
#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/profile.tsx
msgid "Profile"
msgstr "Profil"
@@ -6457,8 +6546,8 @@ msgstr "Profil ist derzeit <0>versteckt0>."
msgid "Profile is currently <0>visible0>."
msgstr "Profil ist derzeit <0>sichtbar0>."
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Profile updated"
msgstr "Profil aktualisiert"
@@ -6474,15 +6563,15 @@ msgstr "Anbieter"
msgid "Provider has been updated successfully"
msgstr "Anbieter wurde erfolgreich aktualisiert"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Public"
msgstr "Öffentlich"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Public Profile"
msgstr "Öffentliches Profil"
@@ -6503,8 +6592,8 @@ msgid "Quick Actions"
msgstr "Schnellaktionen"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Radio"
msgstr "Radio"
@@ -6517,11 +6606,11 @@ msgstr "Radio-Einstellungen"
msgid "Radio values"
msgstr "Radio-Werte"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Read only"
msgstr "Nur lesen"
@@ -6570,8 +6659,8 @@ msgstr "Eine erneute Authentifizierung ist erforderlich, um dieses Feld zu unter
msgid "Receives copy"
msgstr "Erhält Kopie"
-#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Recent activity"
msgstr "Aktuelle Aktivitäten"
@@ -6579,10 +6668,10 @@ msgstr "Aktuelle Aktivitäten"
msgid "Recent documents"
msgstr "Neueste Dokumente"
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: 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
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
@@ -6592,9 +6681,9 @@ msgid "Recipient"
msgstr "Empfänger"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Recipient action authentication"
msgstr "Empfängeraktion Authentifizierung"
@@ -6614,11 +6703,11 @@ msgstr "E-Mail zur Unterzeichnungsanfrage des Empfängers"
msgid "Recipient updated"
msgstr "Empfänger aktualisiert"
-#: 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
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Recipients"
msgstr "Empfänger"
@@ -6662,10 +6751,10 @@ msgstr "Rot"
msgid "Redirect URI"
msgstr "Weiterleitungs-URI"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Redirect URL"
msgstr "Weiterleitungs-URL"
@@ -6673,8 +6762,8 @@ msgstr "Weiterleitungs-URL"
msgid "Redirecting"
msgstr "Weiterleitung"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Registration Successful"
msgstr "Registrierung erfolgreich"
@@ -6682,19 +6771,19 @@ msgstr "Registrierung erfolgreich"
msgid "Reject"
msgstr "Ablehnen"
-#: 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
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.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
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
msgid "Reject Document"
msgstr "Dokument Ablehnen"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
msgid "Rejected"
msgstr "Abgelehnt"
@@ -6707,8 +6796,8 @@ msgstr "Ablehnung Bestätigt"
msgid "Rejection reason: {reason}"
msgstr "Ablehnungsgrund: {reason}"
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
msgid "Reload"
msgstr "Neu laden"
@@ -6734,34 +6823,34 @@ msgstr "Erinnerung: Bitte {recipientActionVerb} dieses Dokument"
msgid "Reminder: Please {recipientActionVerb} your document"
msgstr "Erinnerung: Bitte {recipientActionVerb} dein Dokument"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/avatar-image.tsx
-#: apps/remix/app/components/dialogs/template-use-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-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Remove"
msgstr "Entfernen"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Remove email domain"
msgstr "E-Mail-Domain entfernen"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Remove organisation group"
msgstr "Organisationsgruppe entfernen"
@@ -6773,13 +6862,13 @@ msgstr "Organisationsmitglied entfernen"
msgid "Remove team email"
msgstr "Team-E-Mail entfernen"
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Remove team member"
msgstr "Teammitglied entfernen"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Repeat Password"
msgstr "Passwort wiederholen"
@@ -6787,22 +6876,26 @@ msgstr "Passwort wiederholen"
msgid "Reply to email"
msgstr "Auf E-Mail antworten"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Reply To Email"
msgstr "Antworten auf E-Mail"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Request"
+msgstr "Anfrage"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Requesting Organisation"
msgstr "Anfragende Organisation"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Required field"
msgstr "Pflichtfeld"
@@ -6818,8 +6911,9 @@ msgstr "Erforderliche Bereiche"
msgid "Reseal document"
msgstr "Dokument wieder versiegeln"
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Resend"
msgstr "Erneut senden"
@@ -6832,9 +6926,9 @@ msgstr "Code erneut senden"
msgid "Resend Confirmation Email"
msgstr "Bestätigungs-E-Mail erneut senden"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Resend Document"
msgstr "Dokument erneut senden"
@@ -6842,9 +6936,9 @@ msgstr "Dokument erneut senden"
msgid "Resend verification"
msgstr "Bestätigung erneut senden"
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Reset"
msgstr "Zurücksetzen"
@@ -6857,9 +6951,9 @@ msgstr "2FA zurücksetzen"
msgid "Reset email sent"
msgstr "Zurücksetzungs-E-Mail gesendet"
-#: 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
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Reset Password"
msgstr "Passwort zurücksetzen"
@@ -6884,6 +6978,18 @@ msgstr "Zahlung klären"
msgid "Resolve payment"
msgstr "Zahlung klären"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response"
+msgstr "Antwort"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Code"
+msgstr "Antwortcode"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Headers"
+msgstr "Antwort-Header"
+
#: 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!"
@@ -6904,11 +7010,11 @@ msgstr "Erneut versucht"
msgid "Retry"
msgstr "Wiederholen"
-#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "Return"
msgstr "Zurück"
@@ -6924,8 +7030,8 @@ msgstr "Zu den Dokumenten zurückkehren"
msgid "Return to Home"
msgstr "Zurück zur Startseite"
-#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
msgid "Return to sign in"
msgstr "Zurück zur Anmeldung"
@@ -6937,8 +7043,8 @@ msgstr "Zu den Vorlagen zurückkehren"
msgid "Review request"
msgstr "Anfrage prüfen"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Revoke"
msgstr "Zugriff widerrufen"
@@ -6956,24 +7062,24 @@ msgstr "Alle Sitzungen widerrufen"
msgid "Right"
msgstr "Rechts"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Role"
msgstr "Rolle"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Roles"
msgstr "Rollen"
@@ -6981,11 +7087,11 @@ msgstr "Rollen"
msgid "Rows per page"
msgstr "Zeilen pro Seite"
-#: 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/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
msgid "Save"
msgstr "Speichern"
@@ -7004,12 +7110,13 @@ msgstr "Vorlage speichern"
msgid "Sealing job started"
msgstr "Versiegelungsauftrag gestartet"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
-#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Search"
msgstr "Suchen"
@@ -7025,6 +7132,10 @@ msgstr "Suche nach Anspruchs-ID oder Name"
msgid "Search by document title"
msgstr "Nach Dokumenttitel suchen"
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Search by ID"
+msgstr "Nach ID suchen"
+
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
msgid "Search by name or email"
msgstr "Nach Name oder E-Mail suchen"
@@ -7041,11 +7152,11 @@ msgstr "Suche nach Organisationsname"
msgid "Search documents..."
msgstr "Dokumente suchen..."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "Search folders..."
msgstr "Ordner durchsuchen..."
@@ -7057,10 +7168,10 @@ msgstr "Sprachen suchen..."
msgid "Secret"
msgstr "Geheim"
-#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Security"
msgstr "Sicherheit"
@@ -7073,8 +7184,8 @@ msgid "See the background jobs tab for the status"
msgstr "Der Status kann im Hintergrundjobs-Tab eingesehen werden"
#: 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
+#: packages/ui/primitives/document-flow/types.ts
msgid "Select"
msgstr "Auswählen"
@@ -7094,6 +7205,10 @@ msgstr "Einen Plan auswählen"
msgid "Select a plan to continue"
msgstr "Wählen Sie einen Plan, um fortzufahren"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Select a recipient"
+msgstr "Wählen Sie einen Empfänger aus"
+
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
msgid "Select a team to view its dashboard"
msgstr "Wählen Sie ein Team aus, um sein Dashboard anzuzeigen"
@@ -7114,6 +7229,10 @@ msgstr "Wählen Sie eine Zeitzone aus"
msgid "Select access methods"
msgstr "Zugriffsmethoden auswählen"
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+msgid "Select an event type"
+msgstr "Wählen Sie einen Ereignistyp aus"
+
#: apps/remix/app/components/dialogs/sign-field-dropdown-dialog.tsx
#: packages/ui/primitives/combobox.tsx
msgid "Select an option"
@@ -7128,8 +7247,8 @@ msgstr "Wählen Sie eine Organisation, um Teams anzuzeigen"
msgid "Select at least"
msgstr "Wählen Sie mindestens"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "Select authentication methods"
msgstr "Authentifizierungsmethoden auswählen"
@@ -7142,8 +7261,8 @@ msgstr "Standardoption auswählen"
msgid "Select default role"
msgstr "Standardrolle auswählen"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Select direction"
msgstr "Richtung auswählen"
@@ -7160,9 +7279,9 @@ msgstr "Mitgliedsgruppen auswählen, die dem Team hinzugefügt werden sollen."
msgid "Select groups to add to this team"
msgstr "Wählen Sie Gruppen aus, die diesem Team hinzugefügt werden sollen"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Select members"
msgstr "Mitglieder auswählen"
@@ -7182,11 +7301,20 @@ msgstr "Option auswählen"
msgid "Select passkey"
msgstr "Passkey auswählen"
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Select signature types"
msgstr "Signaturtypen auswählen"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Select text align"
msgstr "Textausrichtung wählen"
@@ -7207,6 +7335,10 @@ msgstr "Wählen Sie die Mitglieder, die in diese Gruppe aufgenommen werden solle
msgid "Select triggers"
msgstr "Auslöser auswählen"
+#: packages/ui/primitives/multi-select-combobox.tsx
+msgid "Select values..."
+msgstr "Werte auswählen..."
+
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Select vertical align"
msgstr "Vertikale Ausrichtung auswählen"
@@ -7215,20 +7347,20 @@ msgstr "Vertikale Ausrichtung auswählen"
msgid "Select visibility"
msgstr "Sichtbarkeit auswählen"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Selected Recipient"
msgstr "Ausgewählter Empfänger"
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send"
msgstr "Senden"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Send a test webhook with sample data to verify your integration is working correctly."
msgstr "Senden Sie ein Test-Webhook mit Beispieldaten, um zu überprüfen, ob Ihre Integration korrekt funktioniert."
@@ -7241,9 +7373,9 @@ msgstr "Bestätigungs-E-Mail senden"
msgid "Send document"
msgstr "Dokument senden"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send Document"
msgstr "Dokument senden"
@@ -7288,8 +7420,8 @@ msgstr "E-Mail über Empfänger-unterschrieben senden"
msgid "Send recipient signing request email"
msgstr "E-Mail über Unterzeichnungsanfrage des Empfängers senden"
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
msgid "Send reminder"
msgstr "Erinnerung senden"
@@ -7297,12 +7429,8 @@ msgstr "Erinnerung senden"
msgid "Send reminders to the following recipients"
msgstr "Erinnerungen an die folgenden Empfänger senden"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
-msgid "Send Test Webhook"
-msgstr "Test-Webhook senden"
-
-#: apps/remix/app/components/tables/inbox-table.tsx
#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Sender"
msgstr "Absender"
@@ -7314,8 +7442,10 @@ msgstr "Zurücksetzungs-E-Mail wird gesendet..."
msgid "Sending..."
msgstr "Senden..."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Sent"
msgstr "Gesendet"
@@ -7339,15 +7469,15 @@ msgstr "Richten Sie Ihre Dokumenteigenschaften und Empfängerinformationen ein"
msgid "Set up your template properties and recipient information"
msgstr "Richten Sie Ihre Vorlageneigenschaften und Empfängerinformationen ein"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/_layout.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/app-nav-mobile.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
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
msgid "Settings"
msgstr "Einstellungen"
@@ -7355,17 +7485,14 @@ msgstr "Einstellungen"
msgid "Setup"
msgstr "Einrichten"
-#: 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/tables/documents-table-action-dropdown.tsx
+#: packages/ui/components/document/document-share-button.tsx
msgid "Share"
msgstr "Teilen"
-#: packages/ui/components/document/document-share-button.tsx
-msgid "Share Signature Card"
-msgstr "Unterschriftenkarte teilen"
-
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Share Signing Card"
msgstr "Signaturkarte teilen"
@@ -7382,8 +7509,8 @@ msgid "Show"
msgstr "Anzeigen"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Show advanced settings"
msgstr "Erweiterte Einstellungen anzeigen"
@@ -7391,26 +7518,26 @@ msgstr "Erweiterte Einstellungen anzeigen"
msgid "Show templates in your public profile for your audience to sign and get started quickly"
msgstr "Vorlagen in Ihrem öffentlichen Profil anzeigen, damit Ihre Zielgruppe unterschreiben und schnell loslegen kann"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/components/tables/inbox-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/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-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
-#: apps/remix/app/components/general/document/document-page-view-button.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/user-profile-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Sign"
msgstr "Unterschreiben"
@@ -7435,15 +7562,15 @@ msgstr "Unterzeichnen als<0>{0} <1>({1})1>0>"
msgid "Sign Checkbox Field"
msgstr "Sign Checkbox-Feld"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign document"
msgstr "Dokument unterschreiben"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Sign Document"
msgstr "Dokument signieren"
@@ -7464,16 +7591,16 @@ msgstr "Unterzeichnen-Feld"
msgid "Sign Here"
msgstr "Hier unterzeichnen"
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: packages/email/template-components/template-reset-password.tsx
msgid "Sign In"
msgstr "Anmelden"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Sign in to your account"
msgstr "Melden Sie sich bei Ihrem Konto an"
@@ -7489,9 +7616,9 @@ msgstr "Name signieren"
msgid "Sign Number Field"
msgstr "Zahlenfeld signieren"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Sign Out"
msgstr "Ausloggen"
@@ -7503,8 +7630,8 @@ msgstr "Signaturfeld signieren"
msgid "Sign Text Field"
msgstr "Textfeld signieren"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign the document to complete the process."
msgstr "Unterschreiben Sie das Dokument, um den Vorgang abzuschließen."
@@ -7537,21 +7664,21 @@ msgstr "Vollständigen Namen ins Feld signieren"
msgid "Sign your initials into the field"
msgstr "Initialen ins Feld signieren"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Signature"
msgstr "Unterschrift"
@@ -7579,23 +7706,23 @@ msgstr "Signaturtypen"
msgid "Signatures Collected"
msgstr "Gesammelte Unterschriften"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/ui/components/document/document-read-only-fields.tsx
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Signed"
msgstr "Unterzeichnet"
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-msgctxt "Signed document (adjective)"
-msgid "Signed"
-msgstr "Signiert"
-
#: packages/lib/constants/recipient-roles.ts
msgctxt "Recipient role actioned"
msgid "Signed"
msgstr "Unterschrieben"
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+msgctxt "Signed document (adjective)"
+msgid "Signed"
+msgstr "Signiert"
+
#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Signer"
msgstr "Unterzeichner"
@@ -7641,8 +7768,8 @@ msgstr "Unterzeichne für"
msgid "Signing in..."
msgstr "Anmeldung..."
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Signing Links"
msgstr "Signierlinks"
@@ -7651,8 +7778,8 @@ msgid "Signing links have been generated for this document."
msgstr "Unterzeichnungslinks wurden für dieses Dokument erstellt."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Signing order is enabled."
msgstr "Unterzeichnungsreihenfolge ist aktiviert."
@@ -7669,8 +7796,8 @@ msgstr "Seit {0}"
msgid "Site Banner"
msgstr "Website Banner"
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "Site Settings"
msgstr "Website Einstellungen"
@@ -7678,50 +7805,51 @@ msgstr "Website Einstellungen"
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."
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/general/billing-plans.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.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-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/embed/embed-document-signing-page-v1.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-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/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-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
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-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-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-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-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
+#: apps/remix/app/components/general/document/document-audit-log-download-button.tsx
+#: apps/remix/app/components/general/document/document-certificate-download-button.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
#: packages/ui/components/document/document-share-button.tsx
msgid "Something went wrong"
msgstr "Etwas ist schief gelaufen"
@@ -7731,10 +7859,10 @@ msgstr "Etwas ist schief gelaufen"
msgid "Something went wrong while attempting to verify your email address for <0>{0}0>. Please try again later."
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."
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Something went wrong while loading the document."
msgstr "Beim Laden des Dokuments ist ein Fehler aufgetreten."
@@ -7759,10 +7887,10 @@ msgstr "Etwas ist schiefgelaufen beim Aktualisieren des Abonnements für die Tea
msgid "Something went wrong while uploading this file"
msgstr "Beim Hochladen dieser Datei ist etwas schiefgelaufen"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
msgid "Something went wrong!"
msgstr "Etwas ist schiefgelaufen!"
@@ -7774,8 +7902,8 @@ msgstr "Etwas ist schief gelaufen."
msgid "Something went wrong. Please try again later."
msgstr "Etwas ist schiefgelaufen. Bitte versuchen Sie es später noch einmal."
-#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Something went wrong. Please try again or contact support."
msgstr "Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut oder kontaktieren Sie den Support."
@@ -7787,8 +7915,8 @@ msgstr "Entschuldigung, wir konnten die Prüfprotokolle nicht herunterladen. Bit
msgid "Sorry, we were unable to download the certificate. Please try again later."
msgstr "Entschuldigung, wir konnten das Zertifikat nicht herunterladen. Bitte versuchen Sie es später erneut."
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Source"
msgstr "Quelle"
@@ -7804,16 +7932,19 @@ msgstr "SSO"
msgid "Stats"
msgstr "Statistiken"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Status"
msgstr "Status"
@@ -7840,14 +7971,14 @@ msgstr "Stripe-Kunde erfolgreich erstellt"
msgid "Stripe Customer ID"
msgstr "Stripe-Kunden-ID"
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Subject"
msgstr "Betreff"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Subject <0>(Optional)0>"
msgstr "Betreff <0>(Optional)0>"
@@ -7866,8 +7997,8 @@ msgstr "Eingereicht"
msgid "Subscribe"
msgstr "Abonnieren"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Subscription"
msgstr "Abonnement"
@@ -7891,59 +8022,65 @@ msgstr "Abonnementansprüche"
msgid "Subscription invalid"
msgstr "Abonnement ungültig"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/verify-email-banner.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/organisation-update-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Subscription Status"
+msgstr "Abonnementstatus"
+
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-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-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-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/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/verify-email-banner.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Success"
msgstr "Erfolg"
@@ -7959,8 +8096,14 @@ msgstr "Erfolgreich erstellt: {successCount}"
msgid "Summary:"
msgstr "Zusammenfassung:"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+msgid "support"
+msgstr "Support"
+
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "Support"
msgstr "Support"
@@ -7980,15 +8123,15 @@ msgstr "E-Mail-Domains synchronisieren"
msgid "Sync failed, changes not saved"
msgstr "Synchronisierung fehlgeschlagen, Änderungen nicht gespeichert"
+#: packages/lib/utils/document-audit-logs.ts
+msgid "System auto inserted fields"
+msgstr "Automatisch vom System eingefügte Felder"
+
#: packages/lib/utils/document-audit-logs.ts
msgctxt "Audit log format"
msgid "System auto inserted fields"
msgstr "System automatisch eingefügte Felder"
-#: packages/lib/utils/document-audit-logs.ts
-msgid "System auto inserted fields"
-msgstr "Automatisch vom System eingefügte Felder"
-
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "System Requirements"
msgstr "Systemanforderungen"
@@ -7997,10 +8140,10 @@ msgstr "Systemanforderungen"
msgid "System Theme"
msgstr "Systemthema"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team"
msgstr "Team"
@@ -8017,8 +8160,8 @@ msgstr "Team Admin"
msgid "Team Assignments"
msgstr "Teamzuweisungen"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Team Count"
msgstr "Teamanzahl"
@@ -8081,14 +8224,14 @@ msgstr "Teammitglied"
msgid "Team Members"
msgstr "Teammitglieder"
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "Team members have been added."
msgstr "Teammitglieder wurden hinzugefügt."
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
msgid "Team Name"
msgstr "Teamname"
@@ -8105,9 +8248,9 @@ msgstr "Nur Team"
msgid "Team only templates are not linked anywhere and are visible only to your team."
msgstr "Nur Teamvorlagen sind nirgendwo verlinkt und nur für Ihr Team sichtbar."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team Role"
msgstr "Teamrolle"
@@ -8123,18 +8266,18 @@ msgstr "Team-Einstellungen"
msgid "Team url"
msgstr "Team-URL"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Team URL"
msgstr "Team-URL"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
msgid "Teams"
msgstr "Teams"
@@ -8146,13 +8289,13 @@ msgstr "Teams helfen Ihnen, Ihre Arbeit zu organisieren und mit anderen zusammen
msgid "Teams that this organisation group is currently assigned to"
msgstr "Teams, denen diese Organisationsgruppe derzeit zugewiesen ist"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/public-profile-template-manage-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.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/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
msgid "Template"
msgstr "Vorlage"
@@ -8217,17 +8360,17 @@ msgstr "Vorlagentitel"
msgid "Template updated successfully"
msgstr "Vorlage erfolgreich aktualisiert"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Template uploaded"
msgstr "Vorlage hochgeladen"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.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
msgid "Templates"
msgstr "Vorlagen"
@@ -8235,8 +8378,10 @@ msgstr "Vorlagen"
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."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Test"
+msgstr "Test"
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Test Webhook"
msgstr "Test-Webhook"
@@ -8249,23 +8394,23 @@ msgstr "Test-Webhook fehlgeschlagen"
msgid "Test webhook sent"
msgstr "Test-Webhook gesendet"
+#: 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/envelope-editor/envelope-editor-fields-drag-drop.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
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/types.ts
-#: packages/ui/primitives/document-flow/add-fields.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Text"
msgstr "Text"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Text Align"
msgstr "Textausrichtung"
@@ -8325,14 +8470,14 @@ msgstr "Der Inhalt, der im Banne rgezeig wird, HTML ist erlaubt"
msgid "The default email to use when sending emails to recipients"
msgstr "Die Standard-E-Mail, die beim Versenden von E-Mails an Empfänger verwendet wird"
-#: 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
+#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "The direct link has been copied to your clipboard"
msgstr "Der direkte Linkt wurde in die Zwischenablage kopiert"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "The display name for this email address"
msgstr "Der Anzeigename für diese E-Mail-Adresse"
@@ -8352,8 +8497,8 @@ msgstr "Das Dokument ist jetzt abgeschlossen. Bitte folgen Sie allen Anweisungen
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."
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "The document owner has been notified of your decision. They may contact you with further instructions if necessary."
msgstr "Der Dokumenteneigentümer wurde über Ihre Entscheidung informiert. Er kann Sie bei Bedarf mit weiteren Anweisungen kontaktieren."
@@ -8373,8 +8518,8 @@ msgstr "Das Dokument wird sofort an die Empfänger gesendet, wenn dies angehakt
msgid "The document you are looking for could not be found."
msgstr "Das gesuchte Dokument konnte nicht gefunden werden."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
msgid "The document you are looking for may have been removed, renamed or may have never existed."
msgstr "Das gesuchte Dokument wurde möglicherweise entfernt, umbenannt oder existierte nie."
@@ -8394,8 +8539,8 @@ msgstr "Die gesuchte E-Mail-Domäne wurde möglicherweise entfernt, umbenannt od
msgid "The email or password provided is incorrect"
msgstr "Die angegebene E-Mail oder das Passwort ist falsch"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The events that will trigger a webhook to be sent to your URL."
msgstr "Die Ereignisse, die einen Webhook auslösen, der an Ihre URL gesendet wird."
@@ -8530,8 +8675,8 @@ msgid "The signer's name"
msgstr "Der Name des Unterzeichners"
#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "The signing link has been copied to your clipboard."
msgstr "Der Signierlink wurde in die Zwischenablage kopiert."
@@ -8597,8 +8742,8 @@ msgstr "Die Schriftgröße der getippten Signatur."
msgid "The types of signatures that recipients are allowed to use when signing the document."
msgstr "Die Signaturtypen, die Empfänger beim Unterschreiben des Dokuments verwenden dürfen."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The URL for Documenso to send webhook events to."
msgstr "Die URL für Documenso, um Webhook-Ereignisse zu senden."
@@ -8614,7 +8759,7 @@ msgstr "Die Zwei-Faktor-Authentifizierung des Nutzers wurde erfolgreich zurückg
msgid "The webhook has been successfully deleted."
msgstr "Das Webhook wurde erfolgreich gelöscht."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The webhook has been updated successfully."
msgstr "Der Webhook wurde erfolgreich aktualisiert."
@@ -8622,7 +8767,7 @@ msgstr "Der Webhook wurde erfolgreich aktualisiert."
msgid "The webhook was successfully created."
msgstr "Der Webhook wurde erfolgreich erstellt."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "The webhook you are looking for may have been removed, renamed or may have never existed."
msgstr "Der gesuchte Webhook wurde möglicherweise entfernt, umbenannt oder existierte nie."
@@ -8666,9 +8811,9 @@ msgstr "Dieses Konto wurde nicht verifiziert. Bitte verifizieren Sie Ihr Konto,
msgid "This action is irreversible. Please ensure you have informed the user before proceeding."
msgstr "Diese Aktion ist unwiderruflich. Bitte stellen Sie sicher, dass Sie den Benutzer vor dem Fortfahren informiert haben."
-#: 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
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "This action is not reversible. Please be certain."
msgstr "Diese Aktion ist nicht umkehrbar. Bitte seien Sie sicher."
@@ -8696,8 +8841,8 @@ msgstr "Dieses Dokument konnte derzeit nicht gelöscht werden. Bitte versuchen S
msgid "This document could not be downloaded at this time. Please try again."
msgstr "Dieses Dokument konnte derzeit nicht heruntergeladen werden. Bitte versuche es erneut."
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
msgid "This document could not be duplicated at this time. Please try again."
msgstr "Dieses Dokument konnte derzeit nicht dupliziert werden. Bitte versuche es erneut."
@@ -8705,6 +8850,7 @@ msgstr "Dieses Dokument konnte derzeit nicht dupliziert werden. Bitte versuche e
msgid "This document could not be re-sent at this time. Please try again."
msgstr "Dieses Dokument konnte zu diesem Zeitpunkt nicht erneut gesendet werden. Bitte versuchen Sie es erneut."
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.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."
@@ -8873,9 +9019,9 @@ msgstr "Dieses Token ist ungültig oder abgelaufen. Es sind keine weiteren Maßn
msgid "This token is invalid or has expired. Please contact your team for a new invitation."
msgstr "Dieser Token ist ungültig oder abgelaufen. Bitte kontaktieren Sie Ihr Team für eine neue Einladung."
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "This URL is already in use."
msgstr "Diese URL wird bereits verwendet."
@@ -8915,21 +9061,21 @@ msgstr "Zeit"
msgid "Time zone"
msgstr "Zeitzone"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Time Zone"
msgstr "Zeitzone"
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Title"
msgstr "Titel"
@@ -8964,12 +9110,12 @@ msgid "To change the email you must remove and add a new email address."
msgstr "Um die E-Mail zu ändern, müssen Sie die aktuelle entfernen und eine neue hinzufügen."
#. placeholder {0}: user.email
-#. placeholder {0}: userToEnable.email
#. placeholder {0}: userToDisable.email
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#. placeholder {0}: userToEnable.email
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "To confirm, please enter the accounts email address <0/>({0})."
msgstr "Um zu bestätigen, geben Sie bitte die E-Mail-Adresse des Kontos <0/>({0}) ein."
@@ -8981,8 +9127,8 @@ msgstr "Um zu bestätigen, geben Sie bitte den Grund ein"
msgid "To enable two-factor authentication, scan the following QR code using your authenticator app."
msgstr "Um die Zwei-Faktor-Authentifizierung zu aktivieren, scannen Sie den folgenden QR-Code mit Ihrer Authentifizierungs-App."
-#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
msgid "To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox."
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."
@@ -8997,8 +9143,8 @@ msgstr "Um dieses Dokument als angesehen zu markieren, müssen Sie angemeldet se
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-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."
@@ -9074,8 +9220,8 @@ msgstr "Gesamtanzahl der Unterzeichner, die sich angemeldet haben"
msgid "Total Users"
msgstr "Gesamtanzahl der Benutzer"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Triggers"
msgstr "Auslöser"
@@ -9087,8 +9233,8 @@ msgstr "Zwei-Faktor-Authentifizierung"
msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app."
msgstr "Wiederherstellungscodes für die Zwei-Faktor-Authentifizierung werden verwendet, um auf Ihr Konto zuzugreifen, falls Sie den Zugang zu Ihrer Authentifizierungs-App verlieren."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Two-Factor Authentication"
msgstr "Zwei-Faktor-Authentifizierung"
@@ -9108,21 +9254,25 @@ msgstr "Die Zwei-Faktor-Authentifizierung wurde für Ihr Konto deaktiviert. Sie
msgid "Two-Factor Re-Authentication"
msgstr "Zwei-Faktor-Wiederauthentifizierung"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Type"
msgstr "Typ"
#: packages/lib/constants/document.ts
-msgctxt "Type signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Type signature"
msgid "Type"
-msgstr "Typ"
+msgstr "Tippen"
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Type a command or search..."
msgstr "Geben Sie einen Befehl ein oder suchen Sie..."
+#: packages/ui/primitives/signature-pad/signature-pad-type.tsx
+msgid "Type your signature"
+msgstr "Geben Sie Ihre Unterschrift ein"
+
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
msgid "Typed signatures are not allowed. Please draw your signature."
msgstr "Getippte Unterschriften sind nicht erlaubt. Bitte zeichnen Sie Ihre Unterschrift."
@@ -9209,11 +9359,11 @@ msgstr "Zwei-Faktor-Authentifizierung kann nicht eingerichtet werden"
msgid "Unable to sign in"
msgstr "Anmeldung nicht möglich"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Unauthorized"
msgstr "Nicht autorisiert"
@@ -9221,15 +9371,15 @@ msgstr "Nicht autorisiert"
msgid "Uncompleted"
msgstr "Unvollendet"
-#: 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
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.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
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Unknown"
msgstr "Unbekannt"
@@ -9258,27 +9408,28 @@ msgstr "Lösen"
msgid "Untitled Group"
msgstr "Unbetitelte Gruppe"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: 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/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Update"
@@ -9288,8 +9439,8 @@ msgstr "Aktualisieren"
msgid "Update Banner"
msgstr "Banner aktualisieren"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Update Billing"
msgstr "Rechnungsdaten aktualisieren"
@@ -9313,9 +9464,9 @@ msgstr "Felder aktualisieren"
msgid "Update organisation"
msgstr "Organisation aktualisieren"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "Update organisation member"
msgstr "Organisationsmitglied aktualisieren"
@@ -9331,16 +9482,16 @@ msgstr "Passwort aktualisieren"
msgid "Update profile"
msgstr "Profil aktualisieren"
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
msgid "Update Recipient"
msgstr "Empfänger aktualisieren"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Update role"
msgstr "Rolle aktualisieren"
@@ -9375,10 +9526,6 @@ msgstr "Aktualisieren Sie die Rolle und fügen Sie Felder nach Bedarf für den d
msgid "Update user"
msgstr "Benutzer aktualisieren"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "Update webhook"
-msgstr "Webhook aktualisieren"
-
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
msgid "Updated {organisationMemberName} to {roleLabel}."
msgstr "Aktualisiert {organisationMemberName} zu {roleLabel}."
@@ -9391,8 +9538,8 @@ msgstr "Passwort wird aktualisiert..."
msgid "Updating Your Information"
msgstr "Aktualisierung Ihrer Informationen"
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "Upgrade"
msgstr "Upgrade"
@@ -9406,12 +9553,12 @@ msgid "Upgrade your plan to upload more documents"
msgstr "Aktualisieren Sie Ihren Tarif, um mehr Dokumente hochzuladen"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
msgid "Upload"
msgstr "Hochladen"
#: packages/lib/constants/document.ts
-msgctxt "Upload signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Upload signature"
msgid "Upload"
msgstr "Hochladen"
@@ -9443,8 +9590,8 @@ msgstr "Benutzerdefiniertes Dokument hochladen"
msgid "Upload disabled"
msgstr "Hochladen deaktiviert"
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: packages/ui/primitives/document-upload-button.tsx
msgid "Upload Document"
msgstr "Dokument hochladen"
@@ -9454,8 +9601,8 @@ msgid "Upload documents and add recipients"
msgstr "Dokumente hochladen und Empfänger hinzufügen"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Upload failed"
msgstr "Hochladen fehlgeschlagen"
@@ -9476,8 +9623,8 @@ msgstr "Vorlagendokument hochladen"
msgid "Upload your brand logo (max 5MB, JPG, PNG, or WebP)"
msgstr "Laden Sie Ihr Markenlogo hoch (max. 5MB, JPG, PNG oder WebP)"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Uploaded by"
msgstr "Hochgeladen von"
@@ -9506,18 +9653,18 @@ msgstr "URL"
msgid "Use"
msgstr "Verwenden"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Authenticator"
msgstr "Authenticator verwenden"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Backup Code"
msgstr "Backup-Code verwenden"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
msgid "Use Template"
msgstr "Vorlage verwenden"
@@ -9529,8 +9676,8 @@ msgstr "Verwenden Sie Ihre Authenticator-App, um einen Code zu generieren"
msgid "Use your passkey for authentication"
msgstr "Verwenden Sie Ihren Passkey zur Authentifizierung"
-#: apps/remix/app/components/tables/internal-audit-log-table.tsx
#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/internal-audit-log-table.tsx
msgid "User"
msgstr "Benutzer"
@@ -9546,10 +9693,10 @@ msgstr "Benutzer hat kein Passwort."
msgid "User not found"
msgstr "Benutzer nicht gefunden"
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "User not found."
msgstr "Benutzer nicht gefunden."
@@ -9569,15 +9716,15 @@ msgstr "Benutzereinstellungen"
msgid "User with this email already exists. Please use a different email address."
msgstr "Ein Benutzer mit dieser E-Mail existiert bereits. Bitte verwenden Sie eine andere E-Mail-Adresse."
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
msgid "Users"
msgstr "Benutzer"
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Validation"
msgstr "Validierung"
@@ -9585,9 +9732,9 @@ msgstr "Validierung"
msgid "Validation failed"
msgstr "Validierung fehlgeschlagen"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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 "Value"
@@ -9629,8 +9776,8 @@ msgstr "Überprüfen Sie Ihre E-Mail-Adresse"
msgid "Verify your email address to unlock all features."
msgstr "Überprüfen Sie Ihre E-Mail-Adresse, um alle Funktionen freizuschalten."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Verify your email to upload documents."
msgstr "Überprüfen Sie Ihre E-Mail, um Dokumente hochzuladen."
@@ -9638,8 +9785,8 @@ msgstr "Überprüfen Sie Ihre E-Mail, um Dokumente hochzuladen."
msgid "Verify your team email address"
msgstr "Überprüfen Sie Ihre Team-E-Mail-Adresse"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Vertical"
msgstr "Vertikal"
@@ -9648,15 +9795,15 @@ msgstr "Vertikal"
msgid "Vertical Align"
msgstr "Vertikale Ausrichtung"
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/inbox-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
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.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/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
msgid "View"
msgstr "Betrachten"
@@ -9689,13 +9836,13 @@ msgstr "Alle verwandten Dokumente anzeigen"
msgid "View all security activity related to your account."
msgstr "Sehen Sie sich alle Sicherheitsaktivitäten in Ihrem Konto an."
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "View and manage all active sessions for your account."
msgstr "Alle aktiven Sitzungen Ihres Kontos anzeigen und verwalten."
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "View and manage all login methods linked to your account."
msgstr "Anzeigen und Verwalten aller mit Ihrem Konto verbundenen Anmeldemethoden."
@@ -9711,14 +9858,14 @@ msgstr "DNS-Datensätze anzeigen"
msgid "View document"
msgstr "Dokument anzeigen"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.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
-#: packages/email/template-components/template-document-rejected.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: packages/email/template-components/template-document-invite.tsx
+#: packages/email/template-components/template-document-rejected.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
msgid "View Document"
msgstr "Dokument ansehen"
@@ -9738,6 +9885,10 @@ msgstr "Dokument zur Unterschrift anzeigen"
msgid "View documents associated with this email"
msgstr "Dokumente ansehen, die mit dieser E-Mail verknüpft sind"
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+msgid "View insights"
+msgstr "Einblicke anzeigen"
+
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
msgid "View invites"
msgstr "Einladungen ansehen"
@@ -9771,9 +9922,9 @@ msgstr "Teams ansehen"
msgid "View the DNS records for this email domain"
msgstr "DNS-Datensätze für diese E-Mail-Domain anzeigen"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Viewed"
msgstr "Betrachtet"
@@ -9821,8 +9972,8 @@ msgstr "Warten auf andere, um die Unterzeichnung abzuschließen."
msgid "Waiting for others to sign"
msgstr "Warten auf andere, um zu unterschreiben"
-#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
#: apps/remix/app/components/embed/embed-document-waiting-for-turn.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
msgid "Waiting for Your Turn"
msgstr "Warten auf deine Reihe"
@@ -9838,17 +9989,17 @@ msgstr "Möchten Sie Ihr eigenes öffentliches Profil haben?"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
msgid "Warning: Assistant as last signer"
msgstr "Warnung: Assistent als letzter Unterzeichner"
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
msgstr "Wir können zurzeit nicht auf das Abrechnungsportal zugreifen. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support."
@@ -9895,12 +10046,12 @@ msgstr "Wir sind auf einen Fehler gestoßen, während wir den direkten Vorlagenl
msgid "We encountered an error while sending the test webhook. Please check your endpoint and try again."
msgstr "Beim Versand des Test-Webhooks ist ein Fehler aufgetreten. Bitte überprüfen Sie Ihren Endpunkt und versuchen Sie es erneut."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "We encountered an error while updating the webhook. Please try again later."
msgstr "Wir sind auf einen Fehler gestoßen, während wir den Webhook aktualisieren wollten. Bitte versuchen Sie es später erneut."
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "We encountered an unknown error while attempting to add team members. Please try again later."
msgstr "Beim Versuch, Teammitglieder hinzuzufügen, trat ein unbekannter Fehler auf. Bitte versuchen Sie es später erneut."
@@ -9916,8 +10067,8 @@ msgstr "Wir haben einen unbekannten Fehler festgestellt, als wir versuchten, Ihr
msgid "We encountered an unknown error while attempting to create a group. Please try again later."
msgstr "Beim Versuch, eine Gruppe zu erstellen, trat ein unbekannter Fehler auf. Bitte versuchen Sie es später erneut."
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "We encountered an unknown error while attempting to create a organisation. Please try again later."
msgstr "Beim Versuch, eine Organisation zu erstellen, trat ein unbekannter Fehler auf. Bitte versuchen Sie es später erneut."
@@ -9973,8 +10124,8 @@ msgstr "Es gab einen unbekannten Fehler beim Versuch, diese E-Mail zu entfernen.
msgid "We encountered an unknown error while attempting to remove this envelope item. Please try again later."
msgstr "Beim Versuch, dieses Kuvert-Element zu entfernen, ist ein unbekannter Fehler aufgetreten. Bitte versuchen Sie es später erneut."
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this group. Please try again later."
msgstr "Beim Versuch, diese Gruppe zu entfernen, trat ein unbekannter Fehler auf. Bitte versuchen Sie es später erneut."
@@ -9982,8 +10133,8 @@ msgstr "Beim Versuch, diese Gruppe zu entfernen, trat ein unbekannter Fehler auf
msgid "We encountered an unknown error while attempting to remove this template from your profile. Please try again later."
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, diese Vorlage aus Ihrem Profil zu entfernen. Bitte versuchen Sie es später erneut."
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this user. Please try again later."
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."
@@ -10000,10 +10151,10 @@ msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht h
msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support."
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, den Zugriff zu widerrufen. Bitte versuchen Sie es später oder kontaktieren Sie den Support."
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
msgid "We encountered an unknown error while attempting to sign you In. Please try again later."
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Sie anzumelden. Bitte versuchen Sie es später erneut."
@@ -10025,13 +10176,13 @@ msgstr "Beim Aktualisieren des Kuverts ist ein unbekannter Fehler aufgetreten. B
msgid "We encountered an unknown error while attempting to update the template. Please try again later."
msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, die Vorlage zu aktualisieren. Bitte versuchen Sie es später erneut."
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this organisation member. Please try again later."
msgstr "Beim Versuch, dieses Organisationsmitglied zu aktualisieren, trat ein unbekannter Fehler auf. Bitte versuchen Sie es später erneut."
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this team member. Please try again later."
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."
@@ -10039,8 +10190,8 @@ msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht h
msgid "We encountered an unknown error while attempting to update your organisation. Please try again later."
msgstr "Beim Versuch, Ihre Organisation zu aktualisieren, trat ein unbekannter Fehler auf. Bitte versuchen Sie es später erneut."
-#: apps/remix/app/components/forms/password.tsx
#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
msgid "We encountered an unknown error while attempting to update your password. Please try again later."
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."
@@ -10084,9 +10235,9 @@ msgstr "Wir konnten Ihr Konto nicht erstellen. Bitte überprüfen Sie die von Ih
msgid "We were unable to disable two-factor authentication for your account. Please ensure that you have entered your password and backup code correctly and try again."
msgstr "Wir konnten die Zwei-Faktor-Authentifizierung für Ihr Konto nicht deaktivieren. Bitte stellen Sie sicher, dass Sie Ihr Passwort und den Backup-Code korrekt eingegeben haben und versuchen Sie es erneut."
-#: apps/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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "We were unable to log you out at this time."
msgstr "Wir konnten Sie zurzeit nicht abmelden."
@@ -10099,11 +10250,11 @@ msgstr "Wir konnten Ihr öffentliches Profil nicht auf öffentlich setzen. Bitte
msgid "We were unable to setup two-factor authentication for your account. Please ensure that you have entered your code correctly and try again."
msgstr "Wir konnten die Zwei-Faktor-Authentifizierung für Ihr Konto nicht einrichten. Bitte stellen Sie sicher, dass Sie den Code korrekt eingegeben haben und versuchen Sie es erneut."
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
msgid "We were unable to submit this document at this time. Please try again later."
msgstr "Wir konnten dieses Dokument zurzeit nicht einreichen. Bitte versuchen Sie es später erneut."
@@ -10122,8 +10273,8 @@ msgstr "Wir konnten Ihre Dokumentpräferenzen zu diesem Zeitpunkt nicht aktualis
msgid "We were unable to update your email preferences at this time, please try again later"
msgstr "Wir konnten Ihre E-Mail-Präferenzen derzeit nicht aktualisieren, bitte versuchen Sie es später noch einmal."
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "We were unable to verify your details. Please try again or contact support"
msgstr "Wir konnten Ihre Angaben nicht verifizieren. Bitte versuchen Sie es erneut oder kontaktieren Sie den Support"
@@ -10135,14 +10286,14 @@ msgstr "Wir konnten Ihre E-Mail derzeit nicht verifizieren."
msgid "We were unable to verify your email. If your email is not verified already, please try again."
msgstr "Wir konnten Ihre E-Mail nicht bestätigen. Wenn Ihre E-Mail noch nicht bestätigt wurde, versuchen Sie es bitte erneut."
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We will generate signing links for you, which you can send to the recipients through your method of choice."
msgstr "Wir werden Unterzeichnungslinks für Sie erstellen, die Sie an die Empfänger über Ihre bevorzugte Methode senden können."
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We won't send anything to notify recipients."
msgstr "Wir werden nichts senden, um die Empfänger zu benachrichtigen."
@@ -10155,8 +10306,8 @@ msgstr "Wir werden uns so schnell wie möglich per E-Mail bei Ihnen melden."
msgid "We'll send a 6-digit code to your email"
msgstr "Wir senden Ihnen einen 6-stelligen Code per E-Mail"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
msgid "We're all empty"
msgstr "Wir sind alle leer"
@@ -10176,6 +10327,11 @@ msgstr "Wir haben Ihnen einen 6-stelligen Verifizierungscode per E-Mail gesendet
msgid "We've sent a confirmation email to <0>{email}0>. Please check your inbox and click the link in the email to verify your account."
msgstr "Wir haben eine Bestätigungs-E-Mail an <0>{email}0> gesendet. Bitte überprüfen Sie Ihren Posteingang und klicken Sie auf den Link in der E-Mail, um Ihr Konto zu bestätigen."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Webhook"
+msgstr "Webhook"
+
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
msgid "Webhook created"
msgstr "Webhook erstellt"
@@ -10184,23 +10340,31 @@ msgstr "Webhook erstellt"
msgid "Webhook deleted"
msgstr "Webhook gelöscht"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook Details"
+msgstr "Webhook-Details"
+
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Webhook not found"
msgstr "Webhook nicht gefunden"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook successfully sent"
+msgstr "Webhook erfolgreich gesendet"
+
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Webhook updated"
msgstr "Webhook aktualisiert"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Webhook URL"
msgstr "Webhook-URL"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Webhooks"
msgstr "Webhooks"
@@ -10236,10 +10400,10 @@ msgstr "Hast du stattdessen versucht, dieses Dokument zu bearbeiten?"
msgid "What you can do with teams:"
msgstr "Was Sie mit Teams machen können:"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "When enabled, signers can choose who should sign next in the sequence instead of following the predefined order."
msgstr "Wenn aktiviert, können Unterzeichner auswählen, wer als nächster in der Reihenfolge unterzeichnen soll, anstatt der vorgegebenen Reihenfolge zu folgen."
@@ -10279,20 +10443,20 @@ msgstr "Zustimmung widerrufen"
msgid "Write a description to display on your public profile"
msgstr "Schreiben Sie eine Beschreibung, die in Ihrem öffentlichen Profil angezeigt wird"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Yearly"
msgstr "Jährlich"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Yes"
msgstr "Ja"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: packages/lib/utils/document-audit-logs.ts
msgid "You"
msgstr "Du"
@@ -10360,10 +10524,10 @@ msgstr "Sie sind dabei, das folgende Dokument und alle zugehörigen Felder zu en
msgid "You are about to remove the following email from <0>{0}0>."
msgstr "Sie sind dabei, die folgende E-Mail von <0>{0}0> zu entfernen."
-#. placeholder {0}: team.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#. placeholder {0}: team.name
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "You are about to remove the following group from <0>{0}0>."
msgstr "Sie sind dabei, die folgende Gruppe von <0>{0}0> zu entfernen."
@@ -10403,8 +10567,8 @@ msgstr "Sie aktualisieren derzeit <0>{0}0>"
msgid "You are currently updating <0>{memberName}.0>"
msgstr "Sie aktualisieren derzeit <0>{memberName}.0>"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "You are currently updating <0>{organisationMemberName}.0>"
msgstr "Sie aktualisieren derzeit <0>{organisationMemberName}.0>"
@@ -10487,8 +10651,8 @@ 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."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "You cannot add assistants when signing order is disabled."
msgstr "Sie können keine Assistenten hinzufügen, wenn die Unterschriftenreihenfolge deaktiviert ist."
@@ -10516,21 +10680,21 @@ msgstr "Sie können ein Teammitglied, das eine höhere Rolle als Sie hat, nicht
msgid "You cannot remove members from this team if the inherit member feature is enabled."
msgstr "Sie können keine Mitglieder aus diesem Team entfernen, wenn die Funktion Mitglied übernehmen aktiviert ist."
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "You cannot upload documents at this time."
msgstr "Sie können derzeit keine Dokumente hochladen."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload encrypted PDFs"
msgstr "Sie können keine verschlüsselten PDFs hochladen"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload more than {maximumEnvelopeItemCount} items per envelope."
msgstr "Sie können nicht mehr als {maximumEnvelopeItemCount} Elemente pro Umschlag hochladen."
@@ -10546,6 +10710,10 @@ msgstr "Derzeit haben Sie keinen Zugriff auf Teams in dieser Organisation. Bitte
msgid "You do not have permission to create a token for this team"
msgstr "Sie haben keine Berechtigung, ein Token für dieses Team zu erstellen"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "You don't manage billing for any organisations."
+msgstr "Sie verwalten die Abrechnung für keine Organisation."
+
#: packages/email/template-components/template-document-cancel.tsx
msgid "You don't need to sign it anymore."
msgstr "Du musst es nicht mehr unterschreiben."
@@ -10574,8 +10742,8 @@ msgstr "Du wurdest eingeladen, {0} auf Documenso beizutreten"
msgid "You have been invited to join the following organisation"
msgstr "Sie wurden eingeladen, der folgenden Organisation beizutreten"
-#: packages/lib/server-only/recipient/set-document-recipients.ts
#: packages/lib/server-only/recipient/delete-envelope-recipient.ts
+#: packages/lib/server-only/recipient/set-document-recipients.ts
msgid "You have been removed from a document"
msgstr "Du wurdest von einem Dokument entfernt"
@@ -10589,8 +10757,8 @@ msgid "You have declined the invitation from <0>{0}0> to join their organisati
msgstr "Sie haben die Einladung von <0>{0}0> abgelehnt, deren Organisation beizutreten."
#. placeholder {0}: `"${envelope.title}"`
-#: packages/lib/server-only/document/resend-document.ts
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
+#: packages/lib/server-only/document/resend-document.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}."
@@ -10606,9 +10774,9 @@ msgstr "Sie haben noch keine Vorlagen erstellt. Bitte laden Sie eine Datei hoch,
msgid "You have not yet created or received any documents. To create a document please upload one."
msgstr "Sie haben noch keine Dokumente erstellt oder erhalten. Bitte laden Sie ein Dokument hoch, um eines zu erstellen."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached the limit of the number of files per envelope"
msgstr "Sie haben das Limit für die Anzahl der Dateien pro Umschlag erreicht"
@@ -10621,14 +10789,14 @@ msgstr "Sie haben das maximale Limit von {0} direkten Vorlagen erreicht. <0>Upgr
msgid "You have reached the maximum number of teams for your plan. Please contact sales at <0>{SUPPORT_EMAIL}0> if you would like to adjust your plan."
msgstr "Sie haben die maximale Anzahl an Teams für Ihren Plan erreicht. Bitte kontaktieren Sie den Vertrieb unter <0>{SUPPORT_EMAIL}0>, wenn Sie Ihren Plan anpassen möchten."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached your document limit for this month. Please upgrade your plan."
msgstr "Sie haben Ihr Dokumentenlimit für diesen Monat erreicht. Bitte aktualisieren Sie Ihren Plan."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
msgid "You have reached your document limit."
msgstr "Sie haben Ihr Dokumentenlimit erreicht."
@@ -10641,8 +10809,8 @@ msgstr "Sie haben Ihr Dokumentenlimit erreicht. <0>Upgrade your account to conti
msgid "You have rejected the document '{documentName}'"
msgstr "Sie haben das Dokument '{documentName}' abgelehnt"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "You have rejected this document"
msgstr "Sie haben dieses Dokument abgelehnt"
@@ -10654,8 +10822,8 @@ msgstr "Du hast „{documentName}“ unterzeichnet"
msgid "You have successfully left this organisation."
msgstr "Sie haben diese Organisation erfolgreich verlassen."
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "You have successfully registered. Please verify your account by clicking on the link you received in the email."
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."
@@ -10712,10 +10880,10 @@ msgstr "Sie haben die Teamgruppe aktualisiert."
msgid "You have verified your email address for <0>{0}0>."
msgstr "Sie haben Ihre E-Mail-Adresse für <0>{0}0> bestätigt."
-#: 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
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "You must enter '{deleteMessage}' to proceed"
msgstr "Sie müssen '{deleteMessage}' eingeben, um fortzufahren"
@@ -10723,8 +10891,8 @@ msgstr "Sie müssen '{deleteMessage}' eingeben, um fortzufahren"
msgid "You must select at least one item"
msgstr "Sie müssen mindestens ein Element auswählen"
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
msgid "You must type '{deleteMessage}' to confirm"
msgstr "Sie müssen '{deleteMessage}' eingeben, um zu bestätigen"
@@ -10744,8 +10912,8 @@ msgstr "Sie müssen Administrator sein, um API-Token zu verwalten."
msgid "You need to be logged in as <0>{email}0> to view this page."
msgstr "Sie müssen als <0>{email}0> angemeldet sein, um diese Seite anzuzeigen."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "You need to be logged in to view this page."
msgstr "Sie müssen angemeldet sein, um diese Seite anzuzeigen."
@@ -10762,8 +10930,8 @@ msgid "You will now be required to enter a code from your authenticator app when
msgstr "Sie müssen bei der Anmeldung jetzt einen Code von Ihrer Authenticator-App eingeben."
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "You will receive an Email copy of the signed document once everyone has signed."
-msgstr "Sie erhalten eine E-Mail-Kopie des unterzeichneten Dokuments, sobald alle unterschrieben haben."
+msgid "You will receive an email copy of the signed document once everyone has signed."
+msgstr "Sie erhalten eine Kopie des unterschriebenen Dokuments per E-Mail, sobald alle unterschrieben haben."
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Your Account"
@@ -10818,8 +10986,8 @@ msgstr "Ihr aktueller Plan ist überfällig."
msgid "Your direct signing templates"
msgstr "Ihre direkten Unterzeichnungsvorlagen"
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Your document failed to upload."
msgstr "Ihr Dokument konnte nicht hochgeladen werden."
@@ -10847,9 +11015,9 @@ msgstr "Ihr Dokument wurde erfolgreich gesendet."
msgid "Your document has been successfully duplicated."
msgstr "Ihr Dokument wurde erfolgreich dupliziert."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your document has been uploaded successfully."
msgstr "Ihr Dokument wurde erfolgreich hochgeladen."
@@ -10909,8 +11077,8 @@ msgstr "Ihre vorhandenen Tokens"
msgid "Your Name"
msgstr "Ihr Name"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your new password cannot be the same as your old password."
msgstr "Ihr neues Passwort darf nicht mit Ihrem alten Passwort identisch sein."
@@ -10926,8 +11094,8 @@ msgstr "Ihre Organisation wurde erfolgreich gelöscht."
msgid "Your organisation has been successfully updated."
msgstr "Ihre Organisation wurde erfolgreich aktualisiert."
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your password has been updated successfully."
msgstr "Ihr Passwort wurde erfolgreich aktualisiert."
@@ -10967,8 +11135,8 @@ msgstr "Ihr öffentliches Profil wurde aktualisiert."
msgid "Your recovery code has been copied to your clipboard."
msgstr "Ihr Wiederherstellungscode wurde in die Zwischenablage kopiert."
-#: 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/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Your recovery codes are listed below. Please store them in a safe place."
msgstr "Ihre Wiederherstellungscodes sind unten aufgeführt. Bitte bewahren Sie sie an einem sicheren Ort auf."
@@ -11000,8 +11168,8 @@ msgstr "Ihre Vorlage wurde erfolgreich dupliziert."
msgid "Your template has been successfully deleted."
msgstr "Ihre Vorlage wurde erfolgreich gelöscht."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your template has been uploaded successfully."
msgstr "Ihre Vorlage wurde erfolgreich hochgeladen."
diff --git a/packages/lib/translations/en/web.po b/packages/lib/translations/en/web.po
index b5da30c12..6d5d581da 100644
--- a/packages/lib/translations/en/web.po
+++ b/packages/lib/translations/en/web.po
@@ -47,9 +47,9 @@ msgstr "\"{placeholderEmail}\" on behalf of \"Team Name\" has invited you to sig
msgid "\"Team Name\" has invited you to sign \"example document\"."
msgstr "\"Team Name\" has invited you to sign \"example document\"."
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "(You)"
msgstr "(You)"
@@ -59,8 +59,8 @@ msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
msgstr "{0, plural, one {(1 character over)} other {(# characters over)}}"
#. placeholder {0}: Math.abs(remaningLength)
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{0, plural, one {# character over the limit} other {# characters over the limit}}"
msgstr "{0, plural, one {# character over the limit} other {# characters over the limit}}"
@@ -74,6 +74,11 @@ msgstr "{0, plural, one {# character remaining} other {# characters remaining}}"
msgid "{0, plural, one {# document} other {# documents}}"
msgstr "{0, plural, one {# document} other {# documents}}"
+#. placeholder {0}: row.original.eventTriggers.length
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "{0, plural, one {# Event} other {# Events}}"
+msgstr "{0, plural, one {# Event} other {# Events}}"
+
#. placeholder {0}: assistantFields.filter((field) => field.recipientId === r.id).length
#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "{0, plural, one {# field} other {# fields}}"
@@ -111,16 +116,16 @@ msgid "{0, plural, one {<0>You have <1>11> pending invitation0>} other {<2>Y
msgstr "{0, plural, one {<0>You have <1>11> pending invitation0>} other {<2>You have <3>#3> pending invitations2>}}"
#. placeholder {0}: recipientFieldsRemaining.length
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "{0, plural, one {1 Field Remaining} other {# Fields Remaining}}"
msgstr "{0, plural, one {1 Field Remaining} other {# Fields Remaining}}"
#. placeholder {0}: fields.filter((field) => field.envelopeItemId === doc.id).length
#. placeholder {0}: remainingFields.filter((field) => field.envelopeItemId === doc.id).length
-#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
msgid "{0, plural, one {1 Field} other {# Fields}}"
msgstr "{0, plural, one {1 Field} other {# Fields}}"
@@ -139,11 +144,11 @@ msgstr "{0, plural, one {1 Recipient} other {# Recipients}}"
msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}"
msgstr "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}"
-#. placeholder {0}: route.label
#. placeholder {0}: _(FRIENDLY_FIELD_TYPE[fieldType as FieldType])
+#. placeholder {0}: route.label
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
msgid "{0}"
msgstr "{0}"
@@ -170,9 +175,9 @@ msgstr "{0} invited you to {recipientActionVerb} a document"
#. placeholder {0}: remaining.documents
#. placeholder {1}: quota.documents
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "{0} of {1} documents remaining this month."
msgstr "{0} of {1} documents remaining this month."
@@ -400,8 +405,8 @@ msgstr "{recipientReference} has signed \"{documentName}\""
msgid "{recipientReference} has signed {documentName}"
msgstr "{recipientReference} has signed {documentName}"
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{remaningLength, plural, one {# character remaining} other {# characters remaining}}"
msgstr "{remaningLength, plural, one {# character remaining} other {# characters remaining}}"
@@ -510,6 +515,10 @@ msgstr "<0>Drawn0> - A signature that is drawn using a mouse or stylus."
msgid "<0>Email0> - The recipient will be emailed the document to sign, approve, etc."
msgstr "<0>Email0> - The recipient will be emailed the document to sign, approve, etc."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "<0>Events:0> All"
+msgstr "<0>Events:0> All"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "<0>Full account access:0> View all your profile information, settings, and activity"
msgstr "<0>Full account access:0> View all your profile information, settings, and activity"
@@ -540,8 +549,8 @@ msgstr "<0>None0> - We will generate links which you can send to the recipient
msgid "<0>Note0> - If you use Links in combination with direct templates, you will need to manually send the links to the remaining recipients."
msgstr "<0>Note0> - If you use Links in combination with direct templates, you will need to manually send the links to the remaining recipients."
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require 2FA0> - The recipient must have an account and 2FA enabled via their settings"
msgstr "<0>Require 2FA0> - The recipient must have an account and 2FA enabled via their settings"
@@ -549,8 +558,8 @@ msgstr "<0>Require 2FA0> - The recipient must have an account and 2FA enabled
msgid "<0>Require account0> - The recipient must be signed in to view the document"
msgstr "<0>Require account0> - The recipient must be signed in to view the document"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require passkey0> - The recipient must have an account and passkey configured via their settings"
msgstr "<0>Require passkey0> - The recipient must have an account and passkey configured via their settings"
@@ -619,9 +628,9 @@ msgstr "404 Email domain not found"
msgid "404 not found"
msgstr "404 not found"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "404 Not found"
msgstr "404 Not found"
@@ -655,7 +664,7 @@ msgstr "404 Template not found"
msgid "404 User not found"
msgstr "404 User not found"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "404 Webhook not found"
msgstr "404 Webhook not found"
@@ -742,8 +751,8 @@ msgstr "A new member has joined your organisation {organisationName}"
msgid "A new token was created successfully."
msgstr "A new token was created successfully."
-#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
msgstr "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
@@ -779,7 +788,7 @@ msgstr "A request to use your email has been initiated by {0} on Documenso"
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso"
msgstr "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso."
msgstr "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso."
@@ -804,8 +813,8 @@ msgstr "A unique URL to identify the organisation"
msgid "A unique URL to identify your organisation"
msgstr "A unique URL to identify your organisation"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "A unique URL to identify your team"
msgstr "A unique URL to identify your team"
@@ -814,8 +823,8 @@ msgid "A verification email will be sent to the provided email."
msgstr "A verification email will be sent to the provided email."
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: packages/email/templates/organisation-invite.tsx
#: packages/email/templates/confirm-team-email.tsx
+#: packages/email/templates/organisation-invite.tsx
msgid "Accept"
msgstr "Accept"
@@ -843,9 +852,9 @@ msgstr "Access disabled"
msgid "Access enabled"
msgstr "Access enabled"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Account"
msgstr "Account"
@@ -861,8 +870,8 @@ msgstr "Account creation request"
msgid "Account Creation Request"
msgstr "Account Creation Request"
-#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "Account deleted"
msgstr "Account deleted"
@@ -890,46 +899,50 @@ msgstr "Account unlinked"
msgid "Acknowledgment"
msgstr "Acknowledgment"
-#: 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/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
+#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Action"
msgstr "Action"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Actions"
msgstr "Actions"
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
msgid "Active"
msgstr "Active"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Active sessions"
msgstr "Active sessions"
@@ -937,8 +950,8 @@ msgstr "Active sessions"
msgid "Active Subscriptions"
msgstr "Active Subscriptions"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Add"
msgstr "Add"
@@ -955,15 +968,15 @@ msgstr "Add a custom domain to send emails on behalf of your organisation. We'll
msgid "Add a document"
msgstr "Add a document"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Add a URL to redirect the user to once the document is signed"
msgstr "Add a URL to redirect the user to once the document is signed"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add all relevant fields for each recipient."
msgstr "Add all relevant fields for each recipient."
@@ -996,8 +1009,8 @@ msgstr "Add and configure multiple documents"
msgid "Add another option"
msgstr "Add another option"
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
msgid "Add another value"
msgstr "Add another value"
@@ -1021,11 +1034,11 @@ msgstr "Add Email"
msgid "Add Email Domain"
msgstr "Add Email Domain"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add Fields"
msgstr "Add Fields"
@@ -1089,8 +1102,8 @@ msgstr "Add Placeholders"
msgid "Add Recipients"
msgstr "Add Recipients"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Add Signer"
msgstr "Add Signer"
@@ -1139,8 +1152,8 @@ msgstr "Additional brand information to display at the bottom of emails"
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Admin"
msgstr "Admin"
@@ -1148,8 +1161,8 @@ msgstr "Admin"
msgid "Admin Actions"
msgstr "Admin Actions"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Admin panel"
msgstr "Admin panel"
@@ -1161,15 +1174,15 @@ msgstr "Admin Panel"
msgid "Admins only"
msgstr "Admins only"
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Advanced Options"
msgstr "Advanced Options"
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Advanced settings"
msgstr "Advanced settings"
@@ -1186,6 +1199,7 @@ msgid "After submission, a document will be automatically generated and added to
msgstr "After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email."
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "All"
msgstr "All"
@@ -1209,8 +1223,8 @@ msgstr "All documents related to the electronic signing process will be provided
msgid "All email domains have been synced successfully"
msgstr "All email domains have been synced successfully"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "All Folders"
msgstr "All Folders"
@@ -1218,6 +1232,10 @@ msgstr "All Folders"
msgid "All inserted signatures will be voided"
msgstr "All inserted signatures will be voided"
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
+msgid "All recipients have signed. The document is being processed and you will receive an email copy shortly."
+msgstr "All recipients have signed. The document is being processed and you will receive an email copy shortly."
+
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "All recipients will be notified"
msgstr "All recipients will be notified"
@@ -1234,8 +1252,8 @@ msgstr "All signing links have been copied to your clipboard."
msgid "All templates"
msgstr "All templates"
-#: apps/remix/app/components/general/period-selector.tsx
#: apps/remix/app/components/filters/date-range-filter.tsx
+#: apps/remix/app/components/general/period-selector.tsx
msgid "All Time"
msgstr "All Time"
@@ -1247,10 +1265,10 @@ msgstr "Allow all organisation members to access this team"
msgid "Allow document recipients to reply directly to this email address"
msgstr "Allow document recipients to reply directly to this email address"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Allow signers to dictate next signer"
msgstr "Allow signers to dictate next signer"
@@ -1258,10 +1276,10 @@ msgstr "Allow signers to dictate next signer"
msgid "Allowed Email Domains"
msgstr "Allowed Email Domains"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Allowed Signature Types"
msgstr "Allowed Signature Types"
@@ -1301,19 +1319,19 @@ msgstr "An email containing an invitation will be sent to each member."
msgid "An email with this address already exists."
msgstr "An email with this address already exists."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/token.tsx
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.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
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "An error occurred"
msgstr "An error occurred"
@@ -1325,9 +1343,9 @@ msgstr "An error occurred during upload."
msgid "An error occurred while adding fields."
msgstr "An error occurred while adding fields."
+#: 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/template/template-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "An error occurred while adding signers."
msgstr "An error occurred while adding signers."
@@ -1395,7 +1413,7 @@ msgstr "An error occurred while enabling direct link signing."
msgid "An error occurred while enabling the user."
msgstr "An error occurred while enabling the user."
-#: packages/ui/primitives/pdf-viewer.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "An error occurred while loading the document."
msgstr "An error occurred while loading the document."
@@ -1407,14 +1425,14 @@ msgstr "An error occurred while moving the document."
msgid "An error occurred while moving the template."
msgstr "An error occurred while moving the template."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while removing the field."
msgstr "An error occurred while removing the field."
@@ -1438,29 +1456,29 @@ msgstr "An error occurred while sending the document."
msgid "An error occurred while sending your confirmation email"
msgstr "An error occurred while sending your confirmation email"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing as assistant."
msgstr "An error occurred while signing as assistant."
-#: 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
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing the document."
msgstr "An error occurred while signing the document."
@@ -1473,8 +1491,8 @@ msgstr "An error occurred while signing the field."
msgid "An error occurred while trying to create a checkout session."
msgstr "An error occurred while trying to create a checkout session."
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "An error occurred while updating the document settings."
msgstr "An error occurred while updating the document settings."
@@ -1486,8 +1504,8 @@ msgstr "An error occurred while updating the signature."
msgid "An error occurred while updating your profile."
msgstr "An error occurred while updating your profile."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "An error occurred while uploading your document."
msgstr "An error occurred while uploading your document."
@@ -1507,53 +1525,53 @@ msgstr "An organisation wants to link your account. Please review the details be
msgid "An unexpected error occurred."
msgstr "An unexpected error occurred."
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/public-profile-form.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/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/general/app-command-menu.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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/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/signin.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/profile.tsx
-#: apps/remix/app/components/forms/organisation-update-form.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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "An unknown error occurred"
msgstr "An unknown error occurred"
@@ -1581,10 +1599,10 @@ msgstr "Any Source"
msgid "Any Status"
msgstr "Any Status"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "API Tokens"
msgstr "API Tokens"
@@ -1592,12 +1610,12 @@ msgstr "API Tokens"
msgid "App Version"
msgstr "App Version"
-#: apps/remix/app/components/tables/inbox-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-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Approve"
msgstr "Approve"
@@ -1606,9 +1624,9 @@ msgctxt "Recipient role action verb"
msgid "Approve"
msgstr "Approve"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Approve Document"
msgstr "Approve Document"
@@ -1661,8 +1679,8 @@ msgid "Are you sure you want to reject this document? This action cannot be undo
msgstr "Are you sure you want to reject this document? This action cannot be undone."
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
-msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey."
-msgstr "Are you sure you want to remove the <0>{passkeyName}0> passkey."
+msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey?"
+msgstr "Are you sure you want to remove the <0>{passkeyName}0> passkey?"
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
msgid "Are you sure you wish to delete this organisation?"
@@ -1672,23 +1690,23 @@ msgstr "Are you sure you wish to delete this organisation?"
msgid "Are you sure you wish to delete this team?"
msgstr "Are you sure you wish to delete this team?"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/components/general/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Are you sure?"
msgstr "Are you sure?"
@@ -1701,9 +1719,9 @@ msgctxt "Recipient role action verb"
msgid "Assist"
msgstr "Assist"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Assist Document"
msgstr "Assist Document"
@@ -1747,11 +1765,11 @@ msgctxt "Recipient role progressive verb"
msgid "Assisting"
msgstr "Assisting"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
-#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/lib/types/document-meta.ts
+#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
msgid "At least one signature type must be enabled"
msgstr "At least one signature type must be enabled"
@@ -1763,9 +1781,9 @@ msgstr "Attachment added successfully."
msgid "Attachment removed successfully."
msgstr "Attachment removed successfully.<<<<<<< Updated upstream======="
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Attachments"
@@ -1791,8 +1809,8 @@ msgstr "Authentication Level"
msgid "Authentication Portal Not Found"
msgstr "Authentication Portal Not Found"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Authentication required"
msgstr "Authentication required"
@@ -1812,12 +1830,12 @@ msgstr "Avatar Updated"
msgid "Awaiting email confirmation"
msgstr "Awaiting email confirmation"
-#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
msgid "Back"
msgstr "Back"
@@ -1833,8 +1851,8 @@ msgstr "Background Color"
msgid "Background Jobs"
msgstr "Background Jobs"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Backup Code"
msgstr "Backup Code"
@@ -1850,10 +1868,11 @@ msgstr "Banner Updated"
msgid "Before you get started, please confirm your email address by clicking the button below:"
msgstr "Before you get started, please confirm your email address by clicking the button below:"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
msgid "Billing"
msgstr "Billing"
@@ -1877,9 +1896,9 @@ msgstr "Brand Details"
msgid "Brand Website"
msgstr "Brand Website"
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
msgid "Branding"
msgstr "Branding"
@@ -1887,10 +1906,10 @@ msgstr "Branding"
msgid "Branding Logo"
msgstr "Branding Logo"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Branding Preferences"
msgstr "Branding Preferences"
@@ -1924,8 +1943,8 @@ msgstr "Bulk send operation complete for template \"{templateName}\""
msgid "Bulk Send Template via CSV"
msgstr "Bulk Send Template via CSV"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Bulk Send via CSV"
msgstr "Bulk Send via CSV"
@@ -1970,96 +1989,95 @@ msgstr "By using the electronic signature feature, you are consenting to conduct
msgid "Can prepare"
msgstr "Can prepare"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.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/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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-password.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/general/document/document-attachments-popover.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-test-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-to-folder-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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-create-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-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/claim-update-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.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-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.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/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Cancel"
msgstr "Cancel"
@@ -2109,6 +2127,10 @@ msgstr "Ccers"
msgid "Center"
msgstr "Center"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Change Recipient"
+msgstr "Change Recipient"
+
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
msgid "Character limit"
msgstr "Character limit"
@@ -2123,8 +2145,8 @@ msgid "Charts"
msgstr "Charts"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Checkbox"
msgstr "Checkbox"
@@ -2137,9 +2159,9 @@ msgstr "Checkbox Settings"
msgid "Checkbox values"
msgstr "Checkbox values"
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Checkout"
msgstr "Checkout"
@@ -2191,9 +2213,9 @@ msgstr "Clear Signature"
msgid "Click here to get started"
msgstr "Click here to get started"
-#: 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/template/template-page-view-recent-activity.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "Click here to retry"
msgstr "Click here to retry"
@@ -2206,12 +2228,12 @@ msgstr "Click here to upload"
msgid "Click to copy signing link for sending to recipient"
msgstr "Click to copy signing link for sending to recipient"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.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/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
msgid "Click to insert field"
msgstr "Click to insert field"
@@ -2231,23 +2253,25 @@ msgstr "Client Secret"
msgid "Client secret is required"
msgstr "Client secret is required"
-#: apps/remix/app/components/general/billing-plans.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/support-ticket-form.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/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-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/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/missing-signature-field-dialog.tsx
msgid "Close"
msgstr "Close"
@@ -2260,14 +2284,14 @@ msgstr "Communication"
msgid "Compare all plans and features in detail"
msgstr "Compare all plans and features in detail"
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Complete"
msgstr "Complete"
@@ -2279,22 +2303,22 @@ msgstr "Complete Document"
msgid "Complete the fields for the following signers."
msgstr "Complete the fields for the following signers."
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: 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/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
-#: packages/lib/constants/document.ts
-#: packages/email/template-components/template-document-self-signed.tsx
-#: packages/email/template-components/template-document-recipient-signed.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
#: packages/email/template-components/template-document-completed.tsx
+#: packages/email/template-components/template-document-recipient-signed.tsx
+#: packages/email/template-components/template-document-self-signed.tsx
+#: packages/lib/constants/document.ts
msgid "Completed"
msgstr "Completed"
-#: packages/email/templates/document-self-signed.tsx
#: packages/email/templates/document-completed.tsx
+#: packages/email/templates/document-self-signed.tsx
msgid "Completed Document"
msgstr "Completed Document"
@@ -2370,8 +2394,8 @@ msgstr "Configure Template"
#. placeholder {0}: parseMessageDescriptor( _, FRIENDLY_FIELD_TYPE[currentField.type], )
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Configure the {0} field"
msgstr "Configure the {0} field"
@@ -2388,20 +2412,20 @@ msgstr "Configure the team roles for each group"
msgid "Configure the team roles for each member"
msgstr "Configure the team roles for each member"
-#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Confirm"
msgstr "Confirm"
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
msgid "Confirm by typing <0>{deleteMessage}0>"
msgstr "Confirm by typing <0>{deleteMessage}0>"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "Confirm by typing: <0>{deleteMessage}0>"
msgstr "Confirm by typing: <0>{deleteMessage}0>"
@@ -2414,8 +2438,8 @@ msgstr "Confirm Deletion"
msgid "Confirm email"
msgstr "Confirm email"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Confirmation email sent"
msgstr "Confirmation email sent"
@@ -2439,17 +2463,17 @@ msgstr "Contact us"
msgid "Content"
msgstr "Content"
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$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+/organisation.invite.$token.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-view.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/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$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+/verify-email.$token.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Continue"
msgstr "Continue"
@@ -2516,21 +2540,22 @@ msgstr "Controls which signatures are allowed to be used when signing a document
msgid "Copied"
msgstr "Copied"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: 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/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: packages/ui/primitives/document-flow/add-subject.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/avatar-with-recipient.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.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/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/components/document/document-share-button.tsx
+#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Copied to clipboard"
msgstr "Copied to clipboard"
@@ -2551,8 +2576,8 @@ msgstr "Copy sharable link"
msgid "Copy Shareable Link"
msgstr "Copy Shareable Link"
-#: 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/general/document/document-recipient-link-copy-dialog.tsx
msgid "Copy Signing Links"
msgstr "Copy Signing Links"
@@ -2560,12 +2585,12 @@ msgstr "Copy Signing Links"
msgid "Copy token"
msgstr "Copy token"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Create"
msgstr "Create"
@@ -2676,17 +2701,17 @@ msgstr "Create now"
msgid "Create one automatically"
msgstr "Create one automatically"
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
msgid "Create organisation"
msgstr "Create organisation"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Create Organisation"
msgstr "Create Organisation"
@@ -2710,14 +2735,14 @@ msgstr "Create subscription"
msgid "Create Subscription Claim"
msgstr "Create Subscription Claim"
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
msgid "Create team"
msgstr "Create team"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Create Team"
msgstr "Create Team"
@@ -2746,26 +2771,27 @@ msgstr "Create your account and start using state-of-the-art document signing."
msgid "Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp."
msgstr "Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp."
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: 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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-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
+#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Created"
msgstr "Created"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Created At"
msgstr "Created At"
@@ -2777,9 +2803,7 @@ msgstr "Created by"
msgid "Created on"
msgstr "Created on"
-#. placeholder {0}: i18n.date(webhook.createdAt, DateTime.DATETIME_FULL)
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Created on {0}"
msgstr "Created on {0}"
@@ -2837,13 +2861,13 @@ msgstr "Dark Mode"
msgid "Dashboard"
msgstr "Dashboard"
-#: apps/remix/app/components/tables/settings-security-activity-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Date"
msgstr "Date"
@@ -2851,10 +2875,10 @@ msgstr "Date"
msgid "Date created"
msgstr "Date created"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Date Format"
msgstr "Date Format"
@@ -2862,8 +2886,8 @@ msgstr "Date Format"
msgid "Date Settings"
msgstr "Date Settings"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: packages/email/templates/organisation-invite.tsx
msgid "Decline"
msgstr "Decline"
@@ -2913,46 +2937,47 @@ msgstr "Default Value"
msgid "delete"
msgstr "delete"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/folder/folder-card.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-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-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/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Delete"
msgstr "Delete"
-#. placeholder {0}: webhook.webhookUrl
-#. placeholder {0}: token.name
+#. placeholder {0}: folder.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#. placeholder {0}: token.name
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "delete {0}"
msgstr "delete {0}"
@@ -2968,11 +2993,11 @@ msgstr "delete {teamName}"
msgid "Delete account"
msgstr "Delete account"
+#: 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
#: 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
msgid "Delete Account"
msgstr "Delete Account"
@@ -2980,10 +3005,10 @@ msgstr "Delete Account"
msgid "Delete document"
msgstr "Delete document"
+#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: 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
msgid "Delete Document"
msgstr "Delete Document"
@@ -2991,8 +3016,8 @@ msgstr "Delete Document"
msgid "Delete email"
msgstr "Delete email"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Delete email domain"
msgstr "Delete email domain"
@@ -3052,8 +3077,8 @@ msgstr "Delete Webhook"
msgid "Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution."
msgstr "Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Deleted"
msgstr "Deleted"
@@ -3061,13 +3086,22 @@ msgstr "Deleted"
msgid "Deleting account..."
msgstr "Deleting account..."
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Destination"
+msgstr "Destination"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Details"
msgstr "Details"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+msgid "Developer Mode"
+msgstr "Developer Mode"
+
#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Device"
msgstr "Device"
@@ -3075,19 +3109,19 @@ msgstr "Device"
msgid "Didn't request a password change? We are here to help you secure your account, just <0>contact us.0>"
msgstr "Didn't request a password change? We are here to help you secure your account, just <0>contact us.0>"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "direct link"
msgstr "direct link"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Direct link"
msgstr "Direct link"
-#: 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/envelope-editor/envelope-editor.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
msgid "Direct Link"
msgstr "Direct Link"
@@ -3125,14 +3159,14 @@ msgstr "Direct template link deleted"
msgid "Direct template link usage exceeded ({0}/{1})"
msgstr "Direct template link usage exceeded ({0}/{1})"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Direction"
msgstr "Direction"
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
msgid "Disable"
msgstr "Disable"
@@ -3160,6 +3194,7 @@ msgid "Disable Two Factor Authentication before deleting your account."
msgstr "Disable Two Factor Authentication before deleting your account."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Disabled"
msgstr "Disabled"
@@ -3175,8 +3210,8 @@ msgstr "Disabling the user results in the user not being able to use the account
msgid "Discord"
msgstr "Discord"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "Display Name"
msgstr "Display Name"
@@ -3212,11 +3247,11 @@ msgstr "Do you want to duplicate this template?"
msgid "Documenso will delete <0>all of your documents0>, along with all of your completed documents, signatures, and all other resources belonging to your Account."
msgstr "Documenso will delete <0>all of your documents0>, along with all of your completed documents, signatures, and all other resources belonging to your Account."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Document"
msgstr "Document"
@@ -3245,9 +3280,9 @@ msgid "Document & Recipients"
msgstr "Document & Recipients"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Document access"
msgstr "Document access"
@@ -3266,8 +3301,8 @@ msgstr "Document Approved"
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: packages/lib/server-only/document/delete-document.ts
#: packages/lib/server-only/admin/admin-super-delete-document.ts
+#: packages/lib/server-only/document/delete-document.ts
msgid "Document Cancelled"
msgstr "Document Cancelled"
@@ -3308,8 +3343,8 @@ msgstr "Document Created"
msgid "Document created by <0>{0}0>"
msgstr "Document created by <0>{0}0>"
-#: packages/lib/server-only/template/create-document-from-direct-template.ts
#: packages/email/templates/document-created-from-direct-template.tsx
+#: packages/lib/server-only/template/create-document-from-direct-template.ts
msgid "Document created from direct template"
msgstr "Document created from direct template"
@@ -3321,9 +3356,9 @@ msgstr "Document created using a <0>direct link0>"
msgid "Document Creation"
msgstr "Document Creation"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
msgid "Document deleted"
msgstr "Document deleted"
@@ -3422,9 +3457,9 @@ msgstr "Document pending"
msgid "Document pending email"
msgstr "Document pending email"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Document Preferences"
msgstr "Document Preferences"
@@ -3441,8 +3476,8 @@ msgstr "Document re-sent"
msgid "Document rejected"
msgstr "Document rejected"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: packages/email/template-components/template-document-rejected.tsx
msgid "Document Rejected"
msgstr "Document Rejected"
@@ -3499,15 +3534,15 @@ msgstr "Document updated"
msgid "Document updated successfully"
msgstr "Document updated successfully"
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Document upload disabled due to unpaid invoices"
msgstr "Document upload disabled due to unpaid invoices"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Document uploaded"
msgstr "Document uploaded"
@@ -3541,20 +3576,20 @@ msgstr "Document will be permanently deleted"
msgid "Documentation"
msgstr "Documentation"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.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/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
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Documents"
msgstr "Documents"
@@ -3603,22 +3638,22 @@ msgstr "Domain already in use"
msgid "Domain Name"
msgstr "Domain Name"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Don't have an account? <0>Sign up0>"
msgstr "Don't have an account? <0>Sign up0>"
-#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-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/general/document/document-certificate-qr-view.tsx
-#: apps/remix/app/components/general/document/document-certificate-qr-view.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/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
#: packages/email/template-components/template-document-completed.tsx
msgid "Download"
msgstr "Download"
@@ -3635,9 +3670,9 @@ msgstr "Download Certificate"
msgid "Download Files"
msgstr "Download Files"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Download PDF"
msgstr "Download PDF"
@@ -3645,9 +3680,9 @@ msgstr "Download PDF"
msgid "Download Template CSV"
msgstr "Download Template CSV"
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: packages/lib/constants/document.ts
msgid "Draft"
msgstr "Draft"
@@ -3672,12 +3707,9 @@ msgstr "Drag and drop or click to upload"
msgid "Drag and drop your PDF file here"
msgstr "Drag and drop your PDF file here"
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
-msgid "Draw"
-msgstr "Draw"
-
#: packages/lib/constants/document.ts
-msgctxt "Draw signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Draw signature"
msgid "Draw"
msgstr "Draw"
@@ -3686,8 +3718,8 @@ msgid "Drop your document here"
msgstr "Drop your document here"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Dropdown"
msgstr "Dropdown"
@@ -3707,20 +3739,20 @@ msgstr "Dropdown Settings"
msgid "Dropdown values"
msgstr "Dropdown values"
-#: 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/envelope-editor/envelope-editor-fields-page-renderer.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
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Duplicate"
msgstr "Duplicate"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Document"
msgstr "Duplicate Document"
@@ -3729,8 +3761,8 @@ msgstr "Duplicate Document"
msgid "Duplicate on all pages"
msgstr "Duplicate on all pages"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Template"
msgstr "Duplicate Template"
@@ -3738,14 +3770,23 @@ msgstr "Duplicate Template"
msgid "Duplicate values are not allowed"
msgstr "Duplicate values are not allowed"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 0"
+msgstr "E.g. 0"
+
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 100"
+msgstr "E.g. 100"
+
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Edit"
msgstr "Edit"
@@ -3753,10 +3794,19 @@ msgstr "Edit"
msgid "Edit Template"
msgstr "Edit Template"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Edit webhook"
msgstr "Edit webhook"
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+msgid "eg. Legal"
+msgstr "eg. Legal"
+
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+msgid "eg. Mac"
+msgstr "eg. Mac"
+
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Electronic Delivery of Documents"
msgstr "Electronic Delivery of Documents"
@@ -3765,57 +3815,57 @@ msgstr "Electronic Delivery of Documents"
msgid "Electronic Signature Disclosure"
msgstr "Electronic Signature Disclosure"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-insights-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/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.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
-#: 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/utils/fields.ts
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-configure-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
+#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Email"
msgstr "Email"
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/send-confirmation-email.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Email address"
msgstr "Email address"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Email Address"
msgstr "Email Address"
@@ -3847,9 +3897,9 @@ msgstr "Email domain not found"
msgid "Email Domain Settings"
msgstr "Email Domain Settings"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Email Domains"
msgstr "Email Domains"
@@ -3865,9 +3915,9 @@ msgstr "Email is required"
msgid "Email Options"
msgstr "Email Options"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Email Preferences"
msgstr "Email Preferences"
@@ -3880,10 +3930,10 @@ msgstr "Email preferences updated"
msgid "Email resent"
msgstr "Email resent"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Email Sender"
msgstr "Email Sender"
@@ -3911,8 +3961,8 @@ msgstr "Email verification has been removed"
msgid "Email verification has been resent"
msgstr "Email verification has been resent"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Emails"
msgstr "Emails"
@@ -3971,10 +4021,10 @@ msgstr "Enable direct link signing"
msgid "Enable Direct Link Signing"
msgstr "Enable Direct Link Signing"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Enable signing order"
msgstr "Enable signing order"
@@ -3982,10 +4032,11 @@ msgstr "Enable signing order"
msgid "Enable SSO portal"
msgstr "Enable SSO portal"
-#: 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+/admin+/site-settings.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Enabled"
msgstr "Enabled"
@@ -4009,10 +4060,12 @@ msgstr "Enter claim name"
msgid "Enter the domain you want to use for sending emails (without http:// or www)"
msgstr "Enter the domain you want to use for sending emails (without http:// or www)"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's email"
msgstr "Enter the next signer's email"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's name"
msgstr "Enter the next signer's name"
@@ -4048,11 +4101,12 @@ msgid "Enter your number here"
msgstr "Enter your number here"
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Enter your password"
msgstr "Enter your password"
-#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "Enter your text here"
msgstr "Enter your text here"
@@ -4072,8 +4126,8 @@ msgstr "Envelope Duplicated"
msgid "Envelope ID"
msgstr "Envelope ID"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Envelope Item Count"
msgstr "Envelope Item Count"
@@ -4097,75 +4151,75 @@ msgstr "Envelope Title"
msgid "Envelope updated"
msgstr "Envelope updated"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$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/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/envelope-signing/envelope-signer-page-renderer.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.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-button-legacy.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/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/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.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-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-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-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-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-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-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-text-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.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/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/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.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/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/verify-email-banner.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Error"
msgstr "Error"
@@ -4173,11 +4227,17 @@ msgstr "Error"
msgid "Error uploading file"
msgstr "Error uploading file"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Event"
+msgstr "Event"
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Event Type"
msgstr "Event Type"
#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: packages/ui/components/document/document-visibility-select.tsx
msgid "Everyone"
msgstr "Everyone"
@@ -4190,8 +4250,8 @@ msgid "Everyone has signed"
msgstr "Everyone has signed"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "Everyone has signed! You will receive an Email copy of the signed document."
-msgstr "Everyone has signed! You will receive an Email copy of the signed document."
+msgid "Everyone has signed! You will receive an email copy of the signed document."
+msgstr "Everyone has signed! You will receive an email copy of the signed document."
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "Exceeded timeout"
@@ -4212,11 +4272,16 @@ msgid "Expires on {0}"
msgstr "Expires on {0}"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "External ID"
msgstr "External ID"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Failed"
+msgstr "Failed"
+
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
msgid "Failed to create folder"
msgstr "Failed to create folder"
@@ -4281,7 +4346,7 @@ msgstr "Failed to update subscription claim."
msgid "Failed to update template"
msgstr "Failed to update template"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Failed to update webhook"
msgstr "Failed to update webhook"
@@ -4289,9 +4354,9 @@ msgstr "Failed to update webhook"
msgid "Failed: {failedCount}"
msgstr "Failed: {failedCount}"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Feature Flags"
msgstr "Feature Flags"
@@ -4300,12 +4365,12 @@ msgid "Field character limit"
msgstr "Field character limit"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field font size"
msgstr "Field font size"
@@ -4314,11 +4379,11 @@ msgstr "Field font size"
msgid "Field format"
msgstr "Field format"
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field label"
msgstr "Field label"
@@ -4350,10 +4415,10 @@ msgstr "Fields"
msgid "Fields updated"
msgstr "Fields updated"
+#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "File cannot be larger than {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
msgstr "File cannot be larger than {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
@@ -4373,8 +4438,8 @@ msgstr "File size exceeds the limit of {APP_DOCUMENT_UPLOAD_SIZE_LIMIT} MB"
msgid "Fill in the details to create a new subscription claim."
msgstr "Fill in the details to create a new subscription claim."
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Folder"
msgstr "Folder"
@@ -4394,9 +4459,9 @@ msgstr "Folder moved successfully"
msgid "Folder Name"
msgstr "Folder Name"
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
msgid "Folder not found"
msgstr "Folder not found"
@@ -4409,12 +4474,12 @@ msgid "Folder updated successfully"
msgstr "Folder updated successfully"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Font Size"
msgstr "Font Size"
@@ -4434,19 +4499,20 @@ msgstr "For example, if the claim has a new flag \"FLAG_1\" set to true, then th
msgid "Forgot Password?"
msgstr "Forgot Password?"
-#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Forgot your password?"
msgstr "Forgot your password?"
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Free"
msgstr "Free"
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Free Signature"
msgstr "Free Signature"
@@ -4454,26 +4520,26 @@ msgstr "Free Signature"
msgid "Free Signature Settings"
msgstr "Free Signature Settings"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.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/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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "Full Name"
msgstr "Full Name"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "General"
msgstr "General"
@@ -4490,24 +4556,24 @@ msgstr "Generate Links"
msgid "Global recipient action authentication"
msgstr "Global recipient action authentication"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Go back"
msgstr "Go back"
-#: apps/remix/app/routes/_recipient+/_layout.tsx
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
+#: apps/remix/app/routes/_recipient+/_layout.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Go Back"
msgstr "Go Back"
@@ -4519,9 +4585,9 @@ msgstr "Go Back"
msgid "Go back home"
msgstr "Go back home"
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
msgid "Go Back Home"
msgstr "Go Back Home"
@@ -4550,10 +4616,10 @@ msgstr "Go to your <0>public profile settings0> to add documents."
msgid "Green"
msgstr "Green"
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Group"
msgstr "Group"
@@ -4565,15 +4631,15 @@ msgstr "Group has been created."
msgid "Group has been updated successfully"
msgstr "Group has been updated successfully"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Group Name"
msgstr "Group Name"
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
msgid "Groups"
msgstr "Groups"
@@ -4596,12 +4662,12 @@ msgstr "has invited you to view this document"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
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."
msgstr "Having an assistant as the last signer means they will be unable to take any action as there are no subsequent signers to assist."
@@ -4673,25 +4739,25 @@ msgstr "Hi {userName}, you need to enter a verification code to complete the doc
msgid "Hi, {userName} <0>({userEmail})0>"
msgstr "Hi, {userName} <0>({userEmail})0>"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Hide"
msgstr "Hide"
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/folder/folder-grid.tsx
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-grid.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
msgid "Home"
msgstr "Home"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Home (No Folder)"
msgstr "Home (No Folder)"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Horizontal"
msgstr "Horizontal"
@@ -4728,7 +4794,6 @@ msgstr "I am the owner of this document"
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
msgstr "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
msgid "I'm sure! Delete it"
msgstr "I'm sure! Delete it"
@@ -4765,6 +4830,10 @@ msgstr "If your authenticator app does not support QR codes, you can use the fol
msgid "Important: What This Means"
msgstr "Important: What This Means"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Inactive"
+msgstr "Inactive"
+
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/document/document-status.tsx
@@ -4783,8 +4852,8 @@ msgstr "Include the Audit Logs in the Document"
msgid "Include the Signing Certificate in the Document"
msgstr "Include the Signing Certificate in the Document"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Information"
msgstr "Information"
@@ -4792,17 +4861,17 @@ msgstr "Information"
msgid "Inherit authentication method"
msgstr "Inherit authentication method"
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
msgid "Inherit from organisation"
msgstr "Inherit from organisation"
@@ -4815,11 +4884,11 @@ msgstr "Inherit organisation members"
msgid "Inherited subscription claim"
msgstr "Inherited subscription claim"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: packages/ui/primitives/document-flow/types.ts
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Initials"
msgstr "Initials"
@@ -4864,8 +4933,8 @@ msgstr "Invalid email"
msgid "Invalid link"
msgstr "Invalid link"
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
msgid "Invalid token"
msgstr "Invalid token"
@@ -4885,8 +4954,8 @@ msgstr "Invitation accepted"
msgid "Invitation accepted!"
msgstr "Invitation accepted!"
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
msgid "Invitation declined"
msgstr "Invitation declined"
@@ -4926,9 +4995,9 @@ msgstr "Invited At"
msgid "Invoice"
msgstr "Invoice"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "IP Address"
msgstr "IP Address"
@@ -4982,23 +5051,23 @@ msgstr "Joined"
msgid "Joined {0}"
msgstr "Joined {0}"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Label"
msgstr "Label"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Language"
msgstr "Language"
@@ -5026,8 +5095,8 @@ msgstr "Last 90 Days"
msgid "Last Active"
msgstr "Last Active"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Last modified"
msgstr "Last modified"
@@ -5055,15 +5124,15 @@ msgstr "Last used"
msgid "Last Year"
msgstr "Last Year"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Leave"
msgstr "Leave"
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Leave blank to inherit from the organisation."
msgstr "Leave blank to inherit from the organisation."
@@ -5119,8 +5188,8 @@ msgstr "Link template"
msgid "Link your Documenso account"
msgstr "Link your Documenso account"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Linked Accounts"
msgstr "Linked Accounts"
@@ -5132,30 +5201,29 @@ msgstr "Linked At"
msgid "Links Generated"
msgstr "Links Generated"
-#. placeholder {0}: webhook.eventTriggers .map((trigger) => toFriendlyWebhookEventName(trigger)) .join(', ')
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-msgid "Listening to {0}"
-msgstr "Listening to {0}"
+msgid "Listening to"
+msgstr "Listening to"
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
msgid "Load older activity"
msgstr "Load older activity"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Loading"
msgstr "Loading"
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Loading document..."
msgstr "Loading document..."
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
msgid "Loading Document..."
msgstr "Loading Document..."
@@ -5171,15 +5239,19 @@ msgstr "Loading..."
msgid "Local timezone"
msgstr "Local timezone"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Login"
msgstr "Login"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "Logs"
+msgstr "Logs"
+
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Manage"
msgstr "Manage"
@@ -5209,9 +5281,14 @@ msgid "Manage billing"
msgstr "Manage billing"
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Manage Billing"
msgstr "Manage Billing"
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
+msgid "Manage billing and subscriptions for organisations where you have billing management permissions."
+msgstr "Manage billing and subscriptions for organisations where you have billing management permissions."
+
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "Manage details for this public template"
msgstr "Manage details for this public template"
@@ -5228,6 +5305,7 @@ msgstr "Manage documents"
msgid "Manage linked accounts"
msgstr "Manage linked accounts"
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Manage organisation"
msgstr "Manage organisation"
@@ -5313,8 +5391,8 @@ msgstr "Manage your site settings here"
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Manager"
msgstr "Manager"
@@ -5352,24 +5430,24 @@ msgstr "Max"
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
msgstr "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Maximum number of uploaded files per envelope allowed"
msgstr "Maximum number of uploaded files per envelope allowed"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Member"
msgstr "Member"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Member Count"
msgstr "Member Count"
@@ -5377,25 +5455,25 @@ msgstr "Member Count"
msgid "Member Since"
msgstr "Member Since"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Members"
msgstr "Members"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Message"
msgstr "Message"
@@ -5416,8 +5494,8 @@ msgstr "Min"
msgid "Missing Recipients"
msgstr "Missing Recipients"
-#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
msgid "Modify recipients"
msgstr "Modify recipients"
@@ -5425,8 +5503,8 @@ msgstr "Modify recipients"
msgid "Modify the details of the subscription claim."
msgstr "Modify the details of the subscription claim."
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Monthly"
msgstr "Monthly"
@@ -5438,10 +5516,10 @@ msgstr "Monthly Active Users: Users that created at least one Document"
msgid "Monthly Active Users: Users that had at least one of their documents completed"
msgstr "Monthly Active Users: Users that had at least one of their documents completed"
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
msgid "Move"
msgstr "Move"
@@ -5461,8 +5539,8 @@ msgstr "Move Folder"
msgid "Move Template to Folder"
msgstr "Move Template to Folder"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Move to Folder"
msgstr "Move to Folder"
@@ -5478,43 +5556,43 @@ msgstr "My Folder"
msgid "N/A"
msgstr "N/A"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: 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/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
-#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
-#: apps/remix/app/components/forms/subscription-claim-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: 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
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/forms/subscription-claim-form.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/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Name"
msgstr "Name"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Name is required"
msgstr "Name is required"
@@ -5554,11 +5632,11 @@ msgstr "New Password"
msgid "New Template"
msgstr "New Template"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Next"
msgstr "Next"
@@ -5575,10 +5653,10 @@ msgstr "Next Recipient Email"
msgid "Next Recipient Name"
msgstr "Next Recipient Name"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "No"
msgstr "No"
@@ -5586,24 +5664,24 @@ msgstr "No"
msgid "No active drafts"
msgstr "No active drafts"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "No documents found"
msgstr "No documents found"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "No folders found"
msgstr "No folders found"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "No folders found matching \"{searchTerm}\""
msgstr "No folders found matching \"{searchTerm}\""
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "No further action is required from you at this time."
msgstr "No further action is required from you at this time."
@@ -5623,25 +5701,27 @@ msgstr "No recent activity"
msgid "No recent documents"
msgstr "No recent documents"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipient matching this description was found."
msgstr "No recipient matching this description was found."
-#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "No recipients"
msgstr "No recipients"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipients with this role"
msgstr "No recipients with this role"
-#: 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-action-select.tsx
msgid "No restrictions"
msgstr "No restrictions"
@@ -5682,8 +5762,8 @@ msgid "No valid recipients found"
msgstr "No valid recipients found"
#: apps/remix/app/components/general/multiselect-role-combobox.tsx
-#: packages/ui/primitives/multi-select-combobox.tsx
#: packages/ui/primitives/combobox.tsx
+#: packages/ui/primitives/multi-select-combobox.tsx
msgid "No value found."
msgstr "No value found."
@@ -5691,16 +5771,16 @@ msgstr "No value found."
msgid "No worries, it happens! Enter your email and we'll email you a special link to reset your password."
msgstr "No worries, it happens! Enter your email and we'll email you a special link to reset your password."
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
#: packages/lib/constants/document.ts
msgid "None"
msgstr "None"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Not found"
msgstr "Not found"
@@ -5713,12 +5793,12 @@ msgstr "Not supported"
msgid "Nothing to do"
msgstr "Nothing to do"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: 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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Number"
msgstr "Number"
@@ -5731,13 +5811,13 @@ msgstr "Number format"
msgid "Number needs to be formatted as {numberFormat}"
msgstr "Number needs to be formatted as {numberFormat}"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of members allowed. 0 = Unlimited"
msgstr "Number of members allowed. 0 = Unlimited"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of teams allowed. 0 = Unlimited"
msgstr "Number of teams allowed. 0 = Unlimited"
@@ -5777,10 +5857,6 @@ msgstr "On this page, you can create and manage API tokens. See our <0>Documenta
msgid "On this page, you can create new Webhooks and manage the existing ones."
msgstr "On this page, you can create new Webhooks and manage the existing ones."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "On this page, you can edit the webhook and its settings."
-msgstr "On this page, you can edit the webhook and its settings."
-
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Once confirmed, the following will occur:"
msgstr "Once confirmed, the following will occur:"
@@ -5821,11 +5897,11 @@ msgstr "Only one file can be uploaded at a time"
msgid "Only PDF files are allowed"
msgstr "Only PDF files are allowed"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Oops! Something went wrong."
msgstr "Oops! Something went wrong."
@@ -5841,8 +5917,8 @@ msgstr "Option value cannot be empty"
msgid "Options"
msgstr "Options"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Or"
msgstr "Or"
@@ -5854,9 +5930,10 @@ msgstr "OR"
msgid "Or continue with"
msgstr "Or continue with"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Organisation"
msgstr "Organisation"
@@ -5885,8 +5962,8 @@ msgstr "Organisation Group Settings"
msgid "Organisation has been updated successfully"
msgstr "Organisation has been updated successfully"
-#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
msgid "Organisation Insights"
msgstr "Organisation Insights"
@@ -5902,22 +5979,22 @@ msgstr "Organisation invitations have been sent."
msgid "Organisation Manager"
msgstr "Organisation Manager"
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: packages/lib/constants/organisations-translations.ts
msgid "Organisation Member"
msgstr "Organisation Member"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
msgid "Organisation Members"
msgstr "Organisation Members"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation Name"
msgstr "Organisation Name"
@@ -5930,8 +6007,8 @@ msgstr "Organisation not found"
msgid "Organisation role"
msgstr "Organisation role"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Organisation Role"
msgstr "Organisation Role"
@@ -5951,17 +6028,17 @@ msgstr "Organisation SSO Portal"
msgid "Organisation Teams"
msgstr "Organisation Teams"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation URL"
msgstr "Organisation URL"
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
#: apps/remix/app/routes/_authenticated+/settings+/organisations.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Organisations"
msgstr "Organisations"
@@ -5998,16 +6075,16 @@ msgstr "Otherwise, the document will be created as a draft."
msgid "Override organisation settings"
msgstr "Override organisation settings"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Owner"
msgstr "Owner"
@@ -6022,8 +6099,8 @@ msgid "Page {0} of {1}"
msgstr "Page {0} of {1}"
#. placeholder {0}: i + 1
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Page {0} of {numPages}"
msgstr "Page {0} of {numPages}"
@@ -6031,8 +6108,8 @@ msgstr "Page {0} of {numPages}"
msgid "Paid"
msgstr "Paid"
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
msgid "Passkey"
msgstr "Passkey"
@@ -6060,8 +6137,8 @@ msgstr "Passkey name"
msgid "Passkey Re-Authentication"
msgstr "Passkey Re-Authentication"
-#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
msgid "Passkeys"
msgstr "Passkeys"
@@ -6073,12 +6150,12 @@ msgstr "Passkeys allow you to sign in and authenticate using biometrics, passwor
msgid "Passkeys are not supported on this browser"
msgstr "Passkeys are not supported on this browser"
-#: apps/remix/app/components/general/app-command-menu.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
-#: apps/remix/app/components/forms/signup.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Password"
msgstr "Password"
@@ -6094,13 +6171,13 @@ msgstr "Password Reset Requested"
msgid "Password Reset Successful"
msgstr "Password Reset Successful"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Password should not be common or based on personal information"
msgstr "Password should not be common or based on personal information"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Password updated"
msgstr "Password updated"
@@ -6108,6 +6185,10 @@ msgstr "Password updated"
msgid "Password updated!"
msgstr "Password updated!"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Past Due"
+msgstr "Past Due"
+
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
msgid "Payment overdue"
@@ -6117,15 +6198,15 @@ msgstr "Payment overdue"
msgid "PDF Document"
msgstr "PDF Document"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
-#: packages/ui/components/document/document-read-only-fields.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: packages/lib/constants/document.ts
+#: packages/ui/components/document/document-read-only-fields.tsx
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Pending"
msgstr "Pending"
@@ -6145,13 +6226,13 @@ msgstr "Pending Documents"
msgid "Pending invitations"
msgstr "Pending invitations"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per month"
msgstr "per month"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per year"
msgstr "per year"
@@ -6160,15 +6241,15 @@ msgctxt "Personal organisation (adjective)"
msgid "Personal"
msgstr "Personal"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Personal Account"
msgstr "Personal Account"
-#: apps/remix/app/routes/_authenticated+/inbox.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/inbox.tsx
msgid "Personal Inbox"
msgstr "Personal Inbox"
@@ -6193,12 +6274,12 @@ msgstr "Pin"
msgid "Place and configure form fields in the document"
msgstr "Place and configure form fields in the document"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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
#: 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 "Placeholder"
@@ -6245,8 +6326,8 @@ msgstr "Please choose your new password"
msgid "Please complete the document once reviewed"
msgstr "Please complete the document once reviewed"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Please configure the document first"
msgstr "Please configure the document first"
@@ -6270,9 +6351,9 @@ msgstr "Please contact the site owner for further assistance."
msgid "Please enter a meaningful name for your token. This will help you identify it later."
msgstr "Please enter a meaningful name for your token. This will help you identify it later."
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Please enter a valid name."
msgstr "Please enter a valid name."
@@ -6324,6 +6405,10 @@ msgstr "Please note that you will lose access to all documents associated with t
msgid "Please open your authenticator app and enter the 6-digit code for this document."
msgstr "Please open your authenticator app and enter the 6-digit code for this document."
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+msgid "Please provide a reason for rejecting this document"
+msgstr "Please provide a reason for rejecting this document"
+
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
msgid "Please provide a token from the authenticator, or a backup code. If you do not have a backup code available, please contact support."
msgstr "Please provide a token from the authenticator, or a backup code. If you do not have a backup code available, please contact support."
@@ -6360,10 +6445,10 @@ msgstr "Please try again and make sure you enter the correct email address."
msgid "Please try again later."
msgstr "Please try again later."
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Please try again or contact our support."
msgstr "Please try again or contact our support."
@@ -6377,8 +6462,8 @@ msgstr "Please type {0} to confirm"
msgid "Please type <0>{0}0> to confirm."
msgstr "Please type <0>{0}0> to confirm."
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Please upload a document to continue"
msgstr "Please upload a document to continue"
@@ -6390,15 +6475,15 @@ msgstr "Please upload a logo"
msgid "Pre-formatted CSV template with example data."
msgstr "Pre-formatted CSV template with example data."
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Preferences"
msgstr "Preferences"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Preview"
msgstr "Preview"
@@ -6420,8 +6505,8 @@ msgstr "Preview the document before sending"
msgid "Preview what the signed document will look like with placeholder data"
msgstr "Preview what the signed document will look like with placeholder data"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Private"
msgstr "Private"
@@ -6437,10 +6522,14 @@ msgstr "Private templates can only be modified and viewed by you."
msgid "Proceed"
msgstr "Proceed"
-#: 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/routes/_recipient+/sign.$token+/complete.tsx
+msgid "Processing document"
+msgstr "Processing document"
+
#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/profile.tsx
msgid "Profile"
msgstr "Profile"
@@ -6452,8 +6541,8 @@ msgstr "Profile is currently <0>hidden0>."
msgid "Profile is currently <0>visible0>."
msgstr "Profile is currently <0>visible0>."
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Profile updated"
msgstr "Profile updated"
@@ -6469,15 +6558,15 @@ msgstr "Provider"
msgid "Provider has been updated successfully"
msgstr "Provider has been updated successfully"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Public"
msgstr "Public"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Public Profile"
msgstr "Public Profile"
@@ -6498,8 +6587,8 @@ msgid "Quick Actions"
msgstr "Quick Actions"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Radio"
msgstr "Radio"
@@ -6512,11 +6601,11 @@ msgstr "Radio Settings"
msgid "Radio values"
msgstr "Radio values"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Read only"
msgstr "Read only"
@@ -6565,8 +6654,8 @@ msgstr "Reauthentication is required to sign this field"
msgid "Receives copy"
msgstr "Receives copy"
-#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Recent activity"
msgstr "Recent activity"
@@ -6574,10 +6663,10 @@ msgstr "Recent activity"
msgid "Recent documents"
msgstr "Recent documents"
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: 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
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
@@ -6587,9 +6676,9 @@ msgid "Recipient"
msgstr "Recipient"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Recipient action authentication"
msgstr "Recipient action authentication"
@@ -6609,11 +6698,11 @@ msgstr "Recipient signing request email"
msgid "Recipient updated"
msgstr "Recipient updated"
-#: 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
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Recipients"
msgstr "Recipients"
@@ -6657,10 +6746,10 @@ msgstr "Red"
msgid "Redirect URI"
msgstr "Redirect URI"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Redirect URL"
msgstr "Redirect URL"
@@ -6668,8 +6757,8 @@ msgstr "Redirect URL"
msgid "Redirecting"
msgstr "Redirecting"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Registration Successful"
msgstr "Registration Successful"
@@ -6677,19 +6766,19 @@ msgstr "Registration Successful"
msgid "Reject"
msgstr "Reject"
-#: 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
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.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
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
msgid "Reject Document"
msgstr "Reject Document"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
msgid "Rejected"
msgstr "Rejected"
@@ -6702,8 +6791,8 @@ msgstr "Rejection Confirmed"
msgid "Rejection reason: {reason}"
msgstr "Rejection reason: {reason}"
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
msgid "Reload"
msgstr "Reload"
@@ -6729,34 +6818,34 @@ msgstr "Reminder: Please {recipientActionVerb} this document"
msgid "Reminder: Please {recipientActionVerb} your document"
msgstr "Reminder: Please {recipientActionVerb} your document"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/avatar-image.tsx
-#: apps/remix/app/components/dialogs/template-use-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-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Remove"
msgstr "Remove"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Remove email domain"
msgstr "Remove email domain"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Remove organisation group"
msgstr "Remove organisation group"
@@ -6768,13 +6857,13 @@ msgstr "Remove organisation member"
msgid "Remove team email"
msgstr "Remove team email"
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Remove team member"
msgstr "Remove team member"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Repeat Password"
msgstr "Repeat Password"
@@ -6782,22 +6871,26 @@ msgstr "Repeat Password"
msgid "Reply to email"
msgstr "Reply to email"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Reply To Email"
msgstr "Reply To Email"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Request"
+msgstr "Request"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Requesting Organisation"
msgstr "Requesting Organisation"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Required field"
msgstr "Required field"
@@ -6813,8 +6906,9 @@ msgstr "Required scopes"
msgid "Reseal document"
msgstr "Reseal document"
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Resend"
msgstr "Resend"
@@ -6827,9 +6921,9 @@ msgstr "Resend code"
msgid "Resend Confirmation Email"
msgstr "Resend Confirmation Email"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Resend Document"
msgstr "Resend Document"
@@ -6837,9 +6931,9 @@ msgstr "Resend Document"
msgid "Resend verification"
msgstr "Resend verification"
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Reset"
msgstr "Reset"
@@ -6852,9 +6946,9 @@ msgstr "Reset 2FA"
msgid "Reset email sent"
msgstr "Reset email sent"
-#: 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
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Reset Password"
msgstr "Reset Password"
@@ -6879,6 +6973,18 @@ msgstr "Resolve"
msgid "Resolve payment"
msgstr "Resolve payment"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response"
+msgstr "Response"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Code"
+msgstr "Response Code"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Headers"
+msgstr "Response Headers"
+
#: 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 "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!"
@@ -6899,11 +7005,11 @@ msgstr "Retried"
msgid "Retry"
msgstr "Retry"
-#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "Return"
msgstr "Return"
@@ -6919,8 +7025,8 @@ msgstr "Return to documents"
msgid "Return to Home"
msgstr "Return to Home"
-#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
msgid "Return to sign in"
msgstr "Return to sign in"
@@ -6932,8 +7038,8 @@ msgstr "Return to templates"
msgid "Review request"
msgstr "Review request"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Revoke"
msgstr "Revoke"
@@ -6951,24 +7057,24 @@ msgstr "Revoke all sessions"
msgid "Right"
msgstr "Right"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Role"
msgstr "Role"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Roles"
msgstr "Roles"
@@ -6976,11 +7082,11 @@ msgstr "Roles"
msgid "Rows per page"
msgstr "Rows per page"
-#: 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/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
msgid "Save"
msgstr "Save"
@@ -6999,12 +7105,13 @@ msgstr "Save Template"
msgid "Sealing job started"
msgstr "Sealing job started"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
-#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Search"
msgstr "Search"
@@ -7020,6 +7127,10 @@ msgstr "Search by claim ID or name"
msgid "Search by document title"
msgstr "Search by document title"
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Search by ID"
+msgstr "Search by ID"
+
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
msgid "Search by name or email"
msgstr "Search by name or email"
@@ -7036,11 +7147,11 @@ msgstr "Search by organisation name"
msgid "Search documents..."
msgstr "Search documents..."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "Search folders..."
msgstr "Search folders..."
@@ -7052,10 +7163,10 @@ msgstr "Search languages..."
msgid "Secret"
msgstr "Secret"
-#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Security"
msgstr "Security"
@@ -7068,8 +7179,8 @@ msgid "See the background jobs tab for the status"
msgstr "See the background jobs tab for the status"
#: 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
+#: packages/ui/primitives/document-flow/types.ts
msgid "Select"
msgstr "Select"
@@ -7089,6 +7200,10 @@ msgstr "Select a plan"
msgid "Select a plan to continue"
msgstr "Select a plan to continue"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Select a recipient"
+msgstr "Select a recipient"
+
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
msgid "Select a team to view its dashboard"
msgstr "Select a team to view its dashboard"
@@ -7109,6 +7224,10 @@ msgstr "Select a time zone"
msgid "Select access methods"
msgstr "Select access methods"
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+msgid "Select an event type"
+msgstr "Select an event type"
+
#: apps/remix/app/components/dialogs/sign-field-dropdown-dialog.tsx
#: packages/ui/primitives/combobox.tsx
msgid "Select an option"
@@ -7123,8 +7242,8 @@ msgstr "Select an organisation to view teams"
msgid "Select at least"
msgstr "Select at least"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "Select authentication methods"
msgstr "Select authentication methods"
@@ -7137,8 +7256,8 @@ msgstr "Select default option"
msgid "Select default role"
msgstr "Select default role"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Select direction"
msgstr "Select direction"
@@ -7155,9 +7274,9 @@ msgstr "Select groups of members to add to the team."
msgid "Select groups to add to this team"
msgstr "Select groups to add to this team"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Select members"
msgstr "Select members"
@@ -7177,11 +7296,20 @@ msgstr "Select Option"
msgid "Select passkey"
msgstr "Select passkey"
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Select signature types"
msgstr "Select signature types"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Select text align"
msgstr "Select text align"
@@ -7202,6 +7330,10 @@ msgstr "Select the members to include in this group"
msgid "Select triggers"
msgstr "Select triggers"
+#: packages/ui/primitives/multi-select-combobox.tsx
+msgid "Select values..."
+msgstr "Select values..."
+
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Select vertical align"
msgstr "Select vertical align"
@@ -7210,20 +7342,20 @@ msgstr "Select vertical align"
msgid "Select visibility"
msgstr "Select visibility"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Selected Recipient"
msgstr "Selected Recipient"
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send"
msgstr "Send"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Send a test webhook with sample data to verify your integration is working correctly."
msgstr "Send a test webhook with sample data to verify your integration is working correctly."
@@ -7236,9 +7368,9 @@ msgstr "Send confirmation email"
msgid "Send document"
msgstr "Send document"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send Document"
msgstr "Send Document"
@@ -7283,8 +7415,8 @@ msgstr "Send recipient signed email"
msgid "Send recipient signing request email"
msgstr "Send recipient signing request email"
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
msgid "Send reminder"
msgstr "Send reminder"
@@ -7292,12 +7424,8 @@ msgstr "Send reminder"
msgid "Send reminders to the following recipients"
msgstr "Send reminders to the following recipients"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
-msgid "Send Test Webhook"
-msgstr "Send Test Webhook"
-
-#: apps/remix/app/components/tables/inbox-table.tsx
#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Sender"
msgstr "Sender"
@@ -7309,8 +7437,10 @@ msgstr "Sending Reset Email..."
msgid "Sending..."
msgstr "Sending..."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Sent"
msgstr "Sent"
@@ -7334,15 +7464,15 @@ msgstr "Set up your document properties and recipient information"
msgid "Set up your template properties and recipient information"
msgstr "Set up your template properties and recipient information"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/_layout.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/app-nav-mobile.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
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
msgid "Settings"
msgstr "Settings"
@@ -7350,17 +7480,14 @@ msgstr "Settings"
msgid "Setup"
msgstr "Setup"
-#: 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/tables/documents-table-action-dropdown.tsx
+#: packages/ui/components/document/document-share-button.tsx
msgid "Share"
msgstr "Share"
-#: packages/ui/components/document/document-share-button.tsx
-msgid "Share Signature Card"
-msgstr "Share Signature Card"
-
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Share Signing Card"
msgstr "Share Signing Card"
@@ -7377,8 +7504,8 @@ msgid "Show"
msgstr "Show"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Show advanced settings"
msgstr "Show advanced settings"
@@ -7386,26 +7513,26 @@ msgstr "Show advanced settings"
msgid "Show templates in your public profile for your audience to sign and get started quickly"
msgstr "Show templates in your public profile for your audience to sign and get started quickly"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/components/tables/inbox-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/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-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
-#: apps/remix/app/components/general/document/document-page-view-button.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/user-profile-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Sign"
msgstr "Sign"
@@ -7430,15 +7557,15 @@ msgstr "Sign as<0>{0} <1>({1})1>0>"
msgid "Sign Checkbox Field"
msgstr "Sign Checkbox Field"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign document"
msgstr "Sign document"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Sign Document"
msgstr "Sign Document"
@@ -7459,16 +7586,16 @@ msgstr "Sign field"
msgid "Sign Here"
msgstr "Sign Here"
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: packages/email/template-components/template-reset-password.tsx
msgid "Sign In"
msgstr "Sign In"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Sign in to your account"
msgstr "Sign in to your account"
@@ -7484,9 +7611,9 @@ msgstr "Sign Name"
msgid "Sign Number Field"
msgstr "Sign Number Field"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Sign Out"
msgstr "Sign Out"
@@ -7498,8 +7625,8 @@ msgstr "Sign Signature Field"
msgid "Sign Text Field"
msgstr "Sign Text Field"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign the document to complete the process."
msgstr "Sign the document to complete the process."
@@ -7532,21 +7659,21 @@ msgstr "Sign your full name into the field"
msgid "Sign your initials into the field"
msgstr "Sign your initials into the field"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Signature"
msgstr "Signature"
@@ -7574,15 +7701,10 @@ msgstr "Signature types"
msgid "Signatures Collected"
msgstr "Signatures Collected"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/ui/components/document/document-read-only-fields.tsx
-msgid "Signed"
-msgstr "Signed"
-
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-msgctxt "Signed document (adjective)"
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Signed"
msgstr "Signed"
@@ -7591,6 +7713,11 @@ msgctxt "Recipient role actioned"
msgid "Signed"
msgstr "Signed"
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+msgctxt "Signed document (adjective)"
+msgid "Signed"
+msgstr "Signed"
+
#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Signer"
msgstr "Signer"
@@ -7636,8 +7763,8 @@ msgstr "Signing for"
msgid "Signing in..."
msgstr "Signing in..."
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Signing Links"
msgstr "Signing Links"
@@ -7646,8 +7773,8 @@ msgid "Signing links have been generated for this document."
msgstr "Signing links have been generated for this document."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Signing order is enabled."
msgstr "Signing order is enabled."
@@ -7664,8 +7791,8 @@ msgstr "Since {0}"
msgid "Site Banner"
msgstr "Site Banner"
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "Site Settings"
msgstr "Site Settings"
@@ -7673,50 +7800,51 @@ msgstr "Site Settings"
msgid "Some signers have not been assigned a signature field. Please assign at least 1 signature field to each signer before proceeding."
msgstr "Some signers have not been assigned a signature field. Please assign at least 1 signature field to each signer before proceeding."
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/general/billing-plans.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.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-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/embed/embed-document-signing-page-v1.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-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/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-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
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-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-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-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-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
+#: apps/remix/app/components/general/document/document-audit-log-download-button.tsx
+#: apps/remix/app/components/general/document/document-certificate-download-button.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
#: packages/ui/components/document/document-share-button.tsx
msgid "Something went wrong"
msgstr "Something went wrong"
@@ -7726,10 +7854,10 @@ msgstr "Something went wrong"
msgid "Something went wrong while attempting to verify your email address for <0>{0}0>. Please try again later."
msgstr "Something went wrong while attempting to verify your email address for <0>{0}0>. Please try again later."
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Something went wrong while loading the document."
msgstr "Something went wrong while loading the document."
@@ -7754,10 +7882,10 @@ msgstr "Something went wrong while updating the team billing subscription, pleas
msgid "Something went wrong while uploading this file"
msgstr "Something went wrong while uploading this file"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
msgid "Something went wrong!"
msgstr "Something went wrong!"
@@ -7769,8 +7897,8 @@ msgstr "Something went wrong."
msgid "Something went wrong. Please try again later."
msgstr "Something went wrong. Please try again later."
-#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Something went wrong. Please try again or contact support."
msgstr "Something went wrong. Please try again or contact support."
@@ -7782,8 +7910,8 @@ msgstr "Sorry, we were unable to download the audit logs. Please try again later
msgid "Sorry, we were unable to download the certificate. Please try again later."
msgstr "Sorry, we were unable to download the certificate. Please try again later."
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Source"
msgstr "Source"
@@ -7799,16 +7927,19 @@ msgstr "SSO"
msgid "Stats"
msgstr "Stats"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Status"
msgstr "Status"
@@ -7835,14 +7966,14 @@ msgstr "Stripe customer created successfully"
msgid "Stripe Customer ID"
msgstr "Stripe Customer ID"
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Subject"
msgstr "Subject"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Subject <0>(Optional)0>"
msgstr "Subject <0>(Optional)0>"
@@ -7861,8 +7992,8 @@ msgstr "Submitted"
msgid "Subscribe"
msgstr "Subscribe"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Subscription"
msgstr "Subscription"
@@ -7886,59 +8017,65 @@ msgstr "Subscription Claims"
msgid "Subscription invalid"
msgstr "Subscription invalid"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/verify-email-banner.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/organisation-update-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Subscription Status"
+msgstr "Subscription Status"
+
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-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-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-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/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/verify-email-banner.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Success"
msgstr "Success"
@@ -7954,8 +8091,14 @@ msgstr "Successfully created: {successCount}"
msgid "Summary:"
msgstr "Summary:"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+msgid "support"
+msgstr "support"
+
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "Support"
msgstr "Support"
@@ -7976,11 +8119,11 @@ msgid "Sync failed, changes not saved"
msgstr "Sync failed, changes not saved"
#: packages/lib/utils/document-audit-logs.ts
-msgctxt "Audit log format"
msgid "System auto inserted fields"
msgstr "System auto inserted fields"
#: packages/lib/utils/document-audit-logs.ts
+msgctxt "Audit log format"
msgid "System auto inserted fields"
msgstr "System auto inserted fields"
@@ -7992,10 +8135,10 @@ msgstr "System Requirements"
msgid "System Theme"
msgstr "System Theme"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team"
msgstr "Team"
@@ -8012,8 +8155,8 @@ msgstr "Team Admin"
msgid "Team Assignments"
msgstr "Team Assignments"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Team Count"
msgstr "Team Count"
@@ -8076,14 +8219,14 @@ msgstr "Team Member"
msgid "Team Members"
msgstr "Team Members"
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "Team members have been added."
msgstr "Team members have been added."
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
msgid "Team Name"
msgstr "Team Name"
@@ -8100,9 +8243,9 @@ msgstr "Team Only"
msgid "Team only templates are not linked anywhere and are visible only to your team."
msgstr "Team only templates are not linked anywhere and are visible only to your team."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team Role"
msgstr "Team Role"
@@ -8118,18 +8261,18 @@ msgstr "Team Settings"
msgid "Team url"
msgstr "Team url"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Team URL"
msgstr "Team URL"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
msgid "Teams"
msgstr "Teams"
@@ -8141,13 +8284,13 @@ msgstr "Teams help you organise your work and collaborate with others. Create yo
msgid "Teams that this organisation group is currently assigned to"
msgstr "Teams that this organisation group is currently assigned to"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/public-profile-template-manage-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.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/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
msgid "Template"
msgstr "Template"
@@ -8212,17 +8355,17 @@ msgstr "Template title"
msgid "Template updated successfully"
msgstr "Template updated successfully"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Template uploaded"
msgstr "Template uploaded"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.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
msgid "Templates"
msgstr "Templates"
@@ -8230,8 +8373,10 @@ msgstr "Templates"
msgid "Templates allow you to quickly generate documents with pre-filled recipients and fields."
msgstr "Templates allow you to quickly generate documents with pre-filled recipients and fields."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Test"
+msgstr "Test"
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Test Webhook"
msgstr "Test Webhook"
@@ -8244,23 +8389,23 @@ msgstr "Test webhook failed"
msgid "Test webhook sent"
msgstr "Test webhook sent"
+#: 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/envelope-editor/envelope-editor-fields-drag-drop.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
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/types.ts
-#: packages/ui/primitives/document-flow/add-fields.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Text"
msgstr "Text"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Text Align"
msgstr "Text Align"
@@ -8320,14 +8465,14 @@ msgstr "The content to show in the banner, HTML is allowed"
msgid "The default email to use when sending emails to recipients"
msgstr "The default email to use when sending emails to recipients"
-#: 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
+#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "The direct link has been copied to your clipboard"
msgstr "The direct link has been copied to your clipboard"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "The display name for this email address"
msgstr "The display name for this email address"
@@ -8347,8 +8492,8 @@ msgstr "The document is now completed, please follow any instructions provided w
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 "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."
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "The document owner has been notified of your decision. They may contact you with further instructions if necessary."
msgstr "The document owner has been notified of your decision. They may contact you with further instructions if necessary."
@@ -8368,8 +8513,8 @@ msgstr "The document will be immediately sent to recipients if this is checked."
msgid "The document you are looking for could not be found."
msgstr "The document you are looking for could not be found."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
msgid "The document you are looking for may have been removed, renamed or may have never existed."
msgstr "The document you are looking for may have been removed, renamed or may have never existed."
@@ -8389,8 +8534,8 @@ msgstr "The email domain you are looking for may have been removed, renamed or m
msgid "The email or password provided is incorrect"
msgstr "The email or password provided is incorrect"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The events that will trigger a webhook to be sent to your URL."
msgstr "The events that will trigger a webhook to be sent to your URL."
@@ -8525,8 +8670,8 @@ msgid "The signer's name"
msgstr "The signer's name"
#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "The signing link has been copied to your clipboard."
msgstr "The signing link has been copied to your clipboard."
@@ -8592,8 +8737,8 @@ msgstr "The typed signature font size"
msgid "The types of signatures that recipients are allowed to use when signing the document."
msgstr "The types of signatures that recipients are allowed to use when signing the document."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The URL for Documenso to send webhook events to."
msgstr "The URL for Documenso to send webhook events to."
@@ -8609,7 +8754,7 @@ msgstr "The user's two factor authentication has been reset successfully."
msgid "The webhook has been successfully deleted."
msgstr "The webhook has been successfully deleted."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The webhook has been updated successfully."
msgstr "The webhook has been updated successfully."
@@ -8617,7 +8762,7 @@ msgstr "The webhook has been updated successfully."
msgid "The webhook was successfully created."
msgstr "The webhook was successfully created."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "The webhook you are looking for may have been removed, renamed or may have never existed."
msgstr "The webhook you are looking for may have been removed, renamed or may have never existed."
@@ -8661,9 +8806,9 @@ msgstr "This account has not been verified. Please verify your account before si
msgid "This action is irreversible. Please ensure you have informed the user before proceeding."
msgstr "This action is irreversible. Please ensure you have informed the user before proceeding."
-#: 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
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "This action is not reversible. Please be certain."
msgstr "This action is not reversible. Please be certain."
@@ -8691,8 +8836,8 @@ msgstr "This document could not be deleted at this time. Please try again."
msgid "This document could not be downloaded at this time. Please try again."
msgstr "This document could not be downloaded at this time. Please try again."
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
msgid "This document could not be duplicated at this time. Please try again."
msgstr "This document could not be duplicated at this time. Please try again."
@@ -8700,6 +8845,7 @@ msgstr "This document could not be duplicated at this time. Please try again."
msgid "This document could not be re-sent at this time. Please try again."
msgstr "This document could not be re-sent at this time. Please try again."
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
msgid "This document has already been sent to this recipient. You can no longer edit this recipient."
msgstr "This document has already been sent to this recipient. You can no longer edit this recipient."
@@ -8868,9 +9014,9 @@ msgstr "This token is invalid or has expired. No action is needed."
msgid "This token is invalid or has expired. Please contact your team for a new invitation."
msgstr "This token is invalid or has expired. Please contact your team for a new invitation."
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "This URL is already in use."
msgstr "This URL is already in use."
@@ -8910,21 +9056,21 @@ msgstr "Time"
msgid "Time zone"
msgstr "Time zone"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Time Zone"
msgstr "Time Zone"
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Title"
msgstr "Title"
@@ -8959,12 +9105,12 @@ msgid "To change the email you must remove and add a new email address."
msgstr "To change the email you must remove and add a new email address."
#. placeholder {0}: user.email
-#. placeholder {0}: userToEnable.email
#. placeholder {0}: userToDisable.email
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#. placeholder {0}: userToEnable.email
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "To confirm, please enter the accounts email address <0/>({0})."
msgstr "To confirm, please enter the accounts email address <0/>({0})."
@@ -8976,8 +9122,8 @@ msgstr "To confirm, please enter the reason"
msgid "To enable two-factor authentication, scan the following QR code using your authenticator app."
msgstr "To enable two-factor authentication, scan the following QR code using your authenticator app."
-#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
msgid "To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox."
msgstr "To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox."
@@ -8992,8 +9138,8 @@ msgstr "To mark this document as viewed, you need to be logged in."
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "To proceed further, please set at least one value for the {0} field."
msgstr "To proceed further, please set at least one value for the {0} field."
@@ -9069,8 +9215,8 @@ msgstr "Total Signers that Signed Up"
msgid "Total Users"
msgstr "Total Users"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Triggers"
msgstr "Triggers"
@@ -9082,8 +9228,8 @@ msgstr "Two factor authentication"
msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app."
msgstr "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Two-Factor Authentication"
msgstr "Two-Factor Authentication"
@@ -9103,14 +9249,14 @@ msgstr "Two-factor authentication has been disabled for your account. You will n
msgid "Two-Factor Re-Authentication"
msgstr "Two-Factor Re-Authentication"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Type"
msgstr "Type"
#: packages/lib/constants/document.ts
-msgctxt "Type signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Type signature"
msgid "Type"
msgstr "Type"
@@ -9118,6 +9264,10 @@ msgstr "Type"
msgid "Type a command or search..."
msgstr "Type a command or search..."
+#: packages/ui/primitives/signature-pad/signature-pad-type.tsx
+msgid "Type your signature"
+msgstr "Type your signature"
+
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
msgid "Typed signatures are not allowed. Please draw your signature."
msgstr "Typed signatures are not allowed. Please draw your signature."
@@ -9204,11 +9354,11 @@ msgstr "Unable to setup two-factor authentication"
msgid "Unable to sign in"
msgstr "Unable to sign in"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Unauthorized"
msgstr "Unauthorized"
@@ -9216,15 +9366,15 @@ msgstr "Unauthorized"
msgid "Uncompleted"
msgstr "Uncompleted"
-#: 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
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.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
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Unknown"
msgstr "Unknown"
@@ -9253,27 +9403,28 @@ msgstr "Unpin"
msgid "Untitled Group"
msgstr "Untitled Group"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: 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/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Update"
@@ -9283,8 +9434,8 @@ msgstr "Update"
msgid "Update Banner"
msgstr "Update Banner"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Update Billing"
msgstr "Update Billing"
@@ -9308,9 +9459,9 @@ msgstr "Update Fields"
msgid "Update organisation"
msgstr "Update organisation"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "Update organisation member"
msgstr "Update organisation member"
@@ -9326,16 +9477,16 @@ msgstr "Update password"
msgid "Update profile"
msgstr "Update profile"
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
msgid "Update Recipient"
msgstr "Update Recipient"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Update role"
msgstr "Update role"
@@ -9370,10 +9521,6 @@ msgstr "Update the role and add fields as required for the direct recipient. The
msgid "Update user"
msgstr "Update user"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "Update webhook"
-msgstr "Update webhook"
-
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
msgid "Updated {organisationMemberName} to {roleLabel}."
msgstr "Updated {organisationMemberName} to {roleLabel}."
@@ -9386,8 +9533,8 @@ msgstr "Updating password..."
msgid "Updating Your Information"
msgstr "Updating Your Information"
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "Upgrade"
msgstr "Upgrade"
@@ -9401,12 +9548,12 @@ msgid "Upgrade your plan to upload more documents"
msgstr "Upgrade your plan to upload more documents"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
msgid "Upload"
msgstr "Upload"
#: packages/lib/constants/document.ts
-msgctxt "Upload signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Upload signature"
msgid "Upload"
msgstr "Upload"
@@ -9438,8 +9585,8 @@ msgstr "Upload custom document"
msgid "Upload disabled"
msgstr "Upload disabled"
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: packages/ui/primitives/document-upload-button.tsx
msgid "Upload Document"
msgstr "Upload Document"
@@ -9449,8 +9596,8 @@ msgid "Upload documents and add recipients"
msgstr "Upload documents and add recipients"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Upload failed"
msgstr "Upload failed"
@@ -9471,8 +9618,8 @@ msgstr "Upload Template Document"
msgid "Upload your brand logo (max 5MB, JPG, PNG, or WebP)"
msgstr "Upload your brand logo (max 5MB, JPG, PNG, or WebP)"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Uploaded by"
msgstr "Uploaded by"
@@ -9501,18 +9648,18 @@ msgstr "URL"
msgid "Use"
msgstr "Use"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Authenticator"
msgstr "Use Authenticator"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Backup Code"
msgstr "Use Backup Code"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
msgid "Use Template"
msgstr "Use Template"
@@ -9524,8 +9671,8 @@ msgstr "Use your authenticator app to generate a code"
msgid "Use your passkey for authentication"
msgstr "Use your passkey for authentication"
-#: apps/remix/app/components/tables/internal-audit-log-table.tsx
#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/internal-audit-log-table.tsx
msgid "User"
msgstr "User"
@@ -9541,10 +9688,10 @@ msgstr "User has no password."
msgid "User not found"
msgstr "User not found"
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "User not found."
msgstr "User not found."
@@ -9564,15 +9711,15 @@ msgstr "User settings"
msgid "User with this email already exists. Please use a different email address."
msgstr "User with this email already exists. Please use a different email address."
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
msgid "Users"
msgstr "Users"
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Validation"
msgstr "Validation"
@@ -9580,9 +9727,9 @@ msgstr "Validation"
msgid "Validation failed"
msgstr "Validation failed"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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 "Value"
@@ -9624,8 +9771,8 @@ msgstr "Verify your email address"
msgid "Verify your email address to unlock all features."
msgstr "Verify your email address to unlock all features."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Verify your email to upload documents."
msgstr "Verify your email to upload documents."
@@ -9633,8 +9780,8 @@ msgstr "Verify your email to upload documents."
msgid "Verify your team email address"
msgstr "Verify your team email address"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Vertical"
msgstr "Vertical"
@@ -9643,15 +9790,15 @@ msgstr "Vertical"
msgid "Vertical Align"
msgstr "Vertical Align"
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/inbox-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
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.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/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
msgid "View"
msgstr "View"
@@ -9684,13 +9831,13 @@ msgstr "View all related documents"
msgid "View all security activity related to your account."
msgstr "View all security activity related to your account."
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "View and manage all active sessions for your account."
msgstr "View and manage all active sessions for your account."
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "View and manage all login methods linked to your account."
msgstr "View and manage all login methods linked to your account."
@@ -9706,14 +9853,14 @@ msgstr "View DNS Records"
msgid "View document"
msgstr "View document"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.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
-#: packages/email/template-components/template-document-rejected.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: packages/email/template-components/template-document-invite.tsx
+#: packages/email/template-components/template-document-rejected.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
msgid "View Document"
msgstr "View Document"
@@ -9733,6 +9880,10 @@ msgstr "View Document to sign"
msgid "View documents associated with this email"
msgstr "View documents associated with this email"
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+msgid "View insights"
+msgstr "View insights"
+
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
msgid "View invites"
msgstr "View invites"
@@ -9766,9 +9917,9 @@ msgstr "View teams"
msgid "View the DNS records for this email domain"
msgstr "View the DNS records for this email domain"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Viewed"
msgstr "Viewed"
@@ -9816,8 +9967,8 @@ msgstr "Waiting for others to complete signing."
msgid "Waiting for others to sign"
msgstr "Waiting for others to sign"
-#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
#: apps/remix/app/components/embed/embed-document-waiting-for-turn.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
msgid "Waiting for Your Turn"
msgstr "Waiting for Your Turn"
@@ -9833,17 +9984,17 @@ msgstr "Want your own public profile?"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
msgid "Warning: Assistant as last signer"
msgstr "Warning: Assistant as last signer"
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
msgstr "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
@@ -9890,12 +10041,12 @@ msgstr "We encountered an error while removing the direct template link. Please
msgid "We encountered an error while sending the test webhook. Please check your endpoint and try again."
msgstr "We encountered an error while sending the test webhook. Please check your endpoint and try again."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "We encountered an error while updating the webhook. Please try again later."
msgstr "We encountered an error while updating the webhook. Please try again later."
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "We encountered an unknown error while attempting to add team members. Please try again later."
msgstr "We encountered an unknown error while attempting to add team members. Please try again later."
@@ -9911,8 +10062,8 @@ msgstr "We encountered an unknown error while attempting to add your domain. Ple
msgid "We encountered an unknown error while attempting to create a group. Please try again later."
msgstr "We encountered an unknown error while attempting to create a group. Please try again later."
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "We encountered an unknown error while attempting to create a organisation. Please try again later."
msgstr "We encountered an unknown error while attempting to create a organisation. Please try again later."
@@ -9968,8 +10119,8 @@ msgstr "We encountered an unknown error while attempting to remove this email. P
msgid "We encountered an unknown error while attempting to remove this envelope item. Please try again later."
msgstr "We encountered an unknown error while attempting to remove this envelope item. Please try again later."
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this group. Please try again later."
msgstr "We encountered an unknown error while attempting to remove this group. Please try again later."
@@ -9977,8 +10128,8 @@ msgstr "We encountered an unknown error while attempting to remove this group. P
msgid "We encountered an unknown error while attempting to remove this template from your profile. Please try again later."
msgstr "We encountered an unknown error while attempting to remove this template from your profile. Please try again later."
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this user. Please try again later."
msgstr "We encountered an unknown error while attempting to remove this user. Please try again later."
@@ -9995,10 +10146,10 @@ msgstr "We encountered an unknown error while attempting to reset your password.
msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support."
msgstr "We encountered an unknown error while attempting to revoke access. Please try again or contact support."
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
msgid "We encountered an unknown error while attempting to sign you In. Please try again later."
msgstr "We encountered an unknown error while attempting to sign you In. Please try again later."
@@ -10020,13 +10171,13 @@ msgstr "We encountered an unknown error while attempting to update the envelope.
msgid "We encountered an unknown error while attempting to update the template. Please try again later."
msgstr "We encountered an unknown error while attempting to update the template. Please try again later."
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this organisation member. Please try again later."
msgstr "We encountered an unknown error while attempting to update this organisation member. Please try again later."
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this team member. Please try again later."
msgstr "We encountered an unknown error while attempting to update this team member. Please try again later."
@@ -10034,8 +10185,8 @@ msgstr "We encountered an unknown error while attempting to update this team mem
msgid "We encountered an unknown error while attempting to update your organisation. Please try again later."
msgstr "We encountered an unknown error while attempting to update your organisation. Please try again later."
-#: apps/remix/app/components/forms/password.tsx
#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
msgid "We encountered an unknown error while attempting to update your password. Please try again later."
msgstr "We encountered an unknown error while attempting to update your password. Please try again later."
@@ -10079,9 +10230,9 @@ msgstr "We were unable to create your account. Please review the information you
msgid "We were unable to disable two-factor authentication for your account. Please ensure that you have entered your password and backup code correctly and try again."
msgstr "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."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "We were unable to log you out at this time."
msgstr "We were unable to log you out at this time."
@@ -10094,11 +10245,11 @@ msgstr "We were unable to set your public profile to public. Please try again."
msgid "We were unable to setup two-factor authentication for your account. Please ensure that you have entered your code correctly and try again."
msgstr "We were unable to setup two-factor authentication for your account. Please ensure that you have entered your code correctly and try again."
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
msgid "We were unable to submit this document at this time. Please try again later."
msgstr "We were unable to submit this document at this time. Please try again later."
@@ -10117,8 +10268,8 @@ msgstr "We were unable to update your document preferences at this time, please
msgid "We were unable to update your email preferences at this time, please try again later"
msgstr "We were unable to update your email preferences at this time, please try again later"
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "We were unable to verify your details. Please try again or contact support"
msgstr "We were unable to verify your details. Please try again or contact support"
@@ -10130,14 +10281,14 @@ msgstr "We were unable to verify your email at this time."
msgid "We were unable to verify your email. If your email is not verified already, please try again."
msgstr "We were unable to verify your email. If your email is not verified already, please try again."
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We will generate signing links for you, which you can send to the recipients through your method of choice."
msgstr "We will generate signing links for you, which you can send to the recipients through your method of choice."
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We won't send anything to notify recipients."
msgstr "We won't send anything to notify recipients."
@@ -10150,8 +10301,8 @@ msgstr "We'll get back to you as soon as possible via email."
msgid "We'll send a 6-digit code to your email"
msgstr "We'll send a 6-digit code to your email"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
msgid "We're all empty"
msgstr "We're all empty"
@@ -10171,6 +10322,11 @@ msgstr "We've sent a 6-digit verification code to your email. Please enter it be
msgid "We've sent a confirmation email to <0>{email}0>. Please check your inbox and click the link in the email to verify your account."
msgstr "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."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Webhook"
+msgstr "Webhook"
+
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
msgid "Webhook created"
msgstr "Webhook created"
@@ -10179,23 +10335,31 @@ msgstr "Webhook created"
msgid "Webhook deleted"
msgstr "Webhook deleted"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook Details"
+msgstr "Webhook Details"
+
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Webhook not found"
msgstr "Webhook not found"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook successfully sent"
+msgstr "Webhook successfully sent"
+
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Webhook updated"
msgstr "Webhook updated"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Webhook URL"
msgstr "Webhook URL"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Webhooks"
msgstr "Webhooks"
@@ -10231,10 +10395,10 @@ msgstr "Were you trying to edit this document instead?"
msgid "What you can do with teams:"
msgstr "What you can do with teams:"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "When enabled, signers can choose who should sign next in the sequence instead of following the predefined order."
msgstr "When enabled, signers can choose who should sign next in the sequence instead of following the predefined order."
@@ -10274,20 +10438,20 @@ msgstr "Withdrawing Consent"
msgid "Write a description to display on your public profile"
msgstr "Write a description to display on your public profile"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Yearly"
msgstr "Yearly"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Yes"
msgstr "Yes"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: packages/lib/utils/document-audit-logs.ts
msgid "You"
msgstr "You"
@@ -10355,10 +10519,10 @@ msgstr "You are about to remove the following document and all associated fields
msgid "You are about to remove the following email from <0>{0}0>."
msgstr "You are about to remove the following email from <0>{0}0>."
-#. placeholder {0}: team.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#. placeholder {0}: team.name
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "You are about to remove the following group from <0>{0}0>."
msgstr "You are about to remove the following group from <0>{0}0>."
@@ -10398,8 +10562,8 @@ msgstr "You are currently updating <0>{0}0>"
msgid "You are currently updating <0>{memberName}.0>"
msgstr "You are currently updating <0>{memberName}.0>"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "You are currently updating <0>{organisationMemberName}.0>"
msgstr "You are currently updating <0>{organisationMemberName}.0>"
@@ -10482,8 +10646,8 @@ msgid "You can view the document and its status by clicking the button below."
msgstr "You can view the document and its status by clicking the button below."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "You cannot add assistants when signing order is disabled."
msgstr "You cannot add assistants when signing order is disabled."
@@ -10511,21 +10675,21 @@ msgstr "You cannot modify a team member who has a higher role than you."
msgid "You cannot remove members from this team if the inherit member feature is enabled."
msgstr "You cannot remove members from this team if the inherit member feature is enabled."
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "You cannot upload documents at this time."
msgstr "You cannot upload documents at this time."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload encrypted PDFs"
msgstr "You cannot upload encrypted PDFs"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload more than {maximumEnvelopeItemCount} items per envelope."
msgstr "You cannot upload more than {maximumEnvelopeItemCount} items per envelope."
@@ -10541,6 +10705,10 @@ msgstr "You currently have no access to any teams within this organisation. Plea
msgid "You do not have permission to create a token for this team"
msgstr "You do not have permission to create a token for this team"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "You don't manage billing for any organisations."
+msgstr "You don't manage billing for any organisations."
+
#: packages/email/template-components/template-document-cancel.tsx
msgid "You don't need to sign it anymore."
msgstr "You don't need to sign it anymore."
@@ -10569,8 +10737,8 @@ msgstr "You have been invited to join {0} on Documenso"
msgid "You have been invited to join the following organisation"
msgstr "You have been invited to join the following organisation"
-#: packages/lib/server-only/recipient/set-document-recipients.ts
#: packages/lib/server-only/recipient/delete-envelope-recipient.ts
+#: packages/lib/server-only/recipient/set-document-recipients.ts
msgid "You have been removed from a document"
msgstr "You have been removed from a document"
@@ -10584,8 +10752,8 @@ msgid "You have declined the invitation from <0>{0}0> to join their organisati
msgstr "You have declined the invitation from <0>{0}0> to join their organisation."
#. placeholder {0}: `"${envelope.title}"`
-#: packages/lib/server-only/document/resend-document.ts
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
+#: packages/lib/server-only/document/resend-document.ts
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
msgstr "You have initiated the document {0} that requires you to {recipientActionVerb} it."
@@ -10601,9 +10769,9 @@ msgstr "You have not yet created any templates. To create a template please uplo
msgid "You have not yet created or received any documents. To create a document please upload one."
msgstr "You have not yet created or received any documents. To create a document please upload one."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached the limit of the number of files per envelope"
msgstr "You have reached the limit of the number of files per envelope"
@@ -10616,14 +10784,14 @@ msgstr "You have reached the maximum limit of {0} direct templates. <0>Upgrade y
msgid "You have reached the maximum number of teams for your plan. Please contact sales at <0>{SUPPORT_EMAIL}0> if you would like to adjust your plan."
msgstr "You have reached the maximum number of teams for your plan. Please contact sales at <0>{SUPPORT_EMAIL}0> if you would like to adjust your plan."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached your document limit for this month. Please upgrade your plan."
msgstr "You have reached your document limit for this month. Please upgrade your plan."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
msgid "You have reached your document limit."
msgstr "You have reached your document limit."
@@ -10636,8 +10804,8 @@ msgstr "You have reached your document limit. <0>Upgrade your account to continu
msgid "You have rejected the document '{documentName}'"
msgstr "You have rejected the document '{documentName}'"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "You have rejected this document"
msgstr "You have rejected this document"
@@ -10649,8 +10817,8 @@ msgstr "You have signed “{documentName}”"
msgid "You have successfully left this organisation."
msgstr "You have successfully left this organisation."
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "You have successfully registered. Please verify your account by clicking on the link you received in the email."
msgstr "You have successfully registered. Please verify your account by clicking on the link you received in the email."
@@ -10707,10 +10875,10 @@ msgstr "You have updated the team group."
msgid "You have verified your email address for <0>{0}0>."
msgstr "You have verified your email address for <0>{0}0>."
-#: 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
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "You must enter '{deleteMessage}' to proceed"
msgstr "You must enter '{deleteMessage}' to proceed"
@@ -10718,8 +10886,8 @@ msgstr "You must enter '{deleteMessage}' to proceed"
msgid "You must select at least one item"
msgstr "You must select at least one item"
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
msgid "You must type '{deleteMessage}' to confirm"
msgstr "You must type '{deleteMessage}' to confirm"
@@ -10739,8 +10907,8 @@ msgstr "You need to be an admin to manage API tokens."
msgid "You need to be logged in as <0>{email}0> to view this page."
msgstr "You need to be logged in as <0>{email}0> to view this page."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "You need to be logged in to view this page."
msgstr "You need to be logged in to view this page."
@@ -10757,8 +10925,8 @@ msgid "You will now be required to enter a code from your authenticator app when
msgstr "You will now be required to enter a code from your authenticator app when signing in."
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "You will receive an Email copy of the signed document once everyone has signed."
-msgstr "You will receive an Email copy of the signed document once everyone has signed."
+msgid "You will receive an email copy of the signed document once everyone has signed."
+msgstr "You will receive an email copy of the signed document once everyone has signed."
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Your Account"
@@ -10813,8 +10981,8 @@ msgstr "Your current plan is past due."
msgid "Your direct signing templates"
msgstr "Your direct signing templates"
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Your document failed to upload."
msgstr "Your document failed to upload."
@@ -10842,9 +11010,9 @@ msgstr "Your document has been sent successfully."
msgid "Your document has been successfully duplicated."
msgstr "Your document has been successfully duplicated."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your document has been uploaded successfully."
msgstr "Your document has been uploaded successfully."
@@ -10904,8 +11072,8 @@ msgstr "Your existing tokens"
msgid "Your Name"
msgstr "Your Name"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your new password cannot be the same as your old password."
msgstr "Your new password cannot be the same as your old password."
@@ -10921,8 +11089,8 @@ msgstr "Your organisation has been successfully deleted."
msgid "Your organisation has been successfully updated."
msgstr "Your organisation has been successfully updated."
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your password has been updated successfully."
msgstr "Your password has been updated successfully."
@@ -10962,8 +11130,8 @@ msgstr "Your public profile has been updated."
msgid "Your recovery code has been copied to your clipboard."
msgstr "Your recovery code has been copied to your clipboard."
-#: 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/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Your recovery codes are listed below. Please store them in a safe place."
msgstr "Your recovery codes are listed below. Please store them in a safe place."
@@ -10995,8 +11163,8 @@ msgstr "Your template has been duplicated successfully."
msgid "Your template has been successfully deleted."
msgstr "Your template has been successfully deleted."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your template has been uploaded successfully."
msgstr "Your template has been uploaded successfully."
diff --git a/packages/lib/translations/es/web.po b/packages/lib/translations/es/web.po
index aaa55104b..20b1bb040 100644
--- a/packages/lib/translations/es/web.po
+++ b/packages/lib/translations/es/web.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: es\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-11-12 06:14\n"
+"PO-Revision-Date: 2025-11-27 05:32\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -52,9 +52,9 @@ msgstr "\"{placeholderEmail}\" en nombre de \"Team Name\" te ha invitado a firma
msgid "\"Team Name\" has invited you to sign \"example document\"."
msgstr "\"Team Name\" te ha invitado a firmar \"example document\"."
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "(You)"
msgstr "(Tú)"
@@ -64,8 +64,8 @@ msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
msgstr "{0, plural, one {(1 carácter excedido)} other {(# caracteres excedidos)}}"
#. placeholder {0}: Math.abs(remaningLength)
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{0, plural, one {# character over the limit} other {# characters over the limit}}"
msgstr "{0, plural, one {# carácter sobre el límite} other {# caracteres sobre el límite}}"
@@ -79,6 +79,11 @@ msgstr "{0, plural, one {# carácter restante} other {# caracteres restantes}}"
msgid "{0, plural, one {# document} other {# documents}}"
msgstr "{0, plural, one {# documento} other {# documentos}}"
+#. placeholder {0}: row.original.eventTriggers.length
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "{0, plural, one {# Event} other {# Events}}"
+msgstr "{0, plural, one {# Evento} other {# Eventos}}"
+
#. placeholder {0}: assistantFields.filter((field) => field.recipientId === r.id).length
#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "{0, plural, one {# field} other {# fields}}"
@@ -116,16 +121,16 @@ msgid "{0, plural, one {<0>You have <1>11> pending invitation0>} other {<2>Y
msgstr "{0, plural, one {<0>Tienes <1>11> invitación pendiente0>} other {<2>Tienes <3>#3> invitaciones pendientes2>}}"
#. placeholder {0}: recipientFieldsRemaining.length
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "{0, plural, one {1 Field Remaining} other {# Fields Remaining}}"
msgstr "{0, plural, one {1 Campo Restante} other {# Campos Restantes}}"
#. placeholder {0}: fields.filter((field) => field.envelopeItemId === doc.id).length
#. placeholder {0}: remainingFields.filter((field) => field.envelopeItemId === doc.id).length
-#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
msgid "{0, plural, one {1 Field} other {# Fields}}"
msgstr "{0, plural, one {1 Campo} other {# Campos}}"
@@ -144,11 +149,11 @@ msgstr "{0, plural, one {1 Destinatario} other {# Destinatarios}}"
msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}"
msgstr "{0, plural, one {Esperando 1 destinatario} other {Esperando # destinatarios}}"
-#. placeholder {0}: route.label
#. placeholder {0}: _(FRIENDLY_FIELD_TYPE[fieldType as FieldType])
+#. placeholder {0}: route.label
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
msgid "{0}"
msgstr "{0}"
@@ -175,9 +180,9 @@ msgstr "{0} te invitó a {recipientActionVerb} un documento"
#. placeholder {0}: remaining.documents
#. placeholder {1}: quota.documents
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "{0} of {1} documents remaining this month."
msgstr "{0} de {1} documentos restantes este mes."
@@ -405,8 +410,8 @@ msgstr "{recipientReference} ha firmado \"{documentName}\""
msgid "{recipientReference} has signed {documentName}"
msgstr "{recipientReference} ha firmado {documentName}"
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{remaningLength, plural, one {# character remaining} other {# characters remaining}}"
msgstr "{remaningLength, plural, one {# carácter restante} other {# caracteres restantes}}"
@@ -515,6 +520,10 @@ msgstr "<0>Dibujado0> - Una firma que se dibuja usando un ratón o un lápiz
msgid "<0>Email0> - The recipient will be emailed the document to sign, approve, etc."
msgstr "<0>Correo electrónico0> - Al destinatario se le enviará el documento para firmar, aprobar, etc."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "<0>Events:0> All"
+msgstr "<0>Eventos:0> Todos"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "<0>Full account access:0> View all your profile information, settings, and activity"
msgstr "<0>Acceso completo a la cuenta:0> Ve toda tu información de perfil, configuración y actividad"
@@ -545,8 +554,8 @@ msgstr "<0>Ninguno0> - Generaremos enlaces que puedes enviar a los destinatari
msgid "<0>Note0> - If you use Links in combination with direct templates, you will need to manually send the links to the remaining recipients."
msgstr "<0>Nota0> - Si usas Enlaces en combinación con plantillas directas, necesitarás enviar manualmente los enlaces a los destinatarios restantes."
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require 2FA0> - The recipient must have an account and 2FA enabled via their settings"
msgstr "<0>Requerir 2FA0> - El destinatario debe tener una cuenta y 2FA habilitado a través de sus configuraciones"
@@ -554,8 +563,8 @@ msgstr "<0>Requerir 2FA0> - El destinatario debe tener una cuenta y 2FA habili
msgid "<0>Require account0> - The recipient must be signed in to view the document"
msgstr "<0>Requerir cuenta0> - El destinatario debe haber iniciado sesión para ver el documento"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require passkey0> - The recipient must have an account and passkey configured via their settings"
msgstr "<0>Requerir clave de acceso0> - El destinatario debe tener una cuenta y clave de acceso configurada a través de sus configuraciones"
@@ -624,9 +633,9 @@ msgstr "404 Dominio de correo electrónico no encontrado"
msgid "404 not found"
msgstr "404 no encontrado"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "404 Not found"
msgstr "404 No encontrado"
@@ -660,7 +669,7 @@ msgstr "404 Plantilla no encontrada"
msgid "404 User not found"
msgstr "404 Usuario no encontrado"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "404 Webhook not found"
msgstr "404 Webhook no encontrado"
@@ -747,8 +756,8 @@ msgstr "Un nuevo miembro se ha unido a tu organización {organisationName}"
msgid "A new token was created successfully."
msgstr "Un nuevo token se ha creado con éxito."
-#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
msgstr "Se ha enviado un correo electrónico para restablecer la contraseña, si tienes una cuenta deberías verlo en tu bandeja de entrada en breve."
@@ -784,7 +793,7 @@ msgstr "Se ha iniciado una solicitud para usar tu correo electrónico por {0} en
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso"
msgstr "Un secreto que se enviará a tu URL para que puedas verificar que la solicitud ha sido enviada por Documenso"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso."
msgstr "Un secreto que se enviará a tu URL para que puedas verificar que la solicitud ha sido enviada por Documenso."
@@ -809,8 +818,8 @@ msgstr "Una URL única para identificar la organización"
msgid "A unique URL to identify your organisation"
msgstr "Una URL única para identificar tu organización"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "A unique URL to identify your team"
msgstr "Una URL única para identificar tu equipo"
@@ -819,8 +828,8 @@ msgid "A verification email will be sent to the provided email."
msgstr "Se enviará un correo electrónico de verificación a la dirección proporcionada."
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: packages/email/templates/organisation-invite.tsx
#: packages/email/templates/confirm-team-email.tsx
+#: packages/email/templates/organisation-invite.tsx
msgid "Accept"
msgstr "Aceptar"
@@ -848,9 +857,9 @@ msgstr "Acceso deshabilitado"
msgid "Access enabled"
msgstr "Acceso habilitado"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Account"
msgstr "Cuenta"
@@ -866,8 +875,8 @@ msgstr "Solicitud de creación de cuenta"
msgid "Account Creation Request"
msgstr "Solicitud de Creación de Cuenta"
-#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "Account deleted"
msgstr "Cuenta eliminada"
@@ -895,46 +904,50 @@ msgstr "Cuenta desvinculada"
msgid "Acknowledgment"
msgstr "Reconocimiento"
-#: 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/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
+#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Action"
msgstr "Acción"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Actions"
msgstr "Acciones"
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
msgid "Active"
msgstr "Activo"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Active sessions"
msgstr "Sesiones activas"
@@ -942,8 +955,8 @@ msgstr "Sesiones activas"
msgid "Active Subscriptions"
msgstr "Suscripciones Activas"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Add"
msgstr "Agregar"
@@ -960,15 +973,15 @@ msgstr "Agrega un dominio personalizado para enviar correos electrónicos en nom
msgid "Add a document"
msgstr "Agregar un documento"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Add a URL to redirect the user to once the document is signed"
msgstr "Agregue una URL para redirigir al usuario una vez que se firme el documento"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add all relevant fields for each recipient."
msgstr "Agrega todos los campos relevantes para cada destinatario."
@@ -1001,8 +1014,8 @@ msgstr "Agregar y configurar múltiples documentos"
msgid "Add another option"
msgstr "Agregar otra opción"
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
msgid "Add another value"
msgstr "Agregar otro valor"
@@ -1026,11 +1039,11 @@ msgstr "Agregar correo electrónico"
msgid "Add Email Domain"
msgstr "Agregar dominio de correo electrónico"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add Fields"
msgstr "Agregar Campos"
@@ -1094,8 +1107,8 @@ msgstr "Agregar Marcadores de posición"
msgid "Add Recipients"
msgstr "Agregar destinatarios"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Add Signer"
msgstr "Agregar firmante"
@@ -1144,8 +1157,8 @@ msgstr "Información adicional de la marca para mostrar al final de los correos
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Admin"
msgstr "Administrador"
@@ -1153,8 +1166,8 @@ msgstr "Administrador"
msgid "Admin Actions"
msgstr "Acciones Administrativas"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Admin panel"
msgstr "Panel administrativo"
@@ -1166,15 +1179,15 @@ msgstr "Panel de Administración"
msgid "Admins only"
msgstr "Solo para administradores"
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Advanced Options"
msgstr "Opciones avanzadas"
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Advanced settings"
msgstr "Configuraciones avanzadas"
@@ -1191,6 +1204,7 @@ msgid "After submission, a document will be automatically generated and added to
msgstr "Después de la presentación, se generará automáticamente un documento y se agregará a su página de documentos. También recibirá una notificación por correo electrónico."
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "All"
msgstr "Todos"
@@ -1214,8 +1228,8 @@ msgstr "Todos los documentos relacionados con el proceso de firma electrónica s
msgid "All email domains have been synced successfully"
msgstr "Todos los dominios de correo electrónico se han sincronizado exitosamente"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "All Folders"
msgstr "Todas las carpetas"
@@ -1223,6 +1237,10 @@ msgstr "Todas las carpetas"
msgid "All inserted signatures will be voided"
msgstr "Todas las firmas insertadas serán anuladas"
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
+msgid "All recipients have signed. The document is being processed and you will receive an email copy shortly."
+msgstr "Todos los destinatarios han firmado. El documento se está procesando y recibirás una copia por correo electrónico en breve."
+
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "All recipients will be notified"
msgstr "Todos los destinatarios serán notificados"
@@ -1239,8 +1257,8 @@ msgstr "Todos los enlaces de firma se han copiado en su portapapeles."
msgid "All templates"
msgstr "Todas las plantillas"
-#: apps/remix/app/components/general/period-selector.tsx
#: apps/remix/app/components/filters/date-range-filter.tsx
+#: apps/remix/app/components/general/period-selector.tsx
msgid "All Time"
msgstr "Todo el Tiempo"
@@ -1252,10 +1270,10 @@ msgstr "Permitir a todos los miembros de la organización acceder a este equipo"
msgid "Allow document recipients to reply directly to this email address"
msgstr "Permitir que los destinatarios del documento respondan directamente a esta dirección de correo electrónico"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Allow signers to dictate next signer"
msgstr "Permitir a los firmantes dictar al siguiente firmante"
@@ -1263,10 +1281,10 @@ msgstr "Permitir a los firmantes dictar al siguiente firmante"
msgid "Allowed Email Domains"
msgstr "Dominios de Correo Permitidos"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Allowed Signature Types"
msgstr "Tipos de Firmas Permitidas"
@@ -1306,19 +1324,19 @@ msgstr "Un correo electrónico que contiene una invitación se enviará a cada m
msgid "An email with this address already exists."
msgstr "Ya existe un correo electrónico con esta dirección."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/token.tsx
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.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
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "An error occurred"
msgstr "Ocurrió un error"
@@ -1330,9 +1348,9 @@ msgstr "Ocurrió un error durante la subida."
msgid "An error occurred while adding fields."
msgstr "Ocurrió un error al agregar campos."
+#: 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/template/template-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "An error occurred while adding signers."
msgstr "Ocurrió un error al agregar firmantes."
@@ -1400,7 +1418,7 @@ msgstr "Ocurrió un error al habilitar la firma de enlace directo."
msgid "An error occurred while enabling the user."
msgstr "Se produjo un error al habilitar al usuario."
-#: packages/ui/primitives/pdf-viewer.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "An error occurred while loading the document."
msgstr "Se produjo un error al cargar el documento."
@@ -1412,14 +1430,14 @@ msgstr "Ocurrió un error al mover el documento."
msgid "An error occurred while moving the template."
msgstr "Ocurrió un error al mover la plantilla."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while removing the field."
msgstr "Ocurrió un error mientras se eliminaba el campo."
@@ -1443,29 +1461,29 @@ msgstr "Ocurrió un error al enviar el documento."
msgid "An error occurred while sending your confirmation email"
msgstr "Ocurrió un error al enviar tu correo electrónico de confirmación"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing as assistant."
msgstr "Ocurrió un error al firmar como asistente."
-#: 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
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing the document."
msgstr "Ocurrió un error al firmar el documento."
@@ -1478,8 +1496,8 @@ msgstr "Se produjo un error al firmar el campo."
msgid "An error occurred while trying to create a checkout session."
msgstr "Ocurrió un error al intentar crear una sesión de pago."
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "An error occurred while updating the document settings."
msgstr "Ocurrió un error al actualizar la configuración del documento."
@@ -1491,8 +1509,8 @@ msgstr "Ocurrió un error al actualizar la firma."
msgid "An error occurred while updating your profile."
msgstr "Ocurrió un error al actualizar tu perfil."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "An error occurred while uploading your document."
msgstr "Ocurrió un error al subir tu documento."
@@ -1512,53 +1530,53 @@ msgstr "Una organización quiere vincular tu cuenta. Por favor, revisa los detal
msgid "An unexpected error occurred."
msgstr "Ocurrió un error inesperado."
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/public-profile-form.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/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/general/app-command-menu.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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/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/signin.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/profile.tsx
-#: apps/remix/app/components/forms/organisation-update-form.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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "An unknown error occurred"
msgstr "Ocurrió un error desconocido"
@@ -1586,10 +1604,10 @@ msgstr "Cualquier fuente"
msgid "Any Status"
msgstr "Cualquier estado"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "API Tokens"
msgstr "Tokens de API"
@@ -1597,12 +1615,12 @@ msgstr "Tokens de API"
msgid "App Version"
msgstr "Versión de la Aplicación"
-#: apps/remix/app/components/tables/inbox-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-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Approve"
msgstr "Aprobar"
@@ -1611,9 +1629,9 @@ msgctxt "Recipient role action verb"
msgid "Approve"
msgstr "Aprobar"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Approve Document"
msgstr "Aprobar Documento"
@@ -1666,8 +1684,8 @@ msgid "Are you sure you want to reject this document? This action cannot be undo
msgstr "Are you sure you want to reject this document? This action cannot be undone."
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
-msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey."
-msgstr "¿Está seguro de que desea eliminar la clave de acceso <0>{passkeyName}0>?"
+msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey?"
+msgstr "¿Seguro que quieres eliminar la clave de acceso <0>{passkeyName}0>?"
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
msgid "Are you sure you wish to delete this organisation?"
@@ -1677,23 +1695,23 @@ msgstr "¿Está seguro de que desea eliminar esta organización?"
msgid "Are you sure you wish to delete this team?"
msgstr "¿Estás seguro de que deseas eliminar este equipo?"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/components/general/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Are you sure?"
msgstr "¿Estás seguro?"
@@ -1706,9 +1724,9 @@ msgctxt "Recipient role action verb"
msgid "Assist"
msgstr "Asistir"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Assist Document"
msgstr "Asistir Documento"
@@ -1752,11 +1770,11 @@ msgctxt "Recipient role progressive verb"
msgid "Assisting"
msgstr "Asistiendo"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
-#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/lib/types/document-meta.ts
+#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
msgid "At least one signature type must be enabled"
msgstr "Al menos un tipo de firma debe estar habilitado"
@@ -1768,9 +1786,9 @@ msgstr "Adjunto añadido exitosamente."
msgid "Attachment removed successfully."
msgstr "<<<<<<< Updated upstream======="
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Attachments"
@@ -1796,8 +1814,8 @@ msgstr "Nivel de Autenticación"
msgid "Authentication Portal Not Found"
msgstr "Portal de Autenticación No Encontrado"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Authentication required"
msgstr "Se requiere autenticación"
@@ -1817,12 +1835,12 @@ msgstr "Avatar actualizado"
msgid "Awaiting email confirmation"
msgstr "Esperando confirmación de correo electrónico"
-#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
msgid "Back"
msgstr "Atrás"
@@ -1838,8 +1856,8 @@ msgstr "Color de Fondo"
msgid "Background Jobs"
msgstr "Trabajos en segundo plano"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Backup Code"
msgstr "Código de respaldo"
@@ -1855,10 +1873,11 @@ msgstr "Banner actualizado"
msgid "Before you get started, please confirm your email address by clicking the button below:"
msgstr "Antes de comenzar, por favor confirma tu dirección de correo electrónico haciendo clic en el botón de abajo:"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
msgid "Billing"
msgstr "Facturación"
@@ -1882,9 +1901,9 @@ msgstr "Detalles de la Marca"
msgid "Brand Website"
msgstr "Sitio Web de la Marca"
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
msgid "Branding"
msgstr "Branding"
@@ -1892,10 +1911,10 @@ msgstr "Branding"
msgid "Branding Logo"
msgstr "Logotipo de Marca"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Branding Preferences"
msgstr "Preferencias de marca"
@@ -1929,8 +1948,8 @@ msgstr "Operación de envío masivo completa para la plantilla \"{templateName}\
msgid "Bulk Send Template via CSV"
msgstr "Enviar plantilla masiva a través de CSV"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Bulk Send via CSV"
msgstr "Envío Masivo vía CSV"
@@ -1975,96 +1994,95 @@ msgstr "Al utilizar la función de firma electrónica, usted está consintiendo
msgid "Can prepare"
msgstr "Puede preparar"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.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/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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-password.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/general/document/document-attachments-popover.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-test-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-to-folder-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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-create-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-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/claim-update-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.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-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.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/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Cancel"
msgstr "Cancelar"
@@ -2114,6 +2132,10 @@ msgstr "Ccers"
msgid "Center"
msgstr "Centro"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Change Recipient"
+msgstr "Cambiar destinatario"
+
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
msgid "Character limit"
msgstr "Límite de caracteres"
@@ -2128,8 +2150,8 @@ msgid "Charts"
msgstr "Gráficas"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Checkbox"
msgstr "Casilla de verificación"
@@ -2142,9 +2164,9 @@ msgstr "Configuración de Checkbox"
msgid "Checkbox values"
msgstr "Valores de Checkbox"
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Checkout"
msgstr "Checkout"
@@ -2196,9 +2218,9 @@ msgstr "Limpiar firma"
msgid "Click here to get started"
msgstr "Haga clic aquí para comenzar"
-#: 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/template/template-page-view-recent-activity.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "Click here to retry"
msgstr "Haga clic aquí para reintentar"
@@ -2211,12 +2233,12 @@ msgstr "Haga clic aquí para subir"
msgid "Click to copy signing link for sending to recipient"
msgstr "Haga clic para copiar el enlace de firma para enviar al destinatario"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.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/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
msgid "Click to insert field"
msgstr "Haga clic para insertar campo"
@@ -2236,23 +2258,25 @@ msgstr "Secreto del Cliente"
msgid "Client secret is required"
msgstr "Se requiere secreto del cliente"
-#: apps/remix/app/components/general/billing-plans.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/support-ticket-form.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/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-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/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/missing-signature-field-dialog.tsx
msgid "Close"
msgstr "Cerrar"
@@ -2265,14 +2289,14 @@ msgstr "Comunicación"
msgid "Compare all plans and features in detail"
msgstr "Compara todos los planes y características en detalle"
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Complete"
msgstr "Completo"
@@ -2284,22 +2308,22 @@ msgstr "Documento Completo"
msgid "Complete the fields for the following signers."
msgstr "Completa los campos para los siguientes firmantes."
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: 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/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
-#: packages/lib/constants/document.ts
-#: packages/email/template-components/template-document-self-signed.tsx
-#: packages/email/template-components/template-document-recipient-signed.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
#: packages/email/template-components/template-document-completed.tsx
+#: packages/email/template-components/template-document-recipient-signed.tsx
+#: packages/email/template-components/template-document-self-signed.tsx
+#: packages/lib/constants/document.ts
msgid "Completed"
msgstr "Completado"
-#: packages/email/templates/document-self-signed.tsx
#: packages/email/templates/document-completed.tsx
+#: packages/email/templates/document-self-signed.tsx
msgid "Completed Document"
msgstr "Documento completado"
@@ -2375,8 +2399,8 @@ msgstr "Configurar plantilla"
#. placeholder {0}: parseMessageDescriptor( _, FRIENDLY_FIELD_TYPE[currentField.type], )
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Configure the {0} field"
msgstr "Configurar el campo {0}"
@@ -2393,20 +2417,20 @@ msgstr "Configura los roles del equipo para cada grupo"
msgid "Configure the team roles for each member"
msgstr "Configura los roles del equipo para cada miembro"
-#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Confirm"
msgstr "Confirmar"
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
msgid "Confirm by typing <0>{deleteMessage}0>"
msgstr "Confirme escribiendo <0>{deleteMessage}0>"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "Confirm by typing: <0>{deleteMessage}0>"
msgstr "Confirme escribiendo: <0>{deleteMessage}0>"
@@ -2419,8 +2443,8 @@ msgstr "Confirmar Eliminación"
msgid "Confirm email"
msgstr "Confirmar correo electrónico"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Confirmation email sent"
msgstr "Correo electrónico de confirmación enviado"
@@ -2444,17 +2468,17 @@ msgstr "Contáctanos"
msgid "Content"
msgstr "Contenido"
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$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+/organisation.invite.$token.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-view.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/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$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+/verify-email.$token.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Continue"
msgstr "Continuar"
@@ -2521,21 +2545,22 @@ msgstr "Controla qué firmas están permitidas al firmar un documento."
msgid "Copied"
msgstr "Copiado"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: 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/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: packages/ui/primitives/document-flow/add-subject.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/avatar-with-recipient.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.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/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/components/document/document-share-button.tsx
+#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Copied to clipboard"
msgstr "Copiado al portapapeles"
@@ -2556,8 +2581,8 @@ msgstr "Copiar enlace compartible"
msgid "Copy Shareable Link"
msgstr "Copiar enlace compartible"
-#: 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/general/document/document-recipient-link-copy-dialog.tsx
msgid "Copy Signing Links"
msgstr "Copiar enlaces de firma"
@@ -2565,12 +2590,12 @@ msgstr "Copiar enlaces de firma"
msgid "Copy token"
msgstr "Copiar token"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Create"
msgstr "Crear"
@@ -2681,17 +2706,17 @@ msgstr "Crear ahora"
msgid "Create one automatically"
msgstr "Crear uno automáticamente"
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
msgid "Create organisation"
msgstr "Crear organización"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Create Organisation"
msgstr "Crear Organización"
@@ -2715,14 +2740,14 @@ msgstr "Crear suscripción"
msgid "Create Subscription Claim"
msgstr "Crear Reclamación de Suscripción"
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
msgid "Create team"
msgstr "Crear equipo"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Create Team"
msgstr "Crear Equipo"
@@ -2751,26 +2776,27 @@ msgstr "Crea tu cuenta y comienza a utilizar la firma de documentos de última g
msgid "Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp."
msgstr "Crea tu cuenta y comienza a utilizar la firma de documentos de última generación. La firma abierta y hermosa está al alcance de tu mano."
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: 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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-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
+#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Created"
msgstr "Creado"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Created At"
msgstr "Creado En"
@@ -2782,9 +2808,7 @@ msgstr "Creado por"
msgid "Created on"
msgstr "Creado el"
-#. placeholder {0}: i18n.date(webhook.createdAt, DateTime.DATETIME_FULL)
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Created on {0}"
msgstr "Creado el {0}"
@@ -2842,13 +2866,13 @@ msgstr "Modo Oscuro"
msgid "Dashboard"
msgstr "Tablero"
-#: apps/remix/app/components/tables/settings-security-activity-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Date"
msgstr "Fecha"
@@ -2856,10 +2880,10 @@ msgstr "Fecha"
msgid "Date created"
msgstr "Fecha de creación"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Date Format"
msgstr "Formato de fecha"
@@ -2867,8 +2891,8 @@ msgstr "Formato de fecha"
msgid "Date Settings"
msgstr "Configuración de Fecha"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: packages/email/templates/organisation-invite.tsx
msgid "Decline"
msgstr "Rechazar"
@@ -2918,46 +2942,47 @@ msgstr "Valor Predeterminado"
msgid "delete"
msgstr "eliminar"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/folder/folder-card.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-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-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/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Delete"
msgstr "Eliminar"
-#. placeholder {0}: webhook.webhookUrl
-#. placeholder {0}: token.name
+#. placeholder {0}: folder.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#. placeholder {0}: token.name
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "delete {0}"
msgstr "eliminar {0}"
@@ -2973,11 +2998,11 @@ msgstr "eliminar {teamName}"
msgid "Delete account"
msgstr "Eliminar cuenta"
+#: 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
#: 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
msgid "Delete Account"
msgstr "Eliminar Cuenta"
@@ -2985,10 +3010,10 @@ msgstr "Eliminar Cuenta"
msgid "Delete document"
msgstr "Eliminar documento"
+#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: 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
msgid "Delete Document"
msgstr "Eliminar Documento"
@@ -2996,8 +3021,8 @@ msgstr "Eliminar Documento"
msgid "Delete email"
msgstr "Eliminar correo"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Delete email domain"
msgstr "Eliminar dominio de correo electrónico"
@@ -3057,8 +3082,8 @@ msgstr "Eliminar Webhook"
msgid "Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution."
msgstr "Eliminar su cuenta y todo su contenido, incluidos documentos completados. Esta acción es irreversible y cancelará su suscripción, así que proceda con cuidado."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Deleted"
msgstr "Eliminado"
@@ -3066,13 +3091,22 @@ msgstr "Eliminado"
msgid "Deleting account..."
msgstr "Eliminando cuenta..."
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Destination"
+msgstr "Destino"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Details"
msgstr "Detalles"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+msgid "Developer Mode"
+msgstr "Modo desarrollador"
+
#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Device"
msgstr "Dispositivo"
@@ -3080,19 +3114,19 @@ msgstr "Dispositivo"
msgid "Didn't request a password change? We are here to help you secure your account, just <0>contact us.0>"
msgstr "¿No solicitaste un cambio de contraseña? Estamos aquí para ayudarte a asegurar tu cuenta, solo <0>contáctanos.0>"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "direct link"
msgstr "enlace directo"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Direct link"
msgstr "Enlace directo"
-#: 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/envelope-editor/envelope-editor.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
msgid "Direct Link"
msgstr "Enlace directo"
@@ -3130,14 +3164,14 @@ msgstr "Enlace de plantilla directo eliminado"
msgid "Direct template link usage exceeded ({0}/{1})"
msgstr "El uso de enlace de plantilla directo excedió ({0}/{1})"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Direction"
msgstr "Dirección"
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
msgid "Disable"
msgstr "Deshabilitar"
@@ -3165,6 +3199,7 @@ msgid "Disable Two Factor Authentication before deleting your account."
msgstr "Deshabilite la Autenticación de Dos Factores antes de eliminar su cuenta."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Disabled"
msgstr "Deshabilitado"
@@ -3180,8 +3215,8 @@ msgstr "Deshabilitar al usuario implica que no podrá usar la cuenta. También d
msgid "Discord"
msgstr "Discord"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "Display Name"
msgstr "Nombre a mostrar"
@@ -3217,11 +3252,11 @@ msgstr "¿Desea duplicar esta plantilla?"
msgid "Documenso will delete <0>all of your documents0>, along with all of your completed documents, signatures, and all other resources belonging to your Account."
msgstr "Documenso eliminará <0>todos sus documentos0>, junto con todos sus documentos completados, firmas y todos los demás recursos de su cuenta."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Document"
msgstr "Documento"
@@ -3250,9 +3285,9 @@ msgid "Document & Recipients"
msgstr "Documento y Destinatarios"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Document access"
msgstr "Acceso al documento"
@@ -3271,8 +3306,8 @@ msgstr "Documento Aprobado"
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: packages/lib/server-only/document/delete-document.ts
#: packages/lib/server-only/admin/admin-super-delete-document.ts
+#: packages/lib/server-only/document/delete-document.ts
msgid "Document Cancelled"
msgstr "Documento cancelado"
@@ -3313,8 +3348,8 @@ msgstr "Documento Creado"
msgid "Document created by <0>{0}0>"
msgstr "Documento creado por <0>{0}0>"
-#: packages/lib/server-only/template/create-document-from-direct-template.ts
#: packages/email/templates/document-created-from-direct-template.tsx
+#: packages/lib/server-only/template/create-document-from-direct-template.ts
msgid "Document created from direct template"
msgstr "Documento creado a partir de plantilla directa"
@@ -3326,9 +3361,9 @@ msgstr "Documento creado usando un <0>enlace directo0>"
msgid "Document Creation"
msgstr "Creación de documento"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
msgid "Document deleted"
msgstr "Documento eliminado"
@@ -3427,9 +3462,9 @@ msgstr "Documento pendiente"
msgid "Document pending email"
msgstr "Correo electrónico de documento pendiente"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Document Preferences"
msgstr "Preferencias del documento"
@@ -3446,8 +3481,8 @@ msgstr "Documento reenviado"
msgid "Document rejected"
msgstr "Documento rechazado"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: packages/email/template-components/template-document-rejected.tsx
msgid "Document Rejected"
msgstr "Documento Rechazado"
@@ -3504,15 +3539,15 @@ msgstr "Documento actualizado"
msgid "Document updated successfully"
msgstr "Documento actualizado con éxito"
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Document upload disabled due to unpaid invoices"
msgstr "La carga de documentos está deshabilitada debido a facturas impagadas"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Document uploaded"
msgstr "Documento subido"
@@ -3546,20 +3581,20 @@ msgstr "El documento será eliminado permanentemente"
msgid "Documentation"
msgstr "Documentación"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.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/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
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Documents"
msgstr "Documentos"
@@ -3608,22 +3643,22 @@ msgstr "Dominio ya en uso"
msgid "Domain Name"
msgstr "Nombre del dominio"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Don't have an account? <0>Sign up0>"
msgstr "¿No tienes una cuenta? <0>Regístrate0>"
-#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-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/general/document/document-certificate-qr-view.tsx
-#: apps/remix/app/components/general/document/document-certificate-qr-view.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/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
#: packages/email/template-components/template-document-completed.tsx
msgid "Download"
msgstr "Descargar"
@@ -3640,9 +3675,9 @@ msgstr "Descargar certificado"
msgid "Download Files"
msgstr "Descargar archivos"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Download PDF"
msgstr "Descargar PDF"
@@ -3650,9 +3685,9 @@ msgstr "Descargar PDF"
msgid "Download Template CSV"
msgstr "Descargar Plantilla CSV"
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: packages/lib/constants/document.ts
msgid "Draft"
msgstr "Borrador"
@@ -3677,12 +3712,9 @@ msgstr "Arrastra y suelta o haz clic para cargar"
msgid "Drag and drop your PDF file here"
msgstr "Arrastra y suelta tu archivo PDF aquí"
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
-msgid "Draw"
-msgstr "Dibujar"
-
#: packages/lib/constants/document.ts
-msgctxt "Draw signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Draw signature"
msgid "Draw"
msgstr "Dibujar"
@@ -3691,8 +3723,8 @@ msgid "Drop your document here"
msgstr "Suelta tu documento aquí"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Dropdown"
msgstr "Menú desplegable"
@@ -3712,20 +3744,20 @@ msgstr "Configuración de Menú Desplegable"
msgid "Dropdown values"
msgstr "Valores del Menú Desplegable"
-#: 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/envelope-editor/envelope-editor-fields-page-renderer.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
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Duplicate"
msgstr "Duplicar"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Document"
msgstr "Documento Duplicado"
@@ -3734,8 +3766,8 @@ msgstr "Documento Duplicado"
msgid "Duplicate on all pages"
msgstr "Duplicar en todas las páginas"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Template"
msgstr "Plantilla Duplicada"
@@ -3743,14 +3775,23 @@ msgstr "Plantilla Duplicada"
msgid "Duplicate values are not allowed"
msgstr "No se permiten valores duplicados"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 0"
+msgstr "Ej.: 0"
+
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 100"
+msgstr "Ej.: 100"
+
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Edit"
msgstr "Editar"
@@ -3758,10 +3799,19 @@ msgstr "Editar"
msgid "Edit Template"
msgstr "Editar plantilla"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Edit webhook"
msgstr "Editar webhook"
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+msgid "eg. Legal"
+msgstr "p. ej., Legal"
+
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+msgid "eg. Mac"
+msgstr "p. ej., Mac"
+
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Electronic Delivery of Documents"
msgstr "Entrega Electrónica de Documentos"
@@ -3770,57 +3820,57 @@ msgstr "Entrega Electrónica de Documentos"
msgid "Electronic Signature Disclosure"
msgstr "Divulgación de Firma Electrónica"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-insights-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/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.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
-#: 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/utils/fields.ts
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-configure-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
+#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Email"
msgstr "Correo electrónico"
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/send-confirmation-email.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Email address"
msgstr "Dirección de correo electrónico"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Email Address"
msgstr "Dirección de correo electrónico"
@@ -3852,9 +3902,9 @@ msgstr "Dominio de correo electrónico no encontrado"
msgid "Email Domain Settings"
msgstr "Configuración de dominio de correo electrónico"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Email Domains"
msgstr "Dominios de correo electrónico"
@@ -3870,9 +3920,9 @@ msgstr "Se requiere correo electrónico"
msgid "Email Options"
msgstr "Opciones de correo electrónico"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Email Preferences"
msgstr "Preferencias de correo electrónico"
@@ -3885,10 +3935,10 @@ msgstr "Preferencias de correo electrónico actualizadas"
msgid "Email resent"
msgstr "Correo electrónico reeenviado"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Email Sender"
msgstr "Remitente de correo electrónico"
@@ -3916,8 +3966,8 @@ msgstr "La verificación de correo electrónico ha sido eliminada"
msgid "Email verification has been resent"
msgstr "La verificación de correo electrónico ha sido reenviada"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Emails"
msgstr "Correos electrónicos"
@@ -3976,10 +4026,10 @@ msgstr "Habilitar firma por enlace directo"
msgid "Enable Direct Link Signing"
msgstr "Habilitar firma de enlace directo"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Enable signing order"
msgstr "Habilitar orden de firma"
@@ -3987,10 +4037,11 @@ msgstr "Habilitar orden de firma"
msgid "Enable SSO portal"
msgstr "Habilitar portal SSO"
-#: 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+/admin+/site-settings.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Enabled"
msgstr "Habilitado"
@@ -4014,10 +4065,12 @@ msgstr "Ingresar nombre de la reclamación"
msgid "Enter the domain you want to use for sending emails (without http:// or www)"
msgstr "Ingresa el dominio que deseas usar para enviar correos electrónicos (sin http:// ni www)"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's email"
msgstr "Ingrese el correo del próximo firmante"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's name"
msgstr "Ingrese el nombre del próximo firmante"
@@ -4053,11 +4106,12 @@ msgid "Enter your number here"
msgstr "Ingresa tu número aquí"
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Enter your password"
msgstr "Ingrese la contraseña"
-#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "Enter your text here"
msgstr "Ingresa tu texto aquí"
@@ -4077,8 +4131,8 @@ msgstr "Sobre Duplicado"
msgid "Envelope ID"
msgstr "ID de Sobre"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Envelope Item Count"
msgstr "Conteo de elementos del sobre"
@@ -4102,75 +4156,75 @@ msgstr "Título del Sobre"
msgid "Envelope updated"
msgstr "Sobre actualizado"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$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/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/envelope-signing/envelope-signer-page-renderer.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.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-button-legacy.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/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/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.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-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-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-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-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-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-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-text-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.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/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/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.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/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/verify-email-banner.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Error"
msgstr "Error"
@@ -4178,11 +4232,17 @@ msgstr "Error"
msgid "Error uploading file"
msgstr "Error al cargar el archivo"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Event"
+msgstr "Evento"
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Event Type"
msgstr "Tipo de evento"
#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: packages/ui/components/document/document-visibility-select.tsx
msgid "Everyone"
msgstr "Todos"
@@ -4195,8 +4255,8 @@ msgid "Everyone has signed"
msgstr "Todos han firmado"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "Everyone has signed! You will receive an Email copy of the signed document."
-msgstr "¡Todos han firmado! Recibirás una copia por correo electrónico del documento firmado."
+msgid "Everyone has signed! You will receive an email copy of the signed document."
+msgstr "¡Todos han firmado! Recibirás una copia del documento firmado por correo electrónico."
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "Exceeded timeout"
@@ -4217,11 +4277,16 @@ msgid "Expires on {0}"
msgstr "Expira el {0}"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "External ID"
msgstr "ID externo"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Failed"
+msgstr "Error"
+
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
msgid "Failed to create folder"
msgstr "No se pudo crear la carpeta"
@@ -4286,7 +4351,7 @@ msgstr "Error al actualizar la reclamación de suscripción."
msgid "Failed to update template"
msgstr "No se pudo actualizar la plantilla"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Failed to update webhook"
msgstr "Falló al actualizar el webhook"
@@ -4294,9 +4359,9 @@ msgstr "Falló al actualizar el webhook"
msgid "Failed: {failedCount}"
msgstr "Fallidos: {failedCount}"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Feature Flags"
msgstr "Flags de características"
@@ -4305,12 +4370,12 @@ msgid "Field character limit"
msgstr "Límite de caracteres del campo"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field font size"
msgstr "Tamaño de fuente del campo"
@@ -4319,11 +4384,11 @@ msgstr "Tamaño de fuente del campo"
msgid "Field format"
msgstr "Formato de campo"
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field label"
msgstr "Etiqueta de campo"
@@ -4355,10 +4420,10 @@ msgstr "Campos"
msgid "Fields updated"
msgstr "Campos actualizados"
+#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "File cannot be larger than {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
msgstr "El archivo no puede ser mayor a {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
@@ -4378,8 +4443,8 @@ msgstr "El tamaño del archivo excede el límite de {APP_DOCUMENT_UPLOAD_SIZE_LI
msgid "Fill in the details to create a new subscription claim."
msgstr "Rellena los detalles para crear una nueva reclamación de suscripción."
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Folder"
msgstr "Carpeta"
@@ -4399,9 +4464,9 @@ msgstr "Carpeta movida correctamente"
msgid "Folder Name"
msgstr "Nombre de la Carpeta"
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
msgid "Folder not found"
msgstr "Carpeta no encontrada"
@@ -4414,12 +4479,12 @@ msgid "Folder updated successfully"
msgstr "Carpeta actualizada con éxito"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Font Size"
msgstr "Tamaño de fuente"
@@ -4439,19 +4504,20 @@ msgstr "Por ejemplo, si la reclamación tiene un nuevo flag \"FLAG_1\" estableci
msgid "Forgot Password?"
msgstr "¿Olvidaste tu contraseña?"
-#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Forgot your password?"
msgstr "¿Olvidaste tu contraseña?"
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Free"
msgstr "Gratis"
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Free Signature"
msgstr "Firma gratuita"
@@ -4459,26 +4525,26 @@ msgstr "Firma gratuita"
msgid "Free Signature Settings"
msgstr "Configuración de Firma Gratuita"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.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/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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "Full Name"
msgstr "Nombre completo"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "General"
msgstr "General"
@@ -4495,24 +4561,24 @@ msgstr "Generar enlaces"
msgid "Global recipient action authentication"
msgstr "Autenticación de acción de destinatario global"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Go back"
msgstr "Regresar"
-#: apps/remix/app/routes/_recipient+/_layout.tsx
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
+#: apps/remix/app/routes/_recipient+/_layout.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Go Back"
msgstr "Regresar"
@@ -4524,9 +4590,9 @@ msgstr "Regresar"
msgid "Go back home"
msgstr "Regresar a casa"
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
msgid "Go Back Home"
msgstr "Regresar a casa"
@@ -4555,10 +4621,10 @@ msgstr "Ve a tu <0>configuración de perfil público0> para agregar documentos
msgid "Green"
msgstr "Verde"
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Group"
msgstr "Grupo"
@@ -4570,15 +4636,15 @@ msgstr "El grupo ha sido creado."
msgid "Group has been updated successfully"
msgstr "El grupo ha sido actualizado con éxito"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Group Name"
msgstr "Nombre del grupo"
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
msgid "Groups"
msgstr "Grupos"
@@ -4601,12 +4667,12 @@ msgstr "te ha invitado a ver este documento"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
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."
msgstr "Tener a un asistente como el último firmante significa que no podrá realizar ninguna acción ya que no hay firmantes posteriores a los que asistir."
@@ -4678,25 +4744,25 @@ msgstr "Hola {userName}, necesitas introducir un código de verificación para c
msgid "Hi, {userName} <0>({userEmail})0>"
msgstr "Hola, {userName} <0>({userEmail})0>"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Hide"
msgstr "Ocultar"
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/folder/folder-grid.tsx
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-grid.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
msgid "Home"
msgstr "Inicio"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Home (No Folder)"
msgstr "Inicio (Sin Carpeta)"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Horizontal"
msgstr "Horizontal"
@@ -4733,7 +4799,6 @@ msgstr "Soy el propietario de este documento"
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
msgstr "Entiendo que estoy proporcionando mis credenciales a un servicio de terceros configurado por esta organización"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
msgid "I'm sure! Delete it"
msgstr "¡Estoy seguro! Elimínalo"
@@ -4770,6 +4835,10 @@ msgstr "Si tu aplicación de autenticación no admite códigos QR, puedes usar e
msgid "Important: What This Means"
msgstr "Importante: Lo que esto significa"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Inactive"
+msgstr "Inactiva"
+
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/document/document-status.tsx
@@ -4788,8 +4857,8 @@ msgstr "Incluir los registros de auditoría en el documento"
msgid "Include the Signing Certificate in the Document"
msgstr "Incluir el certificado de firma en el documento"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Information"
msgstr "Información"
@@ -4797,17 +4866,17 @@ msgstr "Información"
msgid "Inherit authentication method"
msgstr "Heredar método de autenticación"
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
msgid "Inherit from organisation"
msgstr "Heredar de la organización"
@@ -4820,11 +4889,11 @@ msgstr "Heredar miembros de la organización"
msgid "Inherited subscription claim"
msgstr "Reclamación de suscripción heredada"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: packages/ui/primitives/document-flow/types.ts
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Initials"
msgstr "Iniciales"
@@ -4869,8 +4938,8 @@ msgstr "Email inválido"
msgid "Invalid link"
msgstr "Enlace inválido"
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
msgid "Invalid token"
msgstr "Token inválido"
@@ -4890,8 +4959,8 @@ msgstr "Invitación aceptada"
msgid "Invitation accepted!"
msgstr "¡Invitación aceptada!"
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
msgid "Invitation declined"
msgstr "Invitación rechazada"
@@ -4931,9 +5000,9 @@ msgstr "Invitado el"
msgid "Invoice"
msgstr "Factura"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "IP Address"
msgstr "Dirección IP"
@@ -4987,23 +5056,23 @@ msgstr "Unido"
msgid "Joined {0}"
msgstr "Se unió a {0}"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Label"
msgstr "Etiqueta"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Language"
msgstr "Idioma"
@@ -5031,8 +5100,8 @@ msgstr "Últimos 90 días"
msgid "Last Active"
msgstr "Última actividad"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Last modified"
msgstr "Última modificación"
@@ -5060,15 +5129,15 @@ msgstr "Último uso"
msgid "Last Year"
msgstr "Último año"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Leave"
msgstr "Salir"
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Leave blank to inherit from the organisation."
msgstr "Deja en blanco para heredar de la organización."
@@ -5124,8 +5193,8 @@ msgstr "Enlace de plantilla"
msgid "Link your Documenso account"
msgstr "Vincula tu cuenta de Documenso"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Linked Accounts"
msgstr "Cuentas Vinculadas"
@@ -5137,30 +5206,29 @@ msgstr "Vinculado el"
msgid "Links Generated"
msgstr "Enlaces generados"
-#. placeholder {0}: webhook.eventTriggers .map((trigger) => toFriendlyWebhookEventName(trigger)) .join(', ')
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-msgid "Listening to {0}"
-msgstr "Escuchando a {0}"
+msgid "Listening to"
+msgstr "Escuchando"
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
msgid "Load older activity"
msgstr "Cargar actividad anterior"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Loading"
msgstr "Cargando"
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Loading document..."
msgstr "Cargando documento..."
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
msgid "Loading Document..."
msgstr "Cargando Documento..."
@@ -5176,15 +5244,19 @@ msgstr "Cargando..."
msgid "Local timezone"
msgstr "Zona horaria local"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Login"
msgstr "Iniciar sesión"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "Logs"
+msgstr "Registros"
+
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Manage"
msgstr "Gestionar"
@@ -5214,9 +5286,14 @@ msgid "Manage billing"
msgstr "Gestionar la facturación"
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Manage Billing"
msgstr "Administrar facturación"
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
+msgid "Manage billing and subscriptions for organisations where you have billing management permissions."
+msgstr "Gestiona la facturación y las suscripciones de las organizaciones donde tienes permisos de gestión de facturación."
+
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "Manage details for this public template"
msgstr "Gestionar detalles de esta plantilla pública"
@@ -5233,6 +5310,7 @@ msgstr "Gestionar documentos"
msgid "Manage linked accounts"
msgstr "Gestionar cuentas vinculadas"
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Manage organisation"
msgstr "Administrar organización"
@@ -5318,8 +5396,8 @@ msgstr "Gestionar la configuración de tu sitio aquí"
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Manager"
msgstr "Gerente"
@@ -5357,24 +5435,24 @@ msgstr "Máx"
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
msgstr "Tamaño máximo de archivo: 4MB. Máximo 100 filas por carga. Los valores en blanco usarán los valores predeterminados de la plantilla."
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Maximum number of uploaded files per envelope allowed"
msgstr "Número máximo de archivos subidos por sobre permitido"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Member"
msgstr "Miembro"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Member Count"
msgstr "Conteo de Miembros"
@@ -5382,25 +5460,25 @@ msgstr "Conteo de Miembros"
msgid "Member Since"
msgstr "Miembro desde"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Members"
msgstr "Miembros"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Message"
msgstr "Mensaje"
@@ -5421,8 +5499,8 @@ msgstr "Mín"
msgid "Missing Recipients"
msgstr "Faltan destinatarios"
-#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
msgid "Modify recipients"
msgstr "Modificar destinatarios"
@@ -5430,8 +5508,8 @@ msgstr "Modificar destinatarios"
msgid "Modify the details of the subscription claim."
msgstr "Modifica los detalles de la reclamación de suscripción."
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Monthly"
msgstr "Mensual"
@@ -5443,10 +5521,10 @@ msgstr "Usuarios activos mensuales: Usuarios que crearon al menos un documento"
msgid "Monthly Active Users: Users that had at least one of their documents completed"
msgstr "Usuarios activos mensuales: Usuarios que completaron al menos uno de sus documentos"
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
msgid "Move"
msgstr "Mover"
@@ -5466,8 +5544,8 @@ msgstr "Mover Carpeta"
msgid "Move Template to Folder"
msgstr "Mover Plantilla a Carpeta"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Move to Folder"
msgstr "Mover a Carpeta"
@@ -5483,43 +5561,43 @@ msgstr "Mi Carpeta"
msgid "N/A"
msgstr "N/A"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: 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/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
-#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
-#: apps/remix/app/components/forms/subscription-claim-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: 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
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/forms/subscription-claim-form.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/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Name"
msgstr "Nombre"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Name is required"
msgstr "Se requiere el nombre"
@@ -5559,11 +5637,11 @@ msgstr "Nueva Contraseña"
msgid "New Template"
msgstr "Nueva plantilla"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Next"
msgstr "Siguiente"
@@ -5580,10 +5658,10 @@ msgstr "Correo del próximo destinatario"
msgid "Next Recipient Name"
msgstr "Nombre del próximo destinatario"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "No"
msgstr "No"
@@ -5591,24 +5669,24 @@ msgstr "No"
msgid "No active drafts"
msgstr "No hay borradores activos"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "No documents found"
msgstr "No se encontraron documentos"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "No folders found"
msgstr "No se encontraron carpetas"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "No folders found matching \"{searchTerm}\""
msgstr "No se encontraron carpetas que coincidan con \"{searchTerm}\""
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "No further action is required from you at this time."
msgstr "No further action is required from you at this time."
@@ -5628,25 +5706,27 @@ msgstr "No hay actividad reciente"
msgid "No recent documents"
msgstr "No hay documentos recientes"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipient matching this description was found."
msgstr "No se encontró ningún destinatario que coincidiera con esta descripción."
-#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "No recipients"
msgstr "Sin destinatarios"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipients with this role"
msgstr "No hay destinatarios con este rol"
-#: 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-action-select.tsx
msgid "No restrictions"
msgstr "Sin restricciones"
@@ -5687,8 +5767,8 @@ msgid "No valid recipients found"
msgstr "No se encontraron destinatarios válidos"
#: apps/remix/app/components/general/multiselect-role-combobox.tsx
-#: packages/ui/primitives/multi-select-combobox.tsx
#: packages/ui/primitives/combobox.tsx
+#: packages/ui/primitives/multi-select-combobox.tsx
msgid "No value found."
msgstr "No se encontró valor."
@@ -5696,16 +5776,16 @@ msgstr "No se encontró valor."
msgid "No worries, it happens! Enter your email and we'll email you a special link to reset your password."
msgstr "¡No te preocupes, sucede! Ingresa tu correo electrónico y te enviaremos un enlace especial para restablecer tu contraseña."
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
#: packages/lib/constants/document.ts
msgid "None"
msgstr "Ninguno"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Not found"
msgstr "No Encontrado"
@@ -5718,12 +5798,12 @@ msgstr "No soportado"
msgid "Nothing to do"
msgstr "Nada que hacer"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: 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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Number"
msgstr "Número"
@@ -5736,13 +5816,13 @@ msgstr "Formato de número"
msgid "Number needs to be formatted as {numberFormat}"
msgstr "El número debe estar en el formato {numberFormat}"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of members allowed. 0 = Unlimited"
msgstr "Número de miembros permitidos. 0 = Ilimitado"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of teams allowed. 0 = Unlimited"
msgstr "Número de equipos permitidos. 0 = Ilimitado"
@@ -5782,10 +5862,6 @@ msgstr "En esta página, puedes crear y gestionar tokens de API. Consulta nuestr
msgid "On this page, you can create new Webhooks and manage the existing ones."
msgstr "En esta página, puedes editar el webhook y sus configuraciones."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "On this page, you can edit the webhook and its settings."
-msgstr "En esta página, puedes editar el webhook y su configuración."
-
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Once confirmed, the following will occur:"
msgstr "Una vez confirmado, ocurrirá lo siguiente:"
@@ -5826,11 +5902,11 @@ msgstr "Solo se puede cargar un archivo a la vez"
msgid "Only PDF files are allowed"
msgstr "Solo se permiten archivos PDF"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Oops! Something went wrong."
msgstr "¡Ups! Algo salió mal."
@@ -5846,8 +5922,8 @@ msgstr "El valor de la opción no puede estar vacío"
msgid "Options"
msgstr "Opciones"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Or"
msgstr "O"
@@ -5859,9 +5935,10 @@ msgstr "O"
msgid "Or continue with"
msgstr "O continúa con"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Organisation"
msgstr "Organización"
@@ -5890,8 +5967,8 @@ msgstr "Configuración de Grupo de Organización"
msgid "Organisation has been updated successfully"
msgstr "La organización ha sido actualizada con éxito"
-#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
msgid "Organisation Insights"
msgstr "Perspectivas de la organización"
@@ -5907,22 +5984,22 @@ msgstr "Se han enviado las invitaciones de la organización."
msgid "Organisation Manager"
msgstr "Gerente de Organización"
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: packages/lib/constants/organisations-translations.ts
msgid "Organisation Member"
msgstr "Miembro de Organización"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
msgid "Organisation Members"
msgstr "Miembros de Organización"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation Name"
msgstr "Nombre de la Organización"
@@ -5935,8 +6012,8 @@ msgstr "Organización no encontrada"
msgid "Organisation role"
msgstr "Rol de organización"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Organisation Role"
msgstr "Rol de Organización"
@@ -5956,17 +6033,17 @@ msgstr "Portal SSO de la Organización"
msgid "Organisation Teams"
msgstr "Equipos de Organización"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation URL"
msgstr "URL de Organización"
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
#: apps/remix/app/routes/_authenticated+/settings+/organisations.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Organisations"
msgstr "Organizaciones"
@@ -6003,16 +6080,16 @@ msgstr "De lo contrario, el documento se creará como un borrador."
msgid "Override organisation settings"
msgstr "Anular la configuración de la organización"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Owner"
msgstr "Propietario"
@@ -6027,8 +6104,8 @@ msgid "Page {0} of {1}"
msgstr "Página {0} de {1}"
#. placeholder {0}: i + 1
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Page {0} of {numPages}"
msgstr "Página {0} de {numPages}"
@@ -6036,8 +6113,8 @@ msgstr "Página {0} de {numPages}"
msgid "Paid"
msgstr "Pagado"
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
msgid "Passkey"
msgstr "Clave de acceso"
@@ -6065,8 +6142,8 @@ msgstr "Nombre de clave de acceso"
msgid "Passkey Re-Authentication"
msgstr "Re-autenticación de Passkey"
-#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
msgid "Passkeys"
msgstr "Claves de acceso"
@@ -6078,12 +6155,12 @@ msgstr "Las claves de acceso te permiten iniciar sesión y autenticarte utilizan
msgid "Passkeys are not supported on this browser"
msgstr "Las claves de acceso no están soportadas en este navegador"
-#: apps/remix/app/components/general/app-command-menu.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
-#: apps/remix/app/components/forms/signup.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Password"
msgstr "Contraseña"
@@ -6099,13 +6176,13 @@ msgstr "Solicitud de restablecimiento de contraseña"
msgid "Password Reset Successful"
msgstr "Restablecimiento de contraseña exitoso"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Password should not be common or based on personal information"
msgstr "La contraseña no debe ser común ni basarse en información personal"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Password updated"
msgstr "Contraseña actualizada"
@@ -6113,6 +6190,10 @@ msgstr "Contraseña actualizada"
msgid "Password updated!"
msgstr "¡Contraseña actualizada!"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Past Due"
+msgstr "Vencida"
+
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
msgid "Payment overdue"
@@ -6122,15 +6203,15 @@ msgstr "Pago atrasado"
msgid "PDF Document"
msgstr "Documento PDF"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
-#: packages/ui/components/document/document-read-only-fields.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: packages/lib/constants/document.ts
+#: packages/ui/components/document/document-read-only-fields.tsx
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Pending"
msgstr "Pendiente"
@@ -6150,13 +6231,13 @@ msgstr "Documentos Pendientes"
msgid "Pending invitations"
msgstr "Invitaciones pendientes"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per month"
msgstr "al mes"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per year"
msgstr "al año"
@@ -6165,15 +6246,15 @@ msgctxt "Personal organisation (adjective)"
msgid "Personal"
msgstr "Personal"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Personal Account"
msgstr "Cuenta personal"
-#: apps/remix/app/routes/_authenticated+/inbox.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/inbox.tsx
msgid "Personal Inbox"
msgstr "Bandeja de entrada personal"
@@ -6198,12 +6279,12 @@ msgstr "Fijar"
msgid "Place and configure form fields in the document"
msgstr "Colocar y configurar campos de formulario en el documento"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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
#: 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 "Marcador de posición"
@@ -6250,8 +6331,8 @@ msgstr "Por favor, elige tu nueva contraseña"
msgid "Please complete the document once reviewed"
msgstr "Por favor complete el documento una vez revisado"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Please configure the document first"
msgstr "Por favor configure el documento primero"
@@ -6275,9 +6356,9 @@ msgstr "Por favor, contacte al propietario del sitio para más asistencia."
msgid "Please enter a meaningful name for your token. This will help you identify it later."
msgstr "Por favor, ingresa un nombre significativo para tu token. Esto te ayudará a identificarlo más tarde."
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Please enter a valid name."
msgstr "Por favor, introduce un nombre válido."
@@ -6329,6 +6410,10 @@ msgstr "Por favor, ten en cuenta que perderás acceso a todos los documentos aso
msgid "Please open your authenticator app and enter the 6-digit code for this document."
msgstr "Por favor, abre tu app autenticadora e ingresa el código de 6 dígitos para este documento."
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+msgid "Please provide a reason for rejecting this document"
+msgstr "Indica un motivo para rechazar este documento"
+
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
msgid "Please provide a token from the authenticator, or a backup code. If you do not have a backup code available, please contact support."
msgstr "Por favor, proporciona un token del autenticador o un código de respaldo. Si no tienes un código de respaldo disponible, contacta al soporte."
@@ -6365,10 +6450,10 @@ msgstr "Por favor, intenta de nuevo y asegúrate de ingresar la dirección de co
msgid "Please try again later."
msgstr "Por favor, intenta de nuevo más tarde."
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Please try again or contact our support."
msgstr "Por favor, inténtalo de nuevo o contacta a nuestro soporte."
@@ -6382,8 +6467,8 @@ msgstr "Por favor, escriba {0} para confirmar"
msgid "Please type <0>{0}0> to confirm."
msgstr "Por favor, escribe <0>{0}0> para confirmar."
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Please upload a document to continue"
msgstr "Por favor, carga un documento para continuar"
@@ -6395,15 +6480,15 @@ msgstr "Por favor, suba un logotipo"
msgid "Pre-formatted CSV template with example data."
msgstr "Plantilla CSV preformateada con datos de ejemplo."
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Preferences"
msgstr "Preferencias"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Preview"
msgstr "Vista previa"
@@ -6425,8 +6510,8 @@ msgstr "Vista previa del documento antes de enviar"
msgid "Preview what the signed document will look like with placeholder data"
msgstr "Vista previa de cómo se verá el documento firmado con datos de marcador de posición"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Private"
msgstr "Privado"
@@ -6442,10 +6527,14 @@ msgstr "Las plantillas privadas solo pueden ser modificadas y vistas por ti."
msgid "Proceed"
msgstr "Proceder"
-#: 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/routes/_recipient+/sign.$token+/complete.tsx
+msgid "Processing document"
+msgstr "Procesando documento"
+
#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/profile.tsx
msgid "Profile"
msgstr "Perfil"
@@ -6457,8 +6546,8 @@ msgstr "El perfil está actualmente <0>oculto0>."
msgid "Profile is currently <0>visible0>."
msgstr "El perfil está actualmente <0>visible0>."
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Profile updated"
msgstr "Perfil actualizado"
@@ -6474,15 +6563,15 @@ msgstr "Proveedor"
msgid "Provider has been updated successfully"
msgstr "El proveedor ha sido actualizado exitosamente"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Public"
msgstr "Público"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Public Profile"
msgstr "Perfil Público"
@@ -6503,8 +6592,8 @@ msgid "Quick Actions"
msgstr "Acciones rápidas"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Radio"
msgstr "Radio"
@@ -6517,11 +6606,11 @@ msgstr "Configuración de radio"
msgid "Radio values"
msgstr "Valores de radio"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Read only"
msgstr "Solo lectura"
@@ -6570,8 +6659,8 @@ msgstr "Se requiere reautenticación para firmar este campo"
msgid "Receives copy"
msgstr "Recibe copia"
-#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Recent activity"
msgstr "Actividad reciente"
@@ -6579,10 +6668,10 @@ msgstr "Actividad reciente"
msgid "Recent documents"
msgstr "Documentos recientes"
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: 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
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
@@ -6592,9 +6681,9 @@ msgid "Recipient"
msgstr "Destinatario"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Recipient action authentication"
msgstr "Autenticación de acción de destinatario"
@@ -6614,11 +6703,11 @@ msgstr "Correo electrónico de solicitud de firma de destinatario"
msgid "Recipient updated"
msgstr "Destinatario actualizado"
-#: 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
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Recipients"
msgstr "Destinatarios"
@@ -6662,10 +6751,10 @@ msgstr "Rojo"
msgid "Redirect URI"
msgstr "URI de redirección"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Redirect URL"
msgstr "URL de redirección"
@@ -6673,8 +6762,8 @@ msgstr "URL de redirección"
msgid "Redirecting"
msgstr "Redireccionando"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Registration Successful"
msgstr "Registro exitoso"
@@ -6682,19 +6771,19 @@ msgstr "Registro exitoso"
msgid "Reject"
msgstr "Rechazar"
-#: 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
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.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
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
msgid "Reject Document"
msgstr "Rechazar Documento"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
msgid "Rejected"
msgstr "Rejected"
@@ -6707,8 +6796,8 @@ msgstr "Rechazo Confirmado"
msgid "Rejection reason: {reason}"
msgstr "Razón del rechazo: {reason}"
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
msgid "Reload"
msgstr "Recargar"
@@ -6734,34 +6823,34 @@ msgstr "Recordatorio: Por favor {recipientActionVerb} este documento"
msgid "Reminder: Please {recipientActionVerb} your document"
msgstr "Recordatorio: Por favor {recipientActionVerb} tu documento"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/avatar-image.tsx
-#: apps/remix/app/components/dialogs/template-use-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-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Remove"
msgstr "Eliminar"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Remove email domain"
msgstr "Eliminar dominio de correo electrónico"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Remove organisation group"
msgstr "Eliminar grupo de organización"
@@ -6773,13 +6862,13 @@ msgstr "Eliminar miembro de la organización"
msgid "Remove team email"
msgstr "Eliminar correo electrónico del equipo"
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Remove team member"
msgstr "Eliminar miembro del equipo"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Repeat Password"
msgstr "Repetir contraseña"
@@ -6787,22 +6876,26 @@ msgstr "Repetir contraseña"
msgid "Reply to email"
msgstr "Responder al correo"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Reply To Email"
msgstr "Responder al correo"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Request"
+msgstr "Solicitud"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Requesting Organisation"
msgstr "Organización solicitante"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Required field"
msgstr "Campo obligatorio"
@@ -6818,8 +6911,9 @@ msgstr "Ámbitos requeridos"
msgid "Reseal document"
msgstr "Re-sellar documento"
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Resend"
msgstr "Reenviar"
@@ -6832,9 +6926,9 @@ msgstr "Reenviar código"
msgid "Resend Confirmation Email"
msgstr "Reenviar correo de confirmación"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Resend Document"
msgstr "Reenviar documento"
@@ -6842,9 +6936,9 @@ msgstr "Reenviar documento"
msgid "Resend verification"
msgstr "Reenviar verificación"
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Reset"
msgstr "Restablecer"
@@ -6857,9 +6951,9 @@ msgstr "Restablecer 2FA"
msgid "Reset email sent"
msgstr "Correo de restablecimiento enviado"
-#: 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
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Reset Password"
msgstr "Restablecer contraseña"
@@ -6884,6 +6978,18 @@ msgstr "Resolver"
msgid "Resolve payment"
msgstr "Resolver pago"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response"
+msgstr "Respuesta"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Code"
+msgstr "Código de respuesta"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Headers"
+msgstr "Encabezados de respuesta"
+
#: 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 "Ten la seguridad de que tu documento es estrictamente confidencial y nunca será compartido. Solo se destacará tu experiencia de firma. ¡Comparte tu tarjeta de firma personalizada para mostrar tu firma!"
@@ -6904,11 +7010,11 @@ msgstr "Reintentado"
msgid "Retry"
msgstr "Reintentar"
-#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "Return"
msgstr "Regresar"
@@ -6924,8 +7030,8 @@ msgstr "Regresar a documentos"
msgid "Return to Home"
msgstr "Regresar a la página de inicio"
-#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
msgid "Return to sign in"
msgstr "Regresar para iniciar sesión"
@@ -6937,8 +7043,8 @@ msgstr "Regresar a plantillas"
msgid "Review request"
msgstr "Revisar solicitud"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Revoke"
msgstr "Revocar"
@@ -6956,24 +7062,24 @@ msgstr "Revocar todas las sesiones"
msgid "Right"
msgstr "Derecha"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Role"
msgstr "Rol"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Roles"
msgstr "Roles"
@@ -6981,11 +7087,11 @@ msgstr "Roles"
msgid "Rows per page"
msgstr "Filas por página"
-#: 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/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
msgid "Save"
msgstr "Guardar"
@@ -7004,12 +7110,13 @@ msgstr "Guardar plantilla"
msgid "Sealing job started"
msgstr "Se inició el trabajo de sellado"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
-#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Search"
msgstr "Buscar"
@@ -7025,6 +7132,10 @@ msgstr "Buscar por ID de reclamo o nombre"
msgid "Search by document title"
msgstr "Buscar por título del documento"
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Search by ID"
+msgstr "Buscar por ID"
+
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
msgid "Search by name or email"
msgstr "Buscar por nombre o correo electrónico"
@@ -7041,11 +7152,11 @@ msgstr "Buscar por nombre de organización"
msgid "Search documents..."
msgstr "Buscar documentos..."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "Search folders..."
msgstr "Buscar carpetas..."
@@ -7057,10 +7168,10 @@ msgstr "Buscar idiomas..."
msgid "Secret"
msgstr "Secreto"
-#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Security"
msgstr "Seguridad"
@@ -7073,8 +7184,8 @@ msgid "See the background jobs tab for the status"
msgstr "Consulte la pestaña de trabajos en segundo plano para el estado"
#: 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
+#: packages/ui/primitives/document-flow/types.ts
msgid "Select"
msgstr "Seleccionar"
@@ -7094,6 +7205,10 @@ msgstr "Seleccionar un plan"
msgid "Select a plan to continue"
msgstr "Selecciona un plan para continuar"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Select a recipient"
+msgstr "Selecciona un destinatario"
+
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
msgid "Select a team to view its dashboard"
msgstr "Selecciona un equipo para ver su panel de control"
@@ -7114,6 +7229,10 @@ msgstr "Seleccione una zona horaria"
msgid "Select access methods"
msgstr "Seleccione métodos de acceso"
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+msgid "Select an event type"
+msgstr "Selecciona un tipo de evento"
+
#: apps/remix/app/components/dialogs/sign-field-dropdown-dialog.tsx
#: packages/ui/primitives/combobox.tsx
msgid "Select an option"
@@ -7128,8 +7247,8 @@ msgstr "Seleccione una organización para ver los equipos"
msgid "Select at least"
msgstr "Seleccionar al menos"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "Select authentication methods"
msgstr "Seleccionar métodos de autenticación"
@@ -7142,8 +7261,8 @@ msgstr "Seleccionar opción predeterminada"
msgid "Select default role"
msgstr "Seleccione el rol predeterminado"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Select direction"
msgstr "Seleccione dirección"
@@ -7160,9 +7279,9 @@ msgstr "Seleccionar grupos de miembros para añadir al equipo."
msgid "Select groups to add to this team"
msgstr "Seleccionar grupos para añadir a este equipo"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Select members"
msgstr "Seleccione miembros"
@@ -7182,11 +7301,20 @@ msgstr "Seleccionar una opción"
msgid "Select passkey"
msgstr "Seleccionar clave de acceso"
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Select signature types"
msgstr "Seleccione tipos de firma"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Select text align"
msgstr "Seleccionar alineación de texto"
@@ -7207,6 +7335,10 @@ msgstr "Seleccione a los miembros para incluir en este grupo"
msgid "Select triggers"
msgstr "Seleccionar activaciones"
+#: packages/ui/primitives/multi-select-combobox.tsx
+msgid "Select values..."
+msgstr "Seleccionar valores..."
+
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Select vertical align"
msgstr "Seleccionar alineación vertical"
@@ -7215,20 +7347,20 @@ msgstr "Seleccionar alineación vertical"
msgid "Select visibility"
msgstr "Seleccionar visibilidad"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Selected Recipient"
msgstr "Destinatario seleccionado"
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send"
msgstr "Enviar"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Send a test webhook with sample data to verify your integration is working correctly."
msgstr "Envía un webhook de prueba con datos de muestra para verificar que tu integración esté funcionando correctamente."
@@ -7241,9 +7373,9 @@ msgstr "Enviar correo de confirmación"
msgid "Send document"
msgstr "Enviar documento"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send Document"
msgstr "Enviar documento"
@@ -7288,8 +7420,8 @@ msgstr "Enviar correo electrónico de destinatario firmado"
msgid "Send recipient signing request email"
msgstr "Enviar correo electrónico de solicitud de firma de destinatario"
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
msgid "Send reminder"
msgstr "Enviar recordatorio"
@@ -7297,12 +7429,8 @@ msgstr "Enviar recordatorio"
msgid "Send reminders to the following recipients"
msgstr "Enviar recordatorios a los siguientes destinatarios"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
-msgid "Send Test Webhook"
-msgstr "Enviar webhook de prueba"
-
-#: apps/remix/app/components/tables/inbox-table.tsx
#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Sender"
msgstr "Remitente"
@@ -7314,8 +7442,10 @@ msgstr "Enviando correo de restablecimiento..."
msgid "Sending..."
msgstr "Enviando..."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Sent"
msgstr "Enviado"
@@ -7339,15 +7469,15 @@ msgstr "Configura las propiedades de tu documento y la información del destinat
msgid "Set up your template properties and recipient information"
msgstr "Configura las propiedades de tu plantilla y la información del destinatario"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/_layout.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/app-nav-mobile.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
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
msgid "Settings"
msgstr "Configuraciones"
@@ -7355,17 +7485,14 @@ msgstr "Configuraciones"
msgid "Setup"
msgstr "Configuración"
-#: 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/tables/documents-table-action-dropdown.tsx
+#: packages/ui/components/document/document-share-button.tsx
msgid "Share"
msgstr "Compartir"
-#: packages/ui/components/document/document-share-button.tsx
-msgid "Share Signature Card"
-msgstr "Compartir tarjeta de firma"
-
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Share Signing Card"
msgstr "Compartir tarjeta de firma"
@@ -7382,8 +7509,8 @@ msgid "Show"
msgstr "Mostrar"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Show advanced settings"
msgstr "Mostrar configuraciones avanzadas"
@@ -7391,26 +7518,26 @@ msgstr "Mostrar configuraciones avanzadas"
msgid "Show templates in your public profile for your audience to sign and get started quickly"
msgstr "Mostrar plantillas en tu perfil público para que tu audiencia firme y comience rápidamente"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/components/tables/inbox-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/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-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
-#: apps/remix/app/components/general/document/document-page-view-button.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/user-profile-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Sign"
msgstr "Firmar"
@@ -7435,15 +7562,15 @@ msgstr "Firmar como<0>{0} <1>({1})1>0>"
msgid "Sign Checkbox Field"
msgstr "Campo de casilla de verificación de firma"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign document"
msgstr "Firmar documento"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Sign Document"
msgstr "Firmar Documento"
@@ -7464,16 +7591,16 @@ msgstr "Campo de firma"
msgid "Sign Here"
msgstr "Firmar aquí"
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: packages/email/template-components/template-reset-password.tsx
msgid "Sign In"
msgstr "Iniciar sesión"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Sign in to your account"
msgstr "Inicia sesión en tu cuenta"
@@ -7489,9 +7616,9 @@ msgstr "Nombre de firma"
msgid "Sign Number Field"
msgstr "Campo de número de firma"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Sign Out"
msgstr "Cerrar sesión"
@@ -7503,8 +7630,8 @@ msgstr "Campo de firma Firma"
msgid "Sign Text Field"
msgstr "Campo de texto de firma"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign the document to complete the process."
msgstr "Firma el documento para completar el proceso."
@@ -7537,21 +7664,21 @@ msgstr "Firme su nombre completo en el campo"
msgid "Sign your initials into the field"
msgstr "Firme sus iniciales en el campo"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Signature"
msgstr "Firma"
@@ -7579,15 +7706,10 @@ msgstr "Tipos de firma"
msgid "Signatures Collected"
msgstr "Firmas recolectadas"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/ui/components/document/document-read-only-fields.tsx
-msgid "Signed"
-msgstr "Firmado"
-
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-msgctxt "Signed document (adjective)"
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Signed"
msgstr "Firmado"
@@ -7596,6 +7718,11 @@ msgctxt "Recipient role actioned"
msgid "Signed"
msgstr "Firmado"
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+msgctxt "Signed document (adjective)"
+msgid "Signed"
+msgstr "Firmado"
+
#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Signer"
msgstr "Firmante"
@@ -7641,8 +7768,8 @@ msgstr "Firmando para"
msgid "Signing in..."
msgstr "Iniciando sesión..."
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Signing Links"
msgstr "Enlaces de firma"
@@ -7651,8 +7778,8 @@ msgid "Signing links have been generated for this document."
msgstr "Se han generado enlaces de firma para este documento."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Signing order is enabled."
msgstr "El orden de firma está habilitado."
@@ -7669,8 +7796,8 @@ msgstr "Desde {0}"
msgid "Site Banner"
msgstr "Banner del sitio"
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "Site Settings"
msgstr "Configuraciones del sitio"
@@ -7678,50 +7805,51 @@ msgstr "Configuraciones del sitio"
msgid "Some signers have not been assigned a signature field. Please assign at least 1 signature field to each signer before proceeding."
msgstr "Algunos firmantes no han sido asignados a un campo de firma. Asigne al menos 1 campo de firma a cada firmante antes de continuar."
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/general/billing-plans.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.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-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/embed/embed-document-signing-page-v1.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-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/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-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
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-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-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-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-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
+#: apps/remix/app/components/general/document/document-audit-log-download-button.tsx
+#: apps/remix/app/components/general/document/document-certificate-download-button.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
#: packages/ui/components/document/document-share-button.tsx
msgid "Something went wrong"
msgstr "Algo salió mal"
@@ -7731,10 +7859,10 @@ msgstr "Algo salió mal"
msgid "Something went wrong while attempting to verify your email address for <0>{0}0>. Please try again later."
msgstr "Algo salió mal al intentar verificar tu dirección de correo electrónico para <0>{0}0>. Por favor, intenta de nuevo más tarde."
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Something went wrong while loading the document."
msgstr "Algo salió mal al cargar el documento."
@@ -7759,10 +7887,10 @@ msgstr "Algo salió mal al actualizar la suscripción de facturación del equipo
msgid "Something went wrong while uploading this file"
msgstr "Algo salió mal al cargar este archivo"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
msgid "Something went wrong!"
msgstr "¡Algo salió mal!"
@@ -7774,8 +7902,8 @@ msgstr "Algo salió mal."
msgid "Something went wrong. Please try again later."
msgstr "Algo salió mal. Por favor, inténtelo de nuevo más tarde."
-#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Something went wrong. Please try again or contact support."
msgstr "Algo salió mal. Por favor, intenta de nuevo o contacta al soporte."
@@ -7787,8 +7915,8 @@ msgstr "Lo sentimos, no pudimos descargar los registros de auditoría. Por favor
msgid "Sorry, we were unable to download the certificate. Please try again later."
msgstr "Lo sentimos, no pudimos descargar el certificado. Por favor, intenta de nuevo más tarde."
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Source"
msgstr "Fuente"
@@ -7804,16 +7932,19 @@ msgstr "SSO"
msgid "Stats"
msgstr "Estadísticas"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Status"
msgstr "Estado"
@@ -7840,14 +7971,14 @@ msgstr "Cliente de Stripe creado con éxito"
msgid "Stripe Customer ID"
msgstr "ID de Cliente de Stripe"
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Subject"
msgstr "Asunto"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Subject <0>(Optional)0>"
msgstr "Asunto <0>(Opcional)0>"
@@ -7866,8 +7997,8 @@ msgstr "Enviado"
msgid "Subscribe"
msgstr "Suscribirse"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Subscription"
msgstr "Suscripción"
@@ -7891,59 +8022,65 @@ msgstr "Reclamos de suscripción"
msgid "Subscription invalid"
msgstr "Suscripción inválida"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/verify-email-banner.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/organisation-update-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Subscription Status"
+msgstr "Estado de la suscripción"
+
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-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-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-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/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/verify-email-banner.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Success"
msgstr "Éxito"
@@ -7959,8 +8096,14 @@ msgstr "Creado con éxito: {successCount}"
msgid "Summary:"
msgstr "Resumen:"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+msgid "support"
+msgstr "soporte"
+
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "Support"
msgstr "Soporte"
@@ -7980,15 +8123,15 @@ msgstr "Sincronizar dominios de correo electrónico"
msgid "Sync failed, changes not saved"
msgstr "La sincronización falló, los cambios no se guardaron"
+#: packages/lib/utils/document-audit-logs.ts
+msgid "System auto inserted fields"
+msgstr "Campos insertados automáticamente por el sistema"
+
#: packages/lib/utils/document-audit-logs.ts
msgctxt "Audit log format"
msgid "System auto inserted fields"
msgstr "Campos auto insertados por el sistema"
-#: packages/lib/utils/document-audit-logs.ts
-msgid "System auto inserted fields"
-msgstr "Campos insertados automáticamente por el sistema"
-
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "System Requirements"
msgstr "Requisitos del Sistema"
@@ -7997,10 +8140,10 @@ msgstr "Requisitos del Sistema"
msgid "System Theme"
msgstr "Tema del sistema"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team"
msgstr "Equipo"
@@ -8017,8 +8160,8 @@ msgstr "Administrador del equipo"
msgid "Team Assignments"
msgstr "Asignaciones de equipo"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Team Count"
msgstr "Conteo de equipo"
@@ -8081,14 +8224,14 @@ msgstr "Miembro del equipo"
msgid "Team Members"
msgstr "Miembros del equipo"
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "Team members have been added."
msgstr "Se han añadido miembros del equipo."
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
msgid "Team Name"
msgstr "Nombre del equipo"
@@ -8105,9 +8248,9 @@ msgstr "Solo equipo"
msgid "Team only templates are not linked anywhere and are visible only to your team."
msgstr "Las plantillas solo para el equipo no están vinculadas en ningún lado y son visibles solo para tu equipo."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team Role"
msgstr "Rol de equipo"
@@ -8123,18 +8266,18 @@ msgstr "Configuraciones del equipo"
msgid "Team url"
msgstr "URL del equipo"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Team URL"
msgstr "URL del equipo"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
msgid "Teams"
msgstr "Equipos"
@@ -8146,13 +8289,13 @@ msgstr "Los equipos te ayudan a organizar tu trabajo y colaborar con otros. Crea
msgid "Teams that this organisation group is currently assigned to"
msgstr "Equipos a los que actualmente está asignado este grupo de organización"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/public-profile-template-manage-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.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/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
msgid "Template"
msgstr "Plantilla"
@@ -8217,17 +8360,17 @@ msgstr "Título de plantilla"
msgid "Template updated successfully"
msgstr "Plantilla actualizada con éxito"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Template uploaded"
msgstr "Plantilla subida"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.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
msgid "Templates"
msgstr "Plantillas"
@@ -8235,8 +8378,10 @@ msgstr "Plantillas"
msgid "Templates allow you to quickly generate documents with pre-filled recipients and fields."
msgstr "Las plantillas te permiten generar documentos rápidamente con destinatarios y campos prellenados."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Test"
+msgstr "Probar"
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Test Webhook"
msgstr "Prueba de Webhook"
@@ -8249,23 +8394,23 @@ msgstr "Fallo en el webhook de prueba"
msgid "Test webhook sent"
msgstr "Webhook de prueba enviado"
+#: 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/envelope-editor/envelope-editor-fields-drag-drop.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
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/types.ts
-#: packages/ui/primitives/document-flow/add-fields.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Text"
msgstr "Texto"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Text Align"
msgstr "Alineación de texto"
@@ -8325,14 +8470,14 @@ msgstr "El contenido que se mostrará en el banner, se permite HTML"
msgid "The default email to use when sending emails to recipients"
msgstr "Correo predeterminado para usar al enviar correos a los destinatarios"
-#: 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
+#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "The direct link has been copied to your clipboard"
msgstr "El enlace directo ha sido copiado a tu portapapeles"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "The display name for this email address"
msgstr "El nombre para mostrar para esta dirección de correo electrónico"
@@ -8352,8 +8497,8 @@ msgstr "El documento ahora está completado, por favor sigue cualquier instrucci
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 "El propietario del documento ha sido notificado de este rechazo. No se requiere ninguna acción adicional de su parte en este momento. El propietario del documento puede contactarlo con cualquier pregunta relacionada con este rechazo."
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "The document owner has been notified of your decision. They may contact you with further instructions if necessary."
msgstr "The document owner has been notified of your decision. They may contact you with further instructions if necessary."
@@ -8373,8 +8518,8 @@ msgstr "El documento se enviará inmediatamente a los destinatarios si esto est
msgid "The document you are looking for could not be found."
msgstr "No se pudo encontrar el documento que está buscando."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
msgid "The document you are looking for may have been removed, renamed or may have never existed."
msgstr "El documento que estás buscando puede haber sido eliminado, renombrado o quizás nunca existió."
@@ -8394,8 +8539,8 @@ msgstr "El dominio de correo electrónico que estás buscando puede haber sido e
msgid "The email or password provided is incorrect"
msgstr "El correo electrónico o la contraseña proporcionada es incorrecta"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The events that will trigger a webhook to be sent to your URL."
msgstr "Los eventos que activarán un webhook para ser enviado a tu URL."
@@ -8530,8 +8675,8 @@ msgid "The signer's name"
msgstr "El nombre del firmante"
#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "The signing link has been copied to your clipboard."
msgstr "El enlace de firma ha sido copiado a tu portapapeles."
@@ -8597,8 +8742,8 @@ msgstr "El tamaño de la fuente de la firma escrita."
msgid "The types of signatures that recipients are allowed to use when signing the document."
msgstr "Los tipos de firmas que los destinatarios pueden usar al firmar el documento."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The URL for Documenso to send webhook events to."
msgstr "La URL para Documenso para enviar eventos de webhook."
@@ -8614,7 +8759,7 @@ msgstr "La autenticación de dos factores del usuario se ha restablecido con éx
msgid "The webhook has been successfully deleted."
msgstr "El webhook ha sido eliminado con éxito."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The webhook has been updated successfully."
msgstr "El webhook ha sido actualizado con éxito."
@@ -8622,7 +8767,7 @@ msgstr "El webhook ha sido actualizado con éxito."
msgid "The webhook was successfully created."
msgstr "El webhook fue creado con éxito."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "The webhook you are looking for may have been removed, renamed or may have never existed."
msgstr "El webhook que estás buscando puede haber sido eliminado, renombrado o quizás nunca existió."
@@ -8666,9 +8811,9 @@ msgstr "Esta cuenta no ha sido verificada. Por favor, verifica tu cuenta antes d
msgid "This action is irreversible. Please ensure you have informed the user before proceeding."
msgstr "Esta acción es irreversible. Asegúrese de haber informado al usuario antes de proceder."
-#: 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
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "This action is not reversible. Please be certain."
msgstr "Esta acción no es reversible. Por favor, asegúrate."
@@ -8696,8 +8841,8 @@ msgstr "Este documento no se pudo eliminar en este momento. Por favor, inténtal
msgid "This document could not be downloaded at this time. Please try again."
msgstr "Este documento no pudo ser descargado en este momento. Por favor, inténtelo de nuevo."
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
msgid "This document could not be duplicated at this time. Please try again."
msgstr "Este documento no se pudo duplicar en este momento. Por favor, inténtalo de nuevo."
@@ -8705,6 +8850,7 @@ msgstr "Este documento no se pudo duplicar en este momento. Por favor, inténtal
msgid "This document could not be re-sent at this time. Please try again."
msgstr "Este documento no se pudo reenviar en este momento. Por favor, inténtalo de nuevo."
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
msgid "This document has already been sent to this recipient. You can no longer edit this recipient."
msgstr "Este documento ya ha sido enviado a este destinatario. Ya no puede editar a este destinatario."
@@ -8873,9 +9019,9 @@ msgstr "Este token es inválido o ha expirado. No se necesita ninguna acción."
msgid "This token is invalid or has expired. Please contact your team for a new invitation."
msgstr "Este token es inválido o ha expirado. Por favor, contacta a tu equipo para una nueva invitación."
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "This URL is already in use."
msgstr "Esta URL ya está en uso."
@@ -8915,21 +9061,21 @@ msgstr "Hora"
msgid "Time zone"
msgstr "Zona horaria"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Time Zone"
msgstr "Zona horaria"
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Title"
msgstr "Título"
@@ -8964,12 +9110,12 @@ msgid "To change the email you must remove and add a new email address."
msgstr "Para cambiar el correo electrónico debes eliminar y añadir una nueva dirección de correo electrónico."
#. placeholder {0}: user.email
-#. placeholder {0}: userToEnable.email
#. placeholder {0}: userToDisable.email
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#. placeholder {0}: userToEnable.email
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "To confirm, please enter the accounts email address <0/>({0})."
msgstr "Para confirmar, por favor ingresa la dirección de correo electrónico de la cuenta <0/>({0})."
@@ -8981,8 +9127,8 @@ msgstr "Para confirmar, por favor ingresa la razón"
msgid "To enable two-factor authentication, scan the following QR code using your authenticator app."
msgstr "Para habilitar la autenticación de dos factores, escanea el siguiente código QR usando tu aplicación de autenticador."
-#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
msgid "To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox."
msgstr "Para acceder a tu cuenta, por favor confirma tu dirección de correo electrónico haciendo clic en el enlace de confirmación de tu bandeja de entrada."
@@ -8997,8 +9143,8 @@ msgstr "Para marcar este documento como visto, necesitas estar conectado."
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "To proceed further, please set at least one value for the {0} field."
msgstr "Para continuar, por favor establezca al menos un valor para el campo {0}."
@@ -9074,8 +9220,8 @@ msgstr "Total de firmantes que se registraron"
msgid "Total Users"
msgstr "Total de usuarios"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Triggers"
msgstr "Desencadenadores"
@@ -9087,8 +9233,8 @@ msgstr "Autenticación de dos factores"
msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app."
msgstr "Los códigos de recuperación de autenticación de dos factores se utilizan para acceder a tu cuenta en caso de perder el acceso a tu aplicación de autenticador."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Two-Factor Authentication"
msgstr "Autenticación de dos factores"
@@ -9108,21 +9254,25 @@ msgstr "La autenticación de dos factores ha sido desactivada para tu cuenta. Ya
msgid "Two-Factor Re-Authentication"
msgstr "Re-autenticación de Doble Factor"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Type"
msgstr "Tipo"
#: packages/lib/constants/document.ts
-msgctxt "Type signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Type signature"
msgid "Type"
-msgstr "Tipo"
+msgstr "Escribir"
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Type a command or search..."
msgstr "Escribe un comando o busca..."
+#: packages/ui/primitives/signature-pad/signature-pad-type.tsx
+msgid "Type your signature"
+msgstr "Escribe tu firma"
+
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
msgid "Typed signatures are not allowed. Please draw your signature."
msgstr "No se permiten firmas mecanografiadas. Por favor, dibuje su firma."
@@ -9209,11 +9359,11 @@ msgstr "No se pudo configurar la autenticación de dos factores"
msgid "Unable to sign in"
msgstr "No se pudo iniciar sesión"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Unauthorized"
msgstr "No autorizado"
@@ -9221,15 +9371,15 @@ msgstr "No autorizado"
msgid "Uncompleted"
msgstr "Incompleto"
-#: 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
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.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
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Unknown"
msgstr "Desconocido"
@@ -9258,27 +9408,28 @@ msgstr "Desanclar"
msgid "Untitled Group"
msgstr "Grupo sin título"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: 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/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Update"
@@ -9288,8 +9439,8 @@ msgstr "Actualizar"
msgid "Update Banner"
msgstr "Actualizar banner"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Update Billing"
msgstr "Actualizar facturación"
@@ -9313,9 +9464,9 @@ msgstr "Actualizar Campos"
msgid "Update organisation"
msgstr "Actualizar organización"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "Update organisation member"
msgstr "Actualizar miembro de la organización"
@@ -9331,16 +9482,16 @@ msgstr "Actualizar contraseña"
msgid "Update profile"
msgstr "Actualizar perfil"
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
msgid "Update Recipient"
msgstr "Actualizar destinatario"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Update role"
msgstr "Actualizar rol"
@@ -9375,10 +9526,6 @@ msgstr "Actualizar el rol y agregar campos según sea necesario para el destinat
msgid "Update user"
msgstr "Actualizar usuario"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "Update webhook"
-msgstr "Actualizar webhook"
-
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
msgid "Updated {organisationMemberName} to {roleLabel}."
msgstr "Actualizado {organisationMemberName} a {roleLabel}."
@@ -9391,8 +9538,8 @@ msgstr "Actualizando contraseña..."
msgid "Updating Your Information"
msgstr "Actualizando Su Información"
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "Upgrade"
msgstr "Actualizar"
@@ -9406,12 +9553,12 @@ msgid "Upgrade your plan to upload more documents"
msgstr "Actualiza tu plan para cargar más documentos"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
msgid "Upload"
msgstr "Subir"
#: packages/lib/constants/document.ts
-msgctxt "Upload signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Upload signature"
msgid "Upload"
msgstr "Subir"
@@ -9443,8 +9590,8 @@ msgstr "Subir documento personalizado"
msgid "Upload disabled"
msgstr "Subida desactivada"
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: packages/ui/primitives/document-upload-button.tsx
msgid "Upload Document"
msgstr "Cargar Documento"
@@ -9454,8 +9601,8 @@ msgid "Upload documents and add recipients"
msgstr "Suba documentos y añada destinatarios"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Upload failed"
msgstr "Subida fallida"
@@ -9476,8 +9623,8 @@ msgstr "Cargar Documento Plantilla"
msgid "Upload your brand logo (max 5MB, JPG, PNG, or WebP)"
msgstr "Carga el logo de tu marca (máx 5MB, JPG, PNG o WebP)"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Uploaded by"
msgstr "Subido por"
@@ -9506,18 +9653,18 @@ msgstr "URL"
msgid "Use"
msgstr "Usar"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Authenticator"
msgstr "Usar Autenticador"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Backup Code"
msgstr "Usar Código de Respaldo"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
msgid "Use Template"
msgstr "Usar Plantilla"
@@ -9529,8 +9676,8 @@ msgstr "Use su aplicación de autenticación para generar un código"
msgid "Use your passkey for authentication"
msgstr "Utilice su clave de acceso para la autenticación"
-#: apps/remix/app/components/tables/internal-audit-log-table.tsx
#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/internal-audit-log-table.tsx
msgid "User"
msgstr "Usuario"
@@ -9546,10 +9693,10 @@ msgstr "El usuario no tiene contraseña."
msgid "User not found"
msgstr "Usuario no encontrado"
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "User not found."
msgstr "Usuario no encontrado."
@@ -9569,15 +9716,15 @@ msgstr "Configuraciones del usuario"
msgid "User with this email already exists. Please use a different email address."
msgstr "Un usuario con este correo electrónico ya existe. Por favor, use una dirección de correo diferente."
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
msgid "Users"
msgstr "Usuarios"
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Validation"
msgstr "Validación"
@@ -9585,9 +9732,9 @@ msgstr "Validación"
msgid "Validation failed"
msgstr "Validación fallida"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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 "Value"
@@ -9629,8 +9776,8 @@ msgstr "Verifica tu dirección de correo electrónico"
msgid "Verify your email address to unlock all features."
msgstr "Verifica tu dirección de correo electrónico para desbloquear todas las funciones."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Verify your email to upload documents."
msgstr "Verifica tu correo electrónico para subir documentos."
@@ -9638,8 +9785,8 @@ msgstr "Verifica tu correo electrónico para subir documentos."
msgid "Verify your team email address"
msgstr "Verifica tu dirección de correo electrónico del equipo"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Vertical"
msgstr "Vertical"
@@ -9648,15 +9795,15 @@ msgstr "Vertical"
msgid "Vertical Align"
msgstr "Alineación vertical"
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/inbox-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
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.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/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
msgid "View"
msgstr "Ver"
@@ -9689,13 +9836,13 @@ msgstr "Ver todos los documentos relacionados"
msgid "View all security activity related to your account."
msgstr "Ver toda la actividad de seguridad relacionada con tu cuenta."
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "View and manage all active sessions for your account."
msgstr "Ver y gestionar todas las sesiones activas de tu cuenta."
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "View and manage all login methods linked to your account."
msgstr "Vea y gestione todos los métodos de inicio de sesión vinculados a su cuenta."
@@ -9711,14 +9858,14 @@ msgstr "Ver registros DNS"
msgid "View document"
msgstr "Ver documento"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.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
-#: packages/email/template-components/template-document-rejected.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: packages/email/template-components/template-document-invite.tsx
+#: packages/email/template-components/template-document-rejected.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
msgid "View Document"
msgstr "Ver Documento"
@@ -9738,6 +9885,10 @@ msgstr "Ver documento para firmar"
msgid "View documents associated with this email"
msgstr "Ver documentos asociados con este correo electrónico"
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+msgid "View insights"
+msgstr "Ver insights"
+
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
msgid "View invites"
msgstr "Ver invitaciones"
@@ -9771,9 +9922,9 @@ msgstr "Ver equipos"
msgid "View the DNS records for this email domain"
msgstr "Ver los registros DNS para este dominio de correo electrónico"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Viewed"
msgstr "Visto"
@@ -9821,8 +9972,8 @@ msgstr "Esperando a que otros completen la firma."
msgid "Waiting for others to sign"
msgstr "Esperando a que otros firmen"
-#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
#: apps/remix/app/components/embed/embed-document-waiting-for-turn.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
msgid "Waiting for Your Turn"
msgstr "Esperando tu turno"
@@ -9838,17 +9989,17 @@ msgstr "¿Quieres tu propio perfil público?"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
msgid "Warning: Assistant as last signer"
msgstr "Advertencia: Asistente como último firmante"
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
msgstr "No podemos proceder al portal de facturación en este momento. Por favor, inténtalo de nuevo o contacta con soporte."
@@ -9895,12 +10046,12 @@ msgstr "Encontramos un error al eliminar el enlace directo de la plantilla. Por
msgid "We encountered an error while sending the test webhook. Please check your endpoint and try again."
msgstr "Encontramos un error mientras enviábamos el webhook de prueba. Por favor, verifica tu terminal e inténtalo de nuevo."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "We encountered an error while updating the webhook. Please try again later."
msgstr "Encontramos un error al actualizar el webhook. Por favor, inténtalo de nuevo más tarde."
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "We encountered an unknown error while attempting to add team members. Please try again later."
msgstr "Encontramos un error desconocido al intentar añadir miembros al equipo. Por favor, intente nuevamente más tarde."
@@ -9916,8 +10067,8 @@ msgstr "Encontramos un error desconocido al intentar añadir tu dominio. Por fav
msgid "We encountered an unknown error while attempting to create a group. Please try again later."
msgstr "Nos encontramos con un error desconocido al intentar crear un grupo. Por favor, intente nuevamente más tarde."
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "We encountered an unknown error while attempting to create a organisation. Please try again later."
msgstr "Nos encontramos con un error desconocido al intentar crear una organización. Por favor, intente nuevamente más tarde."
@@ -9973,8 +10124,8 @@ msgstr "Encontramos un error desconocido al intentar eliminar este correo. Por f
msgid "We encountered an unknown error while attempting to remove this envelope item. Please try again later."
msgstr "Se encontró un error desconocido mientras se intentaba eliminar este elemento de sobre. Por favor, inténtelo de nuevo más tarde."
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this group. Please try again later."
msgstr "Cambiamos con un error desconocido al intentar eliminar este grupo. Por favor, intente nuevamente más tarde."
@@ -9982,8 +10133,8 @@ msgstr "Cambiamos con un error desconocido al intentar eliminar este grupo. Por
msgid "We encountered an unknown error while attempting to remove this template from your profile. Please try again later."
msgstr "Encontramos un error desconocido al intentar eliminar esta plantilla de tu perfil. Por favor, inténtalo de nuevo más tarde."
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this user. Please try again later."
msgstr "Encontramos un error desconocido al intentar eliminar a este usuario. Por favor, inténtalo de nuevo más tarde."
@@ -10000,10 +10151,10 @@ msgstr "Encontramos un error desconocido al intentar restablecer tu contraseña.
msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support."
msgstr "Encontramos un error desconocido al intentar revocar el acceso. Por favor, inténtalo de nuevo o contacta con soporte."
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
msgid "We encountered an unknown error while attempting to sign you In. Please try again later."
msgstr "Encontramos un error desconocido al intentar iniciar sesión. Por favor, inténtalo de nuevo más tarde."
@@ -10025,13 +10176,13 @@ msgstr "Se encontró un error desconocido mientras se intentaba actualizar el so
msgid "We encountered an unknown error while attempting to update the template. Please try again later."
msgstr "Encontramos un error desconocido al intentar actualizar la plantilla. Por favor, inténtalo de nuevo más tarde."
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this organisation member. Please try again later."
msgstr "Tuvimos un error desconocido al intentar actualizar este miembro de la organización. Por favor, intente nuevamente más tarde."
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this team member. Please try again later."
msgstr "Encontramos un error desconocido al intentar actualizar a este miembro del equipo. Por favor, inténtalo de nuevo más tarde."
@@ -10039,8 +10190,8 @@ msgstr "Encontramos un error desconocido al intentar actualizar a este miembro d
msgid "We encountered an unknown error while attempting to update your organisation. Please try again later."
msgstr "Tuvimos un error desconocido al intentar actualizar tu organización. Por favor, intente nuevamente más tarde."
-#: apps/remix/app/components/forms/password.tsx
#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
msgid "We encountered an unknown error while attempting to update your password. Please try again later."
msgstr "Encontramos un error desconocido al intentar actualizar tu contraseña. Por favor, inténtalo de nuevo más tarde."
@@ -10084,9 +10235,9 @@ msgstr "No pudimos crear su cuenta. Revise la información que proporcionó e in
msgid "We were unable to disable two-factor authentication for your account. Please ensure that you have entered your password and backup code correctly and try again."
msgstr "No pudimos desactivar la autenticación de dos factores para tu cuenta. Asegúrate de haber ingresado correctamente tu contraseña y código de respaldo e inténtalo de nuevo."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "We were unable to log you out at this time."
msgstr "No pudimos cerrar sesión en este momento."
@@ -10099,11 +10250,11 @@ msgstr "No pudimos configurar tu perfil público como público. Por favor, inté
msgid "We were unable to setup two-factor authentication for your account. Please ensure that you have entered your code correctly and try again."
msgstr "No pudimos configurar la autenticación de dos factores para tu cuenta. Asegúrate de haber ingresado correctamente tu código e inténtalo de nuevo."
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
msgid "We were unable to submit this document at this time. Please try again later."
msgstr "No pudimos enviar este documento en este momento. Por favor, inténtalo de nuevo más tarde."
@@ -10122,8 +10273,8 @@ msgstr "No pudimos actualizar tus preferencias de documento en este momento, por
msgid "We were unable to update your email preferences at this time, please try again later"
msgstr "No pudimos actualizar tus preferencias de correo electrónico en este momento, por favor intenta de nuevo más tarde."
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "We were unable to verify your details. Please try again or contact support"
msgstr "No pudimos verificar tus datos. Por favor, inténtalo de nuevo o contacta con soporte"
@@ -10135,14 +10286,14 @@ msgstr "No pudimos verificar tu correo electrónico en este momento."
msgid "We were unable to verify your email. If your email is not verified already, please try again."
msgstr "No pudimos verificar tu correo electrónico. Si tu correo electrónico no está verificado ya, por favor inténtalo de nuevo."
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We will generate signing links for you, which you can send to the recipients through your method of choice."
msgstr "Generaremos enlaces de firma para ti, que podrás enviar a los destinatarios a través de tu método preferido."
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We won't send anything to notify recipients."
msgstr "No enviaremos nada para notificar a los destinatarios."
@@ -10155,8 +10306,8 @@ msgstr "Nos pondremos en contacto contigo lo antes posible, a través de correo
msgid "We'll send a 6-digit code to your email"
msgstr "Enviaremos un código de 6 dígitos a su correo electrónico"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
msgid "We're all empty"
msgstr "No hay nada aquí"
@@ -10176,6 +10327,11 @@ msgstr "Hemos enviado un código de verificación de 6 dígitos a su correo elec
msgid "We've sent a confirmation email to <0>{email}0>. Please check your inbox and click the link in the email to verify your account."
msgstr "Hemos enviado un correo electrónico de confirmación a <0>{email}0>. Por favor, revisa tu bandeja de entrada y haz clic en el enlace del correo electrónico para verificar tu cuenta."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Webhook"
+msgstr "Webhook"
+
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
msgid "Webhook created"
msgstr "Webhook creado"
@@ -10184,23 +10340,31 @@ msgstr "Webhook creado"
msgid "Webhook deleted"
msgstr "Webhook eliminado"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook Details"
+msgstr "Detalles del webhook"
+
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Webhook not found"
msgstr "Webhook no encontrado"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook successfully sent"
+msgstr "Webhook enviado correctamente"
+
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Webhook updated"
msgstr "Webhook actualizado"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Webhook URL"
msgstr "URL del Webhook"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Webhooks"
msgstr "Webhooks"
@@ -10236,10 +10400,10 @@ msgstr "¿Estabas intentando editar este documento en su lugar?"
msgid "What you can do with teams:"
msgstr "Lo que puedes hacer con los equipos:"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "When enabled, signers can choose who should sign next in the sequence instead of following the predefined order."
msgstr "Cuando está habilitado, los firmantes pueden elegir quién debe firmar a continuación en la secuencia en lugar de seguir el orden predefinido."
@@ -10279,20 +10443,20 @@ msgstr "Retirar Consentimiento"
msgid "Write a description to display on your public profile"
msgstr "Escribe una descripción para mostrar en tu perfil público"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Yearly"
msgstr "Anual"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Yes"
msgstr "Sí"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: packages/lib/utils/document-audit-logs.ts
msgid "You"
msgstr "Tú"
@@ -10360,10 +10524,10 @@ msgstr "Está a punto de eliminar el siguiente documento y todos los campos asoc
msgid "You are about to remove the following email from <0>{0}0>."
msgstr "Estás a punto de eliminar el siguiente correo de <0>{0}0>."
-#. placeholder {0}: team.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#. placeholder {0}: team.name
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "You are about to remove the following group from <0>{0}0>."
msgstr "Estás a punto de eliminar el siguiente grupo de <0>{0}0>."
@@ -10403,8 +10567,8 @@ msgstr "Actualmente estás actualizando <0>{0}0>"
msgid "You are currently updating <0>{memberName}.0>"
msgstr "Actualmente estás actualizando a <0>{memberName}.0>"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "You are currently updating <0>{organisationMemberName}.0>"
msgstr "Actualmente estás actualizando a <0>{organisationMemberName}.0>"
@@ -10487,8 +10651,8 @@ msgid "You can view the document and its status by clicking the button below."
msgstr "Puede ver el documento y su estado haciendo clic en el botón de abajo."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "You cannot add assistants when signing order is disabled."
msgstr "No puedes añadir asistentes cuando el orden de firma está deshabilitado."
@@ -10516,21 +10680,21 @@ msgstr "No puedes modificar a un miembro del equipo que tenga un rol más alto q
msgid "You cannot remove members from this team if the inherit member feature is enabled."
msgstr "No puedes eliminar miembros de este equipo si la función de heredar miembros está habilitada."
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "You cannot upload documents at this time."
msgstr "No puede cargar documentos en este momento."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload encrypted PDFs"
msgstr "No puedes subir PDFs encriptados"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload more than {maximumEnvelopeItemCount} items per envelope."
msgstr "No puede subir más de {maximumEnvelopeItemCount} elementos por sobre."
@@ -10546,6 +10710,10 @@ msgstr "Actualmente no tienes acceso a ningún equipo dentro de esta organizaci
msgid "You do not have permission to create a token for this team"
msgstr "No tiene permiso para crear un token para este equipo"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "You don't manage billing for any organisations."
+msgstr "No gestionas la facturación de ninguna organización."
+
#: packages/email/template-components/template-document-cancel.tsx
msgid "You don't need to sign it anymore."
msgstr "Ya no necesitas firmarlo."
@@ -10574,8 +10742,8 @@ msgstr "Te han invitado a unirte a {0} en Documenso"
msgid "You have been invited to join the following organisation"
msgstr "Has sido invitado a unirte a la siguiente organización"
-#: packages/lib/server-only/recipient/set-document-recipients.ts
#: packages/lib/server-only/recipient/delete-envelope-recipient.ts
+#: packages/lib/server-only/recipient/set-document-recipients.ts
msgid "You have been removed from a document"
msgstr "Te han eliminado de un documento"
@@ -10589,8 +10757,8 @@ msgid "You have declined the invitation from <0>{0}0> to join their organisati
msgstr "Has rechazado la invitación de <0>{0}0> para unirte a su organización."
#. placeholder {0}: `"${envelope.title}"`
-#: packages/lib/server-only/document/resend-document.ts
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
+#: packages/lib/server-only/document/resend-document.ts
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
msgstr "Has iniciado el documento {0} que requiere que {recipientActionVerb}."
@@ -10606,9 +10774,9 @@ msgstr "Aún no has creado plantillas. Para crear una plantilla, por favor carga
msgid "You have not yet created or received any documents. To create a document please upload one."
msgstr "Aún no has creado ni recibido documentos. Para crear un documento, por favor carga uno."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached the limit of the number of files per envelope"
msgstr "Has alcanzado el límite de archivos por sobre"
@@ -10621,14 +10789,14 @@ msgstr "Has alcanzado el límite máximo de {0} plantillas directas. <0>¡Actual
msgid "You have reached the maximum number of teams for your plan. Please contact sales at <0>{SUPPORT_EMAIL}0> if you would like to adjust your plan."
msgstr "Has alcanzado el número máximo de equipos para tu plan. Por favor, contacta con ventas en <0>{SUPPORT_EMAIL}0> si deseas ajustar tu plan."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached your document limit for this month. Please upgrade your plan."
msgstr "Ha alcanzado su límite de documentos para este mes. Por favor, actualice su plan."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
msgid "You have reached your document limit."
msgstr "Ha alcanzado su límite de documentos."
@@ -10641,8 +10809,8 @@ msgstr "Has alcanzado tu límite de documentos. <0>¡Actualiza tu cuenta para co
msgid "You have rejected the document '{documentName}'"
msgstr "Ha rechazado el documento '{documentName}'"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "You have rejected this document"
msgstr "You have rejected this document"
@@ -10654,8 +10822,8 @@ msgstr "Has firmado “{documentName}”"
msgid "You have successfully left this organisation."
msgstr "Has dejado esta organización exitosamente."
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "You have successfully registered. Please verify your account by clicking on the link you received in the email."
msgstr "Te has registrado con éxito. Por favor verifica tu cuenta haciendo clic en el enlace que recibiste en el correo electrónico."
@@ -10712,10 +10880,10 @@ msgstr "Has actualizado el grupo de equipo."
msgid "You have verified your email address for <0>{0}0>."
msgstr "Has verificado tu dirección de correo electrónico para <0>{0}0>."
-#: 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
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "You must enter '{deleteMessage}' to proceed"
msgstr "Debes ingresar '{deleteMessage}' para continuar"
@@ -10723,8 +10891,8 @@ msgstr "Debes ingresar '{deleteMessage}' para continuar"
msgid "You must select at least one item"
msgstr "Debe seleccionar al menos un elemento"
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
msgid "You must type '{deleteMessage}' to confirm"
msgstr "Debes escribir '{deleteMessage}' para confirmar"
@@ -10744,8 +10912,8 @@ msgstr "Necesitas ser administrador para gestionar tokens de API."
msgid "You need to be logged in as <0>{email}0> to view this page."
msgstr "Debes iniciar sesión como <0>{email}0> para ver esta página."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "You need to be logged in to view this page."
msgstr "Debes iniciar sesión para ver esta página."
@@ -10762,8 +10930,8 @@ msgid "You will now be required to enter a code from your authenticator app when
msgstr "Ahora se te pedirá que ingreses un código de tu aplicación de autenticador al iniciar sesión."
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "You will receive an Email copy of the signed document once everyone has signed."
-msgstr "Recibirás una copia por correo electrónico del documento firmado una vez que todos hayan firmado."
+msgid "You will receive an email copy of the signed document once everyone has signed."
+msgstr "Recibirás una copia por correo electrónico del documento firmado cuando todos hayan firmado."
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Your Account"
@@ -10818,8 +10986,8 @@ msgstr "Tu plan actual está vencido."
msgid "Your direct signing templates"
msgstr "Tus {0} plantillas de firma directa"
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Your document failed to upload."
msgstr "Tu documento no se pudo cargar."
@@ -10847,9 +11015,9 @@ msgstr "Tu documento ha sido enviado con éxito."
msgid "Your document has been successfully duplicated."
msgstr "Tu documento ha sido duplicado con éxito."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your document has been uploaded successfully."
msgstr "Tu documento ha sido subido con éxito."
@@ -10909,8 +11077,8 @@ msgstr "Tus tokens existentes"
msgid "Your Name"
msgstr "Tu nombre"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your new password cannot be the same as your old password."
msgstr "Tu nueva contraseña no puede ser la misma que tu antigua contraseña."
@@ -10926,8 +11094,8 @@ msgstr "Tu organización ha sido eliminada exitosamente."
msgid "Your organisation has been successfully updated."
msgstr "Tu organización ha sido actualizada exitosamente."
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your password has been updated successfully."
msgstr "Tu contraseña ha sido actualizada con éxito."
@@ -10967,8 +11135,8 @@ msgstr "Tu perfil público ha sido actualizado."
msgid "Your recovery code has been copied to your clipboard."
msgstr "Tu código de recuperación ha sido copiado en tu portapapeles."
-#: 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/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Your recovery codes are listed below. Please store them in a safe place."
msgstr "Tus códigos de recuperación se enumeran a continuación. Por favor, guárdalos en un lugar seguro."
@@ -11000,8 +11168,8 @@ msgstr "Tu plantilla ha sido duplicada con éxito."
msgid "Your template has been successfully deleted."
msgstr "Tu plantilla ha sido eliminada con éxito."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your template has been uploaded successfully."
msgstr "Su plantilla ha sido subida exitosamente."
diff --git a/packages/lib/translations/fr/web.po b/packages/lib/translations/fr/web.po
index b9aee5db0..4957982cb 100644
--- a/packages/lib/translations/fr/web.po
+++ b/packages/lib/translations/fr/web.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: fr\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-11-12 06:14\n"
+"PO-Revision-Date: 2025-11-27 05:32\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -52,9 +52,9 @@ msgstr "\"{placeholderEmail}\" représentant \"Team Name\" vous a invité à sig
msgid "\"Team Name\" has invited you to sign \"example document\"."
msgstr "\"Team Name\" vous a invité à signer \"example document\"."
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "(You)"
msgstr "(Vous)"
@@ -64,8 +64,8 @@ msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
msgstr "{0, plural, one {(1 caractère de trop)} other {(# caractères de trop)}}"
#. placeholder {0}: Math.abs(remaningLength)
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{0, plural, one {# character over the limit} other {# characters over the limit}}"
msgstr "{0, plural, one {# caractère au-dessus de la limite} other {# caractères au-dessus de la limite}}"
@@ -79,6 +79,11 @@ msgstr "{0, plural, one {# caractère restant} other {# caractères restants}}"
msgid "{0, plural, one {# document} other {# documents}}"
msgstr "{0, plural, one {# document} other {# documents}}"
+#. placeholder {0}: row.original.eventTriggers.length
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "{0, plural, one {# Event} other {# Events}}"
+msgstr "{0, plural, one {# événement} other {# événements}}"
+
#. placeholder {0}: assistantFields.filter((field) => field.recipientId === r.id).length
#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "{0, plural, one {# field} other {# fields}}"
@@ -116,16 +121,16 @@ msgid "{0, plural, one {<0>You have <1>11> pending invitation0>} other {<2>Y
msgstr "{0, plural, one {<0>Vous avez <1>11> invitation en attente0>} other {<2>Vous avez <3>#3> invitations en attente2>}}"
#. placeholder {0}: recipientFieldsRemaining.length
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "{0, plural, one {1 Field Remaining} other {# Fields Remaining}}"
msgstr "{0, plural, one {1 Champ Restant} other {# Champs Restants}}"
#. placeholder {0}: fields.filter((field) => field.envelopeItemId === doc.id).length
#. placeholder {0}: remainingFields.filter((field) => field.envelopeItemId === doc.id).length
-#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
msgid "{0, plural, one {1 Field} other {# Fields}}"
msgstr "{0, plural, one {1 Champ} other {# Champs}}"
@@ -144,11 +149,11 @@ msgstr "{0, plural, one {1 Destinataire} other {# Destinataires}}"
msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}"
msgstr "{0, plural, one {En attente d'1 destinataire} other {En attente de # destinataires}}"
-#. placeholder {0}: route.label
#. placeholder {0}: _(FRIENDLY_FIELD_TYPE[fieldType as FieldType])
+#. placeholder {0}: route.label
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
msgid "{0}"
msgstr "{0}"
@@ -175,9 +180,9 @@ msgstr "{0} vous a invité à {recipientActionVerb} un document"
#. placeholder {0}: remaining.documents
#. placeholder {1}: quota.documents
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "{0} of {1} documents remaining this month."
msgstr "{0} des {1} documents restants ce mois-ci."
@@ -405,8 +410,8 @@ msgstr "{recipientReference} a signé \"{documentName}\""
msgid "{recipientReference} has signed {documentName}"
msgstr "{recipientReference} a signé {documentName}"
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{remaningLength, plural, one {# character remaining} other {# characters remaining}}"
msgstr "{remaningLength, plural, one {# caractère restant} other {# caractères restants}}"
@@ -515,6 +520,10 @@ msgstr "<0>Dessinée0> - Une signature dessinée en utilisant une souris ou un
msgid "<0>Email0> - The recipient will be emailed the document to sign, approve, etc."
msgstr "<0>Email0> - Le destinataire recevra le document par e-mail pour signer, approuver, etc."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "<0>Events:0> All"
+msgstr "<0>Événements a0:0> Tous"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "<0>Full account access:0> View all your profile information, settings, and activity"
msgstr "<0>Accès complet au compte :0> Consultez toutes vos informations de profil, paramètres, et activités"
@@ -545,8 +554,8 @@ msgstr "<0>Aucun0> - Nous générerons des liens que vous pourrez envoyer aux
msgid "<0>Note0> - If you use Links in combination with direct templates, you will need to manually send the links to the remaining recipients."
msgstr "<0>Remarque0> - Si vous utilisez des liens en combinaison avec des modèles directs, vous devrez envoyer manuellement les liens aux destinataires restants."
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require 2FA0> - The recipient must have an account and 2FA enabled via their settings"
msgstr "<0>Nécessite une authentification 2FA0> - Le destinataire doit avoir un compte avec 2FA activée via ses paramètres"
@@ -554,8 +563,8 @@ msgstr "<0>Nécessite une authentification 2FA0> - Le destinataire doit avoir
msgid "<0>Require account0> - The recipient must be signed in to view the document"
msgstr "<0>Nécessite un compte0> - Le destinataire doit être connecté pour voir le document"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require passkey0> - The recipient must have an account and passkey configured via their settings"
msgstr "<0>Clé d'accès requise0> - Le destinataire doit avoir un compte et une clé d'accès configurés via ses paramètres"
@@ -624,9 +633,9 @@ msgstr "404 Domaine email introuvable"
msgid "404 not found"
msgstr "404 non trouvé"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "404 Not found"
msgstr "404 Non trouvé"
@@ -660,7 +669,7 @@ msgstr "404 Modèle non trouvé"
msgid "404 User not found"
msgstr "404 Utilisateur non trouvé"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "404 Webhook not found"
msgstr "404 Webhook introuvable"
@@ -747,8 +756,8 @@ msgstr "Un nouveau membre a rejoint votre organisation {organisationName}"
msgid "A new token was created successfully."
msgstr "Un nouveau token a été créé avec succès."
-#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
msgstr "Un e-mail de réinitialisation de mot de passe a été envoyé, si vous avez un compte vous devriez le voir dans votre boîte de réception sous peu."
@@ -784,7 +793,7 @@ msgstr "Une demande pour l'utiliser votre e-mail a été initiée par {0} sur Do
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso"
msgstr "Un secret qui sera envoyé à votre URL afin que vous puissiez vérifier que la demande a été envoyée par Documenso"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso."
msgstr "Un secret qui sera envoyé à votre URL afin que vous puissiez vérifier que la demande a été envoyée par Documenso."
@@ -809,8 +818,8 @@ msgstr "Une URL unique pour identifier l'organisation"
msgid "A unique URL to identify your organisation"
msgstr "Une URL unique pour identifier votre organisation"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "A unique URL to identify your team"
msgstr "Une URL unique pour identifier votre équipe"
@@ -819,8 +828,8 @@ msgid "A verification email will be sent to the provided email."
msgstr "Un e-mail de vérification sera envoyé à l'adresse e-mail fournie."
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: packages/email/templates/organisation-invite.tsx
#: packages/email/templates/confirm-team-email.tsx
+#: packages/email/templates/organisation-invite.tsx
msgid "Accept"
msgstr "Accepter"
@@ -848,9 +857,9 @@ msgstr "Accès désactivé"
msgid "Access enabled"
msgstr "Accès activé"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Account"
msgstr "Compte"
@@ -866,8 +875,8 @@ msgstr "Demande de création de compte"
msgid "Account Creation Request"
msgstr "Demande de création de compte"
-#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "Account deleted"
msgstr "Compte supprimé"
@@ -895,46 +904,50 @@ msgstr "Compte dissocié"
msgid "Acknowledgment"
msgstr "Reconnaissance"
-#: 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/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
+#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Action"
msgstr "Action"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Actions"
msgstr "Actions"
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
msgid "Active"
msgstr "Actif"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Active sessions"
msgstr "Sessions actives"
@@ -942,8 +955,8 @@ msgstr "Sessions actives"
msgid "Active Subscriptions"
msgstr "Abonnements actifs"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Add"
msgstr "Ajouter"
@@ -960,15 +973,15 @@ msgstr "Ajoutez un domaine personnalisé pour envoyer des emails au nom de votre
msgid "Add a document"
msgstr "Ajouter un document"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Add a URL to redirect the user to once the document is signed"
msgstr "Ajouter une URL pour rediriger l'utilisateur une fois le document signé"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add all relevant fields for each recipient."
msgstr "Ajouter tous les champs pertinents pour chaque destinataire."
@@ -1001,8 +1014,8 @@ msgstr "Ajouter et configurer plusieurs documents"
msgid "Add another option"
msgstr "Ajouter une autre option"
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
msgid "Add another value"
msgstr "Ajouter une autre valeur"
@@ -1026,11 +1039,11 @@ msgstr "Ajouter un Email"
msgid "Add Email Domain"
msgstr "Ajouter un domaine email"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add Fields"
msgstr "Ajouter des champs"
@@ -1094,8 +1107,8 @@ msgstr "Ajouter des espaces réservés"
msgid "Add Recipients"
msgstr "Ajouter des destinataires"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Add Signer"
msgstr "Ajouter un signataire"
@@ -1144,8 +1157,8 @@ msgstr "Informations supplémentaires sur la marque à afficher en bas des e-mai
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Admin"
msgstr "Administrateur"
@@ -1153,8 +1166,8 @@ msgstr "Administrateur"
msgid "Admin Actions"
msgstr "Actions administratives"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Admin panel"
msgstr "Panneau d'administration"
@@ -1166,15 +1179,15 @@ msgstr "Panneau d'administration"
msgid "Admins only"
msgstr "Administrateurs uniquement"
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Advanced Options"
msgstr "Options avancées"
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Advanced settings"
msgstr "Paramètres avancés"
@@ -1191,6 +1204,7 @@ msgid "After submission, a document will be automatically generated and added to
msgstr "Après soumission, un document sera automatiquement généré et ajouté à votre page de documents. Vous recevrez également une notification par e-mail."
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "All"
msgstr "Tout"
@@ -1214,8 +1228,8 @@ msgstr "Tous les documents relatifs au processus de signature électronique vous
msgid "All email domains have been synced successfully"
msgstr "Tous les domaines email ont été synchronisés avec succès"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "All Folders"
msgstr "Tous les dossiers"
@@ -1223,6 +1237,10 @@ msgstr "Tous les dossiers"
msgid "All inserted signatures will be voided"
msgstr "Toutes les signatures insérées seront annulées"
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
+msgid "All recipients have signed. The document is being processed and you will receive an email copy shortly."
+msgstr "Tous les destinataires ont signé. Le document est en cours de traitement et vous recevrez une copie par e-mail sous peu."
+
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "All recipients will be notified"
msgstr "Tous les destinataires seront notifiés"
@@ -1239,8 +1257,8 @@ msgstr "Tous les liens de signature ont été copiés dans votre presse-papiers.
msgid "All templates"
msgstr "Tous les modèles"
-#: apps/remix/app/components/general/period-selector.tsx
#: apps/remix/app/components/filters/date-range-filter.tsx
+#: apps/remix/app/components/general/period-selector.tsx
msgid "All Time"
msgstr "Depuis toujours"
@@ -1252,10 +1270,10 @@ msgstr "Permettre à tous les membres de l'organisation d'accéder à cette équ
msgid "Allow document recipients to reply directly to this email address"
msgstr "Autoriser les destinataires du document à répondre directement à cette adresse e-mail"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Allow signers to dictate next signer"
msgstr "Permettre aux signataires de désigner le prochain signataire"
@@ -1263,10 +1281,10 @@ msgstr "Permettre aux signataires de désigner le prochain signataire"
msgid "Allowed Email Domains"
msgstr "Domaines email autorisés"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Allowed Signature Types"
msgstr "Types de signatures autorisées"
@@ -1306,19 +1324,19 @@ msgstr "Un e-mail contenant une invitation sera envoyé à chaque membre."
msgid "An email with this address already exists."
msgstr "Un email avec cette adresse existe déjà."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/token.tsx
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.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
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "An error occurred"
msgstr "Une erreur est survenue"
@@ -1330,9 +1348,9 @@ msgstr "Une erreur est survenue lors du téléchargement."
msgid "An error occurred while adding fields."
msgstr "Une erreur est survenue lors de l'ajout des champs."
+#: 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/template/template-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "An error occurred while adding signers."
msgstr "Une erreur est survenue lors de l'ajout de signataires."
@@ -1400,7 +1418,7 @@ msgstr "Une erreur est survenue lors de l'activation de la signature par lien di
msgid "An error occurred while enabling the user."
msgstr "Une erreur est survenue lors de l'activation de l'utilisateur."
-#: packages/ui/primitives/pdf-viewer.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "An error occurred while loading the document."
msgstr "Une erreur est survenue lors du chargement du document."
@@ -1412,14 +1430,14 @@ msgstr "Une erreur est survenue lors du déplacement du document."
msgid "An error occurred while moving the template."
msgstr "Une erreur est survenue lors du déplacement du modèle."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while removing the field."
msgstr "Une erreur est survenue lors de la suppression du champ."
@@ -1443,29 +1461,29 @@ msgstr "Une erreur est survenue lors de l'envoi du document."
msgid "An error occurred while sending your confirmation email"
msgstr "Une erreur est survenue lors de l'envoi de votre e-mail de confirmation"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing as assistant."
msgstr "Une erreur s'est produite lors de la signature en tant qu'assistant."
-#: 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
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing the document."
msgstr "Une erreur est survenue lors de la signature du document."
@@ -1478,8 +1496,8 @@ msgstr "Une erreur est survenue lors de la signature du champ."
msgid "An error occurred while trying to create a checkout session."
msgstr "Une erreur est survenue lors de la création d'une session de paiement."
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "An error occurred while updating the document settings."
msgstr "Une erreur est survenue lors de la mise à jour des paramètres du document."
@@ -1491,8 +1509,8 @@ msgstr "Une erreur est survenue lors de la mise à jour de la signature."
msgid "An error occurred while updating your profile."
msgstr "Une erreur est survenue lors de la mise à jour de votre profil."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "An error occurred while uploading your document."
msgstr "Une erreur est survenue lors de l'importation de votre document."
@@ -1512,53 +1530,53 @@ msgstr "Une organisation souhaite lier votre compte. Veuillez examiner les déta
msgid "An unexpected error occurred."
msgstr "Une erreur inattendue est survenue."
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/public-profile-form.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/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/general/app-command-menu.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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/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/signin.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/profile.tsx
-#: apps/remix/app/components/forms/organisation-update-form.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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "An unknown error occurred"
msgstr "Une erreur inconnue est survenue"
@@ -1586,10 +1604,10 @@ msgstr "Toute source"
msgid "Any Status"
msgstr "Tout statut"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "API Tokens"
msgstr "Tokens API"
@@ -1597,12 +1615,12 @@ msgstr "Tokens API"
msgid "App Version"
msgstr "Version de l'application"
-#: apps/remix/app/components/tables/inbox-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-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Approve"
msgstr "Approuver"
@@ -1611,9 +1629,9 @@ msgctxt "Recipient role action verb"
msgid "Approve"
msgstr "Approuver"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Approve Document"
msgstr "Approuver le document"
@@ -1666,8 +1684,8 @@ msgid "Are you sure you want to reject this document? This action cannot be undo
msgstr "Êtes-vous sûr de vouloir rejeter ce document ? Cette action ne peut pas être annulée."
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
-msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey."
-msgstr "Êtes-vous sûr de vouloir supprimer la clé de passe <0>{passkeyName}0>."
+msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey?"
+msgstr "Voulez-vous vraiment supprimer la clé d’accès <0>{passkeyName}0> ?"
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
msgid "Are you sure you wish to delete this organisation?"
@@ -1677,23 +1695,23 @@ msgstr "Êtes-vous sûr de vouloir supprimer cette organisation?"
msgid "Are you sure you wish to delete this team?"
msgstr "Êtes-vous sûr de vouloir supprimer cette équipe ?"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/components/general/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Are you sure?"
msgstr "Êtes-vous sûr ?"
@@ -1706,9 +1724,9 @@ msgctxt "Recipient role action verb"
msgid "Assist"
msgstr "Assister"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Assist Document"
msgstr "Assister le Document"
@@ -1752,11 +1770,11 @@ msgctxt "Recipient role progressive verb"
msgid "Assisting"
msgstr "Assistance"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
-#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/lib/types/document-meta.ts
+#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
msgid "At least one signature type must be enabled"
msgstr "Au moins un type de signature doit être activé"
@@ -1768,9 +1786,9 @@ msgstr "Pièce jointe ajoutée avec succès."
msgid "Attachment removed successfully."
msgstr "<<<<<<< Updated upstream======="
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Attachments"
@@ -1796,8 +1814,8 @@ msgstr "Niveau d'authentification"
msgid "Authentication Portal Not Found"
msgstr "Portail d'authentification non trouvé"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Authentication required"
msgstr "Authentification requise"
@@ -1817,12 +1835,12 @@ msgstr "Avatar mis à jour"
msgid "Awaiting email confirmation"
msgstr "En attente de confirmation par e-mail"
-#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
msgid "Back"
msgstr "Retour"
@@ -1838,8 +1856,8 @@ msgstr "Couleur d'arrière-plan"
msgid "Background Jobs"
msgstr "Tâches en arrière-plan"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Backup Code"
msgstr "Code de sauvegarde"
@@ -1855,10 +1873,11 @@ msgstr "Bannière mise à jour"
msgid "Before you get started, please confirm your email address by clicking the button below:"
msgstr "Avant de commencer, veuillez confirmer votre adresse e-mail en cliquant sur le bouton ci-dessous :"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
msgid "Billing"
msgstr "Facturation"
@@ -1882,9 +1901,9 @@ msgstr "Détails de la marque"
msgid "Brand Website"
msgstr "Site web de la marque"
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
msgid "Branding"
msgstr "Image de marque"
@@ -1892,10 +1911,10 @@ msgstr "Image de marque"
msgid "Branding Logo"
msgstr "Logo de la marque"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Branding Preferences"
msgstr "Préférences de branding"
@@ -1929,8 +1948,8 @@ msgstr "Envoi groupé terminé pour le modèle \"{templateName}\""
msgid "Bulk Send Template via CSV"
msgstr "Envoi de modèle groupé via CSV"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Bulk Send via CSV"
msgstr "Envoi en masse via CSV"
@@ -1975,96 +1994,95 @@ msgstr "En utilisant la fonctionnalité de signature électronique, vous consent
msgid "Can prepare"
msgstr "Peut préparer"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.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/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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-password.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/general/document/document-attachments-popover.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-test-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-to-folder-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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-create-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-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/claim-update-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.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-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.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/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Cancel"
msgstr "Annuler"
@@ -2114,6 +2132,10 @@ msgstr "CCers"
msgid "Center"
msgstr "Centre"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Change Recipient"
+msgstr "Modifier le destinataire"
+
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
msgid "Character limit"
msgstr "Limite de caractères"
@@ -2128,8 +2150,8 @@ msgid "Charts"
msgstr "Graphiques"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Checkbox"
msgstr "Case à cocher"
@@ -2142,9 +2164,9 @@ msgstr "Paramètres de la case à cocher"
msgid "Checkbox values"
msgstr "Valeurs de la case à cocher"
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Checkout"
msgstr "Passer à la caisse"
@@ -2196,9 +2218,9 @@ msgstr "Effacer la signature"
msgid "Click here to get started"
msgstr "Cliquez ici pour commencer"
-#: 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/template/template-page-view-recent-activity.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "Click here to retry"
msgstr "Cliquez ici pour réessayer"
@@ -2211,12 +2233,12 @@ msgstr "Cliquez ici pour importer"
msgid "Click to copy signing link for sending to recipient"
msgstr "Cliquez pour copier le lien de signature à envoyer au destinataire"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.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/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
msgid "Click to insert field"
msgstr "Cliquez pour insérer un champ"
@@ -2236,23 +2258,25 @@ msgstr "Secret client"
msgid "Client secret is required"
msgstr "Secret client requis"
-#: apps/remix/app/components/general/billing-plans.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/support-ticket-form.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/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-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/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/missing-signature-field-dialog.tsx
msgid "Close"
msgstr "Fermer"
@@ -2265,14 +2289,14 @@ msgstr "Communication"
msgid "Compare all plans and features in detail"
msgstr "Comparez tous les plans et fonctionnalités en détail"
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Complete"
msgstr "Compléter"
@@ -2284,22 +2308,22 @@ msgstr "Compléter le Document"
msgid "Complete the fields for the following signers."
msgstr "Complétez les champs pour les signataires suivants."
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: 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/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
-#: packages/lib/constants/document.ts
-#: packages/email/template-components/template-document-self-signed.tsx
-#: packages/email/template-components/template-document-recipient-signed.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
#: packages/email/template-components/template-document-completed.tsx
+#: packages/email/template-components/template-document-recipient-signed.tsx
+#: packages/email/template-components/template-document-self-signed.tsx
+#: packages/lib/constants/document.ts
msgid "Completed"
msgstr "Terminé"
-#: packages/email/templates/document-self-signed.tsx
#: packages/email/templates/document-completed.tsx
+#: packages/email/templates/document-self-signed.tsx
msgid "Completed Document"
msgstr "Document complété"
@@ -2375,8 +2399,8 @@ msgstr "Configurer le modèle"
#. placeholder {0}: parseMessageDescriptor( _, FRIENDLY_FIELD_TYPE[currentField.type], )
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Configure the {0} field"
msgstr "Configurer le champ {0}"
@@ -2393,20 +2417,20 @@ msgstr "Configurez les rôles d'équipe pour chaque groupe"
msgid "Configure the team roles for each member"
msgstr "Configurez les rôles d'équipe pour chaque membre"
-#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Confirm"
msgstr "Confirmer"
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
msgid "Confirm by typing <0>{deleteMessage}0>"
msgstr "Confirmer en tapant <0>{deleteMessage}0>"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "Confirm by typing: <0>{deleteMessage}0>"
msgstr "Confirmer en tapant : <0>{deleteMessage}0>"
@@ -2419,8 +2443,8 @@ msgstr "Confirmer la suppression"
msgid "Confirm email"
msgstr "Confirmer l'email"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Confirmation email sent"
msgstr "Email de confirmation envoyé"
@@ -2444,17 +2468,17 @@ msgstr "Contactez-nous"
msgid "Content"
msgstr "Contenu"
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$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+/organisation.invite.$token.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-view.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/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$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+/verify-email.$token.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Continue"
msgstr "Continuer"
@@ -2521,21 +2545,22 @@ msgstr "Contrôle quelles signatures sont autorisées lors de la signature d'un
msgid "Copied"
msgstr "Copié"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: 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/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: packages/ui/primitives/document-flow/add-subject.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/avatar-with-recipient.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.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/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/components/document/document-share-button.tsx
+#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Copied to clipboard"
msgstr "Copié dans le presse-papiers"
@@ -2556,8 +2581,8 @@ msgstr "Copier le lien partageable"
msgid "Copy Shareable Link"
msgstr "Copier le lien partageable"
-#: 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/general/document/document-recipient-link-copy-dialog.tsx
msgid "Copy Signing Links"
msgstr "Copier les liens de signature"
@@ -2565,12 +2590,12 @@ msgstr "Copier les liens de signature"
msgid "Copy token"
msgstr "Copier le token"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Create"
msgstr "Créer"
@@ -2681,17 +2706,17 @@ msgstr "Créer maintenant"
msgid "Create one automatically"
msgstr "Créer un automatiquement"
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
msgid "Create organisation"
msgstr "Créer une organisation"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Create Organisation"
msgstr "Créer une Organisation"
@@ -2715,14 +2740,14 @@ msgstr "Créer un abonnement"
msgid "Create Subscription Claim"
msgstr "Créer une réclamation d'abonnement"
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
msgid "Create team"
msgstr "Créer une équipe"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Create Team"
msgstr "Créer une équipe"
@@ -2751,26 +2776,27 @@ msgstr "Créez votre compte et commencez à utiliser la signature de documents
msgid "Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp."
msgstr "Créez votre compte et commencez à utiliser la signature de documents à la pointe de la technologie. Une signature ouverte et magnifique est à votre portée."
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: 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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-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
+#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Created"
msgstr "Créé"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Created At"
msgstr "Créé le"
@@ -2782,9 +2808,7 @@ msgstr "Créé par"
msgid "Created on"
msgstr "Créé le"
-#. placeholder {0}: i18n.date(webhook.createdAt, DateTime.DATETIME_FULL)
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Created on {0}"
msgstr "Créé le {0}"
@@ -2842,13 +2866,13 @@ msgstr "Mode sombre"
msgid "Dashboard"
msgstr "Tableau de bord"
-#: apps/remix/app/components/tables/settings-security-activity-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Date"
msgstr "Date"
@@ -2856,10 +2880,10 @@ msgstr "Date"
msgid "Date created"
msgstr "Date de création"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Date Format"
msgstr "Format de date"
@@ -2867,8 +2891,8 @@ msgstr "Format de date"
msgid "Date Settings"
msgstr "Paramètres de la date"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: packages/email/templates/organisation-invite.tsx
msgid "Decline"
msgstr "Décliner"
@@ -2918,46 +2942,47 @@ msgstr "Valeur par défaut"
msgid "delete"
msgstr "supprimer"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/folder/folder-card.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-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-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/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Delete"
msgstr "Supprimer"
-#. placeholder {0}: webhook.webhookUrl
-#. placeholder {0}: token.name
+#. placeholder {0}: folder.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#. placeholder {0}: token.name
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "delete {0}"
msgstr "supprimer {0}"
@@ -2973,11 +2998,11 @@ msgstr "supprimer {teamName}"
msgid "Delete account"
msgstr "Supprimer le compte"
+#: 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
#: 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
msgid "Delete Account"
msgstr "Supprimer le compte"
@@ -2985,10 +3010,10 @@ msgstr "Supprimer le compte"
msgid "Delete document"
msgstr "Supprimer le document"
+#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: 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
msgid "Delete Document"
msgstr "Supprimer le document"
@@ -2996,8 +3021,8 @@ msgstr "Supprimer le document"
msgid "Delete email"
msgstr "Supprimer l'e-mail"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Delete email domain"
msgstr "Supprimer le domaine de messagerie"
@@ -3057,8 +3082,8 @@ msgstr "Supprimer le Webhook"
msgid "Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution."
msgstr "Supprimez votre compte et tout son contenu, y compris les documents complétés. Cette action est irréversible et annulera votre abonnement, soyez prudent."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Deleted"
msgstr "Supprimé"
@@ -3066,13 +3091,22 @@ msgstr "Supprimé"
msgid "Deleting account..."
msgstr "Suppression du compte..."
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Destination"
+msgstr "Destination"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Details"
msgstr "Détails"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+msgid "Developer Mode"
+msgstr "Mode développeur"
+
#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Device"
msgstr "Appareil"
@@ -3080,19 +3114,19 @@ msgstr "Appareil"
msgid "Didn't request a password change? We are here to help you secure your account, just <0>contact us.0>"
msgstr "Vous n'avez pas demandé de changement de mot de passe ? Nous sommes ici pour vous aider à sécuriser votre compte, il suffit de <0>nous contacter.0>"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "direct link"
msgstr "lien direct"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Direct link"
msgstr "Lien direct"
-#: 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/envelope-editor/envelope-editor.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
msgid "Direct Link"
msgstr "Lien direct"
@@ -3130,14 +3164,14 @@ msgstr "Modèle de lien direct supprimé"
msgid "Direct template link usage exceeded ({0}/{1})"
msgstr "L'utilisation du lien de modèle direct a été dépassée ({0}/{1})"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Direction"
msgstr "Direction"
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
msgid "Disable"
msgstr "Désactiver"
@@ -3165,6 +3199,7 @@ msgid "Disable Two Factor Authentication before deleting your account."
msgstr "Désactiver l'authentification à deux facteurs avant de supprimer votre compte."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Disabled"
msgstr "Désactivé"
@@ -3180,8 +3215,8 @@ msgstr "Désactiver l'utilisateur a pour résultat que l'utilisateur ne peut pas
msgid "Discord"
msgstr "Discord"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "Display Name"
msgstr "Nom affiché"
@@ -3217,11 +3252,11 @@ msgstr "Voulez-vous dupliquer ce modèle ?"
msgid "Documenso will delete <0>all of your documents0>, along with all of your completed documents, signatures, and all other resources belonging to your Account."
msgstr "Documenso supprimera <0>tous vos documents0>, ainsi que tous vos documents complétés, signatures, et toutes les autres ressources appartenant à votre compte."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Document"
msgstr "Document"
@@ -3250,9 +3285,9 @@ msgid "Document & Recipients"
msgstr "Document & Destinataires"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Document access"
msgstr "Accès au document"
@@ -3271,8 +3306,8 @@ msgstr "Document Approuvé"
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: packages/lib/server-only/document/delete-document.ts
#: packages/lib/server-only/admin/admin-super-delete-document.ts
+#: packages/lib/server-only/document/delete-document.ts
msgid "Document Cancelled"
msgstr "Document Annulé"
@@ -3313,8 +3348,8 @@ msgstr "Document créé"
msgid "Document created by <0>{0}0>"
msgstr "Document créé par <0>{0}0>"
-#: packages/lib/server-only/template/create-document-from-direct-template.ts
#: packages/email/templates/document-created-from-direct-template.tsx
+#: packages/lib/server-only/template/create-document-from-direct-template.ts
msgid "Document created from direct template"
msgstr "Document créé à partir d'un modèle direct"
@@ -3326,9 +3361,9 @@ msgstr "Document créé en utilisant un <0>lien direct0>"
msgid "Document Creation"
msgstr "Création de document"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
msgid "Document deleted"
msgstr "Document supprimé"
@@ -3427,9 +3462,9 @@ msgstr "Document en attente"
msgid "Document pending email"
msgstr "E-mail de document en attente"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Document Preferences"
msgstr "Préférences de document"
@@ -3446,8 +3481,8 @@ msgstr "Document renvoyé"
msgid "Document rejected"
msgstr "Document rejeté"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: packages/email/template-components/template-document-rejected.tsx
msgid "Document Rejected"
msgstr "Document Rejeté"
@@ -3504,15 +3539,15 @@ msgstr "Document mis à jour"
msgid "Document updated successfully"
msgstr "Document mis à jour avec succès"
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Document upload disabled due to unpaid invoices"
msgstr "Importation de documents désactivé en raison de factures impayées"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Document uploaded"
msgstr "Document importé"
@@ -3546,20 +3581,20 @@ msgstr "Le document sera supprimé de manière permanente"
msgid "Documentation"
msgstr "Documentation"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.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/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
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Documents"
msgstr "Documents"
@@ -3608,22 +3643,22 @@ msgstr "Domaine déjà utilisé"
msgid "Domain Name"
msgstr "Nom de domaine"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Don't have an account? <0>Sign up0>"
msgstr "Vous n'avez pas de compte? <0>Inscrivez-vous0>"
-#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-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/general/document/document-certificate-qr-view.tsx
-#: apps/remix/app/components/general/document/document-certificate-qr-view.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/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
#: packages/email/template-components/template-document-completed.tsx
msgid "Download"
msgstr "Télécharger"
@@ -3640,9 +3675,9 @@ msgstr "Télécharger le certificat"
msgid "Download Files"
msgstr "Télécharger les fichiers"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Download PDF"
msgstr "Télécharger PDF"
@@ -3650,9 +3685,9 @@ msgstr "Télécharger PDF"
msgid "Download Template CSV"
msgstr "Télécharger le modèle CSV"
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: packages/lib/constants/document.ts
msgid "Draft"
msgstr "Brouillon"
@@ -3677,12 +3712,9 @@ msgstr "Glissez-déposez ou cliquez pour importer"
msgid "Drag and drop your PDF file here"
msgstr "Faites glisser et déposez votre fichier PDF ici"
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
-msgid "Draw"
-msgstr "Dessiner"
-
#: packages/lib/constants/document.ts
-msgctxt "Draw signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Draw signature"
msgid "Draw"
msgstr "Dessiner"
@@ -3691,8 +3723,8 @@ msgid "Drop your document here"
msgstr "Déposez votre document ici"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Dropdown"
msgstr "Liste déroulante"
@@ -3712,20 +3744,20 @@ msgstr "Paramètres de la liste déroulante"
msgid "Dropdown values"
msgstr "Valeurs de la liste déroulante"
-#: 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/envelope-editor/envelope-editor-fields-page-renderer.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
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Duplicate"
msgstr "Dupliquer"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Document"
msgstr "Dupliquer le document"
@@ -3734,8 +3766,8 @@ msgstr "Dupliquer le document"
msgid "Duplicate on all pages"
msgstr "Dupliquer sur toutes les pages"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Template"
msgstr "Dupliquer le modèle"
@@ -3743,14 +3775,23 @@ msgstr "Dupliquer le modèle"
msgid "Duplicate values are not allowed"
msgstr "Les valeurs en double ne sont pas autorisées"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 0"
+msgstr "Par ex. 0"
+
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 100"
+msgstr "Par ex. 100"
+
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Edit"
msgstr "Modifier"
@@ -3758,10 +3799,19 @@ msgstr "Modifier"
msgid "Edit Template"
msgstr "Modifier le modèle"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Edit webhook"
msgstr "Modifier le webhook"
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+msgid "eg. Legal"
+msgstr "par ex. Juridique"
+
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+msgid "eg. Mac"
+msgstr "par ex. Mac"
+
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Electronic Delivery of Documents"
msgstr "Remise électronique de documents"
@@ -3770,57 +3820,57 @@ msgstr "Remise électronique de documents"
msgid "Electronic Signature Disclosure"
msgstr "Divulgation de signature électronique"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-insights-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/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.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
-#: 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/utils/fields.ts
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-configure-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
+#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Email"
msgstr "Email"
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/send-confirmation-email.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Email address"
msgstr "Adresse email"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Email Address"
msgstr "Adresse e-mail"
@@ -3852,9 +3902,9 @@ msgstr "Domaine de messagerie introuvable"
msgid "Email Domain Settings"
msgstr "Paramètres du domaine de messagerie"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Email Domains"
msgstr "Domaines de messagerie"
@@ -3870,9 +3920,9 @@ msgstr "Email requis"
msgid "Email Options"
msgstr "Options d'email"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Email Preferences"
msgstr "Préférences de messagerie"
@@ -3885,10 +3935,10 @@ msgstr "Préférences de messagerie mises à jour"
msgid "Email resent"
msgstr "Email renvoyé"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Email Sender"
msgstr "Expéditeur de l'e-mail"
@@ -3916,8 +3966,8 @@ msgstr "La vérification par email a été supprimée"
msgid "Email verification has been resent"
msgstr "La vérification par email a été renvoyée"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Emails"
msgstr "E-mails"
@@ -3976,10 +4026,10 @@ msgstr "Activer la signature par lien direct"
msgid "Enable Direct Link Signing"
msgstr "Activer la signature de lien direct"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Enable signing order"
msgstr "Activer l'ordre de signature"
@@ -3987,10 +4037,11 @@ msgstr "Activer l'ordre de signature"
msgid "Enable SSO portal"
msgstr "Activer le portail SSO"
-#: 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+/admin+/site-settings.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Enabled"
msgstr "Activé"
@@ -4014,10 +4065,12 @@ msgstr "Entrez le nom de la réclamation"
msgid "Enter the domain you want to use for sending emails (without http:// or www)"
msgstr "Entrez le domaine que vous souhaitez utiliser pour l'envoi des e-mails (sans http:// ou www)"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's email"
msgstr "Entrez l'email du signataire suivant"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's name"
msgstr "Entrez le nom du signataire suivant"
@@ -4053,11 +4106,12 @@ msgid "Enter your number here"
msgstr "Entrez votre numéro ici"
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Enter your password"
msgstr "Entrez votre mot de passe"
-#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "Enter your text here"
msgstr "Entrez votre texte ici"
@@ -4077,8 +4131,8 @@ msgstr "Enveloppe dupliquée"
msgid "Envelope ID"
msgstr "ID de l'enveloppe"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Envelope Item Count"
msgstr "Nombre d'articles dans l'enveloppe"
@@ -4102,75 +4156,75 @@ msgstr "Titre de l'enveloppe"
msgid "Envelope updated"
msgstr "Enveloppe mise à jour"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$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/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/envelope-signing/envelope-signer-page-renderer.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.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-button-legacy.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/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/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.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-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-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-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-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-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-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-text-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.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/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/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.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/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/verify-email-banner.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Error"
msgstr "Erreur"
@@ -4178,11 +4232,17 @@ msgstr "Erreur"
msgid "Error uploading file"
msgstr "Erreur lors de l'importation du fichier"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Event"
+msgstr "Événement"
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Event Type"
msgstr "Type d'événement"
#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: packages/ui/components/document/document-visibility-select.tsx
msgid "Everyone"
msgstr "Tout le monde"
@@ -4195,8 +4255,8 @@ msgid "Everyone has signed"
msgstr "Tout le monde a signé"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "Everyone has signed! You will receive an Email copy of the signed document."
-msgstr "Tout le monde a signé ! Vous recevrez une copie par email du document signé."
+msgid "Everyone has signed! You will receive an email copy of the signed document."
+msgstr "Tout le monde a signé ! Vous recevrez une copie du document signé par e-mail."
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "Exceeded timeout"
@@ -4217,11 +4277,16 @@ msgid "Expires on {0}"
msgstr "Expire le {0}"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "External ID"
msgstr "ID externe"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Failed"
+msgstr "Échec"
+
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
msgid "Failed to create folder"
msgstr "Échec de la création du dossier"
@@ -4286,7 +4351,7 @@ msgstr "Échec de la mise à jour de la réclamation d'abonnement."
msgid "Failed to update template"
msgstr "Échec de la mise à jour du modèle"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Failed to update webhook"
msgstr "Échec de la mise à jour du webhook"
@@ -4294,9 +4359,9 @@ msgstr "Échec de la mise à jour du webhook"
msgid "Failed: {failedCount}"
msgstr "Échoués : {failedCount}"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Feature Flags"
msgstr "Drapeaux de fonctionnalités"
@@ -4305,12 +4370,12 @@ msgid "Field character limit"
msgstr "Limite de caractères du champ"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field font size"
msgstr "Taille de police du champ"
@@ -4319,11 +4384,11 @@ msgstr "Taille de police du champ"
msgid "Field format"
msgstr "Format du champ"
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field label"
msgstr "Étiquette du champ"
@@ -4355,10 +4420,10 @@ msgstr "Champs"
msgid "Fields updated"
msgstr "Champs mis à jour"
+#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "File cannot be larger than {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
msgstr "Le fichier ne peut pas dépasser {APP_DOCUMENT_UPLOAD_SIZE_LIMIT} Mo"
@@ -4378,8 +4443,8 @@ msgstr "La taille du fichier dépasse la limite de {APP_DOCUMENT_UPLOAD_SIZE_LIM
msgid "Fill in the details to create a new subscription claim."
msgstr "Remplissez les détails pour créer une nouvelle réclamation d'abonnement."
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Folder"
msgstr "Dossier"
@@ -4399,9 +4464,9 @@ msgstr "Dossier déplacé avec succès"
msgid "Folder Name"
msgstr "Nom du Dossier"
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
msgid "Folder not found"
msgstr "Dossier introuvable"
@@ -4414,12 +4479,12 @@ msgid "Folder updated successfully"
msgstr "Dossier mis à jour avec succès"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Font Size"
msgstr "Taille de Police"
@@ -4439,19 +4504,20 @@ msgstr "Par exemple, si la réclamation a un nouveau drapeau \"FLAG_1\" réglé
msgid "Forgot Password?"
msgstr "Mot de passe oublié ?"
-#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Forgot your password?"
msgstr "Vous avez oublié votre mot de passe ?"
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Free"
msgstr "Gratuit"
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Free Signature"
msgstr "Signature gratuite"
@@ -4459,26 +4525,26 @@ msgstr "Signature gratuite"
msgid "Free Signature Settings"
msgstr "Paramètres de la signature libre"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.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/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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "Full Name"
msgstr "Nom complet"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "General"
msgstr "Général"
@@ -4495,24 +4561,24 @@ msgstr "Générer des liens"
msgid "Global recipient action authentication"
msgstr "Authentification d'action de destinataire globale"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Go back"
msgstr "Retour"
-#: apps/remix/app/routes/_recipient+/_layout.tsx
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
+#: apps/remix/app/routes/_recipient+/_layout.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Go Back"
msgstr "Retour"
@@ -4524,9 +4590,9 @@ msgstr "Retour"
msgid "Go back home"
msgstr "Revenir au tableau de bord"
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
msgid "Go Back Home"
msgstr "Revenir au tableau de bord"
@@ -4555,10 +4621,10 @@ msgstr "Allez à vos <0>paramètres de profil public0> pour ajouter des docume
msgid "Green"
msgstr "Vert"
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Group"
msgstr "Groupe"
@@ -4570,15 +4636,15 @@ msgstr "Le groupe a été créé."
msgid "Group has been updated successfully"
msgstr "Le groupe a été mis à jour avec succès"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Group Name"
msgstr "Nom du groupe"
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
msgid "Groups"
msgstr "Groupes"
@@ -4601,12 +4667,12 @@ msgstr "vous a invité à voir ce document"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
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."
msgstr "Avoir un assistant comme dernier signataire signifie qu'il ne pourra rien faire car il n'y a pas d'autres signataires à assister."
@@ -4678,25 +4744,25 @@ msgstr "Salut {userName}, vous devez entrer un code de vérification pour compl
msgid "Hi, {userName} <0>({userEmail})0>"
msgstr "Bonjour, {userName} <0>({userEmail})0>"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Hide"
msgstr "Cacher"
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/folder/folder-grid.tsx
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-grid.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
msgid "Home"
msgstr "Accueil"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Home (No Folder)"
msgstr "Accueil (Pas de Dossier)"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Horizontal"
msgstr "Horizontal"
@@ -4733,7 +4799,6 @@ msgstr "Je suis le propriétaire de ce document"
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
msgstr "Je comprends que je fournis mes identifiants à un service tiers configuré par cette organisation"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
msgid "I'm sure! Delete it"
msgstr "Je suis sûr ! Supprimez-le"
@@ -4770,6 +4835,10 @@ msgstr "Si votre application d'authentification ne prend pas en charge les codes
msgid "Important: What This Means"
msgstr "Important : Ce que cela signifie"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Inactive"
+msgstr "Inactif"
+
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/document/document-status.tsx
@@ -4788,8 +4857,8 @@ msgstr "Inclure les journaux d'audit dans le document"
msgid "Include the Signing Certificate in the Document"
msgstr "Includez le certificat de signature dans le document"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Information"
msgstr "Information"
@@ -4797,17 +4866,17 @@ msgstr "Information"
msgid "Inherit authentication method"
msgstr "Hériter de la méthode d'authentification"
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
msgid "Inherit from organisation"
msgstr "Hériter de l'organisation"
@@ -4820,11 +4889,11 @@ msgstr "Hériter des membres de l'organisation"
msgid "Inherited subscription claim"
msgstr "Réclamation d'abonnement héritée"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: packages/ui/primitives/document-flow/types.ts
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Initials"
msgstr "Initiales"
@@ -4869,8 +4938,8 @@ msgstr "Email invalide"
msgid "Invalid link"
msgstr "Lien invalide"
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
msgid "Invalid token"
msgstr "Token invalide"
@@ -4890,8 +4959,8 @@ msgstr "Invitation acceptée"
msgid "Invitation accepted!"
msgstr "Invitation acceptée !"
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
msgid "Invitation declined"
msgstr "Invitation refusée"
@@ -4931,9 +5000,9 @@ msgstr "Invité à"
msgid "Invoice"
msgstr "Facture"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "IP Address"
msgstr "Adresse IP"
@@ -4987,23 +5056,23 @@ msgstr "Joint"
msgid "Joined {0}"
msgstr "A rejoint {0}"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Label"
msgstr "Étiquette"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Language"
msgstr "Langue"
@@ -5031,8 +5100,8 @@ msgstr "90 derniers jours"
msgid "Last Active"
msgstr "Dernière activité"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Last modified"
msgstr "Dernière modification"
@@ -5060,15 +5129,15 @@ msgstr "Dernière utilisation"
msgid "Last Year"
msgstr "Dernière Année"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Leave"
msgstr "Quitter"
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Leave blank to inherit from the organisation."
msgstr "Laisser vide pour hériter de l'organisation."
@@ -5124,8 +5193,8 @@ msgstr "Modèle de lien"
msgid "Link your Documenso account"
msgstr "Liez votre compte Documenso"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Linked Accounts"
msgstr "Comptes liés"
@@ -5137,30 +5206,29 @@ msgstr "Lié à"
msgid "Links Generated"
msgstr "Liens générés"
-#. placeholder {0}: webhook.eventTriggers .map((trigger) => toFriendlyWebhookEventName(trigger)) .join(', ')
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-msgid "Listening to {0}"
-msgstr "Écoute {0}"
+msgid "Listening to"
+msgstr "Écoute de"
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
msgid "Load older activity"
msgstr "Charger l'activité plus ancienne"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Loading"
msgstr "Chargement"
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Loading document..."
msgstr "Chargement du document..."
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
msgid "Loading Document..."
msgstr "Chargement du Document..."
@@ -5176,15 +5244,19 @@ msgstr "Chargement..."
msgid "Local timezone"
msgstr "Fuseau horaire local"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Login"
msgstr "Connexion"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "Logs"
+msgstr "Journaux"
+
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Manage"
msgstr "Gérer"
@@ -5214,9 +5286,14 @@ msgid "Manage billing"
msgstr "Gérer la facturation"
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Manage Billing"
msgstr "Gérer la facturation"
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
+msgid "Manage billing and subscriptions for organisations where you have billing management permissions."
+msgstr "Gérez la facturation et les abonnements pour les organisations pour lesquelles vous disposez des autorisations de gestion de la facturation."
+
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "Manage details for this public template"
msgstr "Gérer les détails de ce modèle public"
@@ -5233,6 +5310,7 @@ msgstr "Gérer les documents"
msgid "Manage linked accounts"
msgstr "Gérer les comptes liés"
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Manage organisation"
msgstr "Gérer l'organisation"
@@ -5318,8 +5396,8 @@ msgstr "Gérer les paramètres de votre site ici"
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Manager"
msgstr "Gestionnaire"
@@ -5357,24 +5435,24 @@ msgstr "Maximum"
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
msgstr "Taille maximale du fichier : 4 Mo. Maximum de 100 lignes par importation. Les valeurs vides utiliseront les valeurs par défaut du modèle."
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Maximum number of uploaded files per envelope allowed"
msgstr "Nombre maximal de fichiers téléchargés par enveloppe autorisés"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Member"
msgstr "Membre"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Member Count"
msgstr "Nombre de membres"
@@ -5382,25 +5460,25 @@ msgstr "Nombre de membres"
msgid "Member Since"
msgstr "Membre depuis"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Members"
msgstr "Membres"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Message"
msgstr "Message"
@@ -5421,8 +5499,8 @@ msgstr "Min"
msgid "Missing Recipients"
msgstr "Manque de destinataires"
-#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
msgid "Modify recipients"
msgstr "Modifier les destinataires"
@@ -5430,8 +5508,8 @@ msgstr "Modifier les destinataires"
msgid "Modify the details of the subscription claim."
msgstr "Modifier les détails de la réclamation d'abonnement."
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Monthly"
msgstr "Mensuel"
@@ -5443,10 +5521,10 @@ msgstr "Utilisateurs actifs mensuels : utilisateurs ayant créé au moins un doc
msgid "Monthly Active Users: Users that had at least one of their documents completed"
msgstr "Utilisateurs actifs mensuels : utilisateurs ayant terminé au moins un de leurs documents"
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
msgid "Move"
msgstr "Déplacer"
@@ -5466,8 +5544,8 @@ msgstr "Déplacer le Dossier"
msgid "Move Template to Folder"
msgstr "Déplacer le modèle vers un dossier"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Move to Folder"
msgstr "Déplacer vers le dossier"
@@ -5483,43 +5561,43 @@ msgstr "Mon Dossier"
msgid "N/A"
msgstr "N/A"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: 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/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
-#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
-#: apps/remix/app/components/forms/subscription-claim-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: 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
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/forms/subscription-claim-form.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/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Name"
msgstr "Nom"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Name is required"
msgstr "Le nom est requis"
@@ -5559,11 +5637,11 @@ msgstr "Nouveau Mot de Passe"
msgid "New Template"
msgstr "Nouveau modèle"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Next"
msgstr "Suivant"
@@ -5580,10 +5658,10 @@ msgstr "Email du destinataire suivant"
msgid "Next Recipient Name"
msgstr "Nom du destinataire suivant"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "No"
msgstr "Non"
@@ -5591,24 +5669,24 @@ msgstr "Non"
msgid "No active drafts"
msgstr "Pas de brouillons actifs"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "No documents found"
msgstr "Aucun document trouvé"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "No folders found"
msgstr "Aucun dossier trouvé"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "No folders found matching \"{searchTerm}\""
msgstr "Aucun dossier correspondant à \"{searchTerm}\" trouvé"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "No further action is required from you at this time."
msgstr "Aucune autre action n'est requise de votre part pour le moment."
@@ -5628,25 +5706,27 @@ msgstr "Aucune activité récente"
msgid "No recent documents"
msgstr "Aucun document récent"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipient matching this description was found."
msgstr "Aucun destinataire correspondant à cette description n'a été trouvé."
-#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "No recipients"
msgstr "Aucun destinataire"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipients with this role"
msgstr "Aucun destinataire avec ce rôle"
-#: 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-action-select.tsx
msgid "No restrictions"
msgstr "Aucune restriction"
@@ -5687,8 +5767,8 @@ msgid "No valid recipients found"
msgstr "Aucun destinataire valide trouvé"
#: apps/remix/app/components/general/multiselect-role-combobox.tsx
-#: packages/ui/primitives/multi-select-combobox.tsx
#: packages/ui/primitives/combobox.tsx
+#: packages/ui/primitives/multi-select-combobox.tsx
msgid "No value found."
msgstr "Aucune valeur trouvée."
@@ -5696,16 +5776,16 @@ msgstr "Aucune valeur trouvée."
msgid "No worries, it happens! Enter your email and we'll email you a special link to reset your password."
msgstr "Pas de soucis, ça arrive ! Entrez votre email et nous vous enverrons un lien spécial pour réinitialiser votre mot de passe."
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
#: packages/lib/constants/document.ts
msgid "None"
msgstr "Aucun"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Not found"
msgstr "Non trouvé"
@@ -5718,12 +5798,12 @@ msgstr "Non pris en charge"
msgid "Nothing to do"
msgstr "Rien à faire"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: 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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Number"
msgstr "Numéro"
@@ -5736,13 +5816,13 @@ msgstr "Format de numéro"
msgid "Number needs to be formatted as {numberFormat}"
msgstr "Le nombre doit être formaté comme {numberFormat}"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of members allowed. 0 = Unlimited"
msgstr "Nombre de membres autorisés. 0 = Illimité"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of teams allowed. 0 = Unlimited"
msgstr "Nombre d'équipes autorisées. 0 = Illimité"
@@ -5782,10 +5862,6 @@ msgstr "Sur cette page, vous pouvez créer et gérer des tokens API. Consultez n
msgid "On this page, you can create new Webhooks and manage the existing ones."
msgstr "Sur cette page, vous pouvez créer de nouveaux webhooks et gérer ceux existants."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "On this page, you can edit the webhook and its settings."
-msgstr "Sur cette page, vous pouvez modifier le webhook et ses paramètres."
-
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Once confirmed, the following will occur:"
msgstr "Une fois confirmé, les éléments suivants se produiront :"
@@ -5826,11 +5902,11 @@ msgstr "Un seul fichier peut être téléchargé à la fois"
msgid "Only PDF files are allowed"
msgstr "Seuls les fichiers PDF sont autorisés"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Oops! Something went wrong."
msgstr "Oups ! Quelque chose a mal tourné."
@@ -5846,8 +5922,8 @@ msgstr "La valeur de l'option ne peut être vide"
msgid "Options"
msgstr "Options"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Or"
msgstr "Ou"
@@ -5859,9 +5935,10 @@ msgstr "OU"
msgid "Or continue with"
msgstr "Ou continuez avec"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Organisation"
msgstr "Organisation"
@@ -5890,8 +5967,8 @@ msgstr "Paramètres du groupe d'organisation"
msgid "Organisation has been updated successfully"
msgstr "L'organisation a été mise à jour avec succès"
-#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
msgid "Organisation Insights"
msgstr "Aperçu de l'Organisation"
@@ -5907,22 +5984,22 @@ msgstr "Les invitations à l'organisation ont été envoyées."
msgid "Organisation Manager"
msgstr "Gestionnaire de l'organisation"
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: packages/lib/constants/organisations-translations.ts
msgid "Organisation Member"
msgstr "Membre de l'organisation"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
msgid "Organisation Members"
msgstr "Membres de l'organisation"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation Name"
msgstr "Nom de l'organisation"
@@ -5935,8 +6012,8 @@ msgstr "Organisation introuvable"
msgid "Organisation role"
msgstr "Rôle de l'organisation"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Organisation Role"
msgstr "Rôle de l'organisation"
@@ -5956,17 +6033,17 @@ msgstr "Portail SSO de l'organisation"
msgid "Organisation Teams"
msgstr "Équipes de l'organisation"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation URL"
msgstr "URL de l'organisation"
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
#: apps/remix/app/routes/_authenticated+/settings+/organisations.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Organisations"
msgstr "Organisations"
@@ -6003,16 +6080,16 @@ msgstr "Sinon, le document sera créé sous forme de brouillon."
msgid "Override organisation settings"
msgstr "Ignorer les paramètres de l'organisation"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Owner"
msgstr "Propriétaire"
@@ -6027,8 +6104,8 @@ msgid "Page {0} of {1}"
msgstr "Page {0} sur {1}"
#. placeholder {0}: i + 1
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Page {0} of {numPages}"
msgstr "Page {0} sur {numPages}"
@@ -6036,8 +6113,8 @@ msgstr "Page {0} sur {numPages}"
msgid "Paid"
msgstr "Payé"
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
msgid "Passkey"
msgstr "Clé d'accès"
@@ -6065,8 +6142,8 @@ msgstr "Nom de la clé d'accès"
msgid "Passkey Re-Authentication"
msgstr "Ré-authentification par clé d'accès"
-#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
msgid "Passkeys"
msgstr "Clés d'accès"
@@ -6078,12 +6155,12 @@ msgstr "Les clés d'accès vous permettent de vous connecter et de vous authenti
msgid "Passkeys are not supported on this browser"
msgstr "Les clés d'accès ne sont pas prises en charge sur ce navigateur"
-#: apps/remix/app/components/general/app-command-menu.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
-#: apps/remix/app/components/forms/signup.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Password"
msgstr "Mot de passe"
@@ -6099,13 +6176,13 @@ msgstr "Réinitialisation du mot de passe demandée"
msgid "Password Reset Successful"
msgstr "Réinitialisation du mot de passe réussie"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Password should not be common or based on personal information"
msgstr "Le mot de passe ne doit pas être commun ou basé sur des informations personnelles"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Password updated"
msgstr "Mot de passe mis à jour"
@@ -6113,6 +6190,10 @@ msgstr "Mot de passe mis à jour"
msgid "Password updated!"
msgstr "Mot de passe mis à jour !"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Past Due"
+msgstr "En retard de paiement"
+
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
msgid "Payment overdue"
@@ -6122,15 +6203,15 @@ msgstr "Paiement en retard"
msgid "PDF Document"
msgstr "Document PDF"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
-#: packages/ui/components/document/document-read-only-fields.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: packages/lib/constants/document.ts
+#: packages/ui/components/document/document-read-only-fields.tsx
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Pending"
msgstr "En attente"
@@ -6150,13 +6231,13 @@ msgstr "Documents en attente"
msgid "Pending invitations"
msgstr "Invitations en attente"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per month"
msgstr "par mois"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per year"
msgstr "par an"
@@ -6165,15 +6246,15 @@ msgctxt "Personal organisation (adjective)"
msgid "Personal"
msgstr "Personnel"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Personal Account"
msgstr "Compte personnel"
-#: apps/remix/app/routes/_authenticated+/inbox.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/inbox.tsx
msgid "Personal Inbox"
msgstr "Boîte de réception personnelle"
@@ -6198,12 +6279,12 @@ msgstr "Épingler"
msgid "Place and configure form fields in the document"
msgstr "Placez et configurez les champs de formulaire dans le document"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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
#: 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 "Espace réservé"
@@ -6250,8 +6331,8 @@ msgstr "Veuillez choisir votre nouveau mot de passe"
msgid "Please complete the document once reviewed"
msgstr "Veuillez compléter le document après l'avoir examiné"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Please configure the document first"
msgstr "Veuillez d'abord configurer le document"
@@ -6275,9 +6356,9 @@ msgstr "Veuillez contacter le propriétaire du site pour obtenir de l'aide suppl
msgid "Please enter a meaningful name for your token. This will help you identify it later."
msgstr "Veuillez entrer un nom significatif pour votre token. Cela vous aidera à l'identifier plus tard."
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Please enter a valid name."
msgstr "Veuiillez entrer un nom valide."
@@ -6329,6 +6410,10 @@ msgstr "Veuillez noter que vous perdrez l'accès à tous les documents associés
msgid "Please open your authenticator app and enter the 6-digit code for this document."
msgstr "Veuillez ouvrir votre application d'authentification et entrer le code à 6 chiffres pour ce document."
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+msgid "Please provide a reason for rejecting this document"
+msgstr "Veuillez indiquer une raison pour le refus de ce document"
+
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
msgid "Please provide a token from the authenticator, or a backup code. If you do not have a backup code available, please contact support."
msgstr "Veuillez fournir un token de l'authentificateur, ou un code de secours. Si vous n'avez pas de code de secours disponible, veuillez contacter le support."
@@ -6365,10 +6450,10 @@ msgstr "Veuillez réessayer et assurez-vous d'entrer la bonne adresse email."
msgid "Please try again later."
msgstr "Veuillez réessayer plus tard."
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Please try again or contact our support."
msgstr "Veuillez réessayer ou contacter notre support."
@@ -6382,8 +6467,8 @@ msgstr "Veuiillez taper {0} pour confirmer"
msgid "Please type <0>{0}0> to confirm."
msgstr "Veuillez taper <0>{0}0> pour confirmer."
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Please upload a document to continue"
msgstr "Veuillez télécharger un document pour continuer"
@@ -6395,15 +6480,15 @@ msgstr "Veuillez télécharger un logo"
msgid "Pre-formatted CSV template with example data."
msgstr "Modèle CSV pré-formaté avec des données d'exemple."
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Preferences"
msgstr "Préférences"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Preview"
msgstr "Aperçu"
@@ -6425,8 +6510,8 @@ msgstr "Aperçu du document avant l'envoi"
msgid "Preview what the signed document will look like with placeholder data"
msgstr "Aperçu de l'apparence du document signé avec les données de remplacement"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Private"
msgstr "Privé"
@@ -6442,10 +6527,14 @@ msgstr "Les modèles privés ne peuvent être modifiés et consultés que par vo
msgid "Proceed"
msgstr "Procéder"
-#: 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/routes/_recipient+/sign.$token+/complete.tsx
+msgid "Processing document"
+msgstr "Traitement du document"
+
#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/profile.tsx
msgid "Profile"
msgstr "Profil"
@@ -6457,8 +6546,8 @@ msgstr "Le profil est actuellement <0>caché0>."
msgid "Profile is currently <0>visible0>."
msgstr "Le profil est actuellement <0>visible0>."
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Profile updated"
msgstr "Profil mis à jour"
@@ -6474,15 +6563,15 @@ msgstr "Fournisseur"
msgid "Provider has been updated successfully"
msgstr "Le fournisseur a été mis à jour avec succès"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Public"
msgstr "Public"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Public Profile"
msgstr "Profil public"
@@ -6503,8 +6592,8 @@ msgid "Quick Actions"
msgstr "Actions Rapides"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Radio"
msgstr "Radio"
@@ -6517,11 +6606,11 @@ msgstr "Paramètres Radio"
msgid "Radio values"
msgstr "Valeurs radio"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Read only"
msgstr "Lecture seule"
@@ -6570,8 +6659,8 @@ msgstr "Une nouvelle authentification est requise pour signer ce champ"
msgid "Receives copy"
msgstr "Recevoir une copie"
-#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Recent activity"
msgstr "Activité récente"
@@ -6579,10 +6668,10 @@ msgstr "Activité récente"
msgid "Recent documents"
msgstr "Documents récents"
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: 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
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
@@ -6592,9 +6681,9 @@ msgid "Recipient"
msgstr "Destinataire"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Recipient action authentication"
msgstr "Authentification d'action de destinataire"
@@ -6614,11 +6703,11 @@ msgstr "E-mail de demande de signature de destinataire"
msgid "Recipient updated"
msgstr "Destinataire mis à jour"
-#: 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
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Recipients"
msgstr "Destinataires"
@@ -6662,10 +6751,10 @@ msgstr "Rouge"
msgid "Redirect URI"
msgstr "URI de Redirection"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Redirect URL"
msgstr "URL de redirection"
@@ -6673,8 +6762,8 @@ msgstr "URL de redirection"
msgid "Redirecting"
msgstr "Redirection"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Registration Successful"
msgstr "Inscription réussie"
@@ -6682,19 +6771,19 @@ msgstr "Inscription réussie"
msgid "Reject"
msgstr "Rejeter"
-#: 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
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.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
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
msgid "Reject Document"
msgstr "Rejeter le Document"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
msgid "Rejected"
msgstr "Rejeté"
@@ -6707,8 +6796,8 @@ msgstr "Rejet Confirmé"
msgid "Rejection reason: {reason}"
msgstr "Motif du rejet : {reason}"
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
msgid "Reload"
msgstr "Recharger"
@@ -6734,34 +6823,34 @@ msgstr "Rappel : Veuillez {recipientActionVerb} ce document"
msgid "Reminder: Please {recipientActionVerb} your document"
msgstr "Rappel : Veuillez {recipientActionVerb} votre document"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/avatar-image.tsx
-#: apps/remix/app/components/dialogs/template-use-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-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Remove"
msgstr "Retirer"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Remove email domain"
msgstr "Suppression du domaine de messagerie"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Remove organisation group"
msgstr "Supprimer le groupe d'organisation"
@@ -6773,13 +6862,13 @@ msgstr "Supprimer le membre de l'organisation"
msgid "Remove team email"
msgstr "Supprimer l'adresse e-mail de l'équipe"
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Remove team member"
msgstr "Supprimer le membre de l'équipe"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Repeat Password"
msgstr "Répéter le mot de passe"
@@ -6787,22 +6876,26 @@ msgstr "Répéter le mot de passe"
msgid "Reply to email"
msgstr "Répondre à l'e-mail"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Reply To Email"
msgstr "Répondre à l'e-mail"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Request"
+msgstr "Requête"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Requesting Organisation"
msgstr "Organisation Demandeuse"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Required field"
msgstr "Champ requis"
@@ -6818,8 +6911,9 @@ msgstr "Portées requises"
msgid "Reseal document"
msgstr "Rescellage du document"
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Resend"
msgstr "Renvoyer"
@@ -6832,9 +6926,9 @@ msgstr "Renvoyer le code"
msgid "Resend Confirmation Email"
msgstr "Renvoyer l'e-mail de confirmation"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Resend Document"
msgstr "Renvoyer le document"
@@ -6842,9 +6936,9 @@ msgstr "Renvoyer le document"
msgid "Resend verification"
msgstr "Renvoyer la vérification"
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Reset"
msgstr "Réinitialiser"
@@ -6857,9 +6951,9 @@ msgstr "Réinitialiser 2FA"
msgid "Reset email sent"
msgstr "E-mail de réinitialisation envoyé"
-#: 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
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Reset Password"
msgstr "Réinitialiser le mot de passe"
@@ -6884,6 +6978,18 @@ msgstr "Résoudre"
msgid "Resolve payment"
msgstr "Résoudre le paiement"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response"
+msgstr "Réponse"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Code"
+msgstr "Code de réponse"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Headers"
+msgstr "En-têtes de réponse"
+
#: 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 "Soyez assuré, votre document eststrictement confidentiel et ne sera jamais partagé. Seule votre expérience de signature sera mise en avant. Partagez votre carte de signature personnalisée pour mettre en valeur votre signature !"
@@ -6904,11 +7010,11 @@ msgstr "Réessayé"
msgid "Retry"
msgstr "Réessayer"
-#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "Return"
msgstr "Retour"
@@ -6924,8 +7030,8 @@ msgstr "Revenir aux documents"
msgid "Return to Home"
msgstr "Retour à l'accueil"
-#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
msgid "Return to sign in"
msgstr "Retour à la connexion"
@@ -6937,8 +7043,8 @@ msgstr "Revenir aux modèles"
msgid "Review request"
msgstr "Revoir la demande"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Revoke"
msgstr "Révoquer"
@@ -6956,24 +7062,24 @@ msgstr "Révoquer toutes les sessions"
msgid "Right"
msgstr "Droit"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Role"
msgstr "Rôle"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Roles"
msgstr "Rôles"
@@ -6981,11 +7087,11 @@ msgstr "Rôles"
msgid "Rows per page"
msgstr "Lignes par page"
-#: 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/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
msgid "Save"
msgstr "Sauvegarder"
@@ -7004,12 +7110,13 @@ msgstr "Sauvegarder le modèle"
msgid "Sealing job started"
msgstr "Le travail d'étanchéité a commencé"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
-#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Search"
msgstr "Recherche"
@@ -7025,6 +7132,10 @@ msgstr "Recherche par ID de réclamation ou nom"
msgid "Search by document title"
msgstr "Recherche par titre de document"
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Search by ID"
+msgstr "Rechercher par ID"
+
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
msgid "Search by name or email"
msgstr "Recherche par nom ou e-mail"
@@ -7041,11 +7152,11 @@ msgstr "Rechercher par nom d'organisation"
msgid "Search documents..."
msgstr "Rechercher des documents..."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "Search folders..."
msgstr "Rechercher dans les dossiers..."
@@ -7057,10 +7168,10 @@ msgstr "Rechercher des langues..."
msgid "Secret"
msgstr "Secret"
-#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Security"
msgstr "Sécurité"
@@ -7073,8 +7184,8 @@ msgid "See the background jobs tab for the status"
msgstr "Voir l'onglet travaux en arrière-plan pour le statut"
#: 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
+#: packages/ui/primitives/document-flow/types.ts
msgid "Select"
msgstr "Sélectionner"
@@ -7094,6 +7205,10 @@ msgstr "Sélectionnez un plan"
msgid "Select a plan to continue"
msgstr "Sélectionnez un plan pour continuer"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Select a recipient"
+msgstr "Sélectionnez un destinataire"
+
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
msgid "Select a team to view its dashboard"
msgstr "Sélectionnez une équipe pour voir son tableau de bord"
@@ -7114,6 +7229,10 @@ msgstr "Sélectionner un fuseau horaire"
msgid "Select access methods"
msgstr "Sélectionnez les méthodes d'accès"
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+msgid "Select an event type"
+msgstr "Sélectionnez un type d’événement"
+
#: apps/remix/app/components/dialogs/sign-field-dropdown-dialog.tsx
#: packages/ui/primitives/combobox.tsx
msgid "Select an option"
@@ -7128,8 +7247,8 @@ msgstr "Sélectionnez une organisation pour voir les équipes"
msgid "Select at least"
msgstr "Sélectionnez au moins"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "Select authentication methods"
msgstr "Sélectionnez les méthodes d'authentification"
@@ -7142,8 +7261,8 @@ msgstr "Sélectionner l'option par défaut"
msgid "Select default role"
msgstr "Sélectionner le rôle par défaut"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Select direction"
msgstr "Sélectionner la direction"
@@ -7160,9 +7279,9 @@ msgstr "Sélectionnez des groupes de membres à ajouter à l'équipe."
msgid "Select groups to add to this team"
msgstr "Sélectionnez des groupes à ajouter à cette équipe"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Select members"
msgstr "Sélectionnez des membres"
@@ -7182,11 +7301,20 @@ msgstr "Sélectionner une option"
msgid "Select passkey"
msgstr "Sélectionner la clé d'authentification"
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Select signature types"
msgstr "Sélectionnez les types de signature"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Select text align"
msgstr "Sélectionner l'alignement du texte"
@@ -7207,6 +7335,10 @@ msgstr "Sélectionnez les membres à inclure dans ce groupe"
msgid "Select triggers"
msgstr "Sélectionner les déclencheurs"
+#: packages/ui/primitives/multi-select-combobox.tsx
+msgid "Select values..."
+msgstr "Sélectionnez des valeurs..."
+
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Select vertical align"
msgstr "Sélectionner l'alignement vertical"
@@ -7215,20 +7347,20 @@ msgstr "Sélectionner l'alignement vertical"
msgid "Select visibility"
msgstr "Sélectionner la visibilité"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Selected Recipient"
msgstr "Destinataire Sélectionné"
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send"
msgstr "Envoyer"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Send a test webhook with sample data to verify your integration is working correctly."
msgstr "Envoyez un webhook de test avec des données échantillons pour vérifier que votre intégration fonctionne correctement."
@@ -7241,9 +7373,9 @@ msgstr "Envoyer l'e-mail de confirmation"
msgid "Send document"
msgstr "Envoyer le document"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send Document"
msgstr "Envoyer le document"
@@ -7288,8 +7420,8 @@ msgstr "Envoyer l'e-mail signé par le destinataire"
msgid "Send recipient signing request email"
msgstr "Envoyer l'e-mail de demande de signature de destinataire"
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
msgid "Send reminder"
msgstr "Envoyer un rappel"
@@ -7297,12 +7429,8 @@ msgstr "Envoyer un rappel"
msgid "Send reminders to the following recipients"
msgstr "Envoyer des rappels aux destinataires suivants"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
-msgid "Send Test Webhook"
-msgstr "Envoyer le webhook de test"
-
-#: apps/remix/app/components/tables/inbox-table.tsx
#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Sender"
msgstr "Expéditeur"
@@ -7314,8 +7442,10 @@ msgstr "Envoi de l'e-mail de réinitialisation..."
msgid "Sending..."
msgstr "Envoi..."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Sent"
msgstr "Envoyé"
@@ -7339,15 +7469,15 @@ msgstr "Configurez les propriétés de votre document et les informations du des
msgid "Set up your template properties and recipient information"
msgstr "Configurez les propriétés de votre modèle et les informations du destinataire"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/_layout.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/app-nav-mobile.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
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
msgid "Settings"
msgstr "Paramètres"
@@ -7355,17 +7485,14 @@ msgstr "Paramètres"
msgid "Setup"
msgstr "Configuration"
-#: 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/tables/documents-table-action-dropdown.tsx
+#: packages/ui/components/document/document-share-button.tsx
msgid "Share"
msgstr "Partager"
-#: packages/ui/components/document/document-share-button.tsx
-msgid "Share Signature Card"
-msgstr "Partager la carte de signature"
-
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Share Signing Card"
msgstr "Partager la carte de signature"
@@ -7382,8 +7509,8 @@ msgid "Show"
msgstr "Afficher"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Show advanced settings"
msgstr "Afficher les paramètres avancés"
@@ -7391,26 +7518,26 @@ msgstr "Afficher les paramètres avancés"
msgid "Show templates in your public profile for your audience to sign and get started quickly"
msgstr "Afficher des modèles dans votre profil public pour que votre audience puisse signer et commencer rapidement"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/components/tables/inbox-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/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-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
-#: apps/remix/app/components/general/document/document-page-view-button.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/user-profile-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Sign"
msgstr "Signer"
@@ -7435,15 +7562,15 @@ msgstr "Signer comme<0>{0} <1>({1})1>0>"
msgid "Sign Checkbox Field"
msgstr "Champ de case à cocher signe"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign document"
msgstr "Signer le document"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Sign Document"
msgstr "Signer le document"
@@ -7464,16 +7591,16 @@ msgstr "Champ de signature"
msgid "Sign Here"
msgstr "Signer ici"
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: packages/email/template-components/template-reset-password.tsx
msgid "Sign In"
msgstr "Se connecter"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Sign in to your account"
msgstr "Connectez-vous à votre compte"
@@ -7489,9 +7616,9 @@ msgstr "Nom de Signature"
msgid "Sign Number Field"
msgstr "Champ de nombre à signer"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Sign Out"
msgstr "Déconnexion"
@@ -7503,8 +7630,8 @@ msgstr "Champ de signature"
msgid "Sign Text Field"
msgstr "Champ de texte à signer"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign the document to complete the process."
msgstr "Signez le document pour terminer le processus."
@@ -7537,21 +7664,21 @@ msgstr "Signez votre nom complet dans le champ"
msgid "Sign your initials into the field"
msgstr "Signez vos initiales dans le champ"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Signature"
msgstr "Signature"
@@ -7579,15 +7706,10 @@ msgstr "Types de signature"
msgid "Signatures Collected"
msgstr "Signatures collectées"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/ui/components/document/document-read-only-fields.tsx
-msgid "Signed"
-msgstr "Signé"
-
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-msgctxt "Signed document (adjective)"
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Signed"
msgstr "Signé"
@@ -7596,6 +7718,11 @@ msgctxt "Recipient role actioned"
msgid "Signed"
msgstr "Signé"
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+msgctxt "Signed document (adjective)"
+msgid "Signed"
+msgstr "Signé"
+
#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Signer"
msgstr "Signataire"
@@ -7641,8 +7768,8 @@ msgstr "Signé pour"
msgid "Signing in..."
msgstr "Connexion en cours..."
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Signing Links"
msgstr "Liens de signature"
@@ -7651,8 +7778,8 @@ msgid "Signing links have been generated for this document."
msgstr "Des liens de signature ont été générés pour ce document."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Signing order is enabled."
msgstr "L'ordre de signature est activé."
@@ -7669,8 +7796,8 @@ msgstr "Depuis {0}"
msgid "Site Banner"
msgstr "Bannière du site"
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "Site Settings"
msgstr "Paramètres du site"
@@ -7678,50 +7805,51 @@ msgstr "Paramètres du site"
msgid "Some signers have not been assigned a signature field. Please assign at least 1 signature field to each signer before proceeding."
msgstr "Certains signataires n'ont pas été assignés à un champ de signature. Veuillez assigner au moins 1 champ de signature à chaque signataire avant de continuer."
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/general/billing-plans.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.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-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/embed/embed-document-signing-page-v1.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-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/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-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
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-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-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-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-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
+#: apps/remix/app/components/general/document/document-audit-log-download-button.tsx
+#: apps/remix/app/components/general/document/document-certificate-download-button.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
#: packages/ui/components/document/document-share-button.tsx
msgid "Something went wrong"
msgstr "Quelque chose a mal tourné"
@@ -7731,10 +7859,10 @@ msgstr "Quelque chose a mal tourné"
msgid "Something went wrong while attempting to verify your email address for <0>{0}0>. Please try again later."
msgstr "Quelque chose a mal tourné lors de la tentative de vérification de votre adresse e-mail pour <0>{0}0>. Veuillez réessayer plus tard."
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Something went wrong while loading the document."
msgstr "Une erreur s'est produite lors du chargement du document."
@@ -7759,10 +7887,10 @@ msgstr "Quelque chose a mal tourné lors de la mise à jour de l'abonnement de l
msgid "Something went wrong while uploading this file"
msgstr "Une erreur s'est produite lors du téléchargement de ce fichier"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
msgid "Something went wrong!"
msgstr "Quelque chose a mal tourné !"
@@ -7774,8 +7902,8 @@ msgstr "Quelque chose a mal tourné."
msgid "Something went wrong. Please try again later."
msgstr "Quelque chose a mal tourné. Veuillez réessayer plus tard."
-#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Something went wrong. Please try again or contact support."
msgstr "Quelque chose a mal tourné. Veuillez réessayer ou contacter le support."
@@ -7787,8 +7915,8 @@ msgstr "Désolé, nous n'avons pas pu télécharger les journaux d'audit. Veuill
msgid "Sorry, we were unable to download the certificate. Please try again later."
msgstr "Désolé, nous n'avons pas pu télécharger le certificat. Veuillez réessayer plus tard."
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Source"
msgstr "Source"
@@ -7804,16 +7932,19 @@ msgstr "SSO"
msgid "Stats"
msgstr "Statistiques"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Status"
msgstr "Statut"
@@ -7840,14 +7971,14 @@ msgstr "Le client Stripe a été créé avec succès"
msgid "Stripe Customer ID"
msgstr "ID client Stripe"
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Subject"
msgstr "Sujet"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Subject <0>(Optional)0>"
msgstr "Objet <0>(Optionnel)0>"
@@ -7866,8 +7997,8 @@ msgstr "Soumis"
msgid "Subscribe"
msgstr "S'abonner"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Subscription"
msgstr "Abonnement"
@@ -7891,59 +8022,65 @@ msgstr "Réclamations d'abonnement"
msgid "Subscription invalid"
msgstr "Abonnement non valide"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/verify-email-banner.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/organisation-update-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Subscription Status"
+msgstr "Statut de l’abonnement"
+
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-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-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-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/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/verify-email-banner.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Success"
msgstr "Succès"
@@ -7959,8 +8096,14 @@ msgstr "Créés avec succès : {successCount}"
msgid "Summary:"
msgstr "Résumé :"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+msgid "support"
+msgstr "support"
+
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "Support"
msgstr "Assistance"
@@ -7981,11 +8124,11 @@ msgid "Sync failed, changes not saved"
msgstr "Échec de la synchronisation, modifications non enregistrées"
#: packages/lib/utils/document-audit-logs.ts
-msgctxt "Audit log format"
msgid "System auto inserted fields"
msgstr "Champs insérés automatiquement par le système"
#: packages/lib/utils/document-audit-logs.ts
+msgctxt "Audit log format"
msgid "System auto inserted fields"
msgstr "Champs insérés automatiquement par le système"
@@ -7997,10 +8140,10 @@ msgstr "Exigences du système"
msgid "System Theme"
msgstr "Thème système"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team"
msgstr "Équipe"
@@ -8017,8 +8160,8 @@ msgstr "Admin de l'équipe"
msgid "Team Assignments"
msgstr "Affectations de l'équipe"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Team Count"
msgstr "Nombre d'équipes"
@@ -8081,14 +8224,14 @@ msgstr "Membre de l'équipe"
msgid "Team Members"
msgstr "Membres de l'équipe"
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "Team members have been added."
msgstr "Les membres de l'équipe ont été ajoutés."
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
msgid "Team Name"
msgstr "Nom de l'équipe"
@@ -8105,9 +8248,9 @@ msgstr "Équipe uniquement"
msgid "Team only templates are not linked anywhere and are visible only to your team."
msgstr "Les modèles uniquement pour l'équipe ne sont liés nulle part et ne sont visibles que pour votre équipe."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team Role"
msgstr "Rôle de l'équipe"
@@ -8123,18 +8266,18 @@ msgstr "Paramètres de l'équipe"
msgid "Team url"
msgstr "URL de l'équipe"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Team URL"
msgstr "URL de l'équipe"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
msgid "Teams"
msgstr "Équipes"
@@ -8146,13 +8289,13 @@ msgstr "Les équipes vous aident à organiser votre travail et à collaborer ave
msgid "Teams that this organisation group is currently assigned to"
msgstr "Équipes auxquelles ce groupe d'organisation est actuellement attribué"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/public-profile-template-manage-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.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/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
msgid "Template"
msgstr "Modèle"
@@ -8217,17 +8360,17 @@ msgstr "Titre du modèle"
msgid "Template updated successfully"
msgstr "Modèle mis à jour avec succès"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Template uploaded"
msgstr "Modèle de document téléchargé"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.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
msgid "Templates"
msgstr "Modèles"
@@ -8235,8 +8378,10 @@ msgstr "Modèles"
msgid "Templates allow you to quickly generate documents with pre-filled recipients and fields."
msgstr "Les modèles vous permettent de générer rapidement des documents avec des destinataires et des champs pré-remplis."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Test"
+msgstr "Test"
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Test Webhook"
msgstr "Test du webhook"
@@ -8249,23 +8394,23 @@ msgstr "Échec du test du webhook"
msgid "Test webhook sent"
msgstr "Webhook de test envoyé"
+#: 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/envelope-editor/envelope-editor-fields-drag-drop.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
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/types.ts
-#: packages/ui/primitives/document-flow/add-fields.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Text"
msgstr "Texte"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Text Align"
msgstr "Alignement du texte"
@@ -8325,14 +8470,14 @@ msgstr "Le contenu à afficher dans la bannière, le HTML est autorisé"
msgid "The default email to use when sending emails to recipients"
msgstr "L'e-mail par défaut à utiliser lors de l'envoi de courriels aux destinataires"
-#: 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
+#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "The direct link has been copied to your clipboard"
msgstr "Le lien direct a été copié dans votre presse-papiers"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "The display name for this email address"
msgstr "Le nom d'affichage pour cette adresse e-mail"
@@ -8352,8 +8497,8 @@ msgstr "Le document est maintenant complet, veuillez suivre toutes les instructi
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 "Le propriétaire du document a été informé de ce rejet. Aucune action supplémentaire n'est requise de votre part pour le moment. Le propriétaire du document peut vous contacter pour toute question concernant ce rejet."
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "The document owner has been notified of your decision. They may contact you with further instructions if necessary."
msgstr "Le propriétaire du document a été informé de votre décision. Il peut vous contacter pour des instructions supplémentaires si nécessaire."
@@ -8373,8 +8518,8 @@ msgstr "Le document sera immédiatement envoyé aux destinataires si cela est co
msgid "The document you are looking for could not be found."
msgstr "Le document que vous cherchez n'a pas pu être trouvé."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
msgid "The document you are looking for may have been removed, renamed or may have never existed."
msgstr "Le document que vous recherchez a peut-être été supprimé, renommé ou n'a jamais existé."
@@ -8394,8 +8539,8 @@ msgstr "Le domaine de messagerie que vous recherchez a peut-être été supprim
msgid "The email or password provided is incorrect"
msgstr "L'email ou le mot de passe fourni est incorrect"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The events that will trigger a webhook to be sent to your URL."
msgstr "Les événements qui déclencheront un webhook à envoyer à votre URL."
@@ -8530,8 +8675,8 @@ msgid "The signer's name"
msgstr "Le nom du signataire"
#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "The signing link has been copied to your clipboard."
msgstr "Le lien de signature a été copié dans votre presse-papiers."
@@ -8597,8 +8742,8 @@ msgstr "La taille de la police de signature tapée"
msgid "The types of signatures that recipients are allowed to use when signing the document."
msgstr "Les types de signatures que les destinataires peuvent utiliser lors de la signature du document."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The URL for Documenso to send webhook events to."
msgstr "L'URL pour Documenso pour envoyer des événements webhook."
@@ -8614,7 +8759,7 @@ msgstr "L'authentification à deux facteurs de l'utilisateur a été réinitiali
msgid "The webhook has been successfully deleted."
msgstr "Le webhook a été supprimé avec succès."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The webhook has been updated successfully."
msgstr "Le webhook a été mis à jour avec succès."
@@ -8622,7 +8767,7 @@ msgstr "Le webhook a été mis à jour avec succès."
msgid "The webhook was successfully created."
msgstr "Le webhook a été créé avec succès."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "The webhook you are looking for may have been removed, renamed or may have never existed."
msgstr "Le webhook que vous recherchez a peut-être été supprimé, renommé ou n'a jamais existé."
@@ -8666,9 +8811,9 @@ msgstr "Ce compte n'a pas été vérifié. Veuillez vérifier votre compte avant
msgid "This action is irreversible. Please ensure you have informed the user before proceeding."
msgstr "Cette action est irréversible. Veuillez vous assurer d'en avoir informé l'utilisateur avant de continuer."
-#: 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
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "This action is not reversible. Please be certain."
msgstr "Cette action n'est pas réversible. Veuillez être sûr."
@@ -8696,8 +8841,8 @@ msgstr "Ce document n'a pas pu être supprimé pour le moment. Veuillez réessay
msgid "This document could not be downloaded at this time. Please try again."
msgstr "Ce document n'a pas pu être téléchargé pour le moment. Veuillez réessayer."
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
msgid "This document could not be duplicated at this time. Please try again."
msgstr "Ce document n'a pas pu être dupliqué pour le moment. Veuillez réessayer."
@@ -8705,6 +8850,7 @@ msgstr "Ce document n'a pas pu être dupliqué pour le moment. Veuillez réessay
msgid "This document could not be re-sent at this time. Please try again."
msgstr "Ce document n'a pas pu être renvoyé pour le moment. Veuillez réessayer."
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
msgid "This document has already been sent to this recipient. You can no longer edit this recipient."
msgstr "Ce document a déjà été envoyé à ce destinataire. Vous ne pouvez plus modifier ce destinataire."
@@ -8873,9 +9019,9 @@ msgstr "Ce token est invalide ou a expiré. Aucune action n'est nécessaire."
msgid "This token is invalid or has expired. Please contact your team for a new invitation."
msgstr "Ce token est invalide ou a expiré. Veuillez contacter votre équipe pour une nouvelle invitation."
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "This URL is already in use."
msgstr "Cette URL est déjà utilisée."
@@ -8915,21 +9061,21 @@ msgstr "Temps"
msgid "Time zone"
msgstr "Fuseau horaire"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Time Zone"
msgstr "Fuseau horaire"
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Title"
msgstr "Titre"
@@ -8964,12 +9110,12 @@ msgid "To change the email you must remove and add a new email address."
msgstr "Pour changer l'e-mail, vous devez supprimer et ajouter une nouvelle adresse e-mail."
#. placeholder {0}: user.email
-#. placeholder {0}: userToEnable.email
#. placeholder {0}: userToDisable.email
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#. placeholder {0}: userToEnable.email
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "To confirm, please enter the accounts email address <0/>({0})."
msgstr "Pour confirmer, veuillez entrer l'adresse e-mail du compte <0/>({0})."
@@ -8981,8 +9127,8 @@ msgstr "Pour confirmer, veuillez entrer la raison"
msgid "To enable two-factor authentication, scan the following QR code using your authenticator app."
msgstr "Pour activer l'authentification à deux facteurs, scannez le code QR suivant à l'aide de votre application d'authentification."
-#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
msgid "To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox."
msgstr "Pour accéder à votre compte, veuillez confirmer votre adresse e-mail en cliquant sur le lien de confirmation dans votre boîte de réception."
@@ -8997,8 +9143,8 @@ msgstr "Pour marquer ce document comme vu, vous devez être connecté."
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "To proceed further, please set at least one value for the {0} field."
msgstr "Pour continuer, veuillez définir au moins une valeur pour le champ {0}."
@@ -9074,8 +9220,8 @@ msgstr "Total des signataires qui se sont inscrits"
msgid "Total Users"
msgstr "Total des utilisateurs"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Triggers"
msgstr "Déclencheurs"
@@ -9087,8 +9233,8 @@ msgstr "Authentification à deux facteurs"
msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app."
msgstr "Les codes de récupération de l'authentification à deux facteurs sont utilisés pour accéder à votre compte dans le cas où vous perdez l'accès à votre application d'authentification."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Two-Factor Authentication"
msgstr "Authentification à deux facteurs"
@@ -9108,21 +9254,25 @@ msgstr "L'authentification à deux facteurs a été désactivée pour votre comp
msgid "Two-Factor Re-Authentication"
msgstr "Ré-authentification à deux facteurs"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Type"
msgstr "Type"
#: packages/lib/constants/document.ts
-msgctxt "Type signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Type signature"
msgid "Type"
-msgstr "Type"
+msgstr "Saisir"
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Type a command or search..."
msgstr "Tapez une commande ou recherchez..."
+#: packages/ui/primitives/signature-pad/signature-pad-type.tsx
+msgid "Type your signature"
+msgstr "Saisissez votre signature"
+
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
msgid "Typed signatures are not allowed. Please draw your signature."
msgstr "Les signatures dactylographiées ne sont pas autorisées. Veuillez dessiner votre signature."
@@ -9209,11 +9359,11 @@ msgstr "Impossible de configurer l'authentification à deux facteurs"
msgid "Unable to sign in"
msgstr "Impossible de se connecter"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Unauthorized"
msgstr "Non autorisé"
@@ -9221,15 +9371,15 @@ msgstr "Non autorisé"
msgid "Uncompleted"
msgstr "Non complet"
-#: 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
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.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
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Unknown"
msgstr "Inconnu"
@@ -9258,27 +9408,28 @@ msgstr "Détacher"
msgid "Untitled Group"
msgstr "Groupe sans titre"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: 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/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Update"
@@ -9288,8 +9439,8 @@ msgstr "Mettre à jour"
msgid "Update Banner"
msgstr "Mettre à jour la bannière"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Update Billing"
msgstr "Mettre à jour la facturation"
@@ -9313,9 +9464,9 @@ msgstr "Mettre à jour les champs"
msgid "Update organisation"
msgstr "Mettre à jour l'organisation"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "Update organisation member"
msgstr "Mettre à jour le membre de l'organisation"
@@ -9331,16 +9482,16 @@ msgstr "Mettre à jour le mot de passe"
msgid "Update profile"
msgstr "Mettre à jour le profil"
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
msgid "Update Recipient"
msgstr "Mettre à jour le destinataire"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Update role"
msgstr "Mettre à jour le rôle"
@@ -9375,10 +9526,6 @@ msgstr "Mettez à jour le rôle et ajoutez des champs selon les besoins pour le
msgid "Update user"
msgstr "Mettre à jour l'utilisateur"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "Update webhook"
-msgstr "Mettre à jour le webhook"
-
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
msgid "Updated {organisationMemberName} to {roleLabel}."
msgstr "Mise à jour de {organisationMemberName} vers {roleLabel}."
@@ -9391,8 +9538,8 @@ msgstr "Mise à jour du mot de passe..."
msgid "Updating Your Information"
msgstr "Mise à jour de vos informations"
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "Upgrade"
msgstr "Améliorer"
@@ -9406,12 +9553,12 @@ msgid "Upgrade your plan to upload more documents"
msgstr "Mettez à niveau votre plan pour importer plus de documents"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
msgid "Upload"
msgstr "Importer"
#: packages/lib/constants/document.ts
-msgctxt "Upload signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Upload signature"
msgid "Upload"
msgstr "Importer"
@@ -9443,8 +9590,8 @@ msgstr "Importer un document personnalisé"
msgid "Upload disabled"
msgstr "Importation désactivée"
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: packages/ui/primitives/document-upload-button.tsx
msgid "Upload Document"
msgstr "Importer le document"
@@ -9454,8 +9601,8 @@ msgid "Upload documents and add recipients"
msgstr "Importer des documents et ajouter des destinataires"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Upload failed"
msgstr "Échec de l'importation"
@@ -9476,8 +9623,8 @@ msgstr "Importer le document modèle"
msgid "Upload your brand logo (max 5MB, JPG, PNG, or WebP)"
msgstr "Téléchargez votre logo de marque (max 5 Mo, JPG, PNG ou WebP)"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Uploaded by"
msgstr "Téléversé par"
@@ -9506,18 +9653,18 @@ msgstr "URL"
msgid "Use"
msgstr "Utiliser"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Authenticator"
msgstr "Utiliser l'authentificateur"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Backup Code"
msgstr "Utiliser le code de secours"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
msgid "Use Template"
msgstr "Utiliser le modèle"
@@ -9529,8 +9676,8 @@ msgstr "Utilisez votre application d'authentification pour générer un code"
msgid "Use your passkey for authentication"
msgstr "Utilisez votre clé d'accès pour l'authentification"
-#: apps/remix/app/components/tables/internal-audit-log-table.tsx
#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/internal-audit-log-table.tsx
msgid "User"
msgstr "Utilisateur"
@@ -9546,10 +9693,10 @@ msgstr "L'utilisateur n'a pas de mot de passe."
msgid "User not found"
msgstr "Utilisateur non trouvé"
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "User not found."
msgstr "Utilisateur non trouvé."
@@ -9569,15 +9716,15 @@ msgstr "Paramètres de l'utilisateur"
msgid "User with this email already exists. Please use a different email address."
msgstr "Un utilisateur avec cet e-mail existe déjà. Veuillez utiliser une adresse e-mail différente."
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
msgid "Users"
msgstr "Utilisateurs"
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Validation"
msgstr "Validation"
@@ -9585,9 +9732,9 @@ msgstr "Validation"
msgid "Validation failed"
msgstr "La validation a échoué"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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 "Value"
@@ -9629,8 +9776,8 @@ msgstr "Vérifiez votre adresse e-mail"
msgid "Verify your email address to unlock all features."
msgstr "Vérifiez votre adresse e-mail pour débloquer toutes les fonctionnalités."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Verify your email to upload documents."
msgstr "Vérifiez votre e-mail pour importer des documents."
@@ -9638,8 +9785,8 @@ msgstr "Vérifiez votre e-mail pour importer des documents."
msgid "Verify your team email address"
msgstr "Vérifiez votre adresse e-mail d'équipe"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Vertical"
msgstr "Vertical"
@@ -9648,15 +9795,15 @@ msgstr "Vertical"
msgid "Vertical Align"
msgstr "Alignement Vertical"
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/inbox-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
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.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/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
msgid "View"
msgstr "Voir"
@@ -9689,13 +9836,13 @@ msgstr "Voir tous les documents associés"
msgid "View all security activity related to your account."
msgstr "Voir toute l'activité de sécurité liée à votre compte."
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "View and manage all active sessions for your account."
msgstr "Afficher et gérer toutes les sessions actives de votre compte."
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "View and manage all login methods linked to your account."
msgstr "Voir et gérer toutes les méthodes de connexion liée à votre compte."
@@ -9711,14 +9858,14 @@ msgstr "Voir les enregistrements DNS"
msgid "View document"
msgstr "Voir le document"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.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
-#: packages/email/template-components/template-document-rejected.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: packages/email/template-components/template-document-invite.tsx
+#: packages/email/template-components/template-document-rejected.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
msgid "View Document"
msgstr "Voir le document"
@@ -9738,6 +9885,10 @@ msgstr "Voir Document pour signature"
msgid "View documents associated with this email"
msgstr "Voir les documents associés à cet e-mail"
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+msgid "View insights"
+msgstr "Afficher les statistiques"
+
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
msgid "View invites"
msgstr "Voir les invitations"
@@ -9771,9 +9922,9 @@ msgstr "Voir les équipes"
msgid "View the DNS records for this email domain"
msgstr "Voir les enregistrements DNS pour ce domaine de messagerie"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Viewed"
msgstr "Vu"
@@ -9821,8 +9972,8 @@ msgstr "En attente que d'autres terminent la signature."
msgid "Waiting for others to sign"
msgstr "En attente que d'autres signent"
-#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
#: apps/remix/app/components/embed/embed-document-waiting-for-turn.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
msgid "Waiting for Your Turn"
msgstr "En attente de votre tour"
@@ -9838,17 +9989,17 @@ msgstr "Vous voulez votre propre profil public ?"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
msgid "Warning: Assistant as last signer"
msgstr "Avertissement : Assistant comme dernier signataire"
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
msgstr "Nous ne pouvons pas accéder au portail de facturation pour le moment. Veuillez réessayer ou contacter le support."
@@ -9895,12 +10046,12 @@ msgstr "Une erreur s'est produite lors de la suppression du lien direct vers le
msgid "We encountered an error while sending the test webhook. Please check your endpoint and try again."
msgstr "Nous avons rencontré une erreur lors de l'envoi du webhook de test. Veuillez vérifier votre point de terminaison et réessayer."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "We encountered an error while updating the webhook. Please try again later."
msgstr "Une erreur s'est produite lors de la mise à jour du webhook. Veuillez réessayer plus tard."
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "We encountered an unknown error while attempting to add team members. Please try again later."
msgstr "Nous avons rencontré une erreur inconnue lors de la tentative d'ajout de membres à l'équipe. Veuillez réessayer plus tard."
@@ -9916,8 +10067,8 @@ msgstr "Nous avons rencontré une erreur inconnue lors de l'ajout de votre domai
msgid "We encountered an unknown error while attempting to create a group. Please try again later."
msgstr "Nous avons rencontré une erreur inconnue lors de la tentative de création d'un groupe. Veuillez réessayer plus tard."
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "We encountered an unknown error while attempting to create a organisation. Please try again later."
msgstr "Nous avons rencontré une erreur inconnue lors de la tentative de création d'une organisation. Veuillez réessayer plus tard."
@@ -9973,8 +10124,8 @@ msgstr "Nous avons rencontré une erreur inconnue lors de la tentative de suppre
msgid "We encountered an unknown error while attempting to remove this envelope item. Please try again later."
msgstr "Nous avons rencontré une erreur inconnue lors de la tentative de suppression de cet élément d'enveloppe. Veuillez réessayer plus tard."
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this group. Please try again later."
msgstr "Nous avons rencontré une erreur inconnue lors de la tentative de supprimer ce groupe. Veuillez réessayer plus tard."
@@ -9982,8 +10133,8 @@ msgstr "Nous avons rencontré une erreur inconnue lors de la tentative de suppri
msgid "We encountered an unknown error while attempting to remove this template from your profile. Please try again later."
msgstr "Une erreur inconnue s'est produite lors de la suppression de ce modèle de votre profil. Veuillez réessayer plus tard."
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this user. Please try again later."
msgstr "Une erreur inconnue s'est produite lors de la suppression de cet utilisateur. Veuillez réessayer plus tard."
@@ -10000,10 +10151,10 @@ msgstr "Une erreur inconnue s'est produite lors de la réinitialisation de votre
msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support."
msgstr "Une erreur inconnue s'est produite lors de la révocation de l'accès. Veuillez réessayer ou contacter le support."
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
msgid "We encountered an unknown error while attempting to sign you In. Please try again later."
msgstr "Une erreur inconnue s'est produite lors de la connexion. Veuillez réessayer plus tard."
@@ -10025,13 +10176,13 @@ msgstr "Nous avons rencontré une erreur inconnue lors de la tentative de mise
msgid "We encountered an unknown error while attempting to update the template. Please try again later."
msgstr "Une erreur inconnue s'est produite lors de la mise à jour du modèle. Veuillez réessayer plus tard."
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this organisation member. Please try again later."
msgstr "Nous avons rencontré une erreur inconnue lors de la tentative de mise à jour de ce membre de l'organisation. Veuillez réessayer plus tard."
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this team member. Please try again later."
msgstr "Une erreur inconnue s'est produite lors de la mise à jour de ce membre de l'équipe. Veuillez réessayer plus tard."
@@ -10039,8 +10190,8 @@ msgstr "Une erreur inconnue s'est produite lors de la mise à jour de ce membre
msgid "We encountered an unknown error while attempting to update your organisation. Please try again later."
msgstr "Nous avons rencontré une erreur inconnue lors de la tentative de mise à jour de votre organisation. Veuillez réessayer plus tard."
-#: apps/remix/app/components/forms/password.tsx
#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
msgid "We encountered an unknown error while attempting to update your password. Please try again later."
msgstr "Une erreur inconnue s'est produite lors de la mise à jour de votre mot de passe. Veuillez réessayer plus tard."
@@ -10084,9 +10235,9 @@ msgstr "Nous n'avons pas pu créer votre compte. Veuillez vérifier les informat
msgid "We were unable to disable two-factor authentication for your account. Please ensure that you have entered your password and backup code correctly and try again."
msgstr "Nous n'avons pas pu désactiver l'authentification à deux facteurs pour votre compte. Veuillez vous assurer que vous avez correctement entré votre mot de passe et votre code de secours, puis réessayez."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "We were unable to log you out at this time."
msgstr "Nous n'avons pas pu vous déconnecter pour le moment."
@@ -10099,11 +10250,11 @@ msgstr "Nous n'avons pas pu définir votre profil public comme public. Veuillez
msgid "We were unable to setup two-factor authentication for your account. Please ensure that you have entered your code correctly and try again."
msgstr "Nous n'avons pas pu configurer l'authentification à deux facteurs pour votre compte. Veuillez vous assurer que vous avez correctement entré votre code et réessayez."
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
msgid "We were unable to submit this document at this time. Please try again later."
msgstr "Nous n'avons pas pu soumettre ce document pour le moment. Veuillez réessayer plus tard."
@@ -10122,8 +10273,8 @@ msgstr "Nous n'avons pas pu mettre à jour vos préférences de document pour le
msgid "We were unable to update your email preferences at this time, please try again later"
msgstr "Nous n'avons pas pu mettre à jour vos préférences d'e-mail pour le moment, veuillez réessayer plus tard"
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "We were unable to verify your details. Please try again or contact support"
msgstr "Nous n'avons pas pu vérifier vos détails. Veuillez réessayer ou contacter le support"
@@ -10135,14 +10286,14 @@ msgstr "Nous n'avons pas pu vérifier votre email pour le moment."
msgid "We were unable to verify your email. If your email is not verified already, please try again."
msgstr "Nous n'avons pas pu vérifier votre e-mail. Si votre e-mail n'est pas déjà vérifié, veuillez réessayer."
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We will generate signing links for you, which you can send to the recipients through your method of choice."
msgstr "Nous allons générer des liens de signature pour vous, que vous pouvez envoyer aux destinataires par votre méthode de choix."
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We won't send anything to notify recipients."
msgstr "Nous n'enverrons rien pour notifier les destinataires."
@@ -10155,8 +10306,8 @@ msgstr "Nous vous recontacterons dès que possible par email."
msgid "We'll send a 6-digit code to your email"
msgstr "Nous enverrons un code de 6 chiffres à votre email"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
msgid "We're all empty"
msgstr "Nous sommes tous vides"
@@ -10176,6 +10327,11 @@ msgstr "Nous avons envoyé un code de vérification à 6 chiffres à votre email
msgid "We've sent a confirmation email to <0>{email}0>. Please check your inbox and click the link in the email to verify your account."
msgstr "Nous avons envoyé un e-mail de confirmation à <0>{email}0>. Veuillez vérifier votre boîte de réception et cliquer sur le lien de l'e-mail pour vérifier votre compte."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Webhook"
+msgstr "Webhook"
+
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
msgid "Webhook created"
msgstr "Webhook créé"
@@ -10184,23 +10340,31 @@ msgstr "Webhook créé"
msgid "Webhook deleted"
msgstr "Webhook supprimé"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook Details"
+msgstr "Détails du webhook"
+
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Webhook not found"
msgstr "Webhook introuvable"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook successfully sent"
+msgstr "Webhook envoyé avec succès"
+
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Webhook updated"
msgstr "Webhook mis à jour"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Webhook URL"
msgstr "URL du webhook"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Webhooks"
msgstr "Webhooks"
@@ -10236,10 +10400,10 @@ msgstr "Essayiez-vous d'éditer ce document à la place ?"
msgid "What you can do with teams:"
msgstr "Ce que vous pouvez faire avec les équipes :"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "When enabled, signers can choose who should sign next in the sequence instead of following the predefined order."
msgstr "Lorsqu'il est activé, les signataires peuvent choisir qui doit signer ensuite au lieu de suivre l'ordre prédéfini."
@@ -10279,20 +10443,20 @@ msgstr "Retrait du consentement"
msgid "Write a description to display on your public profile"
msgstr "Écrivez une description à afficher sur votre profil public"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Yearly"
msgstr "Annuel"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Yes"
msgstr "Oui"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: packages/lib/utils/document-audit-logs.ts
msgid "You"
msgstr "Vous"
@@ -10360,10 +10524,10 @@ msgstr "Vous êtes sur le point de supprimer le document suivant et tous les cha
msgid "You are about to remove the following email from <0>{0}0>."
msgstr "Vous êtes sur le point de supprimer l'e-mail suivant de <0>{0}0>."
-#. placeholder {0}: team.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#. placeholder {0}: team.name
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "You are about to remove the following group from <0>{0}0>."
msgstr "Vous êtes sur le point de supprimer le groupe suivant de <0>{0}0>."
@@ -10403,8 +10567,8 @@ msgstr "Vous mettez actuellement à jour <0>{0}0>"
msgid "You are currently updating <0>{memberName}.0>"
msgstr "Vous mettez actuellement à jour <0>{memberName}.0>"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "You are currently updating <0>{organisationMemberName}.0>"
msgstr "Vous mettez actuellement à jour <0>{organisationMemberName}.0>"
@@ -10487,8 +10651,8 @@ msgid "You can view the document and its status by clicking the button below."
msgstr "Vous pouvez voir le document et son statut en cliquant sur le bouton ci-dessous."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "You cannot add assistants when signing order is disabled."
msgstr "Vous ne pouvez pas ajouter d'assistants lorsque l'ordre de signature est désactivé."
@@ -10516,21 +10680,21 @@ msgstr "Vous ne pouvez pas modifier un membre de l'équipe qui a un rôle plus
msgid "You cannot remove members from this team if the inherit member feature is enabled."
msgstr "Vous ne pouvez pas retirer des membres de cette équipe si la fonctionnalité d'héritage de membre est activée."
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "You cannot upload documents at this time."
msgstr "Vous ne pouvez pas importer de documents pour le moment."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload encrypted PDFs"
msgstr "Vous ne pouvez pas importer de PDF cryptés"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload more than {maximumEnvelopeItemCount} items per envelope."
msgstr "Vous ne pouvez pas télécharger plus de {maximumEnvelopeItemCount} articles par enveloppe."
@@ -10546,6 +10710,10 @@ msgstr "Vous n'avez actuellement accès à aucune équipe au sein de cette organ
msgid "You do not have permission to create a token for this team"
msgstr "Vous n'avez pas la permission de créer un jeton pour cette équipe"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "You don't manage billing for any organisations."
+msgstr "Vous ne gérez la facturation d’aucune organisation."
+
#: packages/email/template-components/template-document-cancel.tsx
msgid "You don't need to sign it anymore."
msgstr "Vous n'avez plus besoin de le signer."
@@ -10574,8 +10742,8 @@ msgstr "Vous avez été invité à rejoindre {0} sur Documenso"
msgid "You have been invited to join the following organisation"
msgstr "Vous avez été invité à rejoindre l'organisation suivante"
-#: packages/lib/server-only/recipient/set-document-recipients.ts
#: packages/lib/server-only/recipient/delete-envelope-recipient.ts
+#: packages/lib/server-only/recipient/set-document-recipients.ts
msgid "You have been removed from a document"
msgstr "Vous avez été supprimé d'un document"
@@ -10589,8 +10757,8 @@ msgid "You have declined the invitation from <0>{0}0> to join their organisati
msgstr "Vous avez refusé l'invitation de <0>{0}0> à rejoindre leur organisation."
#. placeholder {0}: `"${envelope.title}"`
-#: packages/lib/server-only/document/resend-document.ts
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
+#: packages/lib/server-only/document/resend-document.ts
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
msgstr "Vous avez initié le document {0} qui nécessite que vous {recipientActionVerb} celui-ci."
@@ -10606,9 +10774,9 @@ msgstr "Vous n'avez pas encore créé de modèles. Pour créer un modèle, veuil
msgid "You have not yet created or received any documents. To create a document please upload one."
msgstr "Vous n'avez pas encore créé ou reçu de documents. Pour créer un document, veuillez en importer un."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached the limit of the number of files per envelope"
msgstr "Vous avez atteint la limite du nombre de fichiers par enveloppe"
@@ -10621,14 +10789,14 @@ msgstr "Vous avez atteint la limite maximale de {0} modèles directs. <0>Mettez
msgid "You have reached the maximum number of teams for your plan. Please contact sales at <0>{SUPPORT_EMAIL}0> if you would like to adjust your plan."
msgstr "Vous avez atteint le nombre maximum d'équipes pour votre abonnement. Veuillez contacter le service commercial à <0>{SUPPORT_EMAIL}0> si vous souhaitez ajuster votre plan."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached your document limit for this month. Please upgrade your plan."
msgstr "Vous avez atteint votre limite de documents pour ce mois. Veuillez passer à l'abonnement supérieur."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
msgid "You have reached your document limit."
msgstr "Vous avez atteint votre limite de documents."
@@ -10641,8 +10809,8 @@ msgstr "Vous avez atteint votre limite de documents. <0>Mettez à niveau votre c
msgid "You have rejected the document '{documentName}'"
msgstr "Vous avez rejeté le document '{documentName}'"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "You have rejected this document"
msgstr "Vous avez rejeté ce document"
@@ -10654,8 +10822,8 @@ msgstr "Vous avez signé “{documentName}”"
msgid "You have successfully left this organisation."
msgstr "Vous avez quitté cette organisation avec succès."
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "You have successfully registered. Please verify your account by clicking on the link you received in the email."
msgstr "Vous vous êtes inscrit avec succès. Veuillez vérifier votre compte en cliquant sur le lien que vous avez reçu dans l'e-mail."
@@ -10712,10 +10880,10 @@ msgstr "Vous avez mis à jour le groupe d'équipe."
msgid "You have verified your email address for <0>{0}0>."
msgstr "Vous avez vérifié votre adresse e-mail pour <0>{0}0>."
-#: 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
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "You must enter '{deleteMessage}' to proceed"
msgstr "Vous devez entrer '{deleteMessage}' pour continuer"
@@ -10723,8 +10891,8 @@ msgstr "Vous devez entrer '{deleteMessage}' pour continuer"
msgid "You must select at least one item"
msgstr "Vous devez sélectionner au moins un élément"
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
msgid "You must type '{deleteMessage}' to confirm"
msgstr "Vous devez taper '{deleteMessage}' pour confirmer"
@@ -10744,8 +10912,8 @@ msgstr "Vous devez être administrateur pour gérer les tokens API."
msgid "You need to be logged in as <0>{email}0> to view this page."
msgstr "Vous devez être connecté en tant que <0>{email}0> pour voir cette page."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "You need to be logged in to view this page."
msgstr "Vous devez être connecté pour voir cette page."
@@ -10762,7 +10930,7 @@ msgid "You will now be required to enter a code from your authenticator app when
msgstr "Vous devrez maintenant entrer un code de votre application d'authentification lors de la connexion."
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "You will receive an Email copy of the signed document once everyone has signed."
+msgid "You will receive an email copy of the signed document once everyone has signed."
msgstr "Vous recevrez une copie par e-mail du document signé une fois que tout le monde aura signé."
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
@@ -10818,8 +10986,8 @@ msgstr "Votre plan actuel est arrivé à échéance."
msgid "Your direct signing templates"
msgstr "Vos modèles de signature directe"
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Your document failed to upload."
msgstr "L'importation de votre document a échoué."
@@ -10847,9 +11015,9 @@ msgstr "Votre document a été envoyé avec succès."
msgid "Your document has been successfully duplicated."
msgstr "Votre document a été dupliqué avec succès."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your document has been uploaded successfully."
msgstr "Votre document a été importé avec succès."
@@ -10909,8 +11077,8 @@ msgstr "Vos tokens existants"
msgid "Your Name"
msgstr "Votre nom"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your new password cannot be the same as your old password."
msgstr "Ton nouveau mot de passe ne peut pas être le même que l'ancien."
@@ -10926,8 +11094,8 @@ msgstr "Votre organisation a été supprimée avec succès."
msgid "Your organisation has been successfully updated."
msgstr "Votre organisation a été mise à jour avec succès."
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your password has been updated successfully."
msgstr "Votre mot de passe a été mis à jour avec succès."
@@ -10967,8 +11135,8 @@ msgstr "Votre profil public a été mis à jour."
msgid "Your recovery code has been copied to your clipboard."
msgstr "Votre code de récupération a été copié dans votre presse-papiers."
-#: 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/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Your recovery codes are listed below. Please store them in a safe place."
msgstr "Vos codes de récupération sont listés ci-dessous. Veuillez les conserver dans un endroit sûr."
@@ -11000,8 +11168,8 @@ msgstr "Votre modèle a été dupliqué avec succès."
msgid "Your template has been successfully deleted."
msgstr "Votre modèle a été supprimé avec succès."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your template has been uploaded successfully."
msgstr "Votre modèle a été importé avec succès."
diff --git a/packages/lib/translations/it/web.po b/packages/lib/translations/it/web.po
index 304085b47..0d93ffd7b 100644
--- a/packages/lib/translations/it/web.po
+++ b/packages/lib/translations/it/web.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: it\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-11-12 06:14\n"
+"PO-Revision-Date: 2025-11-27 05:32\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -52,9 +52,9 @@ msgstr "\"{placeholderEmail}\" per conto di \"Team Name\" ti ha invitato a firma
msgid "\"Team Name\" has invited you to sign \"example document\"."
msgstr "\"Team Name\" ti ha invitato a firmare \"documento esempio\"."
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "(You)"
msgstr "(Tu)"
@@ -64,8 +64,8 @@ msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
msgstr "{0, plural, one {(1 carattere in eccesso)} other {(# caratteri in eccesso)}}"
#. placeholder {0}: Math.abs(remaningLength)
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{0, plural, one {# character over the limit} other {# characters over the limit}}"
msgstr "{0, plural, one {# carattere oltre il limite} other {# caratteri oltre il limite}}"
@@ -79,6 +79,11 @@ msgstr "{0, plural, one {# carattere rimanente} other {# caratteri rimanenti}}"
msgid "{0, plural, one {# document} other {# documents}}"
msgstr "{0, plural, one {# documento} other {# documenti}}"
+#. placeholder {0}: row.original.eventTriggers.length
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "{0, plural, one {# Event} other {# Events}}"
+msgstr "{0, plural, one {# evento} other {# eventi}}"
+
#. placeholder {0}: assistantFields.filter((field) => field.recipientId === r.id).length
#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "{0, plural, one {# field} other {# fields}}"
@@ -116,16 +121,16 @@ msgid "{0, plural, one {<0>You have <1>11> pending invitation0>} other {<2>Y
msgstr "{0, plural, one {<0>Hai <1>11> invito in sospeso0>} other {<2>Hai <3>#3> inviti in sospeso2>}}"
#. placeholder {0}: recipientFieldsRemaining.length
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "{0, plural, one {1 Field Remaining} other {# Fields Remaining}}"
msgstr "{0, plural, one {1 campo rimanente} other {# campi rimanenti}}"
#. placeholder {0}: fields.filter((field) => field.envelopeItemId === doc.id).length
#. placeholder {0}: remainingFields.filter((field) => field.envelopeItemId === doc.id).length
-#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
msgid "{0, plural, one {1 Field} other {# Fields}}"
msgstr "{0, plural, one {1 Campo} other {# Campi}}"
@@ -144,11 +149,11 @@ msgstr "{0, plural, one {1 destinatario} other {# destinatari}}"
msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}"
msgstr "{0, plural, one {In attesa di 1 destinatario} other {In attesa di # destinatari}}"
-#. placeholder {0}: route.label
#. placeholder {0}: _(FRIENDLY_FIELD_TYPE[fieldType as FieldType])
+#. placeholder {0}: route.label
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
msgid "{0}"
msgstr ""
@@ -175,9 +180,9 @@ msgstr "{0} ti ha invitato a {recipientActionVerb} un documento"
#. placeholder {0}: remaining.documents
#. placeholder {1}: quota.documents
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "{0} of {1} documents remaining this month."
msgstr "{0} di {1} documenti rimanenti questo mese."
@@ -405,8 +410,8 @@ msgstr "{recipientReference} ha firmato \"{documentName}\""
msgid "{recipientReference} has signed {documentName}"
msgstr "{recipientReference} ha firmato {documentName}"
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{remaningLength, plural, one {# character remaining} other {# characters remaining}}"
msgstr "{remaningLength, plural, one {# carattere rimanente} other {# caratteri rimanenti}}"
@@ -515,6 +520,10 @@ msgstr "<0>Disegnata0> - Una firma disegnata con un mouse o uno stilo."
msgid "<0>Email0> - The recipient will be emailed the document to sign, approve, etc."
msgstr "<0>Email0> - Al destinatario verrà inviato il documento tramite email per firmare, approvare, ecc."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "<0>Events:0> All"
+msgstr "<0>Eventi:0> Tutti"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "<0>Full account access:0> View all your profile information, settings, and activity"
msgstr "<0>Accesso completo all'account:0> Visualizza tutte le informazioni sul tuo profilo, le impostazioni e l'attività"
@@ -545,8 +554,8 @@ msgstr "<0>Nessuno0> - Genereremo i link che potrai inviare manualmente ai des
msgid "<0>Note0> - If you use Links in combination with direct templates, you will need to manually send the links to the remaining recipients."
msgstr "<0>Nota0> - Se usi i link in combinazione con modelli diretti, dovrai inviare manualmente i link ai destinatari rimanenti."
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require 2FA0> - The recipient must have an account and 2FA enabled via their settings"
msgstr "<0>Richiedi 2FA0> - Il destinatario deve avere un account e 2FA abilitato tramite le sue impostazioni"
@@ -554,8 +563,8 @@ msgstr "<0>Richiedi 2FA0> - Il destinatario deve avere un account e 2FA abilit
msgid "<0>Require account0> - The recipient must be signed in to view the document"
msgstr "<0>Richiede account0> - Il destinatario deve essere connesso per visualizzare il documento"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require passkey0> - The recipient must have an account and passkey configured via their settings"
msgstr "<0>Richiede passkey0> - Il destinatario deve avere un account e una passkey configurati tramite le sue impostazioni"
@@ -624,9 +633,9 @@ msgstr "404 Dominio email non trovato"
msgid "404 not found"
msgstr "404 non trovato"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "404 Not found"
msgstr "404 Non trovato"
@@ -660,7 +669,7 @@ msgstr "404 Modello non trovato"
msgid "404 User not found"
msgstr "404 Utente non trovato"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "404 Webhook not found"
msgstr "404 Webhook non trovato"
@@ -747,8 +756,8 @@ msgstr "Nuovo membro si è unito alla tua organizzazione {organisationName}"
msgid "A new token was created successfully."
msgstr "Un nuovo token è stato creato con successo."
-#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
msgstr "È stata inviata un'e-mail per il reset della password; se hai un account dovresti vederla nella tua casella di posta a breve."
@@ -784,7 +793,7 @@ msgstr "Una richiesta per utilizzare la tua email è stata avviata da {0} su Doc
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso"
msgstr "Un codice segreto che verrà inviato al tuo URL in modo che tu possa verificare che la richiesta sia stata inviata da Documenso"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso."
msgstr "Un codice segreto che verrà inviato al tuo URL in modo che tu possa verificare che la richiesta sia stata inviata da Documenso."
@@ -809,8 +818,8 @@ msgstr "Un URL unico per identificare l'organizzazione"
msgid "A unique URL to identify your organisation"
msgstr "Un URL unico per identificare la tua organizzazione"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "A unique URL to identify your team"
msgstr "Un URL univoco per identificare la tua squadra"
@@ -819,8 +828,8 @@ msgid "A verification email will be sent to the provided email."
msgstr "Un'email di verifica sarà inviata all'email fornita."
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: packages/email/templates/organisation-invite.tsx
#: packages/email/templates/confirm-team-email.tsx
+#: packages/email/templates/organisation-invite.tsx
msgid "Accept"
msgstr "Accetta"
@@ -848,9 +857,9 @@ msgstr "Accesso disabilitato"
msgid "Access enabled"
msgstr "Accesso abilitato"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Account"
msgstr "Account"
@@ -866,8 +875,8 @@ msgstr "Richiesta di creazione account"
msgid "Account Creation Request"
msgstr "Richiesta di Creazione Account"
-#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "Account deleted"
msgstr "Account eliminato"
@@ -895,46 +904,50 @@ msgstr "Account scollegato"
msgid "Acknowledgment"
msgstr "Riconoscimento"
-#: 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/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
+#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Action"
msgstr "Azione"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Actions"
msgstr "Azioni"
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
msgid "Active"
msgstr "Attivo"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Active sessions"
msgstr "Sessioni attive"
@@ -942,8 +955,8 @@ msgstr "Sessioni attive"
msgid "Active Subscriptions"
msgstr "Abbonamenti attivi"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Add"
msgstr "Aggiungi"
@@ -960,15 +973,15 @@ msgstr "Aggiungi un dominio personalizzato per inviare email per conto della tua
msgid "Add a document"
msgstr "Aggiungi un documento"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Add a URL to redirect the user to once the document is signed"
msgstr "Aggiungi un URL per reindirizzare l'utente una volta firmato il documento"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add all relevant fields for each recipient."
msgstr "Aggiungi tutti i campi rilevanti per ciascun destinatario."
@@ -1001,8 +1014,8 @@ msgstr "Aggiungi e configura più documenti"
msgid "Add another option"
msgstr "Aggiungi un'altra opzione"
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
msgid "Add another value"
msgstr "Aggiungi un altro valore"
@@ -1026,11 +1039,11 @@ msgstr "Aggiungi Email"
msgid "Add Email Domain"
msgstr "Aggiungi Dominio Email"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add Fields"
msgstr "Aggiungi campi"
@@ -1094,8 +1107,8 @@ msgstr "Aggiungi segnaposto"
msgid "Add Recipients"
msgstr "Aggiungi Destinatari"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Add Signer"
msgstr "Aggiungi un firmatario"
@@ -1144,8 +1157,8 @@ msgstr "Informazioni aggiuntive sul marchio da mostrare in fondo alle email"
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Admin"
msgstr "Amministratore"
@@ -1153,8 +1166,8 @@ msgstr "Amministratore"
msgid "Admin Actions"
msgstr "Azioni amministrative"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Admin panel"
msgstr "Pannello admin"
@@ -1166,15 +1179,15 @@ msgstr "Pannello di Amministrazione"
msgid "Admins only"
msgstr "Solo amministratori"
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Advanced Options"
msgstr "Opzioni avanzate"
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Advanced settings"
msgstr "Impostazioni avanzate"
@@ -1191,6 +1204,7 @@ msgid "After submission, a document will be automatically generated and added to
msgstr "Dopo l'invio, un documento verrà generato automaticamente e aggiunto alla tua pagina dei documenti. Riceverai anche una notifica via email."
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "All"
msgstr "Tutto"
@@ -1214,8 +1228,8 @@ msgstr "Tutti i documenti relativi al processo di firma elettronica ti saranno f
msgid "All email domains have been synced successfully"
msgstr "Tutti i domini email sono stati sincronizzati con successo"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "All Folders"
msgstr "Tutte le Cartelle"
@@ -1223,6 +1237,10 @@ msgstr "Tutte le Cartelle"
msgid "All inserted signatures will be voided"
msgstr "Tutte le firme inserite saranno annullate"
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
+msgid "All recipients have signed. The document is being processed and you will receive an email copy shortly."
+msgstr "Tutti i destinatari hanno firmato. Il documento è in fase di elaborazione e a breve riceverai una copia via email."
+
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "All recipients will be notified"
msgstr "Tutti i destinatari saranno notificati"
@@ -1239,8 +1257,8 @@ msgstr "Tutti i link di firma sono stati copiati negli Appunti."
msgid "All templates"
msgstr "Tutti i modelli"
-#: apps/remix/app/components/general/period-selector.tsx
#: apps/remix/app/components/filters/date-range-filter.tsx
+#: apps/remix/app/components/general/period-selector.tsx
msgid "All Time"
msgstr "Tutto il tempo"
@@ -1252,10 +1270,10 @@ msgstr "Consenti a tutti i membri dell'organizzazione di accedere a questo team"
msgid "Allow document recipients to reply directly to this email address"
msgstr "Consenti ai destinatari del documento di rispondere direttamente a questo indirizzo email"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Allow signers to dictate next signer"
msgstr "Permetti ai firmatari di scegliere il prossimo firmatario"
@@ -1263,10 +1281,10 @@ msgstr "Permetti ai firmatari di scegliere il prossimo firmatario"
msgid "Allowed Email Domains"
msgstr "Domini Email Consentiti"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Allowed Signature Types"
msgstr "Tipi di firma consentiti"
@@ -1306,19 +1324,19 @@ msgstr "Verrà inviato un'email contenente un invito a ciascun membro."
msgid "An email with this address already exists."
msgstr "Una email con questo indirizzo esiste già."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/token.tsx
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.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
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "An error occurred"
msgstr "Si è verificato un errore"
@@ -1330,9 +1348,9 @@ msgstr "Si è verificato un errore durante il caricamento."
msgid "An error occurred while adding fields."
msgstr "Si è verificato un errore durante l'aggiunta dei campi."
+#: 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/template/template-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "An error occurred while adding signers."
msgstr "Si è verificato un errore durante l'aggiunta di firmatari."
@@ -1400,7 +1418,7 @@ msgstr "Si è verificato un errore durante l'abilitazione della firma del link d
msgid "An error occurred while enabling the user."
msgstr "Si è verificato un errore durante l'abilitazione dell'utente."
-#: packages/ui/primitives/pdf-viewer.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "An error occurred while loading the document."
msgstr "Si è verificato un errore durante il caricamento del documento."
@@ -1412,14 +1430,14 @@ msgstr "Si è verificato un errore durante lo spostamento del documento."
msgid "An error occurred while moving the template."
msgstr "Si è verificato un errore durante lo spostamento del modello."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while removing the field."
msgstr "Si è verificato un errore durante la rimozione del campo."
@@ -1443,29 +1461,29 @@ msgstr "Si è verificato un errore durante l'invio del documento."
msgid "An error occurred while sending your confirmation email"
msgstr "Si è verificato un errore durante l'invio della tua email di conferma"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing as assistant."
msgstr "Si è verificato un errore durante la firma come assistente."
-#: 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
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing the document."
msgstr "Si è verificato un errore durante la firma del documento."
@@ -1478,8 +1496,8 @@ msgstr "Si è verificato un errore durante la firma del campo."
msgid "An error occurred while trying to create a checkout session."
msgstr "Si è verificato un errore durante il tentativo di creare una sessione di pagamento."
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "An error occurred while updating the document settings."
msgstr "Si è verificato un errore durante l'aggiornamento delle impostazioni del documento."
@@ -1491,8 +1509,8 @@ msgstr "Si è verificato un errore durante l'aggiornamento della firma."
msgid "An error occurred while updating your profile."
msgstr "Si è verificato un errore durante l'aggiornamento del tuo profilo."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "An error occurred while uploading your document."
msgstr "Si è verificato un errore durante il caricamento del tuo documento."
@@ -1512,53 +1530,53 @@ msgstr "Un'organizzazione vuole collegare il tuo account. Per favore controlla i
msgid "An unexpected error occurred."
msgstr "Si è verificato un errore inaspettato."
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/public-profile-form.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/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/general/app-command-menu.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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/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/signin.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/profile.tsx
-#: apps/remix/app/components/forms/organisation-update-form.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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "An unknown error occurred"
msgstr "Si è verificato un errore sconosciuto"
@@ -1586,10 +1604,10 @@ msgstr "Qualsiasi fonte"
msgid "Any Status"
msgstr "Qualsiasi stato"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "API Tokens"
msgstr "Token API"
@@ -1597,12 +1615,12 @@ msgstr "Token API"
msgid "App Version"
msgstr "Versione dell'app"
-#: apps/remix/app/components/tables/inbox-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-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Approve"
msgstr "Approvare"
@@ -1611,9 +1629,9 @@ msgctxt "Recipient role action verb"
msgid "Approve"
msgstr "Approva"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Approve Document"
msgstr "Approva Documento"
@@ -1666,8 +1684,8 @@ msgid "Are you sure you want to reject this document? This action cannot be undo
msgstr "Sei sicuro di voler rifiutare questo documento? Questa azione non può essere annullata."
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
-msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey."
-msgstr "Sei sicuro di voler rimuovere la chiave di accesso <0>{passkeyName}0>."
+msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey?"
+msgstr "Sei sicuro di voler rimuovere la passkey <0>{passkeyName}0>?"
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
msgid "Are you sure you wish to delete this organisation?"
@@ -1677,23 +1695,23 @@ msgstr "Sei sicuro di voler eliminare questa organizzazione?"
msgid "Are you sure you wish to delete this team?"
msgstr "Sei sicuro di voler eliminare questo team?"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/components/general/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Are you sure?"
msgstr "Sei sicuro?"
@@ -1706,9 +1724,9 @@ msgctxt "Recipient role action verb"
msgid "Assist"
msgstr "Assisti"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Assist Document"
msgstr "Assisti il Documento"
@@ -1752,11 +1770,11 @@ msgctxt "Recipient role progressive verb"
msgid "Assisting"
msgstr "Assistenza in corso"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
-#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/lib/types/document-meta.ts
+#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
msgid "At least one signature type must be enabled"
msgstr "Deve essere abilitato almeno un tipo di firma"
@@ -1768,9 +1786,9 @@ msgstr "Allegato aggiunto con successo."
msgid "Attachment removed successfully."
msgstr "<<<<<<< Updated upstream======="
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Attachments"
@@ -1796,8 +1814,8 @@ msgstr "Livello di Autenticazione"
msgid "Authentication Portal Not Found"
msgstr "Portale di autenticazione non trovato"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Authentication required"
msgstr "Autenticazione richiesta"
@@ -1817,12 +1835,12 @@ msgstr "Avatar aggiornato"
msgid "Awaiting email confirmation"
msgstr "In attesa della conferma email"
-#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
msgid "Back"
msgstr "Indietro"
@@ -1838,8 +1856,8 @@ msgstr "Colore di Sfondo"
msgid "Background Jobs"
msgstr "Lavori di background"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Backup Code"
msgstr "Codice di Backup"
@@ -1855,10 +1873,11 @@ msgstr "Banner Aggiornato"
msgid "Before you get started, please confirm your email address by clicking the button below:"
msgstr "Prima di iniziare, conferma il tuo indirizzo email facendo clic sul pulsante qui sotto:"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
msgid "Billing"
msgstr "Fatturazione"
@@ -1882,9 +1901,9 @@ msgstr "Dettagli del Marchio"
msgid "Brand Website"
msgstr "Sito Web del Marchio"
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
msgid "Branding"
msgstr "Branding"
@@ -1892,10 +1911,10 @@ msgstr "Branding"
msgid "Branding Logo"
msgstr "Logo del Marchio"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Branding Preferences"
msgstr "Preferenze per il branding"
@@ -1929,8 +1948,8 @@ msgstr "Operazione di invio massivo completata per il modello \"{templateName}\"
msgid "Bulk Send Template via CSV"
msgstr "Invio modello in blocco tramite CSV"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Bulk Send via CSV"
msgstr "Invio Massivo via CSV"
@@ -1975,96 +1994,95 @@ msgstr "Utilizzando la funzione di firma elettronica, acconsenti a effettuare tr
msgid "Can prepare"
msgstr "Può preparare"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.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/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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-password.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/general/document/document-attachments-popover.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-test-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-to-folder-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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-create-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-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/claim-update-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.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-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.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/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Cancel"
msgstr "Annulla"
@@ -2114,6 +2132,10 @@ msgstr "Copiatori"
msgid "Center"
msgstr "Centro"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Change Recipient"
+msgstr "Cambia destinatario"
+
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
msgid "Character limit"
msgstr "Limite di caratteri"
@@ -2128,8 +2150,8 @@ msgid "Charts"
msgstr "Grafici"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Checkbox"
msgstr "Casella di controllo"
@@ -2142,9 +2164,9 @@ msgstr "Impostazioni del checkbox"
msgid "Checkbox values"
msgstr "Valori della casella di controllo"
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Checkout"
msgstr "Pagamento"
@@ -2196,9 +2218,9 @@ msgstr "Cancella firma"
msgid "Click here to get started"
msgstr "Clicca qui per iniziare"
-#: 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/template/template-page-view-recent-activity.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "Click here to retry"
msgstr "Clicca qui per riprovare"
@@ -2211,12 +2233,12 @@ msgstr "Clicca qui per caricare"
msgid "Click to copy signing link for sending to recipient"
msgstr "Clicca per copiare il link di firma da inviare al destinatario"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.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/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
msgid "Click to insert field"
msgstr "Clicca per inserire il campo"
@@ -2236,23 +2258,25 @@ msgstr "Segreto Cliente"
msgid "Client secret is required"
msgstr "È richiesto il segreto cliente"
-#: apps/remix/app/components/general/billing-plans.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/support-ticket-form.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/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-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/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/missing-signature-field-dialog.tsx
msgid "Close"
msgstr "Chiudi"
@@ -2265,14 +2289,14 @@ msgstr "Comunicazione"
msgid "Compare all plans and features in detail"
msgstr "Confronta tutti i piani e le caratteristiche in dettaglio"
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Complete"
msgstr "Completa"
@@ -2284,22 +2308,22 @@ msgstr "Completa Documento"
msgid "Complete the fields for the following signers."
msgstr "Compila i campi per i seguenti firmatari."
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: 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/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
-#: packages/lib/constants/document.ts
-#: packages/email/template-components/template-document-self-signed.tsx
-#: packages/email/template-components/template-document-recipient-signed.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
#: packages/email/template-components/template-document-completed.tsx
+#: packages/email/template-components/template-document-recipient-signed.tsx
+#: packages/email/template-components/template-document-self-signed.tsx
+#: packages/lib/constants/document.ts
msgid "Completed"
msgstr "Completato"
-#: packages/email/templates/document-self-signed.tsx
#: packages/email/templates/document-completed.tsx
+#: packages/email/templates/document-self-signed.tsx
msgid "Completed Document"
msgstr "Documento completato"
@@ -2375,8 +2399,8 @@ msgstr "Configura Modello"
#. placeholder {0}: parseMessageDescriptor( _, FRIENDLY_FIELD_TYPE[currentField.type], )
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Configure the {0} field"
msgstr "Configura il campo {0}"
@@ -2393,20 +2417,20 @@ msgstr "Configura i ruoli del team per ogni gruppo"
msgid "Configure the team roles for each member"
msgstr "Configura i ruoli del team per ogni membro"
-#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Confirm"
msgstr "Conferma"
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
msgid "Confirm by typing <0>{deleteMessage}0>"
msgstr "Conferma digitando <0>{deleteMessage}0>"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "Confirm by typing: <0>{deleteMessage}0>"
msgstr "Conferma digitando: <0>{deleteMessage}0>"
@@ -2419,8 +2443,8 @@ msgstr "Conferma eliminazione"
msgid "Confirm email"
msgstr "Conferma email"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Confirmation email sent"
msgstr "Email di conferma inviato"
@@ -2444,17 +2468,17 @@ msgstr "Contattaci"
msgid "Content"
msgstr "Contenuto"
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$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+/organisation.invite.$token.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-view.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/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$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+/verify-email.$token.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Continue"
msgstr "Continua"
@@ -2521,21 +2545,22 @@ msgstr "Controlla quali firme sono consentite per firmare un documento."
msgid "Copied"
msgstr "Copiato"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: 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/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: packages/ui/primitives/document-flow/add-subject.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/avatar-with-recipient.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.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/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/components/document/document-share-button.tsx
+#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Copied to clipboard"
msgstr "Copiato negli appunti"
@@ -2556,8 +2581,8 @@ msgstr "Copia il link condivisibile"
msgid "Copy Shareable Link"
msgstr "Copia il Link Condivisibile"
-#: 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/general/document/document-recipient-link-copy-dialog.tsx
msgid "Copy Signing Links"
msgstr "Copia link di firma"
@@ -2565,12 +2590,12 @@ msgstr "Copia link di firma"
msgid "Copy token"
msgstr "Copia il token"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Create"
msgstr "Crea"
@@ -2681,17 +2706,17 @@ msgstr "Crea ora"
msgid "Create one automatically"
msgstr "Crea uno automaticamente"
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
msgid "Create organisation"
msgstr "Crea organizzazione"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Create Organisation"
msgstr "Crea Organizzazione"
@@ -2715,14 +2740,14 @@ msgstr "Crea abbonamento"
msgid "Create Subscription Claim"
msgstr "Crea richiesta di abbonamento"
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
msgid "Create team"
msgstr "Crea team"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Create Team"
msgstr "Crea Team"
@@ -2751,26 +2776,27 @@ msgstr "Crea il tuo account e inizia a utilizzare firme digitali all'avanguardia
msgid "Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp."
msgstr "Crea il tuo account e inizia a utilizzare firme digitali all'avanguardia. Una firma aperta e bella è a tua portata."
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: 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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-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
+#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Created"
msgstr "Creato"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Created At"
msgstr "Creato il"
@@ -2782,9 +2808,7 @@ msgstr "Creato da"
msgid "Created on"
msgstr "Creato il"
-#. placeholder {0}: i18n.date(webhook.createdAt, DateTime.DATETIME_FULL)
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Created on {0}"
msgstr "Creato il {0}"
@@ -2842,13 +2866,13 @@ msgstr "Modalità Scura"
msgid "Dashboard"
msgstr "Dashboard"
-#: apps/remix/app/components/tables/settings-security-activity-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Date"
msgstr "Data"
@@ -2856,10 +2880,10 @@ msgstr "Data"
msgid "Date created"
msgstr "Data di creazione"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Date Format"
msgstr "Formato data"
@@ -2867,8 +2891,8 @@ msgstr "Formato data"
msgid "Date Settings"
msgstr "Impostazioni della data"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: packages/email/templates/organisation-invite.tsx
msgid "Decline"
msgstr "Declina"
@@ -2918,46 +2942,47 @@ msgstr "Valore predefinito"
msgid "delete"
msgstr "elimina"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/folder/folder-card.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-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-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/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Delete"
msgstr "Elimina"
-#. placeholder {0}: webhook.webhookUrl
-#. placeholder {0}: token.name
+#. placeholder {0}: folder.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#. placeholder {0}: token.name
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "delete {0}"
msgstr "elimina {0}"
@@ -2973,11 +2998,11 @@ msgstr "elimina {teamName}"
msgid "Delete account"
msgstr "Elimina account"
+#: 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
#: 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
msgid "Delete Account"
msgstr "Elimina Account"
@@ -2985,10 +3010,10 @@ msgstr "Elimina Account"
msgid "Delete document"
msgstr "Elimina documento"
+#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: 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
msgid "Delete Document"
msgstr "Elimina Documento"
@@ -2996,8 +3021,8 @@ msgstr "Elimina Documento"
msgid "Delete email"
msgstr "Elimina email"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Delete email domain"
msgstr "Elimina dominio email"
@@ -3057,8 +3082,8 @@ msgstr "Elimina Webhook"
msgid "Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution."
msgstr "Elimina il tuo account e tutti i suoi contenuti, inclusi i documenti completati. Questa azione è irreversibile e annullerà l'abbonamento, quindi procedi con cautela."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Deleted"
msgstr "Eliminato"
@@ -3066,13 +3091,22 @@ msgstr "Eliminato"
msgid "Deleting account..."
msgstr "Eliminazione account..."
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Destination"
+msgstr "Destinazione"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Details"
msgstr "Dettagli"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+msgid "Developer Mode"
+msgstr "Modalità sviluppatore"
+
#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Device"
msgstr "Dispositivo"
@@ -3080,19 +3114,19 @@ msgstr "Dispositivo"
msgid "Didn't request a password change? We are here to help you secure your account, just <0>contact us.0>"
msgstr "Non hai richiesto un cambio di password? Siamo qui per aiutarti a proteggere il tuo account, basta <0>contattarci.0>"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "direct link"
msgstr "collegamento diretto"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Direct link"
msgstr "Collegamento diretto"
-#: 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/envelope-editor/envelope-editor.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
msgid "Direct Link"
msgstr "Collegamento diretto"
@@ -3130,14 +3164,14 @@ msgstr "Collegamento diretto al modello eliminato"
msgid "Direct template link usage exceeded ({0}/{1})"
msgstr "Utilizzo del collegamento diretto al modello superato ({0}/{1})"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Direction"
msgstr "Direzione"
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
msgid "Disable"
msgstr "Disabilita"
@@ -3165,6 +3199,7 @@ msgid "Disable Two Factor Authentication before deleting your account."
msgstr "Disabilita l'Autenticazione a Due Fattori prima di eliminare il tuo account."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Disabled"
msgstr "Disabilitato"
@@ -3180,8 +3215,8 @@ msgstr "Disabilitare l'utente porta all'impossibilità per l'utente di usare l'a
msgid "Discord"
msgstr "Discord"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "Display Name"
msgstr "Nome visualizzato"
@@ -3217,11 +3252,11 @@ msgstr "Vuoi duplicare questo modello?"
msgid "Documenso will delete <0>all of your documents0>, along with all of your completed documents, signatures, and all other resources belonging to your Account."
msgstr "Documenso eliminerà <0>tutti i tuoi documenti0>, insieme a tutti i tuoi documenti completati, firme e tutte le altre risorse appartenenti al tuo account."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Document"
msgstr "Documento"
@@ -3250,9 +3285,9 @@ msgid "Document & Recipients"
msgstr "Documento & Destinatari"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Document access"
msgstr "Accesso al documento"
@@ -3271,8 +3306,8 @@ msgstr "Documento Approvato"
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: packages/lib/server-only/document/delete-document.ts
#: packages/lib/server-only/admin/admin-super-delete-document.ts
+#: packages/lib/server-only/document/delete-document.ts
msgid "Document Cancelled"
msgstr "Documento Annullato"
@@ -3313,8 +3348,8 @@ msgstr "Documento creato"
msgid "Document created by <0>{0}0>"
msgstr "Documento creato da <0>{0}0>"
-#: packages/lib/server-only/template/create-document-from-direct-template.ts
#: packages/email/templates/document-created-from-direct-template.tsx
+#: packages/lib/server-only/template/create-document-from-direct-template.ts
msgid "Document created from direct template"
msgstr "Documento creato da modello diretto"
@@ -3326,9 +3361,9 @@ msgstr "Documento creato usando un <0>link diretto0>"
msgid "Document Creation"
msgstr "Creazione del documento"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
msgid "Document deleted"
msgstr "Documento eliminato"
@@ -3427,9 +3462,9 @@ msgstr "Documento in sospeso"
msgid "Document pending email"
msgstr "Email documento in attesa"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Document Preferences"
msgstr "Preferenze Documento"
@@ -3446,8 +3481,8 @@ msgstr "Documento rinviato"
msgid "Document rejected"
msgstr "Documento rifiutato"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: packages/email/template-components/template-document-rejected.tsx
msgid "Document Rejected"
msgstr "Documento Rifiutato"
@@ -3504,15 +3539,15 @@ msgstr "Documento aggiornato"
msgid "Document updated successfully"
msgstr "Documento aggiornato con successo"
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Document upload disabled due to unpaid invoices"
msgstr "Caricamento del documento disabilitato a causa di fatture non pagate"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Document uploaded"
msgstr "Documento caricato"
@@ -3546,20 +3581,20 @@ msgstr "Il documento sarà eliminato definitivamente"
msgid "Documentation"
msgstr "Documentazione"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.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/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
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Documents"
msgstr "Documenti"
@@ -3608,22 +3643,22 @@ msgstr "Dominio già in uso"
msgid "Domain Name"
msgstr "Nome Dominio"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Don't have an account? <0>Sign up0>"
msgstr "Non hai un account? <0>Registrati0>"
-#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-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/general/document/document-certificate-qr-view.tsx
-#: apps/remix/app/components/general/document/document-certificate-qr-view.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/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
#: packages/email/template-components/template-document-completed.tsx
msgid "Download"
msgstr "Scarica"
@@ -3640,9 +3675,9 @@ msgstr "Scarica il certificato"
msgid "Download Files"
msgstr "Scarica file"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Download PDF"
msgstr "Scarica PDF"
@@ -3650,9 +3685,9 @@ msgstr "Scarica PDF"
msgid "Download Template CSV"
msgstr "Scarica Modello CSV"
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: packages/lib/constants/document.ts
msgid "Draft"
msgstr "Bozza"
@@ -3677,12 +3712,9 @@ msgstr "Trascina e rilascia o fai clic per caricare"
msgid "Drag and drop your PDF file here"
msgstr "Trascina qui il tuo file PDF"
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
-msgid "Draw"
-msgstr "Disegno"
-
#: packages/lib/constants/document.ts
-msgctxt "Draw signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Draw signature"
msgid "Draw"
msgstr "Disegna"
@@ -3691,8 +3723,8 @@ msgid "Drop your document here"
msgstr "Rilascia qui il tuo documento"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Dropdown"
msgstr "Menu a tendina"
@@ -3712,20 +3744,20 @@ msgstr "Impostazioni Menu a Tendina"
msgid "Dropdown values"
msgstr "Valori del menu a tendina"
-#: 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/envelope-editor/envelope-editor-fields-page-renderer.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
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Duplicate"
msgstr "Duplica"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Document"
msgstr "Duplica Documento"
@@ -3734,8 +3766,8 @@ msgstr "Duplica Documento"
msgid "Duplicate on all pages"
msgstr "Duplica in tutte le pagine"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Template"
msgstr "Duplica Modello"
@@ -3743,14 +3775,23 @@ msgstr "Duplica Modello"
msgid "Duplicate values are not allowed"
msgstr "I valori duplicati non sono ammessi"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 0"
+msgstr "Es. 0"
+
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 100"
+msgstr "Es. 100"
+
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Edit"
msgstr "Modifica"
@@ -3758,10 +3799,19 @@ msgstr "Modifica"
msgid "Edit Template"
msgstr "Modifica Modello"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Edit webhook"
msgstr "Modifica webhook"
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+msgid "eg. Legal"
+msgstr "es. Legale"
+
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+msgid "eg. Mac"
+msgstr "es. Mac"
+
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Electronic Delivery of Documents"
msgstr "Consegna elettronica dei documenti"
@@ -3770,57 +3820,57 @@ msgstr "Consegna elettronica dei documenti"
msgid "Electronic Signature Disclosure"
msgstr "Divulgazione della firma elettronica"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-insights-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/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.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
-#: 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/utils/fields.ts
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-configure-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
+#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Email"
msgstr "Email"
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/send-confirmation-email.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Email address"
msgstr "Indirizzo email"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Email Address"
msgstr "Indirizzo Email"
@@ -3852,9 +3902,9 @@ msgstr "Dominio email non trovato"
msgid "Email Domain Settings"
msgstr "Impostazioni Dominio Email"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Email Domains"
msgstr "Domini Email"
@@ -3870,9 +3920,9 @@ msgstr "È richiesta l'email"
msgid "Email Options"
msgstr "Opzioni email"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Email Preferences"
msgstr "Preferenze Email"
@@ -3885,10 +3935,10 @@ msgstr "Preferenze email aggiornate"
msgid "Email resent"
msgstr "Email rinviato"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Email Sender"
msgstr "Mittente Email"
@@ -3916,8 +3966,8 @@ msgstr "Verifica email rimossa"
msgid "Email verification has been resent"
msgstr "Verifica email rinviata"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Emails"
msgstr "Email"
@@ -3976,10 +4026,10 @@ msgstr "Abilita firma tramite link diretto"
msgid "Enable Direct Link Signing"
msgstr "Abilita la firma di link diretto"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Enable signing order"
msgstr "Abilita ordine di firma"
@@ -3987,10 +4037,11 @@ msgstr "Abilita ordine di firma"
msgid "Enable SSO portal"
msgstr "Abilita portale SSO"
-#: 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+/admin+/site-settings.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Enabled"
msgstr "Abilitato"
@@ -4014,10 +4065,12 @@ msgstr "Inserisci nome richiesta"
msgid "Enter the domain you want to use for sending emails (without http:// or www)"
msgstr "Inserisci il dominio che desideri utilizzare per inviare email (senza http:// o www)"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's email"
msgstr "Inserisci l'email del prossimo firmatario"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's name"
msgstr "Inserisci il nome del prossimo firmatario"
@@ -4053,11 +4106,12 @@ msgid "Enter your number here"
msgstr "Inserisci qui il tuo numero"
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Enter your password"
msgstr "Inserisci la tua password"
-#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "Enter your text here"
msgstr "Inserisci il tuo testo qui"
@@ -4077,8 +4131,8 @@ msgstr "Busta Duplicata"
msgid "Envelope ID"
msgstr "ID Busta"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Envelope Item Count"
msgstr "Conteggio articoli della busta"
@@ -4102,75 +4156,75 @@ msgstr "Titolo della Busta"
msgid "Envelope updated"
msgstr "Busta aggiornata"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$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/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/envelope-signing/envelope-signer-page-renderer.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.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-button-legacy.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/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/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.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-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-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-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-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-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-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-text-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.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/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/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.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/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/verify-email-banner.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Error"
msgstr "Errore"
@@ -4178,11 +4232,17 @@ msgstr "Errore"
msgid "Error uploading file"
msgstr "Errore durante il caricamento del file"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Event"
+msgstr "Evento"
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Event Type"
msgstr "Tipo di Evento"
#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: packages/ui/components/document/document-visibility-select.tsx
msgid "Everyone"
msgstr "Tutti"
@@ -4195,8 +4255,8 @@ msgid "Everyone has signed"
msgstr "Hanno firmato tutti"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "Everyone has signed! You will receive an Email copy of the signed document."
-msgstr "Hanno firmato tutti! Riceverai una copia via email del documento firmato."
+msgid "Everyone has signed! You will receive an email copy of the signed document."
+msgstr "Tutti hanno firmato! Riceverai una copia del documento firmato via email."
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "Exceeded timeout"
@@ -4217,11 +4277,16 @@ msgid "Expires on {0}"
msgstr "Scade il {0}"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "External ID"
msgstr "ID esterno"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Failed"
+msgstr "Non riuscito"
+
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
msgid "Failed to create folder"
msgstr "Creazione cartella fallita"
@@ -4286,7 +4351,7 @@ msgstr "Aggiornamento di rivendicazione di abbonamento fallito."
msgid "Failed to update template"
msgstr "Aggiornamento modello fallito"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Failed to update webhook"
msgstr "Aggiornamento webhook fallito"
@@ -4294,9 +4359,9 @@ msgstr "Aggiornamento webhook fallito"
msgid "Failed: {failedCount}"
msgstr "Falliti: {failedCount}"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Feature Flags"
msgstr "Flags delle funzionalità"
@@ -4305,12 +4370,12 @@ msgid "Field character limit"
msgstr "Limite di caratteri del campo"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field font size"
msgstr "Dimensione del carattere del campo"
@@ -4319,11 +4384,11 @@ msgstr "Dimensione del carattere del campo"
msgid "Field format"
msgstr "Formato del campo"
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field label"
msgstr "Etichetta del campo"
@@ -4355,10 +4420,10 @@ msgstr "Campi"
msgid "Fields updated"
msgstr "Campi aggiornati"
+#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "File cannot be larger than {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
msgstr "Il file non può essere più grande di {APP_DOCUMENT_UPLOAD_SIZE_LIMIT} MB"
@@ -4378,8 +4443,8 @@ msgstr "La dimensione del file supera il limite di {APP_DOCUMENT_UPLOAD_SIZE_LIM
msgid "Fill in the details to create a new subscription claim."
msgstr "Compila i dettagli per creare una nuova rivendicazione di abbonamento."
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Folder"
msgstr "Cartella"
@@ -4399,9 +4464,9 @@ msgstr "Cartella spostata con successo"
msgid "Folder Name"
msgstr "Nome Cartella"
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
msgid "Folder not found"
msgstr "Cartella non trovata"
@@ -4414,12 +4479,12 @@ msgid "Folder updated successfully"
msgstr "Cartella aggiornata con successo"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Font Size"
msgstr "Dimensione carattere"
@@ -4439,19 +4504,20 @@ msgstr "Ad esempio, se la rivendicazione ha una nuova flag impostata su \"FLAG_1
msgid "Forgot Password?"
msgstr "Password dimenticata?"
-#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Forgot your password?"
msgstr "Hai dimenticato la tua password?"
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Free"
msgstr "Gratuito"
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Free Signature"
msgstr "Firma gratuita"
@@ -4459,26 +4525,26 @@ msgstr "Firma gratuita"
msgid "Free Signature Settings"
msgstr "Impostazioni Firma Gratuita"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.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/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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "Full Name"
msgstr "Nome completo"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "General"
msgstr "Generale"
@@ -4495,24 +4561,24 @@ msgstr "Genera link"
msgid "Global recipient action authentication"
msgstr "Autenticazione globale del destinatario"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Go back"
msgstr "Torna indietro"
-#: apps/remix/app/routes/_recipient+/_layout.tsx
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
+#: apps/remix/app/routes/_recipient+/_layout.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Go Back"
msgstr "Torna indietro"
@@ -4524,9 +4590,9 @@ msgstr "Torna indietro"
msgid "Go back home"
msgstr "Torna alla home"
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
msgid "Go Back Home"
msgstr "Torna alla home"
@@ -4555,10 +4621,10 @@ msgstr "Vai alle tue <0>impostazioni del profilo pubblico0> per aggiungere doc
msgid "Green"
msgstr "Verde"
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Group"
msgstr "Gruppo"
@@ -4570,15 +4636,15 @@ msgstr "Il gruppo è stato creato."
msgid "Group has been updated successfully"
msgstr "Il gruppo è stato aggiornato con successo."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Group Name"
msgstr "Nome del gruppo"
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
msgid "Groups"
msgstr "Gruppi"
@@ -4601,12 +4667,12 @@ msgstr "ti ha invitato a visualizzare questo documento"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
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."
msgstr "Avere un assistente come ultimo firmatario significa che non saranno in grado di intraprendere alcuna azione poiché non ci sono firmatari successivi da assistere."
@@ -4678,25 +4744,25 @@ msgstr "Ciao {userName}, devi inserire un codice di verifica per completare il d
msgid "Hi, {userName} <0>({userEmail})0>"
msgstr "Ciao, {userName} <0>({userEmail})0>"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Hide"
msgstr "Nascondi"
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/folder/folder-grid.tsx
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-grid.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
msgid "Home"
msgstr "Home"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Home (No Folder)"
msgstr "Home (Nessuna Cartella)"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Horizontal"
msgstr "Orizzontale"
@@ -4733,7 +4799,6 @@ msgstr "Sono il proprietario di questo documento"
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
msgstr "Capisco che sto fornendo le mie credenziali a un servizio di terze parti configurato da questa organizzazione"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
msgid "I'm sure! Delete it"
msgstr "Sono sicuro! Eliminalo"
@@ -4770,6 +4835,10 @@ msgstr "Se la tua app autenticatrice non supporta i codici QR, puoi usare il seg
msgid "Important: What This Means"
msgstr "Importante: Cosa Significa"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Inactive"
+msgstr "Inattivo"
+
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/document/document-status.tsx
@@ -4788,8 +4857,8 @@ msgstr "Includi i Registri di Audit nel Documento"
msgid "Include the Signing Certificate in the Document"
msgstr "Includi il certificato di firma nel documento"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Information"
msgstr "Informazioni"
@@ -4797,17 +4866,17 @@ msgstr "Informazioni"
msgid "Inherit authentication method"
msgstr "Ereditare metodo di autenticazione"
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
msgid "Inherit from organisation"
msgstr "Ereditare dall'organizzazione"
@@ -4820,11 +4889,11 @@ msgstr "Ereditare i membri dell'organizzazione"
msgid "Inherited subscription claim"
msgstr "Rivendicazione di abbonamento ereditata"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: packages/ui/primitives/document-flow/types.ts
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Initials"
msgstr "Iniziali"
@@ -4869,8 +4938,8 @@ msgstr "Email non valida"
msgid "Invalid link"
msgstr "Link non valido"
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
msgid "Invalid token"
msgstr "Token non valido"
@@ -4890,8 +4959,8 @@ msgstr "Invito accettato"
msgid "Invitation accepted!"
msgstr "Invito accettato!"
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
msgid "Invitation declined"
msgstr "Invito rifiutato"
@@ -4931,9 +5000,9 @@ msgstr "Invitato il"
msgid "Invoice"
msgstr "Fattura"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "IP Address"
msgstr "Indirizzo IP"
@@ -4987,23 +5056,23 @@ msgstr "Iscritto"
msgid "Joined {0}"
msgstr "Iscritto a {0}"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Label"
msgstr "Etichetta"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Language"
msgstr "Lingua"
@@ -5031,8 +5100,8 @@ msgstr "Ultimi 90 giorni"
msgid "Last Active"
msgstr "Ultimo accesso"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Last modified"
msgstr "Ultima modifica"
@@ -5060,15 +5129,15 @@ msgstr "Ultimo utilizzo"
msgid "Last Year"
msgstr "Ultimo anno"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Leave"
msgstr "Lascia"
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Leave blank to inherit from the organisation."
msgstr "Lascia vuoto per ereditare dall'organizzazione."
@@ -5124,8 +5193,8 @@ msgstr "Collega modello"
msgid "Link your Documenso account"
msgstr "Collega il tuo account Documenso"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Linked Accounts"
msgstr "Account Collegati"
@@ -5137,30 +5206,29 @@ msgstr "Collegato a"
msgid "Links Generated"
msgstr "Link Generati"
-#. placeholder {0}: webhook.eventTriggers .map((trigger) => toFriendlyWebhookEventName(trigger)) .join(', ')
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-msgid "Listening to {0}"
-msgstr "Ascoltando {0}"
+msgid "Listening to"
+msgstr "In ascolto di"
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
msgid "Load older activity"
msgstr "Carica attività precedente"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Loading"
msgstr "Caricamento"
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Loading document..."
msgstr "Caricamento del documento..."
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
msgid "Loading Document..."
msgstr "Caricamento Documento..."
@@ -5176,15 +5244,19 @@ msgstr "Caricamento in corso..."
msgid "Local timezone"
msgstr "Fuso orario locale"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Login"
msgstr "Accedi"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "Logs"
+msgstr "Log"
+
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Manage"
msgstr "Gestisci"
@@ -5214,9 +5286,14 @@ msgid "Manage billing"
msgstr "Gestisci la fatturazione"
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Manage Billing"
msgstr "Gestisci la Fatturazione"
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
+msgid "Manage billing and subscriptions for organisations where you have billing management permissions."
+msgstr "Gestisci la fatturazione e gli abbonamenti per le organizzazioni per cui hai i permessi di gestione della fatturazione."
+
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "Manage details for this public template"
msgstr "Gestisci i dettagli per questo modello pubblico"
@@ -5233,6 +5310,7 @@ msgstr "Gestisci documenti"
msgid "Manage linked accounts"
msgstr "Gestisci account collegati"
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Manage organisation"
msgstr "Gestisci l'organizzazione"
@@ -5318,8 +5396,8 @@ msgstr "Gestisci le impostazioni del tuo sito qui"
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Manager"
msgstr "Responsabile"
@@ -5357,24 +5435,24 @@ msgstr ""
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
msgstr "Dimensione massima del file: 4MB. Massimo 100 righe per caricamento. I valori vuoti utilizzeranno i valori predefiniti del modello."
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Maximum number of uploaded files per envelope allowed"
msgstr "Numero massimo di file caricati consentiti per busta"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Member"
msgstr "Membro"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Member Count"
msgstr "Conteggio membri"
@@ -5382,25 +5460,25 @@ msgstr "Conteggio membri"
msgid "Member Since"
msgstr "Membro dal"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Members"
msgstr "Membri"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Message"
msgstr "Messaggio"
@@ -5421,8 +5499,8 @@ msgstr ""
msgid "Missing Recipients"
msgstr "Destinatari Mancanti"
-#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
msgid "Modify recipients"
msgstr "Modifica destinatari"
@@ -5430,8 +5508,8 @@ msgstr "Modifica destinatari"
msgid "Modify the details of the subscription claim."
msgstr "Modifica i dettagli della rivendicazione di abbonamento."
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Monthly"
msgstr "Mensile"
@@ -5443,10 +5521,10 @@ msgstr "Utenti attivi mensili: Utenti che hanno creato almeno un documento"
msgid "Monthly Active Users: Users that had at least one of their documents completed"
msgstr "Utenti attivi mensili: Utenti con almeno uno dei loro documenti completati"
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
msgid "Move"
msgstr "Sposta"
@@ -5466,8 +5544,8 @@ msgstr "Sposta Cartella"
msgid "Move Template to Folder"
msgstr "Sposta modello nella cartella"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Move to Folder"
msgstr "Sposta nella cartella"
@@ -5483,43 +5561,43 @@ msgstr "La Mia Cartella"
msgid "N/A"
msgstr "N/A"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: 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/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
-#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
-#: apps/remix/app/components/forms/subscription-claim-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: 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
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/forms/subscription-claim-form.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/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Name"
msgstr "Nome"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Name is required"
msgstr "Nome richiesto"
@@ -5559,11 +5637,11 @@ msgstr "Nuova Password"
msgid "New Template"
msgstr "Nuovo modello"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Next"
msgstr "Successivo"
@@ -5580,10 +5658,10 @@ msgstr "Email prossimo destinatario"
msgid "Next Recipient Name"
msgstr "Nome prossimo destinatario"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "No"
msgstr "No"
@@ -5591,24 +5669,24 @@ msgstr "No"
msgid "No active drafts"
msgstr "Nessuna bozza attiva"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "No documents found"
msgstr "Nessun documento trovato"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "No folders found"
msgstr "Nessuna cartella trovata"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "No folders found matching \"{searchTerm}\""
msgstr "Nessuna cartella trovata corrispondente a \"{searchTerm}\""
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "No further action is required from you at this time."
msgstr "Non sono richieste ulteriori azioni da parte tua in questo momento."
@@ -5628,25 +5706,27 @@ msgstr "Nessuna attività recente"
msgid "No recent documents"
msgstr "Nessun documento recente"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipient matching this description was found."
msgstr "Nessun destinatario corrispondente a questa descrizione è stato trovato."
-#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "No recipients"
msgstr "Nessun destinatario"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipients with this role"
msgstr "Nessun destinatario con questo ruolo"
-#: 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-action-select.tsx
msgid "No restrictions"
msgstr "Nessuna restrizione"
@@ -5687,8 +5767,8 @@ msgid "No valid recipients found"
msgstr "Nessun destinatario valido trovato"
#: apps/remix/app/components/general/multiselect-role-combobox.tsx
-#: packages/ui/primitives/multi-select-combobox.tsx
#: packages/ui/primitives/combobox.tsx
+#: packages/ui/primitives/multi-select-combobox.tsx
msgid "No value found."
msgstr "Nessun valore trovato."
@@ -5696,16 +5776,16 @@ msgstr "Nessun valore trovato."
msgid "No worries, it happens! Enter your email and we'll email you a special link to reset your password."
msgstr "Non ti preoccupare, succede! Inserisci la tua email e ti invieremo un link speciale per reimpostare la tua password."
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
#: packages/lib/constants/document.ts
msgid "None"
msgstr "Nessuno"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Not found"
msgstr "Non trovato"
@@ -5718,12 +5798,12 @@ msgstr "Non supportato"
msgid "Nothing to do"
msgstr "Niente da fare"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: 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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Number"
msgstr "Numero"
@@ -5736,13 +5816,13 @@ msgstr "Formato numero"
msgid "Number needs to be formatted as {numberFormat}"
msgstr "Il numero deve essere formattato come {numberFormat}"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of members allowed. 0 = Unlimited"
msgstr "Numero di membri consentiti. 0 = Illimitati"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of teams allowed. 0 = Unlimited"
msgstr "Numero di team consentiti. 0 = Illimitati"
@@ -5782,10 +5862,6 @@ msgstr "Su questa pagina, puoi creare e gestire token API. Consulta la nostra <0
msgid "On this page, you can create new Webhooks and manage the existing ones."
msgstr "In questa pagina, puoi creare nuovi Webhook e gestire quelli esistenti."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "On this page, you can edit the webhook and its settings."
-msgstr "In questa pagina, puoi modificare il webhook e le sue impostazioni."
-
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Once confirmed, the following will occur:"
msgstr "Una volta confermato, si verificherà quanto segue:"
@@ -5826,11 +5902,11 @@ msgstr "È possibile caricare un solo file alla volta"
msgid "Only PDF files are allowed"
msgstr "Sono consentiti solo file PDF"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Oops! Something went wrong."
msgstr "Ops! Qualcosa è andato storto."
@@ -5846,8 +5922,8 @@ msgstr "Il valore dell'opzione non può essere vuoto"
msgid "Options"
msgstr "Opzioni"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Or"
msgstr "Oppure"
@@ -5859,9 +5935,10 @@ msgstr "O"
msgid "Or continue with"
msgstr "Oppure continua con"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Organisation"
msgstr "Organizzazione"
@@ -5890,8 +5967,8 @@ msgstr "Impostazioni del gruppo organizzativo"
msgid "Organisation has been updated successfully"
msgstr "L'organizzazione è stata aggiornata con successo"
-#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
msgid "Organisation Insights"
msgstr "Approfondimenti sull'organizzazione"
@@ -5907,22 +5984,22 @@ msgstr "Le inviti all'organizzazione sono stati inviati."
msgid "Organisation Manager"
msgstr "Manager dell'organizzazione"
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: packages/lib/constants/organisations-translations.ts
msgid "Organisation Member"
msgstr "Membro dell'organizzazione"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
msgid "Organisation Members"
msgstr "Membri dell'organizzazione"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation Name"
msgstr "Nome dell'organizzazione"
@@ -5935,8 +6012,8 @@ msgstr "Organizzazione non trovata"
msgid "Organisation role"
msgstr "Ruolo dell'organizzazione"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Organisation Role"
msgstr "Ruolo dell'organizzazione"
@@ -5956,17 +6033,17 @@ msgstr "Portale SSO dell'organizzazione"
msgid "Organisation Teams"
msgstr "Team dell'organizzazione"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation URL"
msgstr "URL dell'organizzazione"
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
#: apps/remix/app/routes/_authenticated+/settings+/organisations.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Organisations"
msgstr "Organizzazioni"
@@ -6003,16 +6080,16 @@ msgstr "Altrimenti, il documento sarà creato come bozza."
msgid "Override organisation settings"
msgstr "Sovrascrivi impostazioni organizzazione"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Owner"
msgstr "Proprietario"
@@ -6027,8 +6104,8 @@ msgid "Page {0} of {1}"
msgstr "Pagina {0} di {1}"
#. placeholder {0}: i + 1
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Page {0} of {numPages}"
msgstr "Pagina {0} di {numPages}"
@@ -6036,8 +6113,8 @@ msgstr "Pagina {0} di {numPages}"
msgid "Paid"
msgstr "Pagato"
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
msgid "Passkey"
msgstr "Password"
@@ -6065,8 +6142,8 @@ msgstr "Nome della passkey"
msgid "Passkey Re-Authentication"
msgstr "Ri-autenticazione con chiave di accesso"
-#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
msgid "Passkeys"
msgstr "Passkey"
@@ -6078,12 +6155,12 @@ msgstr "Le passkey permettono di autenticarsi usando dati biometrici, gestori di
msgid "Passkeys are not supported on this browser"
msgstr "Le passkey non sono supportate su questo browser"
-#: apps/remix/app/components/general/app-command-menu.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
-#: apps/remix/app/components/forms/signup.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Password"
msgstr "\"Password\""
@@ -6099,13 +6176,13 @@ msgstr "Richiesta di reimpostazione password"
msgid "Password Reset Successful"
msgstr "Reimpostazione password riuscita"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Password should not be common or based on personal information"
msgstr "La password non deve essere comune o basata su informazioni personali"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Password updated"
msgstr "Password aggiornato"
@@ -6113,6 +6190,10 @@ msgstr "Password aggiornato"
msgid "Password updated!"
msgstr "Password aggiornata!"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Past Due"
+msgstr "Scaduto"
+
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
msgid "Payment overdue"
@@ -6122,15 +6203,15 @@ msgstr "Pagamento scaduto"
msgid "PDF Document"
msgstr "Documento PDF"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
-#: packages/ui/components/document/document-read-only-fields.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: packages/lib/constants/document.ts
+#: packages/ui/components/document/document-read-only-fields.tsx
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Pending"
msgstr "In sospeso"
@@ -6150,13 +6231,13 @@ msgstr "Documenti in sospeso"
msgid "Pending invitations"
msgstr "Inviti in sospeso"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per month"
msgstr "al mese"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per year"
msgstr "all'anno"
@@ -6165,15 +6246,15 @@ msgctxt "Personal organisation (adjective)"
msgid "Personal"
msgstr "Personale"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Personal Account"
msgstr "Account personale"
-#: apps/remix/app/routes/_authenticated+/inbox.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/inbox.tsx
msgid "Personal Inbox"
msgstr "Posta in arrivo personale"
@@ -6198,12 +6279,12 @@ msgstr "Fissa"
msgid "Place and configure form fields in the document"
msgstr "Posiziona e configura i campi del modulo nel documento"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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
#: 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 "Segnaposto"
@@ -6250,8 +6331,8 @@ msgstr "Per favore scegli la tua nuova password"
msgid "Please complete the document once reviewed"
msgstr "Per favore completa il documento una volta rivisto"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Please configure the document first"
msgstr "Si prega di configurare prima il documento"
@@ -6275,9 +6356,9 @@ msgstr "Si prega di contattare il proprietario del sito per ulteriori assistenza
msgid "Please enter a meaningful name for your token. This will help you identify it later."
msgstr "Si prega di inserire un nome significativo per il proprio token. Questo ti aiuterà a identificarlo più tardi."
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Please enter a valid name."
msgstr "Per favore inserisci un nome valido."
@@ -6329,6 +6410,10 @@ msgstr "Si prega di notare che perderai l'accesso a tutti i documenti associati
msgid "Please open your authenticator app and enter the 6-digit code for this document."
msgstr "Per favore apri la tua app di autenticazione e inserisci il codice a 6 cifre per questo documento."
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+msgid "Please provide a reason for rejecting this document"
+msgstr "Indica un motivo per il rifiuto di questo documento"
+
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
msgid "Please provide a token from the authenticator, or a backup code. If you do not have a backup code available, please contact support."
msgstr "Si prega di fornire un token dal tuo autenticatore, o un codice di backup. Se non hai un codice di backup disponibile, contatta il supporto."
@@ -6365,10 +6450,10 @@ msgstr "Si prega di riprovare assicurandosi di inserire l'indirizzo email corret
msgid "Please try again later."
msgstr "Si prega di riprovare più tardi."
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Please try again or contact our support."
msgstr "Per favore, riprova o contatta il nostro supporto."
@@ -6382,8 +6467,8 @@ msgstr "Per favore, digita {0} per confermare"
msgid "Please type <0>{0}0> to confirm."
msgstr "Si prega di digitare <0>{0}0> per confermare."
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Please upload a document to continue"
msgstr "Per favore carica un documento per continuare"
@@ -6395,15 +6480,15 @@ msgstr "Si prega di caricare un logo"
msgid "Pre-formatted CSV template with example data."
msgstr "Modello CSV preformattato con dati di esempio."
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Preferences"
msgstr "Preferenze"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Preview"
msgstr "Anteprima"
@@ -6425,8 +6510,8 @@ msgstr "Visualizza l'anteprima del documento prima di inviarlo"
msgid "Preview what the signed document will look like with placeholder data"
msgstr "Visualizza come apparirà il documento firmato con i dati segnaposto"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Private"
msgstr "Privato"
@@ -6442,10 +6527,14 @@ msgstr "I modelli privati possono essere modificati e visualizzati solo da te."
msgid "Proceed"
msgstr "Procedi"
-#: 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/routes/_recipient+/sign.$token+/complete.tsx
+msgid "Processing document"
+msgstr "Elaborazione del documento"
+
#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/profile.tsx
msgid "Profile"
msgstr "Profilo"
@@ -6457,8 +6546,8 @@ msgstr "Il profilo è attualmente <0>nascosto0>."
msgid "Profile is currently <0>visible0>."
msgstr "Il profilo è attualmente <0>visibile0>."
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Profile updated"
msgstr "Profilo aggiornato"
@@ -6474,15 +6563,15 @@ msgstr "Fornitore"
msgid "Provider has been updated successfully"
msgstr "Provider aggiornato con successo"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Public"
msgstr "Pubblico"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Public Profile"
msgstr "Profilo pubblico"
@@ -6503,8 +6592,8 @@ msgid "Quick Actions"
msgstr "Azioni rapide"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Radio"
msgstr "Radio"
@@ -6517,11 +6606,11 @@ msgstr "Impostazioni radio"
msgid "Radio values"
msgstr "Valori radio"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Read only"
msgstr "Sola lettura"
@@ -6570,8 +6659,8 @@ msgstr "È richiesta una riautenticazione per firmare questo campo"
msgid "Receives copy"
msgstr "Riceve copia"
-#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Recent activity"
msgstr "Attività recenti"
@@ -6579,10 +6668,10 @@ msgstr "Attività recenti"
msgid "Recent documents"
msgstr "Documenti recenti"
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: 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
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
@@ -6592,9 +6681,9 @@ msgid "Recipient"
msgstr "Destinatario"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Recipient action authentication"
msgstr "Autenticazione azione destinatario"
@@ -6614,11 +6703,11 @@ msgstr "Email richiesta firma destinatario"
msgid "Recipient updated"
msgstr "Destinatario aggiornato"
-#: 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
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Recipients"
msgstr "Destinatari"
@@ -6662,10 +6751,10 @@ msgstr "Rosso"
msgid "Redirect URI"
msgstr "URI di reindirizzamento"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Redirect URL"
msgstr "URL di reindirizzamento"
@@ -6673,8 +6762,8 @@ msgstr "URL di reindirizzamento"
msgid "Redirecting"
msgstr "Reindirizzamento"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Registration Successful"
msgstr "Registrazione avvenuta con successo"
@@ -6682,19 +6771,19 @@ msgstr "Registrazione avvenuta con successo"
msgid "Reject"
msgstr "Rifiuta"
-#: 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
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.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
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
msgid "Reject Document"
msgstr "Rifiuta Documento"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
msgid "Rejected"
msgstr "Rifiutato"
@@ -6707,8 +6796,8 @@ msgstr "Rifiuto confermato"
msgid "Rejection reason: {reason}"
msgstr "Motivo del rifiuto: {reason}"
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
msgid "Reload"
msgstr "Ricarica"
@@ -6734,34 +6823,34 @@ msgstr "Promemoria: per favore {recipientActionVerb} questo documento"
msgid "Reminder: Please {recipientActionVerb} your document"
msgstr "Promemoria: per favore {recipientActionVerb} il tuo documento"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/avatar-image.tsx
-#: apps/remix/app/components/dialogs/template-use-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-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Remove"
msgstr "Rimuovi"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Remove email domain"
msgstr "Rimuovi dominio email"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Remove organisation group"
msgstr "Rimuovere il gruppo di organizzazioni"
@@ -6773,13 +6862,13 @@ msgstr "Rimuovere membro dell'organizzazione"
msgid "Remove team email"
msgstr "Rimuovere l'email del team"
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Remove team member"
msgstr "Rimuovere il membro del team"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Repeat Password"
msgstr "Ripeti Password"
@@ -6787,22 +6876,26 @@ msgstr "Ripeti Password"
msgid "Reply to email"
msgstr "Rispondi all'email"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Reply To Email"
msgstr "Rispondi a Email"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Request"
+msgstr "Richiesta"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Requesting Organisation"
msgstr "Organizzazione richiedente"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Required field"
msgstr "Campo richiesto"
@@ -6818,8 +6911,9 @@ msgstr "Scope richiesti"
msgid "Reseal document"
msgstr "Risigilla documento"
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Resend"
msgstr "Reinvia"
@@ -6832,9 +6926,9 @@ msgstr "Reinvia codice"
msgid "Resend Confirmation Email"
msgstr "Reinvia email di conferma"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Resend Document"
msgstr "Reinvia documento"
@@ -6842,9 +6936,9 @@ msgstr "Reinvia documento"
msgid "Resend verification"
msgstr "Reinvia verifica"
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Reset"
msgstr "Ripristina"
@@ -6857,9 +6951,9 @@ msgstr "Reimposta 2FA"
msgid "Reset email sent"
msgstr "Email di reset inviato"
-#: 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
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Reset Password"
msgstr "Reimposta password"
@@ -6884,6 +6978,18 @@ msgstr "Risolvi"
msgid "Resolve payment"
msgstr "Risolvere il pagamento"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response"
+msgstr "Risposta"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Code"
+msgstr "Codice di risposta"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Headers"
+msgstr "Header di risposta"
+
#: 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 "Stai tranquillo, il tuo documento è strettamente confidenziale e non sarà mai condiviso. Solo la tua esperienza di firma sarà evidenziata. Condividi la tua carta di firma personalizzata per mostrare la tua firma!"
@@ -6904,11 +7010,11 @@ msgstr "Ritentato"
msgid "Retry"
msgstr "Riprova"
-#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "Return"
msgstr "Ritorna"
@@ -6924,8 +7030,8 @@ msgstr "Torna ai documenti"
msgid "Return to Home"
msgstr "Torna alla home"
-#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
msgid "Return to sign in"
msgstr "Torna a accedere"
@@ -6937,8 +7043,8 @@ msgstr "Torna ai modelli"
msgid "Review request"
msgstr "Richiesta di revisione"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Revoke"
msgstr "Revoca"
@@ -6956,24 +7062,24 @@ msgstr "Revoca tutte le sessioni"
msgid "Right"
msgstr "Destra"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Role"
msgstr "Ruolo"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Roles"
msgstr "Ruoli"
@@ -6981,11 +7087,11 @@ msgstr "Ruoli"
msgid "Rows per page"
msgstr "Righe per pagina"
-#: 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/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
msgid "Save"
msgstr "Salva"
@@ -7004,12 +7110,13 @@ msgstr "Salva modello"
msgid "Sealing job started"
msgstr "Operazione di sigillatura iniziata"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
-#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Search"
msgstr "Cerca"
@@ -7025,6 +7132,10 @@ msgstr "Cerca per ID reclamo o nome"
msgid "Search by document title"
msgstr "Cerca per titolo del documento"
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Search by ID"
+msgstr "Cerca per ID"
+
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
msgid "Search by name or email"
msgstr "Cerca per nome o email"
@@ -7041,11 +7152,11 @@ msgstr "Cerca per nome organizzazione"
msgid "Search documents..."
msgstr "Cerca documenti..."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "Search folders..."
msgstr "Cerca cartelle..."
@@ -7057,10 +7168,10 @@ msgstr "Cerca lingue..."
msgid "Secret"
msgstr "Segreto"
-#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Security"
msgstr "Sicurezza"
@@ -7073,8 +7184,8 @@ msgid "See the background jobs tab for the status"
msgstr "Consulta la scheda lavori in background per lo stato"
#: 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
+#: packages/ui/primitives/document-flow/types.ts
msgid "Select"
msgstr "Seleziona"
@@ -7094,6 +7205,10 @@ msgstr "Seleziona un piano"
msgid "Select a plan to continue"
msgstr "Seleziona un piano per continuare"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Select a recipient"
+msgstr "Seleziona un destinatario"
+
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
msgid "Select a team to view its dashboard"
msgstr "Seleziona un team per visualizzare la sua dashboard"
@@ -7114,6 +7229,10 @@ msgstr "Seleziona un fuso orario"
msgid "Select access methods"
msgstr "Seleziona i metodi di accesso"
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+msgid "Select an event type"
+msgstr "Seleziona un tipo di evento"
+
#: apps/remix/app/components/dialogs/sign-field-dropdown-dialog.tsx
#: packages/ui/primitives/combobox.tsx
msgid "Select an option"
@@ -7128,8 +7247,8 @@ msgstr "Seleziona un'organizzazione per visualizzare i team"
msgid "Select at least"
msgstr "Seleziona almeno"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "Select authentication methods"
msgstr "Seleziona i metodi di autenticazione"
@@ -7142,8 +7261,8 @@ msgstr "Seleziona opzione predefinita"
msgid "Select default role"
msgstr "Seleziona ruolo predefinito"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Select direction"
msgstr "Seleziona la direzione"
@@ -7160,9 +7279,9 @@ msgstr "Seleziona i gruppi di membri da aggiungere al team."
msgid "Select groups to add to this team"
msgstr "Seleziona i gruppi da aggiungere a questo team"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Select members"
msgstr "Seleziona membri"
@@ -7182,11 +7301,20 @@ msgstr "Seleziona opzione"
msgid "Select passkey"
msgstr "Seleziona una chiave di accesso"
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Select signature types"
msgstr "Seleziona i tipi di firme"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Select text align"
msgstr "Seleziona l'allineamento del testo"
@@ -7207,6 +7335,10 @@ msgstr "Seleziona i membri da includere in questo gruppo"
msgid "Select triggers"
msgstr "Seleziona trigger"
+#: packages/ui/primitives/multi-select-combobox.tsx
+msgid "Select values..."
+msgstr "Seleziona i valori..."
+
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Select vertical align"
msgstr "Seleziona allineamento verticale"
@@ -7215,20 +7347,20 @@ msgstr "Seleziona allineamento verticale"
msgid "Select visibility"
msgstr "Seleziona visibilità"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Selected Recipient"
msgstr "Destinatario selezionato"
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send"
msgstr "Invia"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Send a test webhook with sample data to verify your integration is working correctly."
msgstr "Invia un webhook di prova con dati di esempio per verificare che la tua integrazione funzioni correttamente."
@@ -7241,9 +7373,9 @@ msgstr "Invia email di conferma"
msgid "Send document"
msgstr "Invia documento"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send Document"
msgstr "Invia documento"
@@ -7288,8 +7420,8 @@ msgstr "Invia email firmato dal destinatario"
msgid "Send recipient signing request email"
msgstr "Invia email richiesta firma destinatario"
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
msgid "Send reminder"
msgstr "Invia promemoria"
@@ -7297,12 +7429,8 @@ msgstr "Invia promemoria"
msgid "Send reminders to the following recipients"
msgstr "Invia promemoria ai seguenti destinatari"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
-msgid "Send Test Webhook"
-msgstr "Invia Webhook di Prova"
-
-#: apps/remix/app/components/tables/inbox-table.tsx
#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Sender"
msgstr "Mittente"
@@ -7314,8 +7442,10 @@ msgstr "Invio dell'email di ripristino..."
msgid "Sending..."
msgstr "Invio..."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Sent"
msgstr "Inviato"
@@ -7339,15 +7469,15 @@ msgstr "Configura le proprietà del documento e le informazioni sui destinatari"
msgid "Set up your template properties and recipient information"
msgstr "Configura le proprietà del modello e le informazioni sui destinatari"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/_layout.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/app-nav-mobile.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
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
msgid "Settings"
msgstr "Impostazioni"
@@ -7355,17 +7485,14 @@ msgstr "Impostazioni"
msgid "Setup"
msgstr "Configurazione"
-#: 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/tables/documents-table-action-dropdown.tsx
+#: packages/ui/components/document/document-share-button.tsx
msgid "Share"
msgstr "Condividi"
-#: packages/ui/components/document/document-share-button.tsx
-msgid "Share Signature Card"
-msgstr "Condividi carta firma"
-
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Share Signing Card"
msgstr "Condividi scheda di firma"
@@ -7382,8 +7509,8 @@ msgid "Show"
msgstr "Mostra"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Show advanced settings"
msgstr "Mostra impostazioni avanzate"
@@ -7391,26 +7518,26 @@ msgstr "Mostra impostazioni avanzate"
msgid "Show templates in your public profile for your audience to sign and get started quickly"
msgstr "Mostra modelli nel tuo profilo pubblico per il tuo pubblico da firmare e iniziare rapidamente"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/components/tables/inbox-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/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-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
-#: apps/remix/app/components/general/document/document-page-view-button.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/user-profile-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Sign"
msgstr "Firma"
@@ -7435,15 +7562,15 @@ msgstr "Firma come<0>{0} <1>({1})1>0>"
msgid "Sign Checkbox Field"
msgstr "Campo casella di controllo firma"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign document"
msgstr "Firma il documento"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Sign Document"
msgstr "Firma documento"
@@ -7464,16 +7591,16 @@ msgstr "Campo di firma"
msgid "Sign Here"
msgstr "Firma qui"
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: packages/email/template-components/template-reset-password.tsx
msgid "Sign In"
msgstr "Accedi"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Sign in to your account"
msgstr "Accedi al tuo account"
@@ -7489,9 +7616,9 @@ msgstr "Firma nome"
msgid "Sign Number Field"
msgstr "Campo numero firma"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Sign Out"
msgstr "Disconnetti"
@@ -7503,8 +7630,8 @@ msgstr "Campo firma firma"
msgid "Sign Text Field"
msgstr "Campo testo firma"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign the document to complete the process."
msgstr "Firma il documento per completare il processo."
@@ -7537,21 +7664,21 @@ msgstr "Firma il tuo nome completo nel campo"
msgid "Sign your initials into the field"
msgstr "Firma le tue iniziali nel campo"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Signature"
msgstr "Firma"
@@ -7579,15 +7706,10 @@ msgstr "Tipi di firma"
msgid "Signatures Collected"
msgstr "Firme raccolte"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/ui/components/document/document-read-only-fields.tsx
-msgid "Signed"
-msgstr "Firmato"
-
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-msgctxt "Signed document (adjective)"
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Signed"
msgstr "Firmato"
@@ -7596,6 +7718,11 @@ msgctxt "Recipient role actioned"
msgid "Signed"
msgstr "Firmato"
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+msgctxt "Signed document (adjective)"
+msgid "Signed"
+msgstr "Firmato"
+
#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Signer"
msgstr "Firmatario"
@@ -7641,8 +7768,8 @@ msgstr "Firma per"
msgid "Signing in..."
msgstr "Accesso in corso..."
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Signing Links"
msgstr "Link di firma"
@@ -7651,8 +7778,8 @@ msgid "Signing links have been generated for this document."
msgstr "I link di firma sono stati generati per questo documento."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Signing order is enabled."
msgstr "L'ordine di firma è abilitato."
@@ -7669,8 +7796,8 @@ msgstr "Dal {0}"
msgid "Site Banner"
msgstr "Banner del sito"
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "Site Settings"
msgstr "Impostazioni del sito"
@@ -7678,50 +7805,51 @@ msgstr "Impostazioni del sito"
msgid "Some signers have not been assigned a signature field. Please assign at least 1 signature field to each signer before proceeding."
msgstr "Alcuni firmatari non hanno un campo firma assegnato. Assegna almeno 1 campo di firma a ciascun firmatario prima di procedere."
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/general/billing-plans.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.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-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/embed/embed-document-signing-page-v1.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-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/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-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
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-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-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-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-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
+#: apps/remix/app/components/general/document/document-audit-log-download-button.tsx
+#: apps/remix/app/components/general/document/document-certificate-download-button.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
#: packages/ui/components/document/document-share-button.tsx
msgid "Something went wrong"
msgstr "Qualcosa è andato storto"
@@ -7731,10 +7859,10 @@ msgstr "Qualcosa è andato storto"
msgid "Something went wrong while attempting to verify your email address for <0>{0}0>. Please try again later."
msgstr "Qualcosa è andato storto durante il tentativo di verifica del tuo indirizzo e-mail per <0>{0}0>. Riprova più tardi."
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Something went wrong while loading the document."
msgstr "Qualcosa è andato storto durante il caricamento del documento."
@@ -7759,10 +7887,10 @@ msgstr "Qualcosa è andato storto durante l'aggiornamento dell'abbonamento di fa
msgid "Something went wrong while uploading this file"
msgstr "Qualcosa è andato storto durante il caricamento di questo file"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
msgid "Something went wrong!"
msgstr "Qualcosa è andato storto!"
@@ -7774,8 +7902,8 @@ msgstr "Qualcosa è andato storto."
msgid "Something went wrong. Please try again later."
msgstr "Qualcosa è andato storto. Si prega di riprovare più tardi."
-#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Something went wrong. Please try again or contact support."
msgstr "Qualcosa è andato storto. Riprova o contatta il supporto."
@@ -7787,8 +7915,8 @@ msgstr "Siamo spiacenti, non siamo riusciti a scaricare i log di verifica. Ripro
msgid "Sorry, we were unable to download the certificate. Please try again later."
msgstr "Siamo spiacenti, non siamo riusciti a scaricare il certificato. Riprova più tardi."
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Source"
msgstr "Fonte"
@@ -7804,16 +7932,19 @@ msgstr "SSO"
msgid "Stats"
msgstr "Statistiche"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Status"
msgstr "Stato"
@@ -7840,14 +7971,14 @@ msgstr "Cliente Stripe creato con successo"
msgid "Stripe Customer ID"
msgstr "ID cliente di Stripe"
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Subject"
msgstr "Soggetto"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Subject <0>(Optional)0>"
msgstr "Oggetto <0>(Opzionale)0>"
@@ -7866,8 +7997,8 @@ msgstr "Inviato"
msgid "Subscribe"
msgstr "Iscriviti"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Subscription"
msgstr "Abbonamento"
@@ -7891,59 +8022,65 @@ msgstr "Rivendicazioni di abbonamento"
msgid "Subscription invalid"
msgstr "Abbonamento non valido"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/verify-email-banner.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/organisation-update-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Subscription Status"
+msgstr "Stato dell’abbonamento"
+
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-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-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-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/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/verify-email-banner.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Success"
msgstr "Successo"
@@ -7959,8 +8096,14 @@ msgstr "Creati con successo: {successCount}"
msgid "Summary:"
msgstr "Sommario:"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+msgid "support"
+msgstr "supporto"
+
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "Support"
msgstr "Assistenza"
@@ -7981,11 +8124,11 @@ msgid "Sync failed, changes not saved"
msgstr "Sincronizzazione fallita, modifiche non salvate"
#: packages/lib/utils/document-audit-logs.ts
-msgctxt "Audit log format"
msgid "System auto inserted fields"
msgstr "Campi inseriti automaticamente dal sistema"
#: packages/lib/utils/document-audit-logs.ts
+msgctxt "Audit log format"
msgid "System auto inserted fields"
msgstr "Campi inseriti automaticamente dal sistema"
@@ -7997,10 +8140,10 @@ msgstr "Requisiti di sistema"
msgid "System Theme"
msgstr "Tema del sistema"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team"
msgstr "Squadra"
@@ -8017,8 +8160,8 @@ msgstr "Amministratore del team"
msgid "Team Assignments"
msgstr "Compiti del team"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Team Count"
msgstr "Numero totale di team"
@@ -8081,14 +8224,14 @@ msgstr "Membro del team"
msgid "Team Members"
msgstr "Membri del team"
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "Team members have been added."
msgstr "I membri del team sono stati aggiunti."
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
msgid "Team Name"
msgstr "Nome del team"
@@ -8105,9 +8248,9 @@ msgstr "Solo team"
msgid "Team only templates are not linked anywhere and are visible only to your team."
msgstr "I modelli solo per il team non sono collegati da nessuna parte e sono visibili solo al tuo team."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team Role"
msgstr "Ruolo del team"
@@ -8123,18 +8266,18 @@ msgstr "Impostazioni del team"
msgid "Team url"
msgstr "URL del team"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Team URL"
msgstr "URL del team"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
msgid "Teams"
msgstr "Team"
@@ -8146,13 +8289,13 @@ msgstr "I team ti aiutano a organizzare il tuo lavoro e collaborare con altri. C
msgid "Teams that this organisation group is currently assigned to"
msgstr "Team a cui è attualmente assegnato questo gruppo di organizzazione"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/public-profile-template-manage-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.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/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
msgid "Template"
msgstr "Modello"
@@ -8217,17 +8360,17 @@ msgstr "Titolo del modello"
msgid "Template updated successfully"
msgstr "Modello aggiornato con successo"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Template uploaded"
msgstr "Modello caricato"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.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
msgid "Templates"
msgstr "Modelli"
@@ -8235,8 +8378,10 @@ msgstr "Modelli"
msgid "Templates allow you to quickly generate documents with pre-filled recipients and fields."
msgstr "I modelli ti consentono di generare rapidamente documenti con destinatari e campi precompilati."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Test"
+msgstr "Test"
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Test Webhook"
msgstr "Webhook di Test"
@@ -8249,23 +8394,23 @@ msgstr "Il test del webhook non è riuscito"
msgid "Test webhook sent"
msgstr "Webhook di prova inviato"
+#: 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/envelope-editor/envelope-editor-fields-drag-drop.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
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/types.ts
-#: packages/ui/primitives/document-flow/add-fields.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Text"
msgstr "Testo"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Text Align"
msgstr "Allineamento del testo"
@@ -8325,14 +8470,14 @@ msgstr "Il contenuto da mostrare nel banner, HTML è consentito"
msgid "The default email to use when sending emails to recipients"
msgstr "L'email predefinita da utilizzare quando si inviano email ai destinatari"
-#: 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
+#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "The direct link has been copied to your clipboard"
msgstr "Il link diretto è stato copiato negli appunti"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "The display name for this email address"
msgstr "Il nome visualizzato per questo indirizzo email"
@@ -8352,8 +8497,8 @@ msgstr "Il documento è ora completato, si prega di seguire eventuali istruzioni
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 "Il proprietario del documento è stato informato di questo rifiuto. Non sono necessarie ulteriori azioni da parte tua in questo momento. Il proprietario del documento potrebbe contattarti per qualsiasi domanda riguardante questo rifiuto."
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "The document owner has been notified of your decision. They may contact you with further instructions if necessary."
msgstr "Il proprietario del documento è stato informato della tua decisione. Potrebbe contattarti per ulteriori istruzioni, se necessario."
@@ -8373,8 +8518,8 @@ msgstr "Il documento sarà immediatamente inviato ai destinatari se selezionato.
msgid "The document you are looking for could not be found."
msgstr "Il documento che stai cercando non è stato trovato."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
msgid "The document you are looking for may have been removed, renamed or may have never existed."
msgstr "Il documento che stai cercando potrebbe essere stato rimosso, rinominato o potrebbe non essere mai esistito."
@@ -8394,8 +8539,8 @@ msgstr "Il dominio email che stai cercando potrebbe essere stato rimosso, rinomi
msgid "The email or password provided is incorrect"
msgstr "L'email o la password fornita è errata"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The events that will trigger a webhook to be sent to your URL."
msgstr "Gli eventi che scateneranno un webhook da inviare al tuo URL."
@@ -8530,8 +8675,8 @@ msgid "The signer's name"
msgstr "Il nome del firmatario"
#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "The signing link has been copied to your clipboard."
msgstr "Il link di firma è stato copiato negli appunti."
@@ -8597,8 +8742,8 @@ msgstr "La dimensione del carattere della firma digitata"
msgid "The types of signatures that recipients are allowed to use when signing the document."
msgstr "I tipi di firma che i destinatari possono utilizzare quando firmano il documento."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The URL for Documenso to send webhook events to."
msgstr "L'URL per Documenso per inviare eventi webhook."
@@ -8614,7 +8759,7 @@ msgstr "L'autenticazione a due fattori dell'utente è stata reimpostata con succ
msgid "The webhook has been successfully deleted."
msgstr "Il webhook è stato eliminato con successo."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The webhook has been updated successfully."
msgstr "Il webhook è stato aggiornato con successo."
@@ -8622,7 +8767,7 @@ msgstr "Il webhook è stato aggiornato con successo."
msgid "The webhook was successfully created."
msgstr "Il webhook è stato creato con successo."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "The webhook you are looking for may have been removed, renamed or may have never existed."
msgstr "Il webhook che stai cercando potrebbe essere stato rimosso, rinominato o potrebbe non esistito mai."
@@ -8666,9 +8811,9 @@ msgstr "Questo account non è stato verificato. Verifica il tuo account prima di
msgid "This action is irreversible. Please ensure you have informed the user before proceeding."
msgstr "Questa azione è irreversibile. Assicurati di aver informato l'utente prima di procedere."
-#: 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
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "This action is not reversible. Please be certain."
msgstr "Questa azione non è reversibile. Si prega di essere certi."
@@ -8696,8 +8841,8 @@ msgstr "Questo documento non può essere eliminato in questo momento. Riprova."
msgid "This document could not be downloaded at this time. Please try again."
msgstr "Questo documento non può essere scaricato in questo momento. Per favore riprova."
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
msgid "This document could not be duplicated at this time. Please try again."
msgstr "Questo documento non può essere duplicato in questo momento. Riprova."
@@ -8705,6 +8850,7 @@ msgstr "Questo documento non può essere duplicato in questo momento. Riprova."
msgid "This document could not be re-sent at this time. Please try again."
msgstr "Questo documento non può essere rinviato in questo momento. Riprova."
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
msgid "This document has already been sent to this recipient. You can no longer edit this recipient."
msgstr "Questo documento è già stato inviato a questo destinatario. Non puoi più modificare questo destinatario."
@@ -8873,9 +9019,9 @@ msgstr "Questo token è invalido o è scaduto. Non è necessaria alcuna azione."
msgid "This token is invalid or has expired. Please contact your team for a new invitation."
msgstr "Questo token è invalido o è scaduto. Si prega di contattare il vostro team per un nuovo invito."
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "This URL is already in use."
msgstr "Questo URL è già in uso."
@@ -8915,21 +9061,21 @@ msgstr "Ora"
msgid "Time zone"
msgstr "Fuso orario"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Time Zone"
msgstr "Fuso orario"
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Title"
msgstr "Titolo"
@@ -8964,12 +9110,12 @@ msgid "To change the email you must remove and add a new email address."
msgstr "Per cambiare la email devi rimuovere e aggiungere un nuovo indirizzo email."
#. placeholder {0}: user.email
-#. placeholder {0}: userToEnable.email
#. placeholder {0}: userToDisable.email
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#. placeholder {0}: userToEnable.email
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "To confirm, please enter the accounts email address <0/>({0})."
msgstr "Per confermare, inserisci l'indirizzo email dell'account <0/>({0})."
@@ -8981,8 +9127,8 @@ msgstr "Per confermare, per favore inserisci il motivo"
msgid "To enable two-factor authentication, scan the following QR code using your authenticator app."
msgstr "Per abilitare l'autenticazione a due fattori, scansiona il seguente codice QR utilizzando la tua app di autenticazione."
-#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
msgid "To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox."
msgstr "Per accedere al tuo account, conferma il tuo indirizzo email facendo clic sul link di conferma dalla tua casella di posta."
@@ -8997,8 +9143,8 @@ msgstr "Per segnare questo documento come visualizzato, devi essere loggato."
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "To proceed further, please set at least one value for the {0} field."
msgstr "Per procedere ulteriormente, si prega di impostare almeno un valore per il campo {0}."
@@ -9074,8 +9220,8 @@ msgstr "Totale firmatari che si sono iscritti"
msgid "Total Users"
msgstr "Totale utenti"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Triggers"
msgstr "Trigger"
@@ -9087,8 +9233,8 @@ msgstr "Autenticazione a due fattori"
msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app."
msgstr "I codici di recupero dell'autenticazione a due fattori sono utilizzati per accedere al tuo account nel caso in cui perdi l'accesso alla tua app di autenticazione."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Two-Factor Authentication"
msgstr "Autenticazione a due fattori"
@@ -9108,21 +9254,25 @@ msgstr "L'autenticazione a due fattori è stata disattivata per il tuo account.
msgid "Two-Factor Re-Authentication"
msgstr "Ri-autenticazione a due fattori"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Type"
msgstr "Tipo"
#: packages/lib/constants/document.ts
-msgctxt "Type signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Type signature"
msgid "Type"
-msgstr "Tipo"
+msgstr "Digita"
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Type a command or search..."
msgstr "Digita un comando o cerca..."
+#: packages/ui/primitives/signature-pad/signature-pad-type.tsx
+msgid "Type your signature"
+msgstr "Digita la tua firma"
+
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
msgid "Typed signatures are not allowed. Please draw your signature."
msgstr "Le firme digitate non sono consentite. Si prega di disegnare la propria firma."
@@ -9209,11 +9359,11 @@ msgstr "Impossibile configurare l'autenticazione a due fattori"
msgid "Unable to sign in"
msgstr "Impossibile accedere"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Unauthorized"
msgstr "Non autorizzato"
@@ -9221,15 +9371,15 @@ msgstr "Non autorizzato"
msgid "Uncompleted"
msgstr "Incompleto"
-#: 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
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.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
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Unknown"
msgstr "Sconosciuto"
@@ -9258,27 +9408,28 @@ msgstr "Rimuovi"
msgid "Untitled Group"
msgstr "Gruppo senza nome"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: 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/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Update"
@@ -9288,8 +9439,8 @@ msgstr "Aggiorna"
msgid "Update Banner"
msgstr "Aggiorna banner"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Update Billing"
msgstr "Aggiorna fatturazione"
@@ -9313,9 +9464,9 @@ msgstr "Aggiorna campi"
msgid "Update organisation"
msgstr "Aggiorna organizzazione"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "Update organisation member"
msgstr "Aggiorna membro dell'organizzazione"
@@ -9331,16 +9482,16 @@ msgstr "Aggiorna password"
msgid "Update profile"
msgstr "Aggiorna profilo"
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
msgid "Update Recipient"
msgstr "Aggiorna destinatario"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Update role"
msgstr "Aggiorna ruolo"
@@ -9375,10 +9526,6 @@ msgstr "Aggiorna il ruolo e aggiungi campi come richiesto per il destinatario di
msgid "Update user"
msgstr "Aggiorna utente"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "Update webhook"
-msgstr "Aggiorna webhook"
-
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
msgid "Updated {organisationMemberName} to {roleLabel}."
msgstr "Aggiornato {organisationMemberName} a {roleLabel}."
@@ -9391,8 +9538,8 @@ msgstr "Aggiornamento della password..."
msgid "Updating Your Information"
msgstr "Aggiornamento delle tue informazioni"
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "Upgrade"
msgstr "Aggiorna"
@@ -9406,12 +9553,12 @@ msgid "Upgrade your plan to upload more documents"
msgstr "Aggiorna il tuo piano per caricare più documenti"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
msgid "Upload"
msgstr "Carica"
#: packages/lib/constants/document.ts
-msgctxt "Upload signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Upload signature"
msgid "Upload"
msgstr "Carica"
@@ -9443,8 +9590,8 @@ msgstr "Carica documento personalizzato"
msgid "Upload disabled"
msgstr "Caricamento disabilitato"
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: packages/ui/primitives/document-upload-button.tsx
msgid "Upload Document"
msgstr "Carica documento"
@@ -9454,8 +9601,8 @@ msgid "Upload documents and add recipients"
msgstr "Carica documenti e aggiungi destinatari"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Upload failed"
msgstr "Caricamento fallito"
@@ -9476,8 +9623,8 @@ msgstr "Carica Documento Modello"
msgid "Upload your brand logo (max 5MB, JPG, PNG, or WebP)"
msgstr "Carica il tuo logo aziendale (max 5MB, JPG, PNG o WebP)"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Uploaded by"
msgstr "Caricato da"
@@ -9506,18 +9653,18 @@ msgstr "URL"
msgid "Use"
msgstr "Utilizza"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Authenticator"
msgstr "Usa Authenticator"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Backup Code"
msgstr "Usa il Codice di Backup"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
msgid "Use Template"
msgstr "Usa Modello"
@@ -9529,8 +9676,8 @@ msgstr "Usa la tua app di autenticazione per generare un codice"
msgid "Use your passkey for authentication"
msgstr "Usa la tua chiave di accesso per l'autenticazione"
-#: apps/remix/app/components/tables/internal-audit-log-table.tsx
#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/internal-audit-log-table.tsx
msgid "User"
msgstr "Utente"
@@ -9546,10 +9693,10 @@ msgstr "L'utente non ha password."
msgid "User not found"
msgstr "Utente non trovato"
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "User not found."
msgstr "Utente non trovato."
@@ -9569,15 +9716,15 @@ msgstr "Impostazioni utente"
msgid "User with this email already exists. Please use a different email address."
msgstr "Un utente con questo email esiste già. Si prega di utilizzare un indirizzo email diverso."
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
msgid "Users"
msgstr "Utenti"
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Validation"
msgstr "Validazione"
@@ -9585,9 +9732,9 @@ msgstr "Validazione"
msgid "Validation failed"
msgstr "Validazione fallita"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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 "Value"
@@ -9629,8 +9776,8 @@ msgstr "Verifica il tuo indirizzo email"
msgid "Verify your email address to unlock all features."
msgstr "Verifica il tuo indirizzo email per sbloccare tutte le funzionalità."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Verify your email to upload documents."
msgstr "Verifica il tuo email per caricare documenti."
@@ -9638,8 +9785,8 @@ msgstr "Verifica il tuo email per caricare documenti."
msgid "Verify your team email address"
msgstr "Verifica il tuo indirizzo email del team"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Vertical"
msgstr "Verticale"
@@ -9648,15 +9795,15 @@ msgstr "Verticale"
msgid "Vertical Align"
msgstr "Allineamento verticale"
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/inbox-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
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.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/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
msgid "View"
msgstr "Visualizza"
@@ -9689,13 +9836,13 @@ msgstr "Visualizza tutti i documenti correlati"
msgid "View all security activity related to your account."
msgstr "Visualizza tutte le attività di sicurezza relative al tuo account."
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "View and manage all active sessions for your account."
msgstr "Visualizza e gestisci tutte le sessioni attive per il tuo account."
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "View and manage all login methods linked to your account."
msgstr "Visualizza e gestisci tutti i metodi di accesso collegati al tuo account."
@@ -9711,14 +9858,14 @@ msgstr "Visualizza Record DNS"
msgid "View document"
msgstr "Visualizza documento"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.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
-#: packages/email/template-components/template-document-rejected.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: packages/email/template-components/template-document-invite.tsx
+#: packages/email/template-components/template-document-rejected.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
msgid "View Document"
msgstr "Visualizza documento"
@@ -9738,6 +9885,10 @@ msgstr "Visualizza documento da firmare"
msgid "View documents associated with this email"
msgstr "Visualizza documenti associati a questa email"
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+msgid "View insights"
+msgstr "Visualizza approfondimenti"
+
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
msgid "View invites"
msgstr "Visualizza inviti"
@@ -9771,9 +9922,9 @@ msgstr "Visualizza squadre"
msgid "View the DNS records for this email domain"
msgstr "Visualizza i record DNS per questo dominio email"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Viewed"
msgstr "Visualizzato"
@@ -9821,8 +9972,8 @@ msgstr "In attesa che altri completino la firma."
msgid "Waiting for others to sign"
msgstr "In attesa degli altri per firmare"
-#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
#: apps/remix/app/components/embed/embed-document-waiting-for-turn.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
msgid "Waiting for Your Turn"
msgstr "In attesa del tuo turno"
@@ -9838,17 +9989,17 @@ msgstr "Vuoi il tuo profilo pubblico?"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
msgid "Warning: Assistant as last signer"
msgstr "Avvertenza: Assistente come ultimo firmatario"
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
msgstr "Non siamo in grado di procedere al portale di fatturazione in questo momento. Per favore riprova, o contatta l'assistenza."
@@ -9895,12 +10046,12 @@ msgstr "Abbiamo riscontrato un errore durante la rimozione del link diretto al m
msgid "We encountered an error while sending the test webhook. Please check your endpoint and try again."
msgstr "Abbiamo riscontrato un errore durante l'invio del test del webhook. Si prega di controllare il proprio endpoint e riprovare."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "We encountered an error while updating the webhook. Please try again later."
msgstr "Abbiamo riscontrato un errore durante l'aggiornamento del webhook. Per favore riprova più tardi."
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "We encountered an unknown error while attempting to add team members. Please try again later."
msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di aggiungere membri del team. Si prega di riprovare più tardi."
@@ -9916,8 +10067,8 @@ msgstr "Abbiamo incontrato un errore sconosciuto durante il tentativo di aggiung
msgid "We encountered an unknown error while attempting to create a group. Please try again later."
msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di creare un gruppo. Si prega di riprovare più tardi."
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "We encountered an unknown error while attempting to create a organisation. Please try again later."
msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di creare un'organizzazione. Si prega di riprovare più tardi."
@@ -9973,8 +10124,8 @@ msgstr "Abbiamo incontrato un errore sconosciuto durante il tentativo di rimuove
msgid "We encountered an unknown error while attempting to remove this envelope item. Please try again later."
msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di rimuovere questo elemento della busta. Per favore riprova più tardi."
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this group. Please try again later."
msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di rimuovere questo gruppo. Si prega di riprovare più tardi."
@@ -9982,8 +10133,8 @@ msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di rimuov
msgid "We encountered an unknown error while attempting to remove this template from your profile. Please try again later."
msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di rimuovere questo modello dal tuo profilo. Si prega di riprovare più tardi."
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this user. Please try again later."
msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di rimuovere questo utente. Si prega di riprovare più tardi."
@@ -10000,10 +10151,10 @@ msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di reimpo
msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support."
msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di revocare l'accesso. Si prega di riprovare o contattare il supporto."
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
msgid "We encountered an unknown error while attempting to sign you In. Please try again later."
msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di accedere. Si prega di riprovare più tardi."
@@ -10025,13 +10176,13 @@ msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di aggior
msgid "We encountered an unknown error while attempting to update the template. Please try again later."
msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di aggiornare il modello. Si prega di riprovare più tardi."
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this organisation member. Please try again later."
msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di aggiornare questo membro dell'organizzazione. Si prega di riprovare più tardi."
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this team member. Please try again later."
msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di aggiornare questo membro del team. Si prega di riprovare più tardi."
@@ -10039,8 +10190,8 @@ msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di aggior
msgid "We encountered an unknown error while attempting to update your organisation. Please try again later."
msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di aggiornare la tua organizzazione. Si prega di riprovare più tardi."
-#: apps/remix/app/components/forms/password.tsx
#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
msgid "We encountered an unknown error while attempting to update your password. Please try again later."
msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di aggiornare la tua password. Si prega di riprovare più tardi."
@@ -10084,9 +10235,9 @@ msgstr "Non siamo riusciti a creare il tuo account. Si prega di rivedere le info
msgid "We were unable to disable two-factor authentication for your account. Please ensure that you have entered your password and backup code correctly and try again."
msgstr "Non siamo riusciti a disabilitare l'autenticazione a due fattori per il tuo account. Assicurati di aver inserito correttamente la password e il codice di backup e riprova."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "We were unable to log you out at this time."
msgstr "Non siamo riusciti a disconnetterti in questo momento."
@@ -10099,11 +10250,11 @@ msgstr "Non siamo riusciti a impostare il tuo profilo pubblico come pubblico. Pe
msgid "We were unable to setup two-factor authentication for your account. Please ensure that you have entered your code correctly and try again."
msgstr "Non siamo riusciti a impostare l'autenticazione a due fattori per il tuo account. Assicurati di aver inserito correttamente il tuo codice e riprova."
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
msgid "We were unable to submit this document at this time. Please try again later."
msgstr "Non siamo riusciti a inviare questo documento in questo momento. Per favore riprova più tardi."
@@ -10122,8 +10273,8 @@ msgstr "Non siamo riusciti ad aggiornare le tue preferenze sui documenti al mome
msgid "We were unable to update your email preferences at this time, please try again later"
msgstr "Al momento non siamo in grado di aggiornare le tue preferenze email, riprova più tardi."
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "We were unable to verify your details. Please try again or contact support"
msgstr "Non siamo riusciti a verificare i tuoi dati. Per favore riprova o contatta il supporto"
@@ -10135,14 +10286,14 @@ msgstr "Non siamo stati in grado di verificare la tua email in questo momento."
msgid "We were unable to verify your email. If your email is not verified already, please try again."
msgstr "Non siamo riusciti a verificare la tua email. Se la tua email non è già verificata, riprova."
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We will generate signing links for you, which you can send to the recipients through your method of choice."
msgstr "Genereremo link di firma per te, che potrai inviare ai destinatari tramite il metodo di tua scelta."
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We won't send anything to notify recipients."
msgstr "Non invieremo nulla per notificare i destinatari."
@@ -10155,8 +10306,8 @@ msgstr "Ti risponderemo via email il prima possibile."
msgid "We'll send a 6-digit code to your email"
msgstr "Invieremo un codice a 6 cifre alla tua email"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
msgid "We're all empty"
msgstr "Siamo tutti vuoti"
@@ -10176,6 +10327,11 @@ msgstr "Abbiamo inviato un codice di verifica a 6 cifre alla tua email. Inserisc
msgid "We've sent a confirmation email to <0>{email}0>. Please check your inbox and click the link in the email to verify your account."
msgstr "Abbiamo inviato un'email di conferma a <0>{email}0>. Controlla la tua casella di posta e clicca sul link nell'email per verificare il tuo account."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Webhook"
+msgstr "Webhook"
+
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
msgid "Webhook created"
msgstr "Webhook creato"
@@ -10184,23 +10340,31 @@ msgstr "Webhook creato"
msgid "Webhook deleted"
msgstr "Webhook eliminato"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook Details"
+msgstr "Dettagli webhook"
+
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Webhook not found"
msgstr "Webhook non trovato"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook successfully sent"
+msgstr "Webhook inviato correttamente"
+
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Webhook updated"
msgstr "Webhook aggiornato"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Webhook URL"
msgstr "URL del webhook"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Webhooks"
msgstr "Webhook"
@@ -10236,10 +10400,10 @@ msgstr "Stavi provando a modificare questo documento invece?"
msgid "What you can do with teams:"
msgstr "Cosa puoi fare con i team:"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "When enabled, signers can choose who should sign next in the sequence instead of following the predefined order."
msgstr "Quando abilitato, i firmatari possono scegliere chi deve firmare successivamente nella sequenza invece di seguire l'ordine predefinito."
@@ -10279,20 +10443,20 @@ msgstr "Ritiro del consenso"
msgid "Write a description to display on your public profile"
msgstr "Scrivi una descrizione da mostrare sul tuo profilo pubblico"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Yearly"
msgstr "Annuale"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Yes"
msgstr "Sì"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: packages/lib/utils/document-audit-logs.ts
msgid "You"
msgstr "Tu"
@@ -10360,10 +10524,10 @@ msgstr "Stai per rimuovere il seguente documento e tutti i campi associati"
msgid "You are about to remove the following email from <0>{0}0>."
msgstr "Stai per rimuovere la seguente email da <0>{0}0>."
-#. placeholder {0}: team.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#. placeholder {0}: team.name
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "You are about to remove the following group from <0>{0}0>."
msgstr "Stai per rimuovere il gruppo seguente da <0>{0}0>."
@@ -10403,8 +10567,8 @@ msgstr "Attualmente stai aggiornando <0>{0}0>"
msgid "You are currently updating <0>{memberName}.0>"
msgstr "Stai attualmente aggiornando <0>{memberName}.0>"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "You are currently updating <0>{organisationMemberName}.0>"
msgstr "Stai attualmente aggiornando <0>{organisationMemberName}.0>"
@@ -10487,8 +10651,8 @@ msgid "You can view the document and its status by clicking the button below."
msgstr "Puoi visualizzare il documento e il suo stato cliccando sul pulsante qui sotto."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "You cannot add assistants when signing order is disabled."
msgstr "Non puoi aggiungere assistenti quando l'ordine di firma è disabilitato."
@@ -10516,21 +10680,21 @@ msgstr "Non puoi modificare un membro del team che ha un ruolo superiore al tuo.
msgid "You cannot remove members from this team if the inherit member feature is enabled."
msgstr "Non puoi rimuovere membri da questo team se la funzione di ereditarietà membri è abilitata."
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "You cannot upload documents at this time."
msgstr "Non puoi caricare documenti in questo momento."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload encrypted PDFs"
msgstr "Non puoi caricare PDF crittografati"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload more than {maximumEnvelopeItemCount} items per envelope."
msgstr "Non puoi caricare più di {maximumEnvelopeItemCount} elementi per busta."
@@ -10546,6 +10710,10 @@ msgstr "Attualmente non hai accesso a nessun team all'interno di questa organizz
msgid "You do not have permission to create a token for this team"
msgstr "Non hai il permesso di creare un token per questo team"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "You don't manage billing for any organisations."
+msgstr "Non gestisci la fatturazione per nessuna organizzazione."
+
#: packages/email/template-components/template-document-cancel.tsx
msgid "You don't need to sign it anymore."
msgstr "Non hai più bisogno di firmarlo."
@@ -10574,8 +10742,8 @@ msgstr "Sei stato invitato a unirti a {0} su Documenso"
msgid "You have been invited to join the following organisation"
msgstr "Sei stato invitato a unirti alla seguente organizzazione"
-#: packages/lib/server-only/recipient/set-document-recipients.ts
#: packages/lib/server-only/recipient/delete-envelope-recipient.ts
+#: packages/lib/server-only/recipient/set-document-recipients.ts
msgid "You have been removed from a document"
msgstr "Sei stato rimosso da un documento"
@@ -10589,8 +10757,8 @@ msgid "You have declined the invitation from <0>{0}0> to join their organisati
msgstr "Hai rifiutato l'invito da <0>{0}0> a unirti alla loro organizzazione."
#. placeholder {0}: `"${envelope.title}"`
-#: packages/lib/server-only/document/resend-document.ts
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
+#: packages/lib/server-only/document/resend-document.ts
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
msgstr "Hai avviato il documento {0} che richiede che tu lo {recipientActionVerb}."
@@ -10606,9 +10774,9 @@ msgstr "Non hai ancora creato alcun modello. Per creare un modello, caricane uno
msgid "You have not yet created or received any documents. To create a document please upload one."
msgstr "Non hai ancora creato o ricevuto documenti. Per creare un documento caricane uno."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached the limit of the number of files per envelope"
msgstr "Hai raggiunto il limite del numero di file per busta"
@@ -10621,14 +10789,14 @@ msgstr "Hai raggiunto il limite massimo di {0} modelli diretti. <0>Aggiorna il t
msgid "You have reached the maximum number of teams for your plan. Please contact sales at <0>{SUPPORT_EMAIL}0> if you would like to adjust your plan."
msgstr "Hai raggiunto il massimo numero di team per il tuo piano. Si prega di contattare le vendite a <0>{SUPPORT_EMAIL}0> se si desidera modificare il proprio piano."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached your document limit for this month. Please upgrade your plan."
msgstr "Hai raggiunto il limite dei documenti per questo mese. Si prega di aggiornare il proprio piano."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
msgid "You have reached your document limit."
msgstr "Hai raggiunto il tuo limite di documenti."
@@ -10641,8 +10809,8 @@ msgstr "Hai raggiunto il tuo limite di documenti. <0>Aggiorna il tuo account per
msgid "You have rejected the document '{documentName}'"
msgstr "Hai rifiutato il documento '{documentName}'"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "You have rejected this document"
msgstr "Hai rifiutato questo documento"
@@ -10654,8 +10822,8 @@ msgstr "Hai firmato “{documentName}”"
msgid "You have successfully left this organisation."
msgstr "Hai abbandonato con successo questa organizzazione."
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "You have successfully registered. Please verify your account by clicking on the link you received in the email."
msgstr "Ti sei registrato con successo. Verifica il tuo account cliccando sul link ricevuto via email."
@@ -10712,10 +10880,10 @@ msgstr "Hai aggiornato il gruppo del team."
msgid "You have verified your email address for <0>{0}0>."
msgstr "Hai verificato il tuo indirizzo email per <0>{0}0>."
-#: 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
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "You must enter '{deleteMessage}' to proceed"
msgstr "Devi inserire '{deleteMessage}' per procedere"
@@ -10723,8 +10891,8 @@ msgstr "Devi inserire '{deleteMessage}' per procedere"
msgid "You must select at least one item"
msgstr "Devi selezionare almeno un elemento"
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
msgid "You must type '{deleteMessage}' to confirm"
msgstr "Devi digitare '{deleteMessage}' per confermare"
@@ -10744,8 +10912,8 @@ msgstr "Devi essere un amministratore per gestire i token API."
msgid "You need to be logged in as <0>{email}0> to view this page."
msgstr "Devi essere loggato come <0>{email}0> per visualizzare questa pagina."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "You need to be logged in to view this page."
msgstr "Devi essere loggato per visualizzare questa pagina."
@@ -10762,8 +10930,8 @@ msgid "You will now be required to enter a code from your authenticator app when
msgstr "Ora ti verrà richiesto di inserire un codice dalla tua app di autenticazione durante l'accesso."
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "You will receive an Email copy of the signed document once everyone has signed."
-msgstr "Riceverai una copia del documento firmato via email una volta che tutti hanno firmato."
+msgid "You will receive an email copy of the signed document once everyone has signed."
+msgstr "Riceverai una copia del documento firmato via email non appena tutti avranno firmato."
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Your Account"
@@ -10818,8 +10986,8 @@ msgstr "Il tuo attuale piano è scaduto."
msgid "Your direct signing templates"
msgstr "I tuoi modelli di firma diretta"
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Your document failed to upload."
msgstr "Il tuo documento non è stato caricato."
@@ -10847,9 +11015,9 @@ msgstr "Il tuo documento è stato inviato correttamente."
msgid "Your document has been successfully duplicated."
msgstr "Il tuo documento è stato duplicato correttamente."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your document has been uploaded successfully."
msgstr "Il tuo documento è stato caricato correttamente."
@@ -10909,8 +11077,8 @@ msgstr "I tuoi token esistenti"
msgid "Your Name"
msgstr "Il tuo nome"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your new password cannot be the same as your old password."
msgstr "La tua nuova password non può essere la stessa della vecchia password."
@@ -10926,8 +11094,8 @@ msgstr "La tua organizzazione è stata eliminata correttamente."
msgid "Your organisation has been successfully updated."
msgstr "La tua organizzazione è stata aggiornata con successo."
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your password has been updated successfully."
msgstr "La tua password è stata aggiornata con successo."
@@ -10967,8 +11135,8 @@ msgstr "Il tuo profilo pubblico è stato aggiornato."
msgid "Your recovery code has been copied to your clipboard."
msgstr "Il tuo codice di recupero è stato copiato negli appunti."
-#: 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/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Your recovery codes are listed below. Please store them in a safe place."
msgstr "I tuoi codici di recupero sono elencati di seguito. Si prega di conservarli in un luogo sicuro."
@@ -11000,8 +11168,8 @@ msgstr "Il tuo modello è stato duplicato correttamente."
msgid "Your template has been successfully deleted."
msgstr "Il tuo modello è stato eliminato correttamente."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your template has been uploaded successfully."
msgstr "Il tuo modello è stato caricato con successo."
diff --git a/packages/lib/translations/ja/web.po b/packages/lib/translations/ja/web.po
index cc323a8bf..8425d2bfe 100644
--- a/packages/lib/translations/ja/web.po
+++ b/packages/lib/translations/ja/web.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ja\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-11-17 04:07\n"
+"PO-Revision-Date: 2025-11-27 05:32\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -52,9 +52,9 @@ msgstr "「Team Name」を代表して「{placeholderEmail}」が「example docu
msgid "\"Team Name\" has invited you to sign \"example document\"."
msgstr "「Team Name」から「example document」への署名依頼が届いています。"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "(You)"
msgstr "(あなた)"
@@ -64,8 +64,8 @@ msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
msgstr "{0, plural, other {(# 文字超過)}}"
#. placeholder {0}: Math.abs(remaningLength)
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{0, plural, one {# character over the limit} other {# characters over the limit}}"
msgstr "{0, plural, other {# 文字数の上限を # 文字超えています}}"
@@ -79,6 +79,11 @@ msgstr "{0, plural, other {残り # 文字}}"
msgid "{0, plural, one {# document} other {# documents}}"
msgstr "{0, plural, other {# 件のドキュメント}}"
+#. placeholder {0}: row.original.eventTriggers.length
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "{0, plural, one {# Event} other {# Events}}"
+msgstr "{0, plural, other {#件のイベント}}"
+
#. placeholder {0}: assistantFields.filter((field) => field.recipientId === r.id).length
#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "{0, plural, one {# field} other {# fields}}"
@@ -116,16 +121,16 @@ msgid "{0, plural, one {<0>You have <1>11> pending invitation0>} other {<2>Y
msgstr "{0, plural, other {<2>保留中の招待が <3>#3> 件あります2>}}"
#. placeholder {0}: recipientFieldsRemaining.length
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "{0, plural, one {1 Field Remaining} other {# Fields Remaining}}"
msgstr "{0, plural, other {残り # 個のフィールド}}"
#. placeholder {0}: fields.filter((field) => field.envelopeItemId === doc.id).length
#. placeholder {0}: remainingFields.filter((field) => field.envelopeItemId === doc.id).length
-#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
msgid "{0, plural, one {1 Field} other {# Fields}}"
msgstr "{0, plural, other {# 個のフィールド}}"
@@ -144,11 +149,11 @@ msgstr "{0, plural, other {# 名の受信者}}"
msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}"
msgstr "{0, plural, other {# 名の受信者の対応待ち}}"
-#. placeholder {0}: route.label
#. placeholder {0}: _(FRIENDLY_FIELD_TYPE[fieldType as FieldType])
+#. placeholder {0}: route.label
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
msgid "{0}"
msgstr "{0}"
@@ -175,9 +180,9 @@ msgstr "{0} からドキュメントへの{recipientActionVerb}依頼が届い
#. placeholder {0}: remaining.documents
#. placeholder {1}: quota.documents
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "{0} of {1} documents remaining this month."
msgstr "今月は {1} 件中 {0} 件の文書を残しています。"
@@ -405,8 +410,8 @@ msgstr "{recipientReference} が「{documentName}」に署名しました"
msgid "{recipientReference} has signed {documentName}"
msgstr "{recipientReference} が {documentName} に署名しました"
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{remaningLength, plural, one {# character remaining} other {# characters remaining}}"
msgstr "{remaningLength, plural, other {# 文字残り}}"
@@ -515,6 +520,10 @@ msgstr "<0>手書き0> - マウスやスタイラスを使って描画され
msgid "<0>Email0> - The recipient will be emailed the document to sign, approve, etc."
msgstr "<0>メール0> - 受信者に、署名・承認などのためのドキュメントがメールで送信されます。"
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "<0>Events:0> All"
+msgstr "<0>イベント:0> すべて"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "<0>Full account access:0> View all your profile information, settings, and activity"
msgstr "<0>アカウント全体へのアクセス:0> プロフィール情報、設定、アクティビティのすべてを表示"
@@ -545,8 +554,8 @@ msgstr "<0>なし0> - 受信者に手動で送信できるリンクを生成
msgid "<0>Note0> - If you use Links in combination with direct templates, you will need to manually send the links to the remaining recipients."
msgstr "<0>注意0> - リンクをダイレクトテンプレートと組み合わせて使用する場合、残りの受信者にはリンクを手動で送信する必要があります。"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require 2FA0> - The recipient must have an account and 2FA enabled via their settings"
msgstr "<0>2FA を必須にする0> - 受信者はアカウントを持ち、設定から 2FA を有効にしている必要があります"
@@ -554,8 +563,8 @@ msgstr "<0>2FA を必須にする0> - 受信者はアカウントを持ち、
msgid "<0>Require account0> - The recipient must be signed in to view the document"
msgstr "<0>アカウント必須0> - 受信者はドキュメントを閲覧するためにサインインしている必要があります"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require passkey0> - The recipient must have an account and passkey configured via their settings"
msgstr "<0>パスキー必須0> - 受信者はアカウントを持ち、設定からパスキーを構成している必要があります"
@@ -624,9 +633,9 @@ msgstr "404 メールドメインが見つかりません"
msgid "404 not found"
msgstr "404 Not Found"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "404 Not found"
msgstr "404 Not found"
@@ -660,7 +669,7 @@ msgstr "404 テンプレートが見つかりません"
msgid "404 User not found"
msgstr "404 ユーザーが見つかりません"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "404 Webhook not found"
msgstr "404 Webhook が見つかりません"
@@ -747,8 +756,8 @@ msgstr "新しいメンバーが組織 {organisationName} に参加しました"
msgid "A new token was created successfully."
msgstr "新しいトークンが正常に作成されました。"
-#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
msgstr "パスワード再設定用のメールを送信しました。アカウントをお持ちの場合は、まもなく受信トレイに届きます。"
@@ -784,7 +793,7 @@ msgstr "Documenso で {0} によって、あなたのメールアドレスを使
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso"
msgstr "Documenso から送信されたリクエストであることを検証できるよう、お客様の URL に送信されるシークレットです"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso."
msgstr "Documenso から送信されたリクエストであることを検証できるよう、お客様の URL に送信されるシークレットです。"
@@ -809,8 +818,8 @@ msgstr "組織を一意に識別する URL"
msgid "A unique URL to identify your organisation"
msgstr "組織を一意に識別する URL"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "A unique URL to identify your team"
msgstr "チームを識別するための一意の URL"
@@ -819,8 +828,8 @@ msgid "A verification email will be sent to the provided email."
msgstr "入力されたメールアドレス宛てに確認メールが送信されます。"
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: packages/email/templates/organisation-invite.tsx
#: packages/email/templates/confirm-team-email.tsx
+#: packages/email/templates/organisation-invite.tsx
msgid "Accept"
msgstr "承諾"
@@ -848,9 +857,9 @@ msgstr "アクセスは無効です"
msgid "Access enabled"
msgstr "アクセスは有効です"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Account"
msgstr "アカウント"
@@ -866,8 +875,8 @@ msgstr "アカウント作成リクエスト"
msgid "Account Creation Request"
msgstr "アカウント作成リクエスト"
-#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "Account deleted"
msgstr "アカウントを削除しました"
@@ -895,46 +904,50 @@ msgstr "アカウントのリンクを解除しました"
msgid "Acknowledgment"
msgstr "確認"
-#: 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/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
+#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Action"
msgstr "操作"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Actions"
msgstr "操作"
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
msgid "Active"
msgstr "有効"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Active sessions"
msgstr "アクティブなセッション"
@@ -942,8 +955,8 @@ msgstr "アクティブなセッション"
msgid "Active Subscriptions"
msgstr "有効なサブスクリプション"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Add"
msgstr "追加"
@@ -960,15 +973,15 @@ msgstr "組織を代表してメールを送信するためのカスタムドメ
msgid "Add a document"
msgstr "ドキュメントを追加"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Add a URL to redirect the user to once the document is signed"
msgstr "ドキュメントに署名完了後にリダイレクトする URL を追加します。"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add all relevant fields for each recipient."
msgstr "各受信者に必要なすべてのフィールドを追加します。"
@@ -1001,8 +1014,8 @@ msgstr "複数の文書を追加して設定します"
msgid "Add another option"
msgstr "別のオプションを追加"
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
msgid "Add another value"
msgstr "別の値を追加"
@@ -1026,11 +1039,11 @@ msgstr "メールを追加"
msgid "Add Email Domain"
msgstr "メールドメインを追加"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add Fields"
msgstr "フィールドを追加"
@@ -1094,8 +1107,8 @@ msgstr "プレースホルダーを追加"
msgid "Add Recipients"
msgstr "受信者を追加"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Add Signer"
msgstr "署名者を追加"
@@ -1144,8 +1157,8 @@ msgstr "メールの末尾に表示する追加のブランド情報"
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Admin"
msgstr "管理者"
@@ -1153,8 +1166,8 @@ msgstr "管理者"
msgid "Admin Actions"
msgstr "管理者操作"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Admin panel"
msgstr "管理パネル"
@@ -1166,15 +1179,15 @@ msgstr "管理画面"
msgid "Admins only"
msgstr "管理者のみ"
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Advanced Options"
msgstr "詳細オプション"
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Advanced settings"
msgstr "詳細設定"
@@ -1191,6 +1204,7 @@ msgid "After submission, a document will be automatically generated and added to
msgstr "送信後、自動的にドキュメントが生成され、「ドキュメント」ページに追加されます。メールでも通知が届きます。"
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "All"
msgstr "すべて"
@@ -1214,8 +1228,8 @@ msgstr "電子署名プロセスに関連するすべての文書は、当社の
msgid "All email domains have been synced successfully"
msgstr "すべてのメールドメインが正常に同期されました"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "All Folders"
msgstr "すべてのフォルダ"
@@ -1223,6 +1237,10 @@ msgstr "すべてのフォルダ"
msgid "All inserted signatures will be voided"
msgstr "挿入されたすべての署名は無効になります"
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
+msgid "All recipients have signed. The document is being processed and you will receive an email copy shortly."
+msgstr "すべての受信者が署名しました。現在ドキュメントを処理しており、まもなく署名済みドキュメントのコピーがメールで送信されます。"
+
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "All recipients will be notified"
msgstr "すべての受信者に通知されます"
@@ -1239,8 +1257,8 @@ msgstr "すべての署名リンクをクリップボードにコピーしまし
msgid "All templates"
msgstr "すべてのテンプレート"
-#: apps/remix/app/components/general/period-selector.tsx
#: apps/remix/app/components/filters/date-range-filter.tsx
+#: apps/remix/app/components/general/period-selector.tsx
msgid "All Time"
msgstr "全期間"
@@ -1252,10 +1270,10 @@ msgstr "すべての組織メンバーがこのチームにアクセスできる
msgid "Allow document recipients to reply directly to this email address"
msgstr "ドキュメントの受信者が、このメールアドレスに直接返信できるようにします。"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Allow signers to dictate next signer"
msgstr "署名者が次の署名者を指定できるようにする"
@@ -1263,10 +1281,10 @@ msgstr "署名者が次の署名者を指定できるようにする"
msgid "Allowed Email Domains"
msgstr "許可されたメールドメイン"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Allowed Signature Types"
msgstr "許可する署名タイプ"
@@ -1306,19 +1324,19 @@ msgstr "各メンバー宛てに招待状を含むメールが送信されます
msgid "An email with this address already exists."
msgstr "このメールアドレスはすでに存在します。"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/token.tsx
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.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
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "An error occurred"
msgstr "エラーが発生しました"
@@ -1330,9 +1348,9 @@ msgstr "アップロード中にエラーが発生しました。"
msgid "An error occurred while adding fields."
msgstr "フィールドの追加中にエラーが発生しました。"
+#: 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/template/template-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "An error occurred while adding signers."
msgstr "署名者の追加中にエラーが発生しました。"
@@ -1400,7 +1418,7 @@ msgstr "ダイレクトリンク署名を有効にする際にエラーが発生
msgid "An error occurred while enabling the user."
msgstr "ユーザーの有効化中にエラーが発生しました。"
-#: packages/ui/primitives/pdf-viewer.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "An error occurred while loading the document."
msgstr "ドキュメントの読み込み中にエラーが発生しました。"
@@ -1412,14 +1430,14 @@ msgstr "文書の移動中にエラーが発生しました。"
msgid "An error occurred while moving the template."
msgstr "テンプレートの移動中にエラーが発生しました。"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while removing the field."
msgstr "フィールドの削除中にエラーが発生しました。"
@@ -1443,29 +1461,29 @@ msgstr "文書の送信中にエラーが発生しました。"
msgid "An error occurred while sending your confirmation email"
msgstr "確認メールの送信中にエラーが発生しました"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing as assistant."
msgstr "代理署名中に予期しないエラーが発生しました。"
-#: 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
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing the document."
msgstr "文書の署名中にエラーが発生しました。"
@@ -1478,8 +1496,8 @@ msgstr "フィールドへの署名中にエラーが発生しました。"
msgid "An error occurred while trying to create a checkout session."
msgstr "チェックアウトセッションの作成中にエラーが発生しました。"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "An error occurred while updating the document settings."
msgstr "文書設定の更新中にエラーが発生しました。"
@@ -1491,8 +1509,8 @@ msgstr "署名の更新中にエラーが発生しました。"
msgid "An error occurred while updating your profile."
msgstr "プロフィールの更新中にエラーが発生しました。"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "An error occurred while uploading your document."
msgstr "文書のアップロード中にエラーが発生しました。"
@@ -1512,53 +1530,53 @@ msgstr "ある組織があなたのアカウントをリンクしようとして
msgid "An unexpected error occurred."
msgstr "予期しないエラーが発生しました。"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/public-profile-form.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/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/general/app-command-menu.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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/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/signin.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/profile.tsx
-#: apps/remix/app/components/forms/organisation-update-form.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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "An unknown error occurred"
msgstr "不明なエラーが発生しました"
@@ -1586,10 +1604,10 @@ msgstr "すべてのソース"
msgid "Any Status"
msgstr "すべてのステータス"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "API Tokens"
msgstr "API トークン"
@@ -1597,12 +1615,12 @@ msgstr "API トークン"
msgid "App Version"
msgstr "アプリのバージョン"
-#: apps/remix/app/components/tables/inbox-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-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Approve"
msgstr "承認"
@@ -1611,9 +1629,9 @@ msgctxt "Recipient role action verb"
msgid "Approve"
msgstr "承認"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Approve Document"
msgstr "文書を承認"
@@ -1666,8 +1684,8 @@ msgid "Are you sure you want to reject this document? This action cannot be undo
msgstr "このドキュメントを却下してもよろしいですか?この操作は元に戻せません。"
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
-msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey."
-msgstr "<0>{passkeyName}0> パスキーを削除してもよろしいですか。"
+msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey?"
+msgstr "<0>{passkeyName}0> のパスキーを削除してもよろしいですか?"
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
msgid "Are you sure you wish to delete this organisation?"
@@ -1677,23 +1695,23 @@ msgstr "本当にこの組織を削除してもよろしいですか?"
msgid "Are you sure you wish to delete this team?"
msgstr "このチームを本当に削除しますか?"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/components/general/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Are you sure?"
msgstr "本当によろしいですか?"
@@ -1706,9 +1724,9 @@ msgctxt "Recipient role action verb"
msgid "Assist"
msgstr "補助"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Assist Document"
msgstr "ドキュメントを補助"
@@ -1752,11 +1770,11 @@ msgctxt "Recipient role progressive verb"
msgid "Assisting"
msgstr "補助中"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
-#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/lib/types/document-meta.ts
+#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
msgid "At least one signature type must be enabled"
msgstr "少なくとも 1 つの署名タイプを有効にする必要があります"
@@ -1768,9 +1786,9 @@ msgstr "添付ファイルを追加しました。"
msgid "Attachment removed successfully."
msgstr "添付ファイルを削除しました。"
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Attachments"
@@ -1796,8 +1814,8 @@ msgstr "認証レベル"
msgid "Authentication Portal Not Found"
msgstr "認証ポータルが見つかりません"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Authentication required"
msgstr "認証が必要です"
@@ -1817,12 +1835,12 @@ msgstr "アバターを更新しました"
msgid "Awaiting email confirmation"
msgstr "メール確認待ち"
-#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
msgid "Back"
msgstr "戻る"
@@ -1838,8 +1856,8 @@ msgstr "背景色"
msgid "Background Jobs"
msgstr "バックグラウンドジョブ"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Backup Code"
msgstr "バックアップコード"
@@ -1855,10 +1873,11 @@ msgstr "バナーを更新しました"
msgid "Before you get started, please confirm your email address by clicking the button below:"
msgstr "開始する前に、下のボタンをクリックしてメールアドレスを確認してください。"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
msgid "Billing"
msgstr "請求"
@@ -1882,9 +1901,9 @@ msgstr "ブランド詳細"
msgid "Brand Website"
msgstr "ブランドの Web サイト"
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
msgid "Branding"
msgstr "ブランディング"
@@ -1892,10 +1911,10 @@ msgstr "ブランディング"
msgid "Branding Logo"
msgstr "ブランディングロゴ"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Branding Preferences"
msgstr "ブランディング設定"
@@ -1929,8 +1948,8 @@ msgstr "テンプレート「{templateName}」の一括送信が完了しまし
msgid "Bulk Send Template via CSV"
msgstr "CSV でテンプレートを一括送信"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Bulk Send via CSV"
msgstr "CSV で一括送信"
@@ -1975,96 +1994,95 @@ msgstr "電子署名機能を利用することで、お客様は取引や開示
msgid "Can prepare"
msgstr "準備ができる"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.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/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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-password.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/general/document/document-attachments-popover.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-test-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-to-folder-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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-create-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-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/claim-update-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.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-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.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/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Cancel"
msgstr "キャンセル"
@@ -2114,6 +2132,10 @@ msgstr "Cc 受信者"
msgid "Center"
msgstr "中央"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Change Recipient"
+msgstr "受信者を変更"
+
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
msgid "Character limit"
msgstr "文字数制限"
@@ -2128,8 +2150,8 @@ msgid "Charts"
msgstr "グラフ"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Checkbox"
msgstr "チェックボックス"
@@ -2142,9 +2164,9 @@ msgstr "チェックボックス設定"
msgid "Checkbox values"
msgstr "チェックボックスの値"
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Checkout"
msgstr "チェックアウト"
@@ -2196,9 +2218,9 @@ msgstr "署名をクリア"
msgid "Click here to get started"
msgstr "ここをクリックして開始"
-#: 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/template/template-page-view-recent-activity.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "Click here to retry"
msgstr "ここをクリックして再試行"
@@ -2211,12 +2233,12 @@ msgstr "ここをクリックしてアップロード"
msgid "Click to copy signing link for sending to recipient"
msgstr "クリックして署名用リンクをコピーし、受信者に送信します"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.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/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
msgid "Click to insert field"
msgstr "クリックしてフィールドを挿入"
@@ -2236,23 +2258,25 @@ msgstr "クライアントシークレット"
msgid "Client secret is required"
msgstr "クライアントシークレットは必須です"
-#: apps/remix/app/components/general/billing-plans.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/support-ticket-form.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/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-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/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/missing-signature-field-dialog.tsx
msgid "Close"
msgstr "閉じる"
@@ -2265,14 +2289,14 @@ msgstr "コミュニケーション"
msgid "Compare all plans and features in detail"
msgstr "すべてのプランと機能を詳細に比較"
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Complete"
msgstr "完了"
@@ -2284,22 +2308,22 @@ msgstr "ドキュメントを完了"
msgid "Complete the fields for the following signers."
msgstr "次の署名者のフィールドを入力してください。"
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: 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/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
-#: packages/lib/constants/document.ts
-#: packages/email/template-components/template-document-self-signed.tsx
-#: packages/email/template-components/template-document-recipient-signed.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
#: packages/email/template-components/template-document-completed.tsx
+#: packages/email/template-components/template-document-recipient-signed.tsx
+#: packages/email/template-components/template-document-self-signed.tsx
+#: packages/lib/constants/document.ts
msgid "Completed"
msgstr "完了"
-#: packages/email/templates/document-self-signed.tsx
#: packages/email/templates/document-completed.tsx
+#: packages/email/templates/document-self-signed.tsx
msgid "Completed Document"
msgstr "完了したドキュメント"
@@ -2375,8 +2399,8 @@ msgstr "テンプレートを設定"
#. placeholder {0}: parseMessageDescriptor( _, FRIENDLY_FIELD_TYPE[currentField.type], )
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Configure the {0} field"
msgstr "{0} フィールドを設定"
@@ -2393,20 +2417,20 @@ msgstr "グループごとにチームロールを設定します"
msgid "Configure the team roles for each member"
msgstr "メンバーごとにチームロールを設定します"
-#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Confirm"
msgstr "確認"
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
msgid "Confirm by typing <0>{deleteMessage}0>"
msgstr "<0>{deleteMessage}0> と入力して確認してください"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "Confirm by typing: <0>{deleteMessage}0>"
msgstr "次を入力して確認してください: <0>{deleteMessage}0>"
@@ -2419,8 +2443,8 @@ msgstr "削除の確認"
msgid "Confirm email"
msgstr "メールアドレスを確認"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Confirmation email sent"
msgstr "確認メールを送信しました"
@@ -2444,17 +2468,17 @@ msgstr "お問い合わせ"
msgid "Content"
msgstr "コンテンツ"
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$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+/organisation.invite.$token.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-view.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/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$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+/verify-email.$token.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Continue"
msgstr "続行"
@@ -2521,21 +2545,22 @@ msgstr "ドキュメントに署名するときに使用できる署名タイプ
msgid "Copied"
msgstr "コピーしました"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: 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/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: packages/ui/primitives/document-flow/add-subject.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/avatar-with-recipient.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.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/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/components/document/document-share-button.tsx
+#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Copied to clipboard"
msgstr "クリップボードにコピーしました"
@@ -2556,8 +2581,8 @@ msgstr "共有リンクをコピー"
msgid "Copy Shareable Link"
msgstr "共有リンクをコピー"
-#: 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/general/document/document-recipient-link-copy-dialog.tsx
msgid "Copy Signing Links"
msgstr "署名リンクをコピー"
@@ -2565,12 +2590,12 @@ msgstr "署名リンクをコピー"
msgid "Copy token"
msgstr "トークンをコピー"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Create"
msgstr "作成"
@@ -2681,17 +2706,17 @@ msgstr "今すぐ作成"
msgid "Create one automatically"
msgstr "自動的に作成"
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
msgid "Create organisation"
msgstr "組織を作成"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Create Organisation"
msgstr "組織を作成"
@@ -2715,14 +2740,14 @@ msgstr "サブスクリプションを作成"
msgid "Create Subscription Claim"
msgstr "サブスクリプションクレームを作成"
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
msgid "Create team"
msgstr "チームを作成"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Create Team"
msgstr "チームを作成"
@@ -2751,26 +2776,27 @@ msgstr "アカウントを作成して、最先端の文書署名を今すぐ始
msgid "Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp."
msgstr "アカウントを作成して、最先端の文書署名を今すぐ始めましょう。オープンで美しい署名体験があなたを待っています。"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: 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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-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
+#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Created"
msgstr "作成日時"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Created At"
msgstr "作成日時"
@@ -2782,9 +2808,7 @@ msgstr "作成者"
msgid "Created on"
msgstr "作成日"
-#. placeholder {0}: i18n.date(webhook.createdAt, DateTime.DATETIME_FULL)
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Created on {0}"
msgstr "作成日 {0}"
@@ -2842,13 +2866,13 @@ msgstr "ダークモード"
msgid "Dashboard"
msgstr "ダッシュボード"
-#: apps/remix/app/components/tables/settings-security-activity-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Date"
msgstr "日付"
@@ -2856,10 +2880,10 @@ msgstr "日付"
msgid "Date created"
msgstr "作成日"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Date Format"
msgstr "日付形式"
@@ -2867,8 +2891,8 @@ msgstr "日付形式"
msgid "Date Settings"
msgstr "日付設定"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: packages/email/templates/organisation-invite.tsx
msgid "Decline"
msgstr "辞退"
@@ -2918,46 +2942,47 @@ msgstr "既定値"
msgid "delete"
msgstr "delete"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/folder/folder-card.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-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-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/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Delete"
msgstr "削除"
-#. placeholder {0}: webhook.webhookUrl
-#. placeholder {0}: token.name
+#. placeholder {0}: folder.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#. placeholder {0}: token.name
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "delete {0}"
msgstr "delete {0}"
@@ -2973,11 +2998,11 @@ msgstr "delete {teamName}"
msgid "Delete account"
msgstr "アカウントを削除"
+#: 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
#: 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
msgid "Delete Account"
msgstr "アカウントの削除"
@@ -2985,10 +3010,10 @@ msgstr "アカウントの削除"
msgid "Delete document"
msgstr "文書を削除"
+#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: 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
msgid "Delete Document"
msgstr "文書を削除"
@@ -2996,8 +3021,8 @@ msgstr "文書を削除"
msgid "Delete email"
msgstr "メールを削除"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Delete email domain"
msgstr "メールドメインを削除"
@@ -3057,8 +3082,8 @@ msgstr "Webhook を削除"
msgid "Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution."
msgstr "アカウントと、その完了済み文書を含むすべての内容を削除します。この操作は取り消せず、サブスクリプションもキャンセルされるため、十分ご注意ください。"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Deleted"
msgstr "削除済み"
@@ -3066,13 +3091,22 @@ msgstr "削除済み"
msgid "Deleting account..."
msgstr "アカウントを削除しています..."
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Destination"
+msgstr "送信先"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Details"
msgstr "詳細"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+msgid "Developer Mode"
+msgstr "開発者モード"
+
#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Device"
msgstr "デバイス"
@@ -3080,19 +3114,19 @@ msgstr "デバイス"
msgid "Didn't request a password change? We are here to help you secure your account, just <0>contact us.0>"
msgstr "パスワードの変更をリクエストしていませんか?アカウントの安全確保をお手伝いしますので、<0>お問い合わせ0>ください。"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "direct link"
msgstr "ダイレクトリンク"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Direct link"
msgstr "ダイレクトリンク"
-#: 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/envelope-editor/envelope-editor.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
msgid "Direct Link"
msgstr "ダイレクトリンク"
@@ -3130,14 +3164,14 @@ msgstr "ダイレクトテンプレートリンクを削除しました"
msgid "Direct template link usage exceeded ({0}/{1})"
msgstr "ダイレクトテンプレートリンクの使用数が上限を超えました ({0}/{1})"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Direction"
msgstr "方向"
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
msgid "Disable"
msgstr "無効化"
@@ -3165,6 +3199,7 @@ msgid "Disable Two Factor Authentication before deleting your account."
msgstr "アカウントを削除する前に二要素認証を無効にしてください。"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Disabled"
msgstr "無効"
@@ -3180,8 +3215,8 @@ msgstr "ユーザーを無効化すると、そのユーザーはアカウント
msgid "Discord"
msgstr "Discord"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "Display Name"
msgstr "表示名"
@@ -3217,11 +3252,11 @@ msgstr "このテンプレートを複製しますか?"
msgid "Documenso will delete <0>all of your documents0>, along with all of your completed documents, signatures, and all other resources belonging to your Account."
msgstr "Documenso は<0>すべての文書0>と、完了済み文書・署名・アカウントに紐づくその他すべてのリソースを削除します。"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Document"
msgstr "文書"
@@ -3250,9 +3285,9 @@ msgid "Document & Recipients"
msgstr "ドキュメントと受信者"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Document access"
msgstr "ドキュメントへのアクセス"
@@ -3271,8 +3306,8 @@ msgstr "文書が承認されました"
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: packages/lib/server-only/document/delete-document.ts
#: packages/lib/server-only/admin/admin-super-delete-document.ts
+#: packages/lib/server-only/document/delete-document.ts
msgid "Document Cancelled"
msgstr "文書はキャンセルされました"
@@ -3313,8 +3348,8 @@ msgstr "ドキュメントを作成しました"
msgid "Document created by <0>{0}0>"
msgstr "文書は <0>{0}0> によって作成されました"
-#: packages/lib/server-only/template/create-document-from-direct-template.ts
#: packages/email/templates/document-created-from-direct-template.tsx
+#: packages/lib/server-only/template/create-document-from-direct-template.ts
msgid "Document created from direct template"
msgstr "ダイレクトテンプレートから作成されたドキュメント"
@@ -3326,9 +3361,9 @@ msgstr "<0>ダイレクトリンク0>から文書が作成されました"
msgid "Document Creation"
msgstr "ドキュメント作成"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
msgid "Document deleted"
msgstr "文書を削除しました"
@@ -3427,9 +3462,9 @@ msgstr "文書は保留中です"
msgid "Document pending email"
msgstr "ドキュメント保留メール"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Document Preferences"
msgstr "ドキュメント設定"
@@ -3446,8 +3481,8 @@ msgstr "文書を再送信しました"
msgid "Document rejected"
msgstr "ドキュメントは却下されました"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: packages/email/template-components/template-document-rejected.tsx
msgid "Document Rejected"
msgstr "ドキュメントを却下しました"
@@ -3504,15 +3539,15 @@ msgstr "ドキュメントが更新されました"
msgid "Document updated successfully"
msgstr "ドキュメントは正常に更新されました"
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Document upload disabled due to unpaid invoices"
msgstr "未払いの請求書があるため、文書のアップロードは無効化されています"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Document uploaded"
msgstr "文書をアップロードしました"
@@ -3546,20 +3581,20 @@ msgstr "文書は完全に削除されます"
msgid "Documentation"
msgstr "ドキュメント"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.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/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
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Documents"
msgstr "文書"
@@ -3608,22 +3643,22 @@ msgstr "このドメインはすでに使用されています"
msgid "Domain Name"
msgstr "ドメイン名"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Don't have an account? <0>Sign up0>"
msgstr "アカウントをお持ちでないですか?<0>サインアップ0>"
-#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-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/general/document/document-certificate-qr-view.tsx
-#: apps/remix/app/components/general/document/document-certificate-qr-view.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/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
#: packages/email/template-components/template-document-completed.tsx
msgid "Download"
msgstr "ダウンロード"
@@ -3640,9 +3675,9 @@ msgstr "証明書をダウンロード"
msgid "Download Files"
msgstr "ファイルをダウンロード"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Download PDF"
msgstr "PDF をダウンロード"
@@ -3650,9 +3685,9 @@ msgstr "PDF をダウンロード"
msgid "Download Template CSV"
msgstr "テンプレート用 CSV をダウンロード"
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: packages/lib/constants/document.ts
msgid "Draft"
msgstr "下書き"
@@ -3677,22 +3712,19 @@ msgstr "ドラッグ&ドロップするか、クリックしてアップロー
msgid "Drag and drop your PDF file here"
msgstr "PDF ファイルをここにドラッグ&ドロップしてください"
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
-msgid "Draw"
-msgstr "描画"
-
#: packages/lib/constants/document.ts
-msgctxt "Draw signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Draw signature"
msgid "Draw"
-msgstr "描画"
+msgstr "手書き"
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "Drop your document here"
msgstr "ドキュメントをここにドロップしてください"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Dropdown"
msgstr "ドロップダウン"
@@ -3712,20 +3744,20 @@ msgstr "ドロップダウン設定"
msgid "Dropdown values"
msgstr "ドロップダウンの値"
-#: 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/envelope-editor/envelope-editor-fields-page-renderer.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
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Duplicate"
msgstr "複製"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Document"
msgstr "ドキュメントを複製"
@@ -3734,8 +3766,8 @@ msgstr "ドキュメントを複製"
msgid "Duplicate on all pages"
msgstr "すべてのページに複製"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Template"
msgstr "テンプレートを複製"
@@ -3743,14 +3775,23 @@ msgstr "テンプレートを複製"
msgid "Duplicate values are not allowed"
msgstr "同じ値を重複して使用することはできません"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 0"
+msgstr "例: 0"
+
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 100"
+msgstr "例: 100"
+
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Edit"
msgstr "編集"
@@ -3758,10 +3799,19 @@ msgstr "編集"
msgid "Edit Template"
msgstr "テンプレートを編集"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Edit webhook"
msgstr "Webhook を編集"
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+msgid "eg. Legal"
+msgstr "例: 法務"
+
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+msgid "eg. Mac"
+msgstr "例: Mac"
+
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Electronic Delivery of Documents"
msgstr "文書の電子的な配信"
@@ -3770,57 +3820,57 @@ msgstr "文書の電子的な配信"
msgid "Electronic Signature Disclosure"
msgstr "電子署名に関する開示"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-insights-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/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.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
-#: 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/utils/fields.ts
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-configure-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
+#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Email"
msgstr "メール"
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/send-confirmation-email.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Email address"
msgstr "メールアドレス"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Email Address"
msgstr "メールアドレス"
@@ -3852,9 +3902,9 @@ msgstr "メールドメインが見つかりません"
msgid "Email Domain Settings"
msgstr "メールドメイン設定"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Email Domains"
msgstr "メールドメイン"
@@ -3870,9 +3920,9 @@ msgstr "メールは必須です"
msgid "Email Options"
msgstr "メールオプション"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Email Preferences"
msgstr "メール設定"
@@ -3885,10 +3935,10 @@ msgstr "メール設定を更新しました"
msgid "Email resent"
msgstr "メールを再送しました"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Email Sender"
msgstr "メール送信者"
@@ -3916,8 +3966,8 @@ msgstr "メール認証を削除しました"
msgid "Email verification has been resent"
msgstr "メール認証を再送しました"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Emails"
msgstr "メール"
@@ -3976,10 +4026,10 @@ msgstr "ダイレクトリンク署名を有効にする"
msgid "Enable Direct Link Signing"
msgstr "ダイレクトリンク署名を有効にする"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Enable signing order"
msgstr "署名順序を有効にする"
@@ -3987,10 +4037,11 @@ msgstr "署名順序を有効にする"
msgid "Enable SSO portal"
msgstr "SSO ポータルを有効にする"
-#: 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+/admin+/site-settings.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Enabled"
msgstr "有効"
@@ -4014,10 +4065,12 @@ msgstr "クレーム名を入力"
msgid "Enter the domain you want to use for sending emails (without http:// or www)"
msgstr "メール送信に使用したいドメインを入力してください(http:// や www は不要)"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's email"
msgstr "次の署名者のメールアドレスを入力してください"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's name"
msgstr "次の署名者の名前を入力してください"
@@ -4053,11 +4106,12 @@ msgid "Enter your number here"
msgstr "ここに番号を入力してください"
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Enter your password"
msgstr "パスワードを入力"
-#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "Enter your text here"
msgstr "ここにテキストを入力してください"
@@ -4077,8 +4131,8 @@ msgstr "封筒を複製しました"
msgid "Envelope ID"
msgstr "封筒ID"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Envelope Item Count"
msgstr "封筒アイテム数"
@@ -4102,75 +4156,75 @@ msgstr "封筒タイトル"
msgid "Envelope updated"
msgstr "封筒を更新しました"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$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/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/envelope-signing/envelope-signer-page-renderer.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.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-button-legacy.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/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/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.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-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-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-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-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-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-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-text-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.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/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/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.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/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/verify-email-banner.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Error"
msgstr "エラー"
@@ -4178,11 +4232,17 @@ msgstr "エラー"
msgid "Error uploading file"
msgstr "ファイルのアップロード中にエラーが発生しました"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Event"
+msgstr "イベント"
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Event Type"
msgstr "イベントタイプ"
#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: packages/ui/components/document/document-visibility-select.tsx
msgid "Everyone"
msgstr "全員"
@@ -4195,8 +4255,8 @@ msgid "Everyone has signed"
msgstr "全員が署名しました"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "Everyone has signed! You will receive an Email copy of the signed document."
-msgstr "全員が署名しました。署名済み文書のコピーがメールで届きます。"
+msgid "Everyone has signed! You will receive an email copy of the signed document."
+msgstr "全員が署名しました。署名済みドキュメントのコピーがメールで送信されます。"
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "Exceeded timeout"
@@ -4217,11 +4277,16 @@ msgid "Expires on {0}"
msgstr "有効期限 {0}"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "External ID"
msgstr "外部 ID"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Failed"
+msgstr "失敗"
+
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
msgid "Failed to create folder"
msgstr "フォルダの作成に失敗しました"
@@ -4286,7 +4351,7 @@ msgstr "サブスクリプションクレームの更新に失敗しました。
msgid "Failed to update template"
msgstr "テンプレートの更新に失敗しました"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Failed to update webhook"
msgstr "Webhook の更新に失敗しました"
@@ -4294,9 +4359,9 @@ msgstr "Webhook の更新に失敗しました"
msgid "Failed: {failedCount}"
msgstr "失敗: {failedCount}"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Feature Flags"
msgstr "機能フラグ"
@@ -4305,12 +4370,12 @@ msgid "Field character limit"
msgstr "フィールドの文字数制限"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field font size"
msgstr "フィールドのフォントサイズ"
@@ -4319,11 +4384,11 @@ msgstr "フィールドのフォントサイズ"
msgid "Field format"
msgstr "フィールド形式"
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field label"
msgstr "フィールドラベル"
@@ -4355,10 +4420,10 @@ msgstr "フィールド"
msgid "Fields updated"
msgstr "フィールドを更新しました"
+#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "File cannot be larger than {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
msgstr "ファイルサイズは {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB 以下である必要があります"
@@ -4378,8 +4443,8 @@ msgstr "ファイルサイズが {APP_DOCUMENT_UPLOAD_SIZE_LIMIT} MB の上限
msgid "Fill in the details to create a new subscription claim."
msgstr "新しいサブスクリプションクレームを作成するための詳細を入力してください。"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Folder"
msgstr "フォルダ"
@@ -4399,9 +4464,9 @@ msgstr "フォルダは正常に移動されました"
msgid "Folder Name"
msgstr "フォルダ名"
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
msgid "Folder not found"
msgstr "フォルダが見つかりません"
@@ -4414,12 +4479,12 @@ msgid "Folder updated successfully"
msgstr "フォルダは正常に更新されました"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Font Size"
msgstr "フォントサイズ"
@@ -4439,19 +4504,20 @@ msgstr "たとえば、クレームに新しいフラグ「FLAG_1」が true で
msgid "Forgot Password?"
msgstr "パスワードをお忘れですか?"
-#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Forgot your password?"
msgstr "パスワードをお忘れですか?"
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Free"
msgstr "Free"
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Free Signature"
msgstr "フリー署名"
@@ -4459,26 +4525,26 @@ msgstr "フリー署名"
msgid "Free Signature Settings"
msgstr "手書き署名の設定"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.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/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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "Full Name"
msgstr "氏名"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "General"
msgstr "一般"
@@ -4495,24 +4561,24 @@ msgstr "リンクを生成"
msgid "Global recipient action authentication"
msgstr "グローバル受信者アクション認証"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Go back"
msgstr "戻る"
-#: apps/remix/app/routes/_recipient+/_layout.tsx
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
+#: apps/remix/app/routes/_recipient+/_layout.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Go Back"
msgstr "戻る"
@@ -4524,9 +4590,9 @@ msgstr "戻る"
msgid "Go back home"
msgstr "ホームに戻る"
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
msgid "Go Back Home"
msgstr "ホームに戻る"
@@ -4555,10 +4621,10 @@ msgstr "<0>公開プロフィール設定0>に移動して文書を追加し
msgid "Green"
msgstr "緑"
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Group"
msgstr "グループ"
@@ -4570,15 +4636,15 @@ msgstr "グループが作成されました。"
msgid "Group has been updated successfully"
msgstr "グループは正常に更新されました"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Group Name"
msgstr "グループ名"
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
msgid "Groups"
msgstr "グループ"
@@ -4601,12 +4667,12 @@ msgstr "このドキュメントの閲覧を依頼されています"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
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."
msgstr "アシスタントが最後の署名者である場合、次に補助する署名者がいないため、何も操作できません。"
@@ -4678,25 +4744,25 @@ msgstr "{userName} 様、文書「{documentTitle}」を完了するには、認
msgid "Hi, {userName} <0>({userEmail})0>"
msgstr "こんにちは、{userName} さん <0>({userEmail})0>"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Hide"
msgstr "非表示"
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/folder/folder-grid.tsx
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-grid.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
msgid "Home"
msgstr "ホーム"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Home (No Folder)"
msgstr "ホーム(フォルダなし)"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Horizontal"
msgstr "横"
@@ -4733,7 +4799,6 @@ msgstr "私はこの文書の所有者です"
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
msgstr "この組織が設定したサードパーティサービスに資格情報を提供することを理解しました"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
msgid "I'm sure! Delete it"
msgstr "本当に削除します"
@@ -4770,6 +4835,10 @@ msgstr "認証アプリが QR コードに対応していない場合は、代
msgid "Important: What This Means"
msgstr "重要: これが意味すること"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Inactive"
+msgstr "非アクティブ"
+
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/document/document-status.tsx
@@ -4788,8 +4857,8 @@ msgstr "監査ログをドキュメントに含める"
msgid "Include the Signing Certificate in the Document"
msgstr "署名証明書をドキュメントに含める"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Information"
msgstr "情報"
@@ -4797,17 +4866,17 @@ msgstr "情報"
msgid "Inherit authentication method"
msgstr "認証方法を継承"
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
msgid "Inherit from organisation"
msgstr "組織から継承"
@@ -4820,11 +4889,11 @@ msgstr "組織メンバーを継承"
msgid "Inherited subscription claim"
msgstr "継承されたサブスクリプションクレーム"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: packages/ui/primitives/document-flow/types.ts
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Initials"
msgstr "イニシャル"
@@ -4869,8 +4938,8 @@ msgstr "無効なメールアドレスです"
msgid "Invalid link"
msgstr "リンクが無効です"
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
msgid "Invalid token"
msgstr "トークンが無効です"
@@ -4890,8 +4959,8 @@ msgstr "招待を承諾しました"
msgid "Invitation accepted!"
msgstr "招待を承諾しました!"
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
msgid "Invitation declined"
msgstr "招待を辞退しました"
@@ -4931,9 +5000,9 @@ msgstr "招待日時"
msgid "Invoice"
msgstr "請求書"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "IP Address"
msgstr "IP アドレス"
@@ -4987,23 +5056,23 @@ msgstr "参加日"
msgid "Joined {0}"
msgstr "{0} に参加"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Label"
msgstr "ラベル"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Language"
msgstr "言語"
@@ -5031,8 +5100,8 @@ msgstr "直近90日"
msgid "Last Active"
msgstr "最終アクティブ日時"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Last modified"
msgstr "最終更新"
@@ -5060,15 +5129,15 @@ msgstr "退会"
msgid "Last Year"
msgstr "昨年"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Leave"
msgstr "退出する"
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Leave blank to inherit from the organisation."
msgstr "空欄のままにすると、組織から継承されます。"
@@ -5124,8 +5193,8 @@ msgstr "テンプレートをリンク"
msgid "Link your Documenso account"
msgstr "Documenso アカウントをリンクする"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Linked Accounts"
msgstr "リンク済みアカウント"
@@ -5137,30 +5206,29 @@ msgstr "リンク日時"
msgid "Links Generated"
msgstr "生成済みリンク"
-#. placeholder {0}: webhook.eventTriggers .map((trigger) => toFriendlyWebhookEventName(trigger)) .join(', ')
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-msgid "Listening to {0}"
-msgstr "{0} を監視中"
+msgid "Listening to"
+msgstr "リッスン対象"
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
msgid "Load older activity"
msgstr "以前のアクティビティを読み込む"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Loading"
msgstr "読み込み中"
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Loading document..."
msgstr "文書を読み込み中..."
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
msgid "Loading Document..."
msgstr "文書を読み込み中..."
@@ -5176,15 +5244,19 @@ msgstr "読み込み中..."
msgid "Local timezone"
msgstr "ローカルタイムゾーン"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Login"
msgstr "ログイン"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "Logs"
+msgstr "ログ"
+
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Manage"
msgstr "管理"
@@ -5214,9 +5286,14 @@ msgid "Manage billing"
msgstr "請求を管理"
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Manage Billing"
msgstr "請求を管理"
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
+msgid "Manage billing and subscriptions for organisations where you have billing management permissions."
+msgstr "請求管理の権限を持つ組織について、請求およびサブスクリプションを管理します。"
+
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "Manage details for this public template"
msgstr "この公開テンプレートの詳細を管理します"
@@ -5233,6 +5310,7 @@ msgstr "文書の管理"
msgid "Manage linked accounts"
msgstr "リンク済みアカウントを管理"
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Manage organisation"
msgstr "組織を管理"
@@ -5318,8 +5396,8 @@ msgstr "ここでサイト設定を管理できます"
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Manager"
msgstr "マネージャー"
@@ -5357,24 +5435,24 @@ msgstr "最大"
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
msgstr "最大ファイルサイズ: 4MB。アップロードあたり最大 100 行。空の値はテンプレートのデフォルトが使用されます。"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Maximum number of uploaded files per envelope allowed"
msgstr "封筒ごとにアップロードできる最大ファイル数"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Member"
msgstr "メンバー"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Member Count"
msgstr "メンバー数"
@@ -5382,25 +5460,25 @@ msgstr "メンバー数"
msgid "Member Since"
msgstr "メンバー登録日"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Members"
msgstr "メンバー"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Message"
msgstr "メッセージ"
@@ -5421,8 +5499,8 @@ msgstr "最小"
msgid "Missing Recipients"
msgstr "不足している受信者"
-#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
msgid "Modify recipients"
msgstr "受信者を変更"
@@ -5430,8 +5508,8 @@ msgstr "受信者を変更"
msgid "Modify the details of the subscription claim."
msgstr "サブスクリプションクレームの詳細を変更します。"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Monthly"
msgstr "月額"
@@ -5443,10 +5521,10 @@ msgstr "月間アクティブユーザー:1 つ以上の文書を作成した
msgid "Monthly Active Users: Users that had at least one of their documents completed"
msgstr "月間アクティブユーザー:1 つ以上の文書が完了したユーザー"
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
msgid "Move"
msgstr "移動"
@@ -5466,8 +5544,8 @@ msgstr "フォルダを移動"
msgid "Move Template to Folder"
msgstr "テンプレートをフォルダに移動"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Move to Folder"
msgstr "フォルダに移動"
@@ -5483,43 +5561,43 @@ msgstr "マイフォルダ"
msgid "N/A"
msgstr "N/A"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: 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/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
-#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
-#: apps/remix/app/components/forms/subscription-claim-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: 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
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/forms/subscription-claim-form.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/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Name"
msgstr "名前"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Name is required"
msgstr "名前は必須です"
@@ -5559,11 +5637,11 @@ msgstr "新しいパスワード"
msgid "New Template"
msgstr "新しいテンプレート"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Next"
msgstr "次へ"
@@ -5580,10 +5658,10 @@ msgstr "次の受信者のメールアドレス"
msgid "Next Recipient Name"
msgstr "次の受信者の名前"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "No"
msgstr "いいえ"
@@ -5591,24 +5669,24 @@ msgstr "いいえ"
msgid "No active drafts"
msgstr "有効な下書きはありません"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "No documents found"
msgstr "文書が見つかりません"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "No folders found"
msgstr "フォルダが見つかりません"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "No folders found matching \"{searchTerm}\""
msgstr "「{searchTerm}」に一致するフォルダが見つかりません"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "No further action is required from you at this time."
msgstr "現在、お客様が行う必要のある操作はありません。"
@@ -5628,25 +5706,27 @@ msgstr "最近のアクティビティはありません"
msgid "No recent documents"
msgstr "最近の文書はありません"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipient matching this description was found."
msgstr "この条件に一致する受信者は見つかりませんでした。"
-#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "No recipients"
msgstr "受信者なし"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipients with this role"
msgstr "このロールの受信者はいません"
-#: 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-action-select.tsx
msgid "No restrictions"
msgstr "制限なし"
@@ -5687,8 +5767,8 @@ msgid "No valid recipients found"
msgstr "有効な受信者が見つかりません"
#: apps/remix/app/components/general/multiselect-role-combobox.tsx
-#: packages/ui/primitives/multi-select-combobox.tsx
#: packages/ui/primitives/combobox.tsx
+#: packages/ui/primitives/multi-select-combobox.tsx
msgid "No value found."
msgstr "値が見つかりません。"
@@ -5696,16 +5776,16 @@ msgstr "値が見つかりません。"
msgid "No worries, it happens! Enter your email and we'll email you a special link to reset your password."
msgstr "大丈夫です。メールアドレスを入力していただければ、パスワードをリセットするための特別なリンクをメールでお送りします。"
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
#: packages/lib/constants/document.ts
msgid "None"
msgstr "なし"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Not found"
msgstr "見つかりません"
@@ -5718,12 +5798,12 @@ msgstr "サポートされていません"
msgid "Nothing to do"
msgstr "今は行うことがありません"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: 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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Number"
msgstr "数値"
@@ -5736,13 +5816,13 @@ msgstr "数値形式"
msgid "Number needs to be formatted as {numberFormat}"
msgstr "数値は {numberFormat} の形式で入力する必要があります"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of members allowed. 0 = Unlimited"
msgstr "許可されるメンバー数。0 = 無制限"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of teams allowed. 0 = Unlimited"
msgstr "許可されるチーム数。0 = 無制限"
@@ -5782,10 +5862,6 @@ msgstr "このページでは、API トークンの作成と管理ができま
msgid "On this page, you can create new Webhooks and manage the existing ones."
msgstr "このページでは Webhook の新規作成と既存 Webhook の管理が行えます。"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "On this page, you can edit the webhook and its settings."
-msgstr "このページでは Webhook とその設定を編集できます。"
-
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Once confirmed, the following will occur:"
msgstr "確認すると、次のことが行われます。"
@@ -5826,11 +5902,11 @@ msgstr "一度にアップロードできるファイルは1件のみです"
msgid "Only PDF files are allowed"
msgstr "PDFファイルのみアップロードできます"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Oops! Something went wrong."
msgstr "問題が発生しました。"
@@ -5846,8 +5922,8 @@ msgstr "オプションの値を空にすることはできません"
msgid "Options"
msgstr "オプション"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Or"
msgstr "または"
@@ -5859,9 +5935,10 @@ msgstr "または"
msgid "Or continue with"
msgstr "または次の方法で続行"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Organisation"
msgstr "組織"
@@ -5890,8 +5967,8 @@ msgstr "組織グループ設定"
msgid "Organisation has been updated successfully"
msgstr "組織は正常に更新されました"
-#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
msgid "Organisation Insights"
msgstr "組織インサイト"
@@ -5907,22 +5984,22 @@ msgstr "組織への招待を送信しました。"
msgid "Organisation Manager"
msgstr "組織マネージャー"
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: packages/lib/constants/organisations-translations.ts
msgid "Organisation Member"
msgstr "組織メンバー"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
msgid "Organisation Members"
msgstr "組織メンバー"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation Name"
msgstr "組織名"
@@ -5935,8 +6012,8 @@ msgstr "組織が見つかりません"
msgid "Organisation role"
msgstr "組織ロール"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Organisation Role"
msgstr "組織ロール"
@@ -5956,17 +6033,17 @@ msgstr "組織SSOポータル"
msgid "Organisation Teams"
msgstr "組織のチーム"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation URL"
msgstr "組織 URL"
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
#: apps/remix/app/routes/_authenticated+/settings+/organisations.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Organisations"
msgstr "組織"
@@ -6003,16 +6080,16 @@ msgstr "チェックを入れない場合、文書は下書きとして作成さ
msgid "Override organisation settings"
msgstr "組織設定を上書き"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Owner"
msgstr "所有者"
@@ -6027,8 +6104,8 @@ msgid "Page {0} of {1}"
msgstr "ページ {0} / {1}"
#. placeholder {0}: i + 1
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Page {0} of {numPages}"
msgstr "ページ {0} / {numPages}"
@@ -6036,8 +6113,8 @@ msgstr "ページ {0} / {numPages}"
msgid "Paid"
msgstr "有料"
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
msgid "Passkey"
msgstr "パスキー"
@@ -6065,8 +6142,8 @@ msgstr "パスキー名"
msgid "Passkey Re-Authentication"
msgstr "パスキーによる再認証"
-#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
msgid "Passkeys"
msgstr "パスキー"
@@ -6078,12 +6155,12 @@ msgstr "パスキーを使うことで、生体認証やパスワードマネー
msgid "Passkeys are not supported on this browser"
msgstr "このブラウザではパスキーがサポートされていません"
-#: apps/remix/app/components/general/app-command-menu.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
-#: apps/remix/app/components/forms/signup.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Password"
msgstr "パスワード"
@@ -6099,13 +6176,13 @@ msgstr "パスワードリセットのリクエスト"
msgid "Password Reset Successful"
msgstr "パスワードリセットが完了しました"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Password should not be common or based on personal information"
msgstr "パスワードは一般的なものや個人情報に基づくものは使用しないでください。"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Password updated"
msgstr "パスワードを更新しました"
@@ -6113,6 +6190,10 @@ msgstr "パスワードを更新しました"
msgid "Password updated!"
msgstr "パスワードを更新しました。"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Past Due"
+msgstr "支払い遅延"
+
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
msgid "Payment overdue"
@@ -6122,15 +6203,15 @@ msgstr "支払い期限超過"
msgid "PDF Document"
msgstr "PDF文書"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
-#: packages/ui/components/document/document-read-only-fields.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: packages/lib/constants/document.ts
+#: packages/ui/components/document/document-read-only-fields.tsx
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Pending"
msgstr "保留中"
@@ -6150,13 +6231,13 @@ msgstr "保留中の文書"
msgid "Pending invitations"
msgstr "保留中の招待"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per month"
msgstr "月額"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per year"
msgstr "年額"
@@ -6165,15 +6246,15 @@ msgctxt "Personal organisation (adjective)"
msgid "Personal"
msgstr "個人用"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Personal Account"
msgstr "個人アカウント"
-#: apps/remix/app/routes/_authenticated+/inbox.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/inbox.tsx
msgid "Personal Inbox"
msgstr "個人用受信箱"
@@ -6198,12 +6279,12 @@ msgstr "ピン留め"
msgid "Place and configure form fields in the document"
msgstr "文書内に入力フィールドを配置・設定します"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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
#: 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 "プレースホルダー"
@@ -6250,8 +6331,8 @@ msgstr "新しいパスワードを選択してください"
msgid "Please complete the document once reviewed"
msgstr "確認後、文書を完了してください"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Please configure the document first"
msgstr "まずドキュメントを設定してください"
@@ -6275,9 +6356,9 @@ msgstr "詳しくはサイトのオーナーにお問い合わせください。
msgid "Please enter a meaningful name for your token. This will help you identify it later."
msgstr "トークンの用途が分かる名前を入力してください。後から識別しやすくなります。"
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Please enter a valid name."
msgstr "有効な名前を入力してください。"
@@ -6329,6 +6410,10 @@ msgstr "このチームに関連するすべての文書へのアクセスを失
msgid "Please open your authenticator app and enter the 6-digit code for this document."
msgstr "認証アプリを開き、この文書用の6桁のコードを入力してください。"
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+msgid "Please provide a reason for rejecting this document"
+msgstr "このドキュメントを却下する理由を入力してください。"
+
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
msgid "Please provide a token from the authenticator, or a backup code. If you do not have a backup code available, please contact support."
msgstr "認証アプリのトークン、またはバックアップコードを入力してください。バックアップコードがない場合は、サポートまでお問い合わせください。"
@@ -6365,10 +6450,10 @@ msgstr "もう一度お試しいただき、正しいメールアドレスが入
msgid "Please try again later."
msgstr "後でもう一度お試しください。"
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Please try again or contact our support."
msgstr "もう一度お試しいただくか、サポートにお問い合わせください。"
@@ -6382,8 +6467,8 @@ msgstr "確認のため {0} と入力してください"
msgid "Please type <0>{0}0> to confirm."
msgstr "確認のため、<0>{0}0> と入力してください。"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Please upload a document to continue"
msgstr "続行するには文書をアップロードしてください"
@@ -6395,15 +6480,15 @@ msgstr "ロゴをアップロードしてください"
msgid "Pre-formatted CSV template with example data."
msgstr "サンプルデータ入りの事前フォーマット済み CSV テンプレートです。"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Preferences"
msgstr "設定"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Preview"
msgstr "プレビュー"
@@ -6425,8 +6510,8 @@ msgstr "送信前に文書をプレビューします"
msgid "Preview what the signed document will look like with placeholder data"
msgstr "プレースホルダーデータを使用して、署名後の文書の見た目をプレビューします"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Private"
msgstr "非公開"
@@ -6442,10 +6527,14 @@ msgstr "非公開テンプレートは、あなたのみが閲覧・編集でき
msgid "Proceed"
msgstr "続行"
-#: 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/routes/_recipient+/sign.$token+/complete.tsx
+msgid "Processing document"
+msgstr "ドキュメントを処理しています"
+
#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/profile.tsx
msgid "Profile"
msgstr "プロフィール"
@@ -6457,8 +6546,8 @@ msgstr "プロフィールは現在<0>非表示0>です。"
msgid "Profile is currently <0>visible0>."
msgstr "プロフィールは現在<0>公開0>されています。"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Profile updated"
msgstr "プロフィールを更新しました"
@@ -6474,15 +6563,15 @@ msgstr "プロバイダー"
msgid "Provider has been updated successfully"
msgstr "プロバイダーを正常に更新しました"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Public"
msgstr "公開"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Public Profile"
msgstr "公開プロフィール"
@@ -6503,8 +6592,8 @@ msgid "Quick Actions"
msgstr "クイックアクション"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Radio"
msgstr "ラジオボタン"
@@ -6517,11 +6606,11 @@ msgstr "ラジオボタンの設定"
msgid "Radio values"
msgstr "ラジオボタンの値"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Read only"
msgstr "読み取り専用"
@@ -6570,8 +6659,8 @@ msgstr "このフィールドへの署名には再認証が必要です"
msgid "Receives copy"
msgstr "コピーを受け取る"
-#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Recent activity"
msgstr "最近のアクティビティ"
@@ -6579,10 +6668,10 @@ msgstr "最近のアクティビティ"
msgid "Recent documents"
msgstr "最近の文書"
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: 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
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
@@ -6592,9 +6681,9 @@ msgid "Recipient"
msgstr "受信者"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Recipient action authentication"
msgstr "受信者アクション認証"
@@ -6614,11 +6703,11 @@ msgstr "受信者署名依頼メール"
msgid "Recipient updated"
msgstr "受信者を更新しました"
-#: 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
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Recipients"
msgstr "受信者"
@@ -6662,10 +6751,10 @@ msgstr "赤"
msgid "Redirect URI"
msgstr "リダイレクトURI"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Redirect URL"
msgstr "リダイレクト URL"
@@ -6673,8 +6762,8 @@ msgstr "リダイレクト URL"
msgid "Redirecting"
msgstr "リダイレクト中"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Registration Successful"
msgstr "登録に成功しました"
@@ -6682,19 +6771,19 @@ msgstr "登録に成功しました"
msgid "Reject"
msgstr "拒否"
-#: 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
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.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
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
msgid "Reject Document"
msgstr "ドキュメントを却下"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
msgid "Rejected"
msgstr "却下済み"
@@ -6707,8 +6796,8 @@ msgstr "却下が確認されました"
msgid "Rejection reason: {reason}"
msgstr "却下理由: {reason}"
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
msgid "Reload"
msgstr "再読み込み"
@@ -6734,34 +6823,34 @@ msgstr "リマインダー: このドキュメントを{recipientActionVerb}し
msgid "Reminder: Please {recipientActionVerb} your document"
msgstr "リマインダー: ドキュメントを{recipientActionVerb}してください"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/avatar-image.tsx
-#: apps/remix/app/components/dialogs/template-use-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-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Remove"
msgstr "削除"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Remove email domain"
msgstr "メールドメインを削除"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Remove organisation group"
msgstr "組織グループを削除"
@@ -6773,13 +6862,13 @@ msgstr "組織メンバーを削除"
msgid "Remove team email"
msgstr "チームのメールアドレスを削除"
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Remove team member"
msgstr "チームメンバーを削除"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Repeat Password"
msgstr "パスワードを再入力"
@@ -6787,22 +6876,26 @@ msgstr "パスワードを再入力"
msgid "Reply to email"
msgstr "返信先メール"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Reply To Email"
msgstr "返信先メール"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Request"
+msgstr "リクエスト"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Requesting Organisation"
msgstr "要求元の組織"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Required field"
msgstr "必須フィールド"
@@ -6818,8 +6911,9 @@ msgstr "必要なスコープ"
msgid "Reseal document"
msgstr "文書を再封止"
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Resend"
msgstr "再送"
@@ -6832,9 +6926,9 @@ msgstr "コードを再送信"
msgid "Resend Confirmation Email"
msgstr "確認メールを再送"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Resend Document"
msgstr "文書を再送信"
@@ -6842,9 +6936,9 @@ msgstr "文書を再送信"
msgid "Resend verification"
msgstr "認証を再送"
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Reset"
msgstr "リセット"
@@ -6857,9 +6951,9 @@ msgstr "2要素認証をリセット"
msgid "Reset email sent"
msgstr "リセット用メールを送信しました"
-#: 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
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Reset Password"
msgstr "パスワードをリセット"
@@ -6884,6 +6978,18 @@ msgstr "解決"
msgid "Resolve payment"
msgstr "支払いを解決"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response"
+msgstr "レスポンス"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Code"
+msgstr "レスポンスコード"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Headers"
+msgstr "レスポンスヘッダー"
+
#: 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 "ドキュメント自体は厳重に機密扱いされ、共有されることはありませんのでご安心ください。強調されるのは署名体験のみです。あなただけの署名カードを共有して、署名をアピールしましょう。"
@@ -6904,11 +7010,11 @@ msgstr "再試行済み"
msgid "Retry"
msgstr "再試行"
-#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "Return"
msgstr "戻る"
@@ -6924,8 +7030,8 @@ msgstr "文書一覧に戻る"
msgid "Return to Home"
msgstr "ホームに戻る"
-#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
msgid "Return to sign in"
msgstr "サインイン画面に戻る"
@@ -6937,8 +7043,8 @@ msgstr "テンプレート一覧に戻る"
msgid "Review request"
msgstr "リクエストを確認"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Revoke"
msgstr "取り消し"
@@ -6956,24 +7062,24 @@ msgstr "すべてのセッションを取り消す"
msgid "Right"
msgstr "右"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Role"
msgstr "役割"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Roles"
msgstr "ロール"
@@ -6981,11 +7087,11 @@ msgstr "ロール"
msgid "Rows per page"
msgstr "ページあたりの行数"
-#: 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/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
msgid "Save"
msgstr "保存"
@@ -7004,12 +7110,13 @@ msgstr "テンプレートを保存"
msgid "Sealing job started"
msgstr "封印ジョブを開始しました"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
-#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Search"
msgstr "検索"
@@ -7025,6 +7132,10 @@ msgstr "クレーム ID または名前で検索"
msgid "Search by document title"
msgstr "文書タイトルで検索"
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Search by ID"
+msgstr "IDで検索"
+
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
msgid "Search by name or email"
msgstr "名前またはメールアドレスで検索"
@@ -7041,11 +7152,11 @@ msgstr "組織名で検索"
msgid "Search documents..."
msgstr "文書を検索..."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "Search folders..."
msgstr "フォルダを検索…"
@@ -7057,10 +7168,10 @@ msgstr "言語を検索…"
msgid "Secret"
msgstr "シークレット"
-#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Security"
msgstr "セキュリティ"
@@ -7073,8 +7184,8 @@ msgid "See the background jobs tab for the status"
msgstr "ステータスはバックグラウンドジョブのタブで確認できます"
#: 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
+#: packages/ui/primitives/document-flow/types.ts
msgid "Select"
msgstr "選択"
@@ -7094,6 +7205,10 @@ msgstr "プランを選択"
msgid "Select a plan to continue"
msgstr "続行するプランを選択"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Select a recipient"
+msgstr "受信者を選択"
+
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
msgid "Select a team to view its dashboard"
msgstr "チームを選択してダッシュボードを表示"
@@ -7114,6 +7229,10 @@ msgstr "タイムゾーンを選択"
msgid "Select access methods"
msgstr "アクセス方法を選択"
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+msgid "Select an event type"
+msgstr "イベントタイプを選択"
+
#: apps/remix/app/components/dialogs/sign-field-dropdown-dialog.tsx
#: packages/ui/primitives/combobox.tsx
msgid "Select an option"
@@ -7128,8 +7247,8 @@ msgstr "組織を選択してチームを表示"
msgid "Select at least"
msgstr "少なくとも"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "Select authentication methods"
msgstr "認証方法を選択"
@@ -7142,8 +7261,8 @@ msgstr "デフォルトのオプションを選択"
msgid "Select default role"
msgstr "デフォルトロールを選択"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Select direction"
msgstr "方向を選択"
@@ -7160,9 +7279,9 @@ msgstr "チームに追加するメンバーグループを選択します。"
msgid "Select groups to add to this team"
msgstr "このチームに追加するグループを選択"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Select members"
msgstr "メンバーを選択"
@@ -7182,11 +7301,20 @@ msgstr "オプションを選択"
msgid "Select passkey"
msgstr "パスキーを選択"
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Select signature types"
msgstr "署名タイプを選択"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Select text align"
msgstr "テキストの配置を選択"
@@ -7207,6 +7335,10 @@ msgstr "このグループに含めるメンバーを選択"
msgid "Select triggers"
msgstr "トリガーを選択"
+#: packages/ui/primitives/multi-select-combobox.tsx
+msgid "Select values..."
+msgstr "値を選択…"
+
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Select vertical align"
msgstr "縦位置揃えを選択"
@@ -7215,20 +7347,20 @@ msgstr "縦位置揃えを選択"
msgid "Select visibility"
msgstr "公開範囲を選択"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Selected Recipient"
msgstr "選択中の受信者"
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send"
msgstr "送信"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Send a test webhook with sample data to verify your integration is working correctly."
msgstr "統合が正しく動作しているか確認するために、サンプルデータを使ったテスト Webhook を送信します。"
@@ -7241,9 +7373,9 @@ msgstr "確認メールを送信"
msgid "Send document"
msgstr "文書を送信"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send Document"
msgstr "ドキュメントを送信"
@@ -7288,8 +7420,8 @@ msgstr "受信者署名メールを送信"
msgid "Send recipient signing request email"
msgstr "受信者署名依頼メールを送信"
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
msgid "Send reminder"
msgstr "リマインダーを送信"
@@ -7297,12 +7429,8 @@ msgstr "リマインダーを送信"
msgid "Send reminders to the following recipients"
msgstr "次の受信者にリマインダーを送信する"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
-msgid "Send Test Webhook"
-msgstr "テスト Webhook を送信"
-
-#: apps/remix/app/components/tables/inbox-table.tsx
#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Sender"
msgstr "送信者"
@@ -7314,8 +7442,10 @@ msgstr "リセットメールを送信中..."
msgid "Sending..."
msgstr "送信中..."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Sent"
msgstr "送信日時"
@@ -7339,15 +7469,15 @@ msgstr "ドキュメントのプロパティと受信者情報を設定します
msgid "Set up your template properties and recipient information"
msgstr "テンプレートのプロパティと受信者情報を設定します"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/_layout.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/app-nav-mobile.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
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
msgid "Settings"
msgstr "設定"
@@ -7355,17 +7485,14 @@ msgstr "設定"
msgid "Setup"
msgstr "セットアップ"
-#: 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/tables/documents-table-action-dropdown.tsx
+#: packages/ui/components/document/document-share-button.tsx
msgid "Share"
msgstr "共有"
-#: packages/ui/components/document/document-share-button.tsx
-msgid "Share Signature Card"
-msgstr "署名カードを共有"
-
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Share Signing Card"
msgstr "署名カードを共有"
@@ -7382,8 +7509,8 @@ msgid "Show"
msgstr "表示"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Show advanced settings"
msgstr "詳細設定を表示"
@@ -7391,26 +7518,26 @@ msgstr "詳細設定を表示"
msgid "Show templates in your public profile for your audience to sign and get started quickly"
msgstr "オーディエンスがすぐに署名を開始できるよう、公開プロフィールにテンプレートを表示します"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/components/tables/inbox-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/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-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
-#: apps/remix/app/components/general/document/document-page-view-button.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/user-profile-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Sign"
msgstr "署名"
@@ -7435,15 +7562,15 @@ msgstr "<0>{0} <1>({1})1>0>として署名"
msgid "Sign Checkbox Field"
msgstr "署名用チェックボックスフィールド"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign document"
msgstr "文書に署名"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Sign Document"
msgstr "文書に署名"
@@ -7464,16 +7591,16 @@ msgstr "署名フィールド"
msgid "Sign Here"
msgstr "ここに署名"
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: packages/email/template-components/template-reset-password.tsx
msgid "Sign In"
msgstr "サインイン"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Sign in to your account"
msgstr "アカウントにサインイン"
@@ -7489,9 +7616,9 @@ msgstr "署名用氏名"
msgid "Sign Number Field"
msgstr "署名用数値フィールド"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Sign Out"
msgstr "サインアウト"
@@ -7503,8 +7630,8 @@ msgstr "署名用署名フィールド"
msgid "Sign Text Field"
msgstr "署名用テキストフィールド"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign the document to complete the process."
msgstr "文書に署名して処理を完了してください。"
@@ -7537,21 +7664,21 @@ msgstr "氏名をフィールドに入力してください"
msgid "Sign your initials into the field"
msgstr "イニシャルをフィールドに入力してください"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Signature"
msgstr "署名"
@@ -7579,15 +7706,10 @@ msgstr "署名タイプ"
msgid "Signatures Collected"
msgstr "収集された署名数"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/ui/components/document/document-read-only-fields.tsx
-msgid "Signed"
-msgstr "署名済み"
-
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-msgctxt "Signed document (adjective)"
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Signed"
msgstr "署名済み"
@@ -7596,6 +7718,11 @@ msgctxt "Recipient role actioned"
msgid "Signed"
msgstr "署名済み"
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+msgctxt "Signed document (adjective)"
+msgid "Signed"
+msgstr "署名済み"
+
#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Signer"
msgstr "署名者"
@@ -7641,8 +7768,8 @@ msgstr "署名対象"
msgid "Signing in..."
msgstr "サインインしています..."
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Signing Links"
msgstr "署名リンク"
@@ -7651,8 +7778,8 @@ msgid "Signing links have been generated for this document."
msgstr "この文書の署名リンクが生成されています。"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Signing order is enabled."
msgstr "署名順序が有効になっています。"
@@ -7669,8 +7796,8 @@ msgstr "{0} から"
msgid "Site Banner"
msgstr "サイトバナー"
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "Site Settings"
msgstr "サイト設定"
@@ -7678,50 +7805,51 @@ msgstr "サイト設定"
msgid "Some signers have not been assigned a signature field. Please assign at least 1 signature field to each signer before proceeding."
msgstr "一部の署名者に署名フィールドが割り当てられていません。続行する前に、各署名者に少なくとも 1 つの署名フィールドを割り当ててください。"
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/general/billing-plans.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.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-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/embed/embed-document-signing-page-v1.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-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/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-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
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-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-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-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-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
+#: apps/remix/app/components/general/document/document-audit-log-download-button.tsx
+#: apps/remix/app/components/general/document/document-certificate-download-button.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
#: packages/ui/components/document/document-share-button.tsx
msgid "Something went wrong"
msgstr "問題が発生しました"
@@ -7731,10 +7859,10 @@ msgstr "問題が発生しました"
msgid "Something went wrong while attempting to verify your email address for <0>{0}0>. Please try again later."
msgstr "<0>{0}0> のメールアドレスの認証中に問題が発生しました。後でもう一度お試しください。"
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Something went wrong while loading the document."
msgstr "ドキュメントの読み込み中に問題が発生しました。"
@@ -7759,10 +7887,10 @@ msgstr "チームの請求サブスクリプションの更新中に問題が発
msgid "Something went wrong while uploading this file"
msgstr "ファイルのアップロード中に問題が発生しました"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
msgid "Something went wrong!"
msgstr "問題が発生しました。"
@@ -7774,8 +7902,8 @@ msgstr "問題が発生しました。"
msgid "Something went wrong. Please try again later."
msgstr "問題が発生しました。後でもう一度お試しください。"
-#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Something went wrong. Please try again or contact support."
msgstr "問題が発生しました。もう一度お試しいただくか、サポートまでお問い合わせください。"
@@ -7787,8 +7915,8 @@ msgstr "監査ログをダウンロードできませんでした。後でもう
msgid "Sorry, we were unable to download the certificate. Please try again later."
msgstr "証明書をダウンロードできませんでした。後でもう一度お試しください。"
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Source"
msgstr "ソース"
@@ -7804,16 +7932,19 @@ msgstr "SSO"
msgid "Stats"
msgstr "統計"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Status"
msgstr "ステータス"
@@ -7840,14 +7971,14 @@ msgstr "Stripe 顧客が正常に作成されました"
msgid "Stripe Customer ID"
msgstr "Stripe 顧客 ID"
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Subject"
msgstr "件名"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Subject <0>(Optional)0>"
msgstr "件名 <0>(任意)0>"
@@ -7866,8 +7997,8 @@ msgstr "送信済み"
msgid "Subscribe"
msgstr "購読"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Subscription"
msgstr "サブスクリプション"
@@ -7891,59 +8022,65 @@ msgstr "サブスクリプションクレーム"
msgid "Subscription invalid"
msgstr "サブスクリプションが無効です"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/verify-email-banner.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/organisation-update-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Subscription Status"
+msgstr "サブスクリプション状況"
+
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-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-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-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/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/verify-email-banner.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Success"
msgstr "成功"
@@ -7959,8 +8096,14 @@ msgstr "正常に作成: {successCount}"
msgid "Summary:"
msgstr "概要:"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+msgid "support"
+msgstr "サポート"
+
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "Support"
msgstr "サポート"
@@ -7981,11 +8124,11 @@ msgid "Sync failed, changes not saved"
msgstr "同期に失敗し、変更は保存されませんでした"
#: packages/lib/utils/document-audit-logs.ts
-msgctxt "Audit log format"
msgid "System auto inserted fields"
msgstr "システムが自動でフィールドを挿入しました"
#: packages/lib/utils/document-audit-logs.ts
+msgctxt "Audit log format"
msgid "System auto inserted fields"
msgstr "システムが自動でフィールドを挿入しました"
@@ -7997,10 +8140,10 @@ msgstr "システム要件"
msgid "System Theme"
msgstr "システムテーマ"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team"
msgstr "チーム"
@@ -8017,8 +8160,8 @@ msgstr "チーム管理者"
msgid "Team Assignments"
msgstr "チーム割り当て"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Team Count"
msgstr "チーム数"
@@ -8081,14 +8224,14 @@ msgstr "チームメンバー"
msgid "Team Members"
msgstr "チームメンバー"
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "Team members have been added."
msgstr "チームメンバーを追加しました。"
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
msgid "Team Name"
msgstr "チーム名"
@@ -8105,9 +8248,9 @@ msgstr "チーム専用"
msgid "Team only templates are not linked anywhere and are visible only to your team."
msgstr "チーム専用テンプレートはどこにもリンクされず、あなたのチームだけが閲覧できます。"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team Role"
msgstr "チームロール"
@@ -8123,18 +8266,18 @@ msgstr "チーム設定"
msgid "Team url"
msgstr "チーム URL"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Team URL"
msgstr "チーム URL"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
msgid "Teams"
msgstr "チーム"
@@ -8146,13 +8289,13 @@ msgstr "チームは作業を整理し、他のメンバーとコラボレーシ
msgid "Teams that this organisation group is currently assigned to"
msgstr "この組織グループが現在割り当てられているチーム"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/public-profile-template-manage-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.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/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
msgid "Template"
msgstr "テンプレート"
@@ -8217,17 +8360,17 @@ msgstr "テンプレートタイトル"
msgid "Template updated successfully"
msgstr "テンプレートは正常に更新されました"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Template uploaded"
msgstr "テンプレートをアップロードしました"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.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
msgid "Templates"
msgstr "テンプレート"
@@ -8235,8 +8378,10 @@ msgstr "テンプレート"
msgid "Templates allow you to quickly generate documents with pre-filled recipients and fields."
msgstr "テンプレートを使用すると、受信者やフィールドがあらかじめ設定された文書をすばやく作成できます。"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Test"
+msgstr "テスト"
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Test Webhook"
msgstr "テスト Webhook"
@@ -8249,23 +8394,23 @@ msgstr "テスト Webhook に失敗しました"
msgid "Test webhook sent"
msgstr "テスト Webhook を送信しました"
+#: 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/envelope-editor/envelope-editor-fields-drag-drop.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
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/types.ts
-#: packages/ui/primitives/document-flow/add-fields.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Text"
msgstr "テキスト"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Text Align"
msgstr "テキスト揃え"
@@ -8325,14 +8470,14 @@ msgstr "バナーに表示するコンテンツです。HTML が使用できま
msgid "The default email to use when sending emails to recipients"
msgstr "受信者にメールを送信する際に使用する既定のメールアドレスです"
-#: 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
+#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "The direct link has been copied to your clipboard"
msgstr "ダイレクトリンクをクリップボードにコピーしました"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "The display name for this email address"
msgstr "このメールアドレスの表示名です"
@@ -8352,8 +8497,8 @@ msgstr "文書は完了しました。親アプリケーション内の指示に
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 "この却下内容について、ドキュメントの所有者に通知しました。現在、お客様が行う必要のある操作はありません。ドキュメント所有者から、この却下に関する質問がある場合は連絡があるかもしれません。"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "The document owner has been notified of your decision. They may contact you with further instructions if necessary."
msgstr "お客様の決定について、ドキュメントの所有者に通知しました。必要に応じて、追加の手順について連絡がある場合があります。"
@@ -8373,8 +8518,8 @@ msgstr "このチェックをオンにすると、文書はすぐに受信者へ
msgid "The document you are looking for could not be found."
msgstr "お探しの文書は見つかりませんでした。"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
msgid "The document you are looking for may have been removed, renamed or may have never existed."
msgstr "お探しの文書は削除されたか、名前が変更されたか、もともと存在しなかった可能性があります。"
@@ -8394,8 +8539,8 @@ msgstr "お探しのメールドメインは削除されたか、名前が変更
msgid "The email or password provided is incorrect"
msgstr "メールアドレスまたはパスワードが正しくありません"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The events that will trigger a webhook to be sent to your URL."
msgstr "指定した URL に送信される Webhook のトリガーイベントです。"
@@ -8530,8 +8675,8 @@ msgid "The signer's name"
msgstr "署名者の名前"
#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "The signing link has been copied to your clipboard."
msgstr "署名用リンクをクリップボードにコピーしました。"
@@ -8597,8 +8742,8 @@ msgstr "入力した署名のフォントサイズ"
msgid "The types of signatures that recipients are allowed to use when signing the document."
msgstr "受信者がドキュメントに署名する際に使用できる署名タイプです。"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The URL for Documenso to send webhook events to."
msgstr "Documenso が Webhook イベントを送信する先の URL です。"
@@ -8614,7 +8759,7 @@ msgstr "ユーザーの二要素認証を正常にリセットしました。"
msgid "The webhook has been successfully deleted."
msgstr "Webhook は正常に削除されました。"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The webhook has been updated successfully."
msgstr "Webhook は正常に更新されました。"
@@ -8622,7 +8767,7 @@ msgstr "Webhook は正常に更新されました。"
msgid "The webhook was successfully created."
msgstr "Webhook は正常に作成されました。"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "The webhook you are looking for may have been removed, renamed or may have never existed."
msgstr "お探しのWebhookは削除されたか、名前が変更されたか、もともと存在しなかった可能性があります。"
@@ -8666,9 +8811,9 @@ msgstr "このアカウントは確認されていません。サインインす
msgid "This action is irreversible. Please ensure you have informed the user before proceeding."
msgstr "この操作は元に戻せません。実行する前に、必ずユーザーへ連絡してください。"
-#: 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
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "This action is not reversible. Please be certain."
msgstr "この操作は元に戻せません。十分ご注意ください。"
@@ -8696,8 +8841,8 @@ msgstr "この文書は現在削除できません。もう一度お試しくだ
msgid "This document could not be downloaded at this time. Please try again."
msgstr "この文書は現在ダウンロードできません。もう一度お試しください。"
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
msgid "This document could not be duplicated at this time. Please try again."
msgstr "この文書は現在複製できません。もう一度お試しください。"
@@ -8705,6 +8850,7 @@ msgstr "この文書は現在複製できません。もう一度お試しくだ
msgid "This document could not be re-sent at this time. Please try again."
msgstr "この文書は現在再送信できません。もう一度お試しください。"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
msgid "This document has already been sent to this recipient. You can no longer edit this recipient."
msgstr "このドキュメントはすでにこの受信者に送信されています。この受信者は編集できません。"
@@ -8873,9 +9019,9 @@ msgstr "このトークンは無効か有効期限が切れています。操作
msgid "This token is invalid or has expired. Please contact your team for a new invitation."
msgstr "このトークンは無効か有効期限が切れています。チームに連絡して、新しい招待を受け取ってください。"
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "This URL is already in use."
msgstr "この URL はすでに使用されています。"
@@ -8915,21 +9061,21 @@ msgstr "時刻"
msgid "Time zone"
msgstr "タイムゾーン"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Time Zone"
msgstr "タイムゾーン"
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Title"
msgstr "タイトル"
@@ -8964,12 +9110,12 @@ msgid "To change the email you must remove and add a new email address."
msgstr "メールアドレスを変更するには、いったん削除してから新しいメールアドレスを追加してください。"
#. placeholder {0}: user.email
-#. placeholder {0}: userToEnable.email
#. placeholder {0}: userToDisable.email
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#. placeholder {0}: userToEnable.email
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "To confirm, please enter the accounts email address <0/>({0})."
msgstr "確認するには、アカウントのメールアドレス <0/>({0}) を入力してください。"
@@ -8981,8 +9127,8 @@ msgstr "確認するため、理由を入力してください"
msgid "To enable two-factor authentication, scan the following QR code using your authenticator app."
msgstr "二要素認証を有効にするには、認証アプリで次の QR コードを読み取ってください。"
-#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
msgid "To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox."
msgstr "アカウントにアクセスするには、受信トレイの確認リンクをクリックしてメールアドレスを確認してください。"
@@ -8997,8 +9143,8 @@ msgstr "この文書を閲覧済みにするには、ログインしている必
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "To proceed further, please set at least one value for the {0} field."
msgstr "続行するには、{0} フィールドに少なくとも 1 つの値を設定してください。"
@@ -9074,8 +9220,8 @@ msgstr "サインアップした署名者総数"
msgid "Total Users"
msgstr "ユーザー総数"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Triggers"
msgstr "トリガー"
@@ -9087,8 +9233,8 @@ msgstr "二要素認証"
msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app."
msgstr "二要素認証のリカバリーコードは、認証アプリにアクセスできなくなった場合にアカウントへアクセスするために使用します。"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Two-Factor Authentication"
msgstr "二要素認証"
@@ -9108,21 +9254,25 @@ msgstr "アカウントの二要素認証を無効にしました。今後、サ
msgid "Two-Factor Re-Authentication"
msgstr "二要素認証による再認証"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Type"
msgstr "タイプ"
#: packages/lib/constants/document.ts
-msgctxt "Type signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Type signature"
msgid "Type"
-msgstr "種類"
+msgstr "入力"
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Type a command or search..."
msgstr "コマンドを入力するか検索..."
+#: packages/ui/primitives/signature-pad/signature-pad-type.tsx
+msgid "Type your signature"
+msgstr "署名を入力してください"
+
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
msgid "Typed signatures are not allowed. Please draw your signature."
msgstr "タイプ入力された署名は使用できません。署名を描画してください。"
@@ -9209,11 +9359,11 @@ msgstr "二要素認証を設定できませんでした"
msgid "Unable to sign in"
msgstr "サインインできませんでした"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Unauthorized"
msgstr "権限がありません"
@@ -9221,15 +9371,15 @@ msgstr "権限がありません"
msgid "Uncompleted"
msgstr "未完了"
-#: 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
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.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
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Unknown"
msgstr "不明"
@@ -9258,27 +9408,28 @@ msgstr "ピン留めを解除"
msgid "Untitled Group"
msgstr "無題のグループ"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: 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/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Update"
@@ -9288,8 +9439,8 @@ msgstr "更新"
msgid "Update Banner"
msgstr "バナーを更新"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Update Billing"
msgstr "請求情報を更新"
@@ -9313,9 +9464,9 @@ msgstr "フィールドを更新"
msgid "Update organisation"
msgstr "組織を更新"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "Update organisation member"
msgstr "組織メンバーを更新"
@@ -9331,16 +9482,16 @@ msgstr "パスワードを更新"
msgid "Update profile"
msgstr "プロフィールを更新"
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
msgid "Update Recipient"
msgstr "受信者を更新"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Update role"
msgstr "役割を更新"
@@ -9375,10 +9526,6 @@ msgstr "ダイレクト受信者用に、必要に応じてロールを更新し
msgid "Update user"
msgstr "ユーザーを更新"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "Update webhook"
-msgstr "Webhook を更新"
-
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
msgid "Updated {organisationMemberName} to {roleLabel}."
msgstr "{organisationMemberName} を {roleLabel} に更新しました。"
@@ -9391,8 +9538,8 @@ msgstr "パスワードを更新しています..."
msgid "Updating Your Information"
msgstr "情報の更新"
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "Upgrade"
msgstr "アップグレード"
@@ -9406,12 +9553,12 @@ msgid "Upgrade your plan to upload more documents"
msgstr "プランをアップグレードして、より多くのドキュメントをアップロードしましょう"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
msgid "Upload"
msgstr "アップロード"
#: packages/lib/constants/document.ts
-msgctxt "Upload signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Upload signature"
msgid "Upload"
msgstr "アップロード"
@@ -9443,8 +9590,8 @@ msgstr "カスタムドキュメントをアップロード"
msgid "Upload disabled"
msgstr "アップロードは無効になっています"
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: packages/ui/primitives/document-upload-button.tsx
msgid "Upload Document"
msgstr "ドキュメントをアップロード"
@@ -9454,8 +9601,8 @@ msgid "Upload documents and add recipients"
msgstr "文書をアップロードして受信者を追加"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Upload failed"
msgstr "アップロードに失敗しました"
@@ -9476,8 +9623,8 @@ msgstr "テンプレートドキュメントをアップロード"
msgid "Upload your brand logo (max 5MB, JPG, PNG, or WebP)"
msgstr "ブランドロゴをアップロード(最大 5MB、JPG・PNG・WebP)"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Uploaded by"
msgstr "アップロード者"
@@ -9506,18 +9653,18 @@ msgstr "URL"
msgid "Use"
msgstr "使用"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Authenticator"
msgstr "認証アプリを使用"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Backup Code"
msgstr "バックアップコードを使用"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
msgid "Use Template"
msgstr "テンプレートを使用"
@@ -9529,8 +9676,8 @@ msgstr "認証アプリを使用してコードを生成してください"
msgid "Use your passkey for authentication"
msgstr "パスキーで認証する"
-#: apps/remix/app/components/tables/internal-audit-log-table.tsx
#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/internal-audit-log-table.tsx
msgid "User"
msgstr "ユーザー"
@@ -9546,10 +9693,10 @@ msgstr "このユーザーにはパスワードが設定されていません。
msgid "User not found"
msgstr "ユーザーが見つかりません"
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "User not found."
msgstr "ユーザーが見つかりません。"
@@ -9569,15 +9716,15 @@ msgstr "ユーザー設定"
msgid "User with this email already exists. Please use a different email address."
msgstr "このメールアドレスのユーザーはすでに存在します。別のメールアドレスを使用してください。"
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
msgid "Users"
msgstr "ユーザー"
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Validation"
msgstr "バリデーション"
@@ -9585,9 +9732,9 @@ msgstr "バリデーション"
msgid "Validation failed"
msgstr "バリデーションに失敗しました"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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 "Value"
@@ -9629,8 +9776,8 @@ msgstr "メールアドレスを確認"
msgid "Verify your email address to unlock all features."
msgstr "メールアドレスを確認して、すべての機能を利用できるようにしましょう。"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Verify your email to upload documents."
msgstr "文書をアップロードするにはメールアドレスを確認してください。"
@@ -9638,8 +9785,8 @@ msgstr "文書をアップロードするにはメールアドレスを確認し
msgid "Verify your team email address"
msgstr "チームメールアドレスを確認"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Vertical"
msgstr "縦"
@@ -9648,15 +9795,15 @@ msgstr "縦"
msgid "Vertical Align"
msgstr "縦位置揃え"
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/inbox-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
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.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/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
msgid "View"
msgstr "表示"
@@ -9689,13 +9836,13 @@ msgstr "関連する文書をすべて表示"
msgid "View all security activity related to your account."
msgstr "アカウントに関連するすべてのセキュリティアクティビティを表示します。"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "View and manage all active sessions for your account."
msgstr "アカウントのすべてのアクティブなセッションを表示・管理します。"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "View and manage all login methods linked to your account."
msgstr "アカウントにリンクされているすべてのログイン方法を表示・管理します。"
@@ -9711,14 +9858,14 @@ msgstr "DNS レコードを表示"
msgid "View document"
msgstr "ドキュメントを表示"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.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
-#: packages/email/template-components/template-document-rejected.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: packages/email/template-components/template-document-invite.tsx
+#: packages/email/template-components/template-document-rejected.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
msgid "View Document"
msgstr "文書を表示"
@@ -9738,6 +9885,10 @@ msgstr "署名する文書を表示"
msgid "View documents associated with this email"
msgstr "このメールアドレスに関連する文書を表示"
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+msgid "View insights"
+msgstr "インサイトを表示"
+
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
msgid "View invites"
msgstr "招待を表示"
@@ -9771,9 +9922,9 @@ msgstr "チームを表示"
msgid "View the DNS records for this email domain"
msgstr "このメールドメインの DNS レコードを表示"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Viewed"
msgstr "閲覧済み"
@@ -9821,8 +9972,8 @@ msgstr "他の署名者による署名完了を待っています。"
msgid "Waiting for others to sign"
msgstr "他の人の署名待ち"
-#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
#: apps/remix/app/components/embed/embed-document-waiting-for-turn.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
msgid "Waiting for Your Turn"
msgstr "あなたの順番待ち"
@@ -9838,17 +9989,17 @@ msgstr "自分専用の公開プロフィールが欲しいですか?"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
msgid "Warning: Assistant as last signer"
msgstr "警告: 最後の署名者がアシスタントです"
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
msgstr "現在、請求ポータルに進むことができません。しばらくしてからもう一度お試しになるか、サポートまでお問い合わせください。"
@@ -9895,12 +10046,12 @@ msgstr "ダイレクトテンプレートリンクの削除中にエラーが発
msgid "We encountered an error while sending the test webhook. Please check your endpoint and try again."
msgstr "テスト Webhook の送信中にエラーが発生しました。エンドポイントを確認してからもう一度お試しください。"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "We encountered an error while updating the webhook. Please try again later."
msgstr "Webhook の更新中にエラーが発生しました。後でもう一度お試しください。"
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "We encountered an unknown error while attempting to add team members. Please try again later."
msgstr "チームメンバーを追加中に不明なエラーが発生しました。後でもう一度お試しください。"
@@ -9916,8 +10067,8 @@ msgstr "ドメインの追加中に不明なエラーが発生しました。後
msgid "We encountered an unknown error while attempting to create a group. Please try again later."
msgstr "グループの作成中に不明なエラーが発生しました。後でもう一度お試しください。"
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "We encountered an unknown error while attempting to create a organisation. Please try again later."
msgstr "組織の作成中に不明なエラーが発生しました。後でもう一度お試しください。"
@@ -9973,8 +10124,8 @@ msgstr "このメールの削除中に不明なエラーが発生しました。
msgid "We encountered an unknown error while attempting to remove this envelope item. Please try again later."
msgstr "この封筒アイテムの削除中に不明なエラーが発生しました。後でもう一度お試しください。"
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this group. Please try again later."
msgstr "このグループの削除中に不明なエラーが発生しました。後でもう一度お試しください。"
@@ -9982,8 +10133,8 @@ msgstr "このグループの削除中に不明なエラーが発生しました
msgid "We encountered an unknown error while attempting to remove this template from your profile. Please try again later."
msgstr "このテンプレートをプロフィールから削除中に不明なエラーが発生しました。後でもう一度お試しください。"
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this user. Please try again later."
msgstr "このユーザーの削除中に不明なエラーが発生しました。後でもう一度お試しください。"
@@ -10000,10 +10151,10 @@ msgstr "パスワードのリセット中に不明なエラーが発生しまし
msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support."
msgstr "アクセスの取り消し中に不明なエラーが発生しました。もう一度お試しになるか、サポートまでお問い合わせください。"
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
msgid "We encountered an unknown error while attempting to sign you In. Please try again later."
msgstr "サインイン処理中に不明なエラーが発生しました。後でもう一度お試しください。"
@@ -10025,13 +10176,13 @@ msgstr "封筒の更新中に不明なエラーが発生しました。後でも
msgid "We encountered an unknown error while attempting to update the template. Please try again later."
msgstr "テンプレートの更新中に不明なエラーが発生しました。後でもう一度お試しください。"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this organisation member. Please try again later."
msgstr "この組織メンバーの更新中に不明なエラーが発生しました。後でもう一度お試しください。"
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this team member. Please try again later."
msgstr "このチームメンバーの更新中に不明なエラーが発生しました。後でもう一度お試しください。"
@@ -10039,8 +10190,8 @@ msgstr "このチームメンバーの更新中に不明なエラーが発生し
msgid "We encountered an unknown error while attempting to update your organisation. Please try again later."
msgstr "組織の更新中に不明なエラーが発生しました。後でもう一度お試しください。"
-#: apps/remix/app/components/forms/password.tsx
#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
msgid "We encountered an unknown error while attempting to update your password. Please try again later."
msgstr "パスワードの更新中に不明なエラーが発生しました。後でもう一度お試しください。"
@@ -10084,9 +10235,9 @@ msgstr "アカウントを作成できませんでした。入力内容を確認
msgid "We were unable to disable two-factor authentication for your account. Please ensure that you have entered your password and backup code correctly and try again."
msgstr "二要素認証を無効にできませんでした。パスワードとバックアップコードが正しく入力されているか確認のうえ、再度お試しください。"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "We were unable to log you out at this time."
msgstr "現在、ログアウトできませんでした。"
@@ -10099,11 +10250,11 @@ msgstr "公開プロフィールを公開状態に変更できませんでした
msgid "We were unable to setup two-factor authentication for your account. Please ensure that you have entered your code correctly and try again."
msgstr "二要素認証を設定できませんでした。コードが正しく入力されているか確認のうえ、再度お試しください。"
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
msgid "We were unable to submit this document at this time. Please try again later."
msgstr "現在、この文書を送信できませんでした。後でもう一度お試しください。"
@@ -10122,8 +10273,8 @@ msgstr "現在、文書設定を更新できません。後でもう一度お試
msgid "We were unable to update your email preferences at this time, please try again later"
msgstr "現在、メール設定を更新できませんでした。後でもう一度お試しください。"
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "We were unable to verify your details. Please try again or contact support"
msgstr "情報を確認できませんでした。もう一度お試しいただくか、サポートまでお問い合わせください。"
@@ -10135,14 +10286,14 @@ msgstr "現在、メールアドレスを確認できませんでした。"
msgid "We were unable to verify your email. If your email is not verified already, please try again."
msgstr "メールアドレスを確認できませんでした。まだ確認が完了していない場合は、もう一度お試しください。"
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We will generate signing links for you, which you can send to the recipients through your method of choice."
msgstr "署名リンクを生成しますので、お好みの方法で受信者に送信してください。"
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We won't send anything to notify recipients."
msgstr "受信者への通知は送信しません。"
@@ -10155,8 +10306,8 @@ msgstr "できるだけ早くメールでご連絡いたします。"
msgid "We'll send a 6-digit code to your email"
msgstr "6桁のコードをメールアドレス宛てに送信します"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
msgid "We're all empty"
msgstr "すべて空です"
@@ -10176,6 +10327,11 @@ msgstr "6桁の認証コードをメールで送信しました。文書を完
msgid "We've sent a confirmation email to <0>{email}0>. Please check your inbox and click the link in the email to verify your account."
msgstr "<0>{email}0> 宛てに確認メールを送信しました。受信トレイを確認し、メール内のリンクをクリックしてアカウントを確認してください。"
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Webhook"
+msgstr "Webhook"
+
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
msgid "Webhook created"
msgstr "Webhook を作成しました"
@@ -10184,23 +10340,31 @@ msgstr "Webhook を作成しました"
msgid "Webhook deleted"
msgstr "Webhook を削除しました"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook Details"
+msgstr "Webhook の詳細"
+
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Webhook not found"
msgstr "Webhook が見つかりません"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook successfully sent"
+msgstr "Webhook が正常に送信されました"
+
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Webhook updated"
msgstr "Webhook を更新しました"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Webhook URL"
msgstr "Webhook URL"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Webhooks"
msgstr "Webhook"
@@ -10236,10 +10400,10 @@ msgstr "この文書を編集しようとしていましたか?"
msgid "What you can do with teams:"
msgstr "チームでできること:"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "When enabled, signers can choose who should sign next in the sequence instead of following the predefined order."
msgstr "有効にすると、定義済みの順序ではなく、署名者が次に署名する人を順次選択できるようになります。"
@@ -10279,20 +10443,20 @@ msgstr "同意の撤回"
msgid "Write a description to display on your public profile"
msgstr "公開プロフィールに表示する説明文を入力してください"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Yearly"
msgstr "年額"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Yes"
msgstr "はい"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: packages/lib/utils/document-audit-logs.ts
msgid "You"
msgstr "あなた"
@@ -10360,10 +10524,10 @@ msgstr "次の文書と、関連するすべてのフィールドを削除しよ
msgid "You are about to remove the following email from <0>{0}0>."
msgstr "次のメールアドレスを <0>{0}0> から削除しようとしています。"
-#. placeholder {0}: team.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#. placeholder {0}: team.name
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "You are about to remove the following group from <0>{0}0>."
msgstr "次のグループを <0>{0}0> から削除しようとしています。"
@@ -10403,8 +10567,8 @@ msgstr "現在、<0>{0}0> を更新しています"
msgid "You are currently updating <0>{memberName}.0>"
msgstr "現在、<0>{memberName}0> を更新しています。"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "You are currently updating <0>{organisationMemberName}.0>"
msgstr "現在、<0>{organisationMemberName}0> を更新しています。"
@@ -10487,8 +10651,8 @@ msgid "You can view the document and its status by clicking the button below."
msgstr "下のボタンをクリックすると、ドキュメントとそのステータスを表示できます。"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "You cannot add assistants when signing order is disabled."
msgstr "署名順序が無効な場合、アシスタントを追加することはできません。"
@@ -10516,21 +10680,21 @@ msgstr "自分より権限の高いチームメンバーは変更できません
msgid "You cannot remove members from this team if the inherit member feature is enabled."
msgstr "継承メンバー機能が有効な場合、このチームからメンバーを削除することはできません。"
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "You cannot upload documents at this time."
msgstr "現在、ドキュメントをアップロードすることはできません。"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload encrypted PDFs"
msgstr "暗号化された PDF はアップロードできません"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload more than {maximumEnvelopeItemCount} items per envelope."
msgstr "1つの封筒に {maximumEnvelopeItemCount} 件を超えてアイテムをアップロードすることはできません。"
@@ -10546,6 +10710,10 @@ msgstr "現在、この組織内のいずれのチームにもアクセスでき
msgid "You do not have permission to create a token for this team"
msgstr "このチームのトークンを作成する権限がありません。"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "You don't manage billing for any organisations."
+msgstr "請求を管理している組織はありません。"
+
#: packages/email/template-components/template-document-cancel.tsx
msgid "You don't need to sign it anymore."
msgstr "今後、このドキュメントに署名する必要はありません。"
@@ -10574,8 +10742,8 @@ msgstr "Documenso で {0} に参加するよう招待されています"
msgid "You have been invited to join the following organisation"
msgstr "次の組織に参加するよう招待されています。"
-#: packages/lib/server-only/recipient/set-document-recipients.ts
#: packages/lib/server-only/recipient/delete-envelope-recipient.ts
+#: packages/lib/server-only/recipient/set-document-recipients.ts
msgid "You have been removed from a document"
msgstr "ドキュメントから削除されました"
@@ -10589,8 +10757,8 @@ msgid "You have declined the invitation from <0>{0}0> to join their organisati
msgstr "<0>{0}0> からの組織参加招待を辞退しました。"
#. placeholder {0}: `"${envelope.title}"`
-#: packages/lib/server-only/document/resend-document.ts
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
+#: packages/lib/server-only/document/resend-document.ts
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
msgstr "あなたが開始したドキュメント {0} は、{recipientActionVerb} が必要です。"
@@ -10606,9 +10774,9 @@ msgstr "まだテンプレートを作成していません。テンプレート
msgid "You have not yet created or received any documents. To create a document please upload one."
msgstr "まだ文書を作成または受信していません。文書を作成するには、文書をアップロードしてください。"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached the limit of the number of files per envelope"
msgstr "この封筒でアップロードできるファイル数の上限に達しました"
@@ -10621,14 +10789,14 @@ msgstr "ダイレクトテンプレートの最大数 {0} に達しました。<
msgid "You have reached the maximum number of teams for your plan. Please contact sales at <0>{SUPPORT_EMAIL}0> if you would like to adjust your plan."
msgstr "現在のプランで作成できるチーム数の上限に達しました。プラン調整をご希望の場合は、<0>{SUPPORT_EMAIL}0> まで営業担当へお問い合わせください。"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached your document limit for this month. Please upgrade your plan."
msgstr "今月のドキュメント作成数の上限に達しました。プランをアップグレードしてください。"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
msgid "You have reached your document limit."
msgstr "文書数の上限に達しました。"
@@ -10641,8 +10809,8 @@ msgstr "文書数の上限に達しました。<0>アカウントをアップグ
msgid "You have rejected the document '{documentName}'"
msgstr "ドキュメント '{documentName}' を却下しました"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "You have rejected this document"
msgstr "このドキュメントを却下しました。"
@@ -10654,8 +10822,8 @@ msgstr "「{documentName}」に署名しました"
msgid "You have successfully left this organisation."
msgstr "組織から正常に退出しました。"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "You have successfully registered. Please verify your account by clicking on the link you received in the email."
msgstr "登録に成功しました。メールで受け取ったリンクをクリックして、アカウントを確認してください。"
@@ -10712,10 +10880,10 @@ msgstr "チームグループを更新しました。"
msgid "You have verified your email address for <0>{0}0>."
msgstr "<0>{0}0> のメールアドレスを確認しました。"
-#: 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
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "You must enter '{deleteMessage}' to proceed"
msgstr "' {deleteMessage}' と入力する必要があります"
@@ -10723,8 +10891,8 @@ msgstr "' {deleteMessage}' と入力する必要があります"
msgid "You must select at least one item"
msgstr "少なくとも1件は選択してください"
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
msgid "You must type '{deleteMessage}' to confirm"
msgstr "確認するには「{deleteMessage}」と入力する必要があります"
@@ -10744,8 +10912,8 @@ msgstr "API トークンを管理するには、管理者である必要があ
msgid "You need to be logged in as <0>{email}0> to view this page."
msgstr "このページを表示するには、<0>{email}0> としてログインしている必要があります。"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "You need to be logged in to view this page."
msgstr "このページを表示するにはログインが必要です。"
@@ -10762,8 +10930,8 @@ msgid "You will now be required to enter a code from your authenticator app when
msgstr "今後、サインイン時には認証アプリのコード入力が必要になります。"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "You will receive an Email copy of the signed document once everyone has signed."
-msgstr "全員の署名が完了すると、署名済み文書のコピーがメールで送信されます。"
+msgid "You will receive an email copy of the signed document once everyone has signed."
+msgstr "全員の署名が完了すると、署名済みドキュメントのコピーがメールで送信されます。"
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Your Account"
@@ -10818,8 +10986,8 @@ msgstr "現在のプランは支払いが滞っています。"
msgid "Your direct signing templates"
msgstr "あなたのダイレクト署名テンプレート"
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Your document failed to upload."
msgstr "文書のアップロードに失敗しました。"
@@ -10847,9 +11015,9 @@ msgstr "文書を正常に送信しました。"
msgid "Your document has been successfully duplicated."
msgstr "文書を正常に複製しました。"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your document has been uploaded successfully."
msgstr "文書を正常にアップロードしました。"
@@ -10909,8 +11077,8 @@ msgstr "既存のトークン"
msgid "Your Name"
msgstr "あなたの名前"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your new password cannot be the same as your old password."
msgstr "新しいパスワードは、以前のパスワードと同じにはできません。"
@@ -10926,8 +11094,8 @@ msgstr "組織は正常に削除されました。"
msgid "Your organisation has been successfully updated."
msgstr "組織は正常に更新されました。"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your password has been updated successfully."
msgstr "パスワードは正常に更新されました。"
@@ -10967,8 +11135,8 @@ msgstr "公開プロフィールを更新しました。"
msgid "Your recovery code has been copied to your clipboard."
msgstr "リカバリーコードをクリップボードにコピーしました。"
-#: 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/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Your recovery codes are listed below. Please store them in a safe place."
msgstr "リカバリーコードは以下のとおりです。安全な場所に保管してください。"
@@ -11000,8 +11168,8 @@ msgstr "テンプレートを正常に複製しました。"
msgid "Your template has been successfully deleted."
msgstr "テンプレートは正常に削除されました。"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your template has been uploaded successfully."
msgstr "テンプレートを正常にアップロードしました。"
diff --git a/packages/lib/translations/ko/web.po b/packages/lib/translations/ko/web.po
index 124cd03b6..661fccd61 100644
--- a/packages/lib/translations/ko/web.po
+++ b/packages/lib/translations/ko/web.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: ko\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-11-17 02:33\n"
+"PO-Revision-Date: 2025-11-27 05:32\n"
"Last-Translator: \n"
"Language-Team: Korean\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -52,9 +52,9 @@ msgstr "\"{placeholderEmail}\"이(가) \"Team Name\"을(를) 대신하여 \"exam
msgid "\"Team Name\" has invited you to sign \"example document\"."
msgstr "\"Team Name\"이(가) \"example document\"에 서명하도록 귀하를 초대했습니다."
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "(You)"
msgstr "(나)"
@@ -64,8 +64,8 @@ msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
msgstr "{0, plural, other {(#자 초과)}}"
#. placeholder {0}: Math.abs(remaningLength)
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{0, plural, one {# character over the limit} other {# characters over the limit}}"
msgstr "{0, plural, other {제한을 #자 초과했습니다}}"
@@ -79,6 +79,11 @@ msgstr "{0, plural, other {#자 남음}}"
msgid "{0, plural, one {# document} other {# documents}}"
msgstr "{0, plural, other {문서 #개}}"
+#. placeholder {0}: row.original.eventTriggers.length
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "{0, plural, one {# Event} other {# Events}}"
+msgstr "{0, plural, other {# 이벤트}}"
+
#. placeholder {0}: assistantFields.filter((field) => field.recipientId === r.id).length
#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "{0, plural, one {# field} other {# fields}}"
@@ -116,16 +121,16 @@ msgid "{0, plural, one {<0>You have <1>11> pending invitation0>} other {<2>Y
msgstr "{0, plural, other {<2>대기 중인 초대가 <3>#3>건 있습니다2>}}"
#. placeholder {0}: recipientFieldsRemaining.length
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "{0, plural, one {1 Field Remaining} other {# Fields Remaining}}"
msgstr "{0, plural, other {#개 필드 남음}}"
#. placeholder {0}: fields.filter((field) => field.envelopeItemId === doc.id).length
#. placeholder {0}: remainingFields.filter((field) => field.envelopeItemId === doc.id).length
-#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
msgid "{0, plural, one {1 Field} other {# Fields}}"
msgstr "{0, plural, other {필드 #개}}"
@@ -144,11 +149,11 @@ msgstr "{0, plural, other {#명 수신자}}"
msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}"
msgstr "{0, plural, other {#명의 수신자 대기 중}}"
-#. placeholder {0}: route.label
#. placeholder {0}: _(FRIENDLY_FIELD_TYPE[fieldType as FieldType])
+#. placeholder {0}: route.label
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
msgid "{0}"
msgstr "{0}"
@@ -175,9 +180,9 @@ msgstr "{0}이(가) 귀하께 문서에 {recipientActionVerb}하도록 초대했
#. placeholder {0}: remaining.documents
#. placeholder {1}: quota.documents
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "{0} of {1} documents remaining this month."
msgstr "이번 달 남은 문서 {1}개 중 {0}개."
@@ -405,8 +410,8 @@ msgstr "{recipientReference}님이 \"{documentName}\"에 서명했습니다."
msgid "{recipientReference} has signed {documentName}"
msgstr "{recipientReference}님이 {documentName}에 서명했습니다."
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{remaningLength, plural, one {# character remaining} other {# characters remaining}}"
msgstr "{remaningLength, plural, other {#자 남음}}"
@@ -515,6 +520,10 @@ msgstr "<0>손글씨0> - 마우스 또는 스타일러스로 직접 그린 서
msgid "<0>Email0> - The recipient will be emailed the document to sign, approve, etc."
msgstr "<0>이메일0> - 수신자는 이메일로 문서를 받아 서명, 승인 등을 수행하게 됩니다."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "<0>Events:0> All"
+msgstr "<0>이벤트:0> 전체"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "<0>Full account access:0> View all your profile information, settings, and activity"
msgstr "<0>전체 계정 접근:0> 프로필 정보, 설정 및 활동 전체 보기"
@@ -545,8 +554,8 @@ msgstr "<0>없음0> - 수신자에게 직접 전달할 수 있는 링크를
msgid "<0>Note0> - If you use Links in combination with direct templates, you will need to manually send the links to the remaining recipients."
msgstr "<0>참고0> - 링크를 직접 템플릿과 함께 사용하는 경우, 나머지 수신자에게는 링크를 수동으로 전송해야 합니다."
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require 2FA0> - The recipient must have an account and 2FA enabled via their settings"
msgstr "<0>2단계 인증 필요0> - 수신자는 계정을 보유하고 설정을 통해 2단계 인증(2FA)을 활성화해야 합니다."
@@ -554,8 +563,8 @@ msgstr "<0>2단계 인증 필요0> - 수신자는 계정을 보유하고 설
msgid "<0>Require account0> - The recipient must be signed in to view the document"
msgstr "<0>계정 필요0> - 수신자는 문서를 열람하려면 로그인해야 합니다."
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require passkey0> - The recipient must have an account and passkey configured via their settings"
msgstr "<0>패스키 필요0> - 수신자는 계정을 보유하고 설정을 통해 패스키를 구성해야 합니다."
@@ -624,9 +633,9 @@ msgstr "404 이메일 도메인을 찾을 수 없음"
msgid "404 not found"
msgstr "404 찾을 수 없음"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "404 Not found"
msgstr "404 찾을 수 없음"
@@ -660,7 +669,7 @@ msgstr "404 템플릿을 찾을 수 없음"
msgid "404 User not found"
msgstr "404 사용자를 찾을 수 없음"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "404 Webhook not found"
msgstr "404 웹후크를 찾을 수 없음"
@@ -747,8 +756,8 @@ msgstr "새 구성원이 조직 {organisationName}에 가입했습니다."
msgid "A new token was created successfully."
msgstr "새 토큰이 성공적으로 생성되었습니다."
-#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
msgstr "비밀번호 재설정 이메일을 발송했습니다. 계정이 있으시다면 곧 받은 편지함에서 확인하실 수 있습니다."
@@ -784,7 +793,7 @@ msgstr "Documenso에서 {0}이(가) 귀하의 이메일 사용을 요청했습
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso"
msgstr "Documenso에서 보낸 요청인지 확인할 수 있도록, 귀하의 URL로 전송되는 비밀 값입니다."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso."
msgstr "Documenso에서 보낸 요청인지 확인할 수 있도록, 귀하의 URL로 전송되는 비밀 값입니다."
@@ -809,8 +818,8 @@ msgstr "조직을 식별하기 위한 고유 URL"
msgid "A unique URL to identify your organisation"
msgstr "조직을 식별하기 위한 고유 URL"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "A unique URL to identify your team"
msgstr "팀을 식별하기 위한 고유 URL"
@@ -819,8 +828,8 @@ msgid "A verification email will be sent to the provided email."
msgstr "입력한 이메일 주소로 확인 이메일이 전송됩니다."
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: packages/email/templates/organisation-invite.tsx
#: packages/email/templates/confirm-team-email.tsx
+#: packages/email/templates/organisation-invite.tsx
msgid "Accept"
msgstr "수락"
@@ -848,9 +857,9 @@ msgstr "액세스 비활성화됨"
msgid "Access enabled"
msgstr "액세스 활성화됨"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Account"
msgstr "계정"
@@ -866,8 +875,8 @@ msgstr "계정 생성 요청"
msgid "Account Creation Request"
msgstr "계정 생성 요청"
-#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "Account deleted"
msgstr "계정이 삭제되었습니다"
@@ -895,46 +904,50 @@ msgstr "계정 연결 해제됨"
msgid "Acknowledgment"
msgstr "확인"
-#: 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/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
+#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Action"
msgstr "동작"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Actions"
msgstr "동작"
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
msgid "Active"
msgstr "활성"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Active sessions"
msgstr "활성 세션"
@@ -942,8 +955,8 @@ msgstr "활성 세션"
msgid "Active Subscriptions"
msgstr "활성 구독"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Add"
msgstr "추가"
@@ -960,15 +973,15 @@ msgstr "조직을 대신해 이메일을 보내기 위해 사용자 지정 도
msgid "Add a document"
msgstr "문서 추가"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Add a URL to redirect the user to once the document is signed"
msgstr "문서 서명 완료 후 리디렉션할 URL을 추가하세요."
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add all relevant fields for each recipient."
msgstr "각 수신자에게 필요한 모든 필드를 추가하세요."
@@ -1001,8 +1014,8 @@ msgstr "여러 문서를 추가하고 구성하세요"
msgid "Add another option"
msgstr "옵션 추가"
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
msgid "Add another value"
msgstr "값 추가"
@@ -1026,11 +1039,11 @@ msgstr "이메일 추가"
msgid "Add Email Domain"
msgstr "이메일 도메인 추가"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add Fields"
msgstr "필드 추가"
@@ -1094,8 +1107,8 @@ msgstr "플레이스홀더 추가"
msgid "Add Recipients"
msgstr "수신자 추가"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Add Signer"
msgstr "서명자 추가"
@@ -1144,8 +1157,8 @@ msgstr "이메일 하단에 표시할 추가 브랜드 정보"
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Admin"
msgstr "관리자"
@@ -1153,8 +1166,8 @@ msgstr "관리자"
msgid "Admin Actions"
msgstr "관리자 작업"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Admin panel"
msgstr "관리자 패널"
@@ -1166,15 +1179,15 @@ msgstr "관리자 패널"
msgid "Admins only"
msgstr "관리자 전용"
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Advanced Options"
msgstr "고급 옵션"
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Advanced settings"
msgstr "고급 설정"
@@ -1191,6 +1204,7 @@ msgid "After submission, a document will be automatically generated and added to
msgstr "제출이 완료되면 문서가 자동으로 생성되어 문서 페이지에 추가됩니다. 또한 이메일로 알림을 받게 됩니다."
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "All"
msgstr "전체"
@@ -1214,8 +1228,8 @@ msgstr "전자 서명 프로세스와 관련된 모든 문서는 플랫폼 또
msgid "All email domains have been synced successfully"
msgstr "모든 이메일 도메인이 성공적으로 동기화되었습니다."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "All Folders"
msgstr "모든 폴더"
@@ -1223,6 +1237,10 @@ msgstr "모든 폴더"
msgid "All inserted signatures will be voided"
msgstr "삽입된 모든 서명이 무효화됩니다"
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
+msgid "All recipients have signed. The document is being processed and you will receive an email copy shortly."
+msgstr "모든 수신자가 서명했습니다. 문서를 처리 중이며 곧 서명된 문서의 사본이 이메일로 전송됩니다."
+
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "All recipients will be notified"
msgstr "모든 수신자에게 알림이 전송됩니다"
@@ -1239,8 +1257,8 @@ msgstr "모든 서명 링크가 클립보드에 복사되었습니다."
msgid "All templates"
msgstr "전체 템플릿"
-#: apps/remix/app/components/general/period-selector.tsx
#: apps/remix/app/components/filters/date-range-filter.tsx
+#: apps/remix/app/components/general/period-selector.tsx
msgid "All Time"
msgstr "전체 기간"
@@ -1252,10 +1270,10 @@ msgstr "모든 조직 구성원이 이 팀에 접근할 수 있도록 허용"
msgid "Allow document recipients to reply directly to this email address"
msgstr "문서 수신자가 이 이메일 주소로 직접 회신할 수 있도록 허용합니다."
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Allow signers to dictate next signer"
msgstr "서명자가 다음 서명자를 지정하도록 허용"
@@ -1263,10 +1281,10 @@ msgstr "서명자가 다음 서명자를 지정하도록 허용"
msgid "Allowed Email Domains"
msgstr "허용된 이메일 도메인"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Allowed Signature Types"
msgstr "허용되는 서명 유형"
@@ -1306,19 +1324,19 @@ msgstr "각 구성원에게 초대장이 포함된 이메일이 발송됩니다.
msgid "An email with this address already exists."
msgstr "이 이메일 주소를 사용하는 이메일이 이미 있습니다."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/token.tsx
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.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
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "An error occurred"
msgstr "오류가 발생했습니다"
@@ -1330,9 +1348,9 @@ msgstr "업로드 중 오류가 발생했습니다."
msgid "An error occurred while adding fields."
msgstr "필드를 추가하는 동안 오류가 발생했습니다."
+#: 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/template/template-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "An error occurred while adding signers."
msgstr "서명자를 추가하는 중 오류가 발생했습니다."
@@ -1400,7 +1418,7 @@ msgstr "직접 링크 서명을 활성화하는 중 오류가 발생했습니다
msgid "An error occurred while enabling the user."
msgstr "사용자를 활성화하는 동안 오류가 발생했습니다."
-#: packages/ui/primitives/pdf-viewer.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "An error occurred while loading the document."
msgstr "문서를 불러오는 동안 오류가 발생했습니다."
@@ -1412,14 +1430,14 @@ msgstr "문서를 이동하는 중 오류가 발생했습니다."
msgid "An error occurred while moving the template."
msgstr "템플릿을 이동하는 중 오류가 발생했습니다."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while removing the field."
msgstr "필드를 제거하는 중 오류가 발생했습니다."
@@ -1443,29 +1461,29 @@ msgstr "문서를 보내는 중 오류가 발생했습니다."
msgid "An error occurred while sending your confirmation email"
msgstr "확인 이메일을 보내는 중 오류가 발생했습니다."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing as assistant."
msgstr "보조자로 서명하는 동안 예기치 않은 오류가 발생했습니다."
-#: 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
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing the document."
msgstr "문서에 서명하는 중 오류가 발생했습니다."
@@ -1478,8 +1496,8 @@ msgstr "필드를 서명하는 동안 오류가 발생했습니다."
msgid "An error occurred while trying to create a checkout session."
msgstr "결제 세션을 생성하는 중 오류가 발생했습니다."
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "An error occurred while updating the document settings."
msgstr "문서 설정을 업데이트하는 중 오류가 발생했습니다."
@@ -1491,8 +1509,8 @@ msgstr "서명을 업데이트하는 중 오류가 발생했습니다."
msgid "An error occurred while updating your profile."
msgstr "프로필을 업데이트하는 중 오류가 발생했습니다."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "An error occurred while uploading your document."
msgstr "문서를 업로드하는 중 오류가 발생했습니다."
@@ -1512,53 +1530,53 @@ msgstr "조직에서 귀하의 계정을 연결하려고 합니다. 아래 세
msgid "An unexpected error occurred."
msgstr "예기치 않은 오류가 발생했습니다."
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/public-profile-form.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/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/general/app-command-menu.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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/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/signin.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/profile.tsx
-#: apps/remix/app/components/forms/organisation-update-form.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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "An unknown error occurred"
msgstr "알 수 없는 오류가 발생했습니다"
@@ -1586,10 +1604,10 @@ msgstr "모든 소스"
msgid "Any Status"
msgstr "모든 상태"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "API Tokens"
msgstr "API 토큰"
@@ -1597,12 +1615,12 @@ msgstr "API 토큰"
msgid "App Version"
msgstr "앱 버전"
-#: apps/remix/app/components/tables/inbox-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-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Approve"
msgstr "승인"
@@ -1611,9 +1629,9 @@ msgctxt "Recipient role action verb"
msgid "Approve"
msgstr "승인"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Approve Document"
msgstr "문서 승인"
@@ -1666,7 +1684,7 @@ msgid "Are you sure you want to reject this document? This action cannot be undo
msgstr "이 문서를 거부하시겠습니까? 이 작업은 되돌릴 수 없습니다."
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
-msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey."
+msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey?"
msgstr "<0>{passkeyName}0> 패스키를 제거하시겠습니까?"
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
@@ -1677,23 +1695,23 @@ msgstr "이 조직을 삭제하시겠습니까?"
msgid "Are you sure you wish to delete this team?"
msgstr "이 팀을 정말 삭제하시겠습니까?"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/components/general/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Are you sure?"
msgstr "정말 진행하시겠습니까?"
@@ -1706,9 +1724,9 @@ msgctxt "Recipient role action verb"
msgid "Assist"
msgstr "보조"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Assist Document"
msgstr "문서 보조"
@@ -1752,11 +1770,11 @@ msgctxt "Recipient role progressive verb"
msgid "Assisting"
msgstr "보조 중"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
-#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/lib/types/document-meta.ts
+#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
msgid "At least one signature type must be enabled"
msgstr "최소 한 가지 이상의 서명 유형을 활성화해야 합니다."
@@ -1768,9 +1786,9 @@ msgstr "첨부 파일이 성공적으로 추가되었습니다."
msgid "Attachment removed successfully."
msgstr "첨부 파일이 성공적으로 제거되었습니다."
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Attachments"
@@ -1796,8 +1814,8 @@ msgstr "인증 수준"
msgid "Authentication Portal Not Found"
msgstr "인증 포털을 찾을 수 없습니다."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Authentication required"
msgstr "인증 필요"
@@ -1817,12 +1835,12 @@ msgstr "아바타가 업데이트되었습니다"
msgid "Awaiting email confirmation"
msgstr "이메일 확인 대기 중"
-#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
msgid "Back"
msgstr "뒤로"
@@ -1838,8 +1856,8 @@ msgstr "배경 색상"
msgid "Background Jobs"
msgstr "백그라운드 작업"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Backup Code"
msgstr "백업 코드"
@@ -1855,10 +1873,11 @@ msgstr "배너가 업데이트되었습니다"
msgid "Before you get started, please confirm your email address by clicking the button below:"
msgstr "시작하기 전에 아래 버튼을 클릭하여 이메일 주소를 확인해 주세요."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
msgid "Billing"
msgstr "결제"
@@ -1882,9 +1901,9 @@ msgstr "브랜드 세부 정보"
msgid "Brand Website"
msgstr "브랜드 웹사이트"
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
msgid "Branding"
msgstr "브랜딩"
@@ -1892,10 +1911,10 @@ msgstr "브랜딩"
msgid "Branding Logo"
msgstr "브랜딩 로고"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Branding Preferences"
msgstr "브랜딩 환경설정"
@@ -1929,8 +1948,8 @@ msgstr "템플릿 \"{templateName}\"에 대한 대량 발송 작업이 완료되
msgid "Bulk Send Template via CSV"
msgstr "CSV로 템플릿 대량 발송"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Bulk Send via CSV"
msgstr "CSV로 대량 발송"
@@ -1975,96 +1994,95 @@ msgstr "전자 서명 기능을 사용함으로써 귀하는 거래를 전자적
msgid "Can prepare"
msgstr "준비 가능"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.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/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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-password.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/general/document/document-attachments-popover.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-test-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-to-folder-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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-create-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-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/claim-update-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.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-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.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/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Cancel"
msgstr "취소"
@@ -2114,6 +2132,10 @@ msgstr "Cc 수신자"
msgid "Center"
msgstr "가운데"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Change Recipient"
+msgstr "수신자 변경"
+
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
msgid "Character limit"
msgstr "문자 수 제한"
@@ -2128,8 +2150,8 @@ msgid "Charts"
msgstr "차트"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Checkbox"
msgstr "체크박스"
@@ -2142,9 +2164,9 @@ msgstr "체크박스 설정"
msgid "Checkbox values"
msgstr "체크박스 값"
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Checkout"
msgstr "결제하기"
@@ -2196,9 +2218,9 @@ msgstr "서명 지우기"
msgid "Click here to get started"
msgstr "시작하려면 여기를 클릭하세요"
-#: 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/template/template-page-view-recent-activity.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "Click here to retry"
msgstr "다시 시도하려면 여기를 클릭하세요"
@@ -2211,12 +2233,12 @@ msgstr "업로드하려면 여기를 클릭하세요"
msgid "Click to copy signing link for sending to recipient"
msgstr "수신자에게 보낼 서명 링크를 복사하려면 클릭하세요"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.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/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
msgid "Click to insert field"
msgstr "필드를 삽입하려면 클릭하세요"
@@ -2236,23 +2258,25 @@ msgstr "클라이언트 시크릿"
msgid "Client secret is required"
msgstr "클라이언트 시크릿은 필수입니다."
-#: apps/remix/app/components/general/billing-plans.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/support-ticket-form.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/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-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/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/missing-signature-field-dialog.tsx
msgid "Close"
msgstr "닫기"
@@ -2265,14 +2289,14 @@ msgstr "커뮤니케이션"
msgid "Compare all plans and features in detail"
msgstr "모든 요금제와 기능을 자세히 비교합니다."
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Complete"
msgstr "완료"
@@ -2284,22 +2308,22 @@ msgstr "문서 완료"
msgid "Complete the fields for the following signers."
msgstr "다음 서명자들의 필드를 완료해 주세요."
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: 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/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
-#: packages/lib/constants/document.ts
-#: packages/email/template-components/template-document-self-signed.tsx
-#: packages/email/template-components/template-document-recipient-signed.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
#: packages/email/template-components/template-document-completed.tsx
+#: packages/email/template-components/template-document-recipient-signed.tsx
+#: packages/email/template-components/template-document-self-signed.tsx
+#: packages/lib/constants/document.ts
msgid "Completed"
msgstr "완료됨"
-#: packages/email/templates/document-self-signed.tsx
#: packages/email/templates/document-completed.tsx
+#: packages/email/templates/document-self-signed.tsx
msgid "Completed Document"
msgstr "완료된 문서"
@@ -2375,8 +2399,8 @@ msgstr "템플릿 구성"
#. placeholder {0}: parseMessageDescriptor( _, FRIENDLY_FIELD_TYPE[currentField.type], )
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Configure the {0} field"
msgstr "{0} 필드 구성"
@@ -2393,20 +2417,20 @@ msgstr "각 그룹에 대한 팀 역할을 구성하세요."
msgid "Configure the team roles for each member"
msgstr "각 구성원에 대한 팀 역할을 구성하세요."
-#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Confirm"
msgstr "확인"
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
msgid "Confirm by typing <0>{deleteMessage}0>"
msgstr "<0>{deleteMessage}0>를 입력하여 확인하세요"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "Confirm by typing: <0>{deleteMessage}0>"
msgstr "다음을 입력하여 확인하세요: <0>{deleteMessage}0>"
@@ -2419,8 +2443,8 @@ msgstr "삭제 확인"
msgid "Confirm email"
msgstr "이메일 확인"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Confirmation email sent"
msgstr "확인 이메일이 전송되었습니다"
@@ -2444,17 +2468,17 @@ msgstr "문의하기"
msgid "Content"
msgstr "콘텐츠"
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$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+/organisation.invite.$token.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-view.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/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$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+/verify-email.$token.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Continue"
msgstr "계속"
@@ -2521,21 +2545,22 @@ msgstr "문서에 서명할 때 사용할 수 있는 서명 유형을 제어합
msgid "Copied"
msgstr "복사됨"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: 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/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: packages/ui/primitives/document-flow/add-subject.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/avatar-with-recipient.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.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/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/components/document/document-share-button.tsx
+#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Copied to clipboard"
msgstr "클립보드에 복사되었습니다"
@@ -2556,8 +2581,8 @@ msgstr "공유 가능한 링크 복사"
msgid "Copy Shareable Link"
msgstr "공유 가능한 링크 복사"
-#: 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/general/document/document-recipient-link-copy-dialog.tsx
msgid "Copy Signing Links"
msgstr "서명 링크 복사"
@@ -2565,12 +2590,12 @@ msgstr "서명 링크 복사"
msgid "Copy token"
msgstr "토큰 복사"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Create"
msgstr "생성"
@@ -2681,17 +2706,17 @@ msgstr "지금 생성"
msgid "Create one automatically"
msgstr "자동으로 생성"
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
msgid "Create organisation"
msgstr "조직 생성"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Create Organisation"
msgstr "조직 생성"
@@ -2715,14 +2740,14 @@ msgstr "구독 생성"
msgid "Create Subscription Claim"
msgstr "구독 클레임 생성"
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
msgid "Create team"
msgstr "팀 생성"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Create Team"
msgstr "팀 만들기"
@@ -2751,26 +2776,27 @@ msgstr "계정을 만들고 최첨단 전자 서명 서비스를 사용해 보
msgid "Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp."
msgstr "계정을 만들고 최첨단 전자 서명 서비스를 시작하세요. 개방적이고 아름다운 서명이 당신의 손 안에 있습니다."
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: 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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-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
+#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Created"
msgstr "생성일"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Created At"
msgstr "생성 일시"
@@ -2782,9 +2808,7 @@ msgstr "작성자"
msgid "Created on"
msgstr "생성일"
-#. placeholder {0}: i18n.date(webhook.createdAt, DateTime.DATETIME_FULL)
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Created on {0}"
msgstr "{0}에 생성됨"
@@ -2842,13 +2866,13 @@ msgstr "다크 모드"
msgid "Dashboard"
msgstr "대시보드"
-#: apps/remix/app/components/tables/settings-security-activity-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Date"
msgstr "날짜"
@@ -2856,10 +2880,10 @@ msgstr "날짜"
msgid "Date created"
msgstr "생성 날짜"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Date Format"
msgstr "날짜 형식"
@@ -2867,8 +2891,8 @@ msgstr "날짜 형식"
msgid "Date Settings"
msgstr "날짜 설정"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: packages/email/templates/organisation-invite.tsx
msgid "Decline"
msgstr "거부"
@@ -2918,46 +2942,47 @@ msgstr "기본값"
msgid "delete"
msgstr "delete"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/folder/folder-card.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-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-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/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Delete"
msgstr "삭제"
-#. placeholder {0}: webhook.webhookUrl
-#. placeholder {0}: token.name
+#. placeholder {0}: folder.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#. placeholder {0}: token.name
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "delete {0}"
msgstr "delete {0}"
@@ -2973,11 +2998,11 @@ msgstr "delete {teamName}"
msgid "Delete account"
msgstr "계정 삭제"
+#: 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
#: 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
msgid "Delete Account"
msgstr "계정 삭제"
@@ -2985,10 +3010,10 @@ msgstr "계정 삭제"
msgid "Delete document"
msgstr "문서 삭제"
+#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: 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
msgid "Delete Document"
msgstr "문서 삭제"
@@ -2996,8 +3021,8 @@ msgstr "문서 삭제"
msgid "Delete email"
msgstr "이메일 삭제"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Delete email domain"
msgstr "이메일 도메인 삭제"
@@ -3057,8 +3082,8 @@ msgstr "웹훅 삭제"
msgid "Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution."
msgstr "계정 및 완료된 문서를 포함한 모든 콘텐츠가 삭제됩니다. 이 작업은 되돌릴 수 없으며, 구독도 취소되므로 신중히 진행하세요."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Deleted"
msgstr "삭제됨"
@@ -3066,13 +3091,22 @@ msgstr "삭제됨"
msgid "Deleting account..."
msgstr "계정 삭제 중..."
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Destination"
+msgstr "대상"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Details"
msgstr "세부 정보"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+msgid "Developer Mode"
+msgstr "개발자 모드"
+
#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Device"
msgstr "디바이스"
@@ -3080,19 +3114,19 @@ msgstr "디바이스"
msgid "Didn't request a password change? We are here to help you secure your account, just <0>contact us.0>"
msgstr "비밀번호 변경을 요청하지 않으셨나요? 계정 보안을 도와드리겠습니다. <0>문의해 주세요.0>"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "direct link"
msgstr "직접 링크"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Direct link"
msgstr "직접 링크"
-#: 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/envelope-editor/envelope-editor.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
msgid "Direct Link"
msgstr "직접 링크"
@@ -3130,14 +3164,14 @@ msgstr "직접 템플릿 링크가 삭제되었습니다"
msgid "Direct template link usage exceeded ({0}/{1})"
msgstr "직접 템플릿 링크 사용량이 초과되었습니다 ({0}/{1})"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Direction"
msgstr "방향"
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
msgid "Disable"
msgstr "비활성화"
@@ -3165,6 +3199,7 @@ msgid "Disable Two Factor Authentication before deleting your account."
msgstr "계정을 삭제하기 전에 2단계 인증을 비활성화해야 합니다."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Disabled"
msgstr "비활성화됨"
@@ -3180,8 +3215,8 @@ msgstr "사용자를 비활성화하면 계정을 사용할 수 없게 됩니다
msgid "Discord"
msgstr "Discord"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "Display Name"
msgstr "표시 이름"
@@ -3217,11 +3252,11 @@ msgstr "이 템플릿을 복제하시겠습니까?"
msgid "Documenso will delete <0>all of your documents0>, along with all of your completed documents, signatures, and all other resources belonging to your Account."
msgstr "Documenso는 <0>모든 문서0>와 완료된 문서, 서명, 계정에 속한 모든 리소스를 삭제합니다."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Document"
msgstr "문서"
@@ -3250,9 +3285,9 @@ msgid "Document & Recipients"
msgstr "문서 및 수신자"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Document access"
msgstr "문서 접근"
@@ -3271,8 +3306,8 @@ msgstr "문서 승인됨"
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: packages/lib/server-only/document/delete-document.ts
#: packages/lib/server-only/admin/admin-super-delete-document.ts
+#: packages/lib/server-only/document/delete-document.ts
msgid "Document Cancelled"
msgstr "문서가 취소됨"
@@ -3313,8 +3348,8 @@ msgstr "문서가 생성되었습니다"
msgid "Document created by <0>{0}0>"
msgstr "문서가 <0>{0}0>에 의해 생성되었습니다"
-#: packages/lib/server-only/template/create-document-from-direct-template.ts
#: packages/email/templates/document-created-from-direct-template.tsx
+#: packages/lib/server-only/template/create-document-from-direct-template.ts
msgid "Document created from direct template"
msgstr "직접 템플릿에서 생성된 문서"
@@ -3326,9 +3361,9 @@ msgstr "문서가 <0>직접 링크0>를 사용해 생성되었습니다"
msgid "Document Creation"
msgstr "문서 생성"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
msgid "Document deleted"
msgstr "문서가 삭제되었습니다"
@@ -3427,9 +3462,9 @@ msgstr "문서 보류 중"
msgid "Document pending email"
msgstr "문서 대기 이메일"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Document Preferences"
msgstr "문서 기본 설정"
@@ -3446,8 +3481,8 @@ msgstr "문서가 재전송되었습니다"
msgid "Document rejected"
msgstr "문서 거부됨"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: packages/email/template-components/template-document-rejected.tsx
msgid "Document Rejected"
msgstr "문서가 거부되었습니다"
@@ -3504,15 +3539,15 @@ msgstr "문서가 업데이트되었습니다."
msgid "Document updated successfully"
msgstr "문서가 성공적으로 업데이트되었습니다."
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Document upload disabled due to unpaid invoices"
msgstr "미납된 청구서로 인해 문서 업로드가 비활성화되었습니다"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Document uploaded"
msgstr "문서가 업로드되었습니다"
@@ -3546,20 +3581,20 @@ msgstr "문서는 영구적으로 삭제됩니다"
msgid "Documentation"
msgstr "문서"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.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/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
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Documents"
msgstr "문서"
@@ -3608,22 +3643,22 @@ msgstr "이미 사용 중인 도메인입니다."
msgid "Domain Name"
msgstr "도메인 이름"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Don't have an account? <0>Sign up0>"
msgstr "계정이 없으신가요? <0>가입하기0>"
-#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-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/general/document/document-certificate-qr-view.tsx
-#: apps/remix/app/components/general/document/document-certificate-qr-view.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/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
#: packages/email/template-components/template-document-completed.tsx
msgid "Download"
msgstr "다운로드"
@@ -3640,9 +3675,9 @@ msgstr "인증서 다운로드"
msgid "Download Files"
msgstr "파일 다운로드"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Download PDF"
msgstr "PDF 다운로드"
@@ -3650,9 +3685,9 @@ msgstr "PDF 다운로드"
msgid "Download Template CSV"
msgstr "템플릿 CSV 다운로드"
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: packages/lib/constants/document.ts
msgid "Draft"
msgstr "임시 저장"
@@ -3677,12 +3712,9 @@ msgstr "드래그 앤 드롭 또는 클릭하여 업로드"
msgid "Drag and drop your PDF file here"
msgstr "여기에 PDF 파일을 드래그 앤 드롭하세요."
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
-msgid "Draw"
-msgstr "그리기"
-
#: packages/lib/constants/document.ts
-msgctxt "Draw signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Draw signature"
msgid "Draw"
msgstr "그리기"
@@ -3691,8 +3723,8 @@ msgid "Drop your document here"
msgstr "문서를 여기로 끌어다 놓으세요."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Dropdown"
msgstr "드롭다운"
@@ -3712,20 +3744,20 @@ msgstr "드롭다운 설정"
msgid "Dropdown values"
msgstr "드롭다운 값"
-#: 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/envelope-editor/envelope-editor-fields-page-renderer.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
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Duplicate"
msgstr "복제"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Document"
msgstr "문서 복제"
@@ -3734,8 +3766,8 @@ msgstr "문서 복제"
msgid "Duplicate on all pages"
msgstr "모든 페이지에 복제"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Template"
msgstr "템플릿 복제"
@@ -3743,14 +3775,23 @@ msgstr "템플릿 복제"
msgid "Duplicate values are not allowed"
msgstr "중복 값은 허용되지 않습니다"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 0"
+msgstr "예: 0"
+
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 100"
+msgstr "예: 100"
+
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Edit"
msgstr "편집"
@@ -3758,10 +3799,19 @@ msgstr "편집"
msgid "Edit Template"
msgstr "템플릿 편집"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Edit webhook"
msgstr "웹훅 편집"
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+msgid "eg. Legal"
+msgstr "예: Legal"
+
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+msgid "eg. Mac"
+msgstr "예: Mac"
+
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Electronic Delivery of Documents"
msgstr "문서의 전자 제공"
@@ -3770,57 +3820,57 @@ msgstr "문서의 전자 제공"
msgid "Electronic Signature Disclosure"
msgstr "전자 서명 고지"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-insights-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/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.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
-#: 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/utils/fields.ts
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-configure-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
+#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Email"
msgstr "이메일"
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/send-confirmation-email.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Email address"
msgstr "이메일 주소"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Email Address"
msgstr "이메일 주소"
@@ -3852,9 +3902,9 @@ msgstr "이메일 도메인을 찾을 수 없습니다."
msgid "Email Domain Settings"
msgstr "이메일 도메인 설정"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Email Domains"
msgstr "이메일 도메인"
@@ -3870,9 +3920,9 @@ msgstr "이메일은 필수 항목입니다."
msgid "Email Options"
msgstr "이메일 옵션"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Email Preferences"
msgstr "이메일 기본 설정"
@@ -3885,10 +3935,10 @@ msgstr "이메일 기본 설정이 업데이트되었습니다."
msgid "Email resent"
msgstr "이메일 다시 전송"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Email Sender"
msgstr "이메일 발신자"
@@ -3916,8 +3966,8 @@ msgstr "이메일 인증이 제거되었습니다"
msgid "Email verification has been resent"
msgstr "이메일 인증이 다시 전송되었습니다"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Emails"
msgstr "이메일"
@@ -3976,10 +4026,10 @@ msgstr "직접 링크 서명 활성화"
msgid "Enable Direct Link Signing"
msgstr "직접 링크 서명 활성화"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Enable signing order"
msgstr "서명 순서 활성화"
@@ -3987,10 +4037,11 @@ msgstr "서명 순서 활성화"
msgid "Enable SSO portal"
msgstr "SSO 포털 활성화"
-#: 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+/admin+/site-settings.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Enabled"
msgstr "활성화됨"
@@ -4014,10 +4065,12 @@ msgstr "클레임 이름 입력"
msgid "Enter the domain you want to use for sending emails (without http:// or www)"
msgstr "이메일 발신에 사용할 도메인을 입력하세요( http:// 또는 www 제외)."
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's email"
msgstr "다음 서명자의 이메일을 입력하세요"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's name"
msgstr "다음 서명자의 이름을 입력하세요"
@@ -4053,11 +4106,12 @@ msgid "Enter your number here"
msgstr "여기에 번호를 입력하세요"
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Enter your password"
msgstr "비밀번호를 입력하세요."
-#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "Enter your text here"
msgstr "여기에 텍스트를 입력하세요"
@@ -4077,8 +4131,8 @@ msgstr "봉투가 복제되었습니다"
msgid "Envelope ID"
msgstr "봉투 ID"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Envelope Item Count"
msgstr "봉투 항목 수"
@@ -4102,75 +4156,75 @@ msgstr "봉투 제목"
msgid "Envelope updated"
msgstr "봉투가 업데이트되었습니다"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$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/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/envelope-signing/envelope-signer-page-renderer.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.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-button-legacy.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/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/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.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-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-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-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-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-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-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-text-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.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/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/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.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/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/verify-email-banner.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Error"
msgstr "오류"
@@ -4178,11 +4232,17 @@ msgstr "오류"
msgid "Error uploading file"
msgstr "파일 업로드 중 오류가 발생했습니다."
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Event"
+msgstr "이벤트"
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Event Type"
msgstr "이벤트 유형"
#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: packages/ui/components/document/document-visibility-select.tsx
msgid "Everyone"
msgstr "모두"
@@ -4195,8 +4255,8 @@ msgid "Everyone has signed"
msgstr "모든 사람이 서명했습니다"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "Everyone has signed! You will receive an Email copy of the signed document."
-msgstr "모든 사람이 서명했습니다! 서명된 문서의 사본이 이메일로 전송됩니다."
+msgid "Everyone has signed! You will receive an email copy of the signed document."
+msgstr "모두 서명했습니다! 서명된 문서의 사본이 이메일로 전송됩니다."
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "Exceeded timeout"
@@ -4217,11 +4277,16 @@ msgid "Expires on {0}"
msgstr "{0}에 만료됨"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "External ID"
msgstr "외부 ID"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Failed"
+msgstr "실패"
+
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
msgid "Failed to create folder"
msgstr "폴더를 삭제하지 못했습니다."
@@ -4286,7 +4351,7 @@ msgstr "구독 클레임을 업데이트하지 못했습니다."
msgid "Failed to update template"
msgstr "템플릿을 업데이트하지 못했습니다."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Failed to update webhook"
msgstr "웹훅을 업데이트하지 못했습니다"
@@ -4294,9 +4359,9 @@ msgstr "웹훅을 업데이트하지 못했습니다"
msgid "Failed: {failedCount}"
msgstr "실패: {failedCount}"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Feature Flags"
msgstr "기능 플래그"
@@ -4305,12 +4370,12 @@ msgid "Field character limit"
msgstr "필드 문자 수 제한"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field font size"
msgstr "필드 글꼴 크기"
@@ -4319,11 +4384,11 @@ msgstr "필드 글꼴 크기"
msgid "Field format"
msgstr "필드 형식"
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field label"
msgstr "필드 레이블"
@@ -4355,10 +4420,10 @@ msgstr "필드"
msgid "Fields updated"
msgstr "필드가 업데이트되었습니다."
+#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "File cannot be larger than {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
msgstr "파일 크기는 {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB를 초과할 수 없습니다"
@@ -4378,8 +4443,8 @@ msgstr "파일 크기가 {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB 제한을 초과했
msgid "Fill in the details to create a new subscription claim."
msgstr "새 구독 클레임을 생성하려면 세부 정보를 입력하세요."
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Folder"
msgstr "폴더"
@@ -4399,9 +4464,9 @@ msgstr "폴더가 성공적으로 이동되었습니다."
msgid "Folder Name"
msgstr "폴더 이름"
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
msgid "Folder not found"
msgstr "폴더를 찾을 수 없습니다."
@@ -4414,12 +4479,12 @@ msgid "Folder updated successfully"
msgstr "폴더가 성공적으로 업데이트되었습니다."
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Font Size"
msgstr "글꼴 크기"
@@ -4439,19 +4504,20 @@ msgstr "예를 들어, 클레임에 새 플래그 \"FLAG_1\"이 true로 설정
msgid "Forgot Password?"
msgstr "비밀번호를 잊으셨나요?"
-#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Forgot your password?"
msgstr "비밀번호를 잊으셨나요?"
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Free"
msgstr "무료"
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Free Signature"
msgstr "자유 서명"
@@ -4459,26 +4525,26 @@ msgstr "자유 서명"
msgid "Free Signature Settings"
msgstr "무료 서명 설정"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.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/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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "Full Name"
msgstr "전체 이름"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "General"
msgstr "일반"
@@ -4495,24 +4561,24 @@ msgstr "링크 생성"
msgid "Global recipient action authentication"
msgstr "전역 수신자 액션 인증"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Go back"
msgstr "뒤로 가기"
-#: apps/remix/app/routes/_recipient+/_layout.tsx
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
+#: apps/remix/app/routes/_recipient+/_layout.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Go Back"
msgstr "뒤로 가기"
@@ -4524,9 +4590,9 @@ msgstr "뒤로 가기"
msgid "Go back home"
msgstr "홈으로 돌아가기"
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
msgid "Go Back Home"
msgstr "홈으로 돌아가기"
@@ -4555,10 +4621,10 @@ msgstr "문서를 추가하려면 <0>공개 프로필 설정0>으로 이동하
msgid "Green"
msgstr "녹색"
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Group"
msgstr "그룹"
@@ -4570,15 +4636,15 @@ msgstr "그룹이 생성되었습니다."
msgid "Group has been updated successfully"
msgstr "그룹이 성공적으로 업데이트되었습니다."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Group Name"
msgstr "그룹 이름"
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
msgid "Groups"
msgstr "그룹"
@@ -4601,12 +4667,12 @@ msgstr "이 문서를 열람하도록 초대했습니다."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
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."
msgstr "보조자가 마지막 서명자인 경우, 이후 서명자가 없기 때문에 아무 작업도 수행할 수 없습니다."
@@ -4678,25 +4744,25 @@ msgstr "{userName}님, 문서 \"{documentTitle}\"을(를) 완료하려면 인증
msgid "Hi, {userName} <0>({userEmail})0>"
msgstr "안녕하세요, {userName}님 <0>({userEmail})0>"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Hide"
msgstr "숨기기"
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/folder/folder-grid.tsx
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-grid.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
msgid "Home"
msgstr "홈"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Home (No Folder)"
msgstr "홈(폴더 없음)"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Horizontal"
msgstr "가로"
@@ -4733,7 +4799,6 @@ msgstr "이 문서의 소유자입니다"
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
msgstr "이 조직에서 구성한 제3자 서비스에 내 자격 증명을 제공하는 것임을 이해합니다"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
msgid "I'm sure! Delete it"
msgstr "확실합니다! 삭제하세요"
@@ -4770,6 +4835,10 @@ msgstr "인증 앱이 QR 코드를 지원하지 않는 경우, 대신 다음 코
msgid "Important: What This Means"
msgstr "중요: 이것이 의미하는 것"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Inactive"
+msgstr "비활성"
+
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/document/document-status.tsx
@@ -4788,8 +4857,8 @@ msgstr "문서에 감사 로그 포함"
msgid "Include the Signing Certificate in the Document"
msgstr "문서에 서명 인증서 포함"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Information"
msgstr "정보"
@@ -4797,17 +4866,17 @@ msgstr "정보"
msgid "Inherit authentication method"
msgstr "인증 방식 상속"
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
msgid "Inherit from organisation"
msgstr "조직에서 상속"
@@ -4820,11 +4889,11 @@ msgstr "조직 구성원 상속"
msgid "Inherited subscription claim"
msgstr "상속된 구독 클레임"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: packages/ui/primitives/document-flow/types.ts
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Initials"
msgstr "이니셜"
@@ -4869,8 +4938,8 @@ msgstr "유효한 이메일이 아닙니다."
msgid "Invalid link"
msgstr "유효하지 않은 링크입니다"
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
msgid "Invalid token"
msgstr "유효하지 않은 토큰입니다"
@@ -4890,8 +4959,8 @@ msgstr "초대가 수락되었습니다."
msgid "Invitation accepted!"
msgstr "초대가 수락되었습니다!"
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
msgid "Invitation declined"
msgstr "초대가 거절되었습니다"
@@ -4931,9 +5000,9 @@ msgstr "초대 일시"
msgid "Invoice"
msgstr "청구서"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "IP Address"
msgstr "IP 주소"
@@ -4987,23 +5056,23 @@ msgstr "가입일"
msgid "Joined {0}"
msgstr "{0}에 가입함"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Label"
msgstr "레이블"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Language"
msgstr "언어"
@@ -5031,8 +5100,8 @@ msgstr "최근 90일"
msgid "Last Active"
msgstr "마지막 활동"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Last modified"
msgstr "마지막 수정"
@@ -5060,15 +5129,15 @@ msgstr "마지막 사용"
msgid "Last Year"
msgstr "지난해"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Leave"
msgstr "탈퇴"
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Leave blank to inherit from the organisation."
msgstr "비워 두면 조직 설정을 상속합니다."
@@ -5124,8 +5193,8 @@ msgstr "템플릿 연결"
msgid "Link your Documenso account"
msgstr "Documenso 계정 연결"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Linked Accounts"
msgstr "연결된 계정"
@@ -5137,30 +5206,29 @@ msgstr "연결된 시간"
msgid "Links Generated"
msgstr "링크 생성 완료"
-#. placeholder {0}: webhook.eventTriggers .map((trigger) => toFriendlyWebhookEventName(trigger)) .join(', ')
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-msgid "Listening to {0}"
-msgstr "{0} 수신 이벤트 수신 중"
+msgid "Listening to"
+msgstr "수신 중"
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
msgid "Load older activity"
msgstr "이전 활동 불러오기"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Loading"
msgstr "불러오는 중"
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Loading document..."
msgstr "문서 로딩 중..."
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
msgid "Loading Document..."
msgstr "문서 로딩 중..."
@@ -5176,15 +5244,19 @@ msgstr "로딩 중..."
msgid "Local timezone"
msgstr "현지 시간대"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Login"
msgstr "로그인"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "Logs"
+msgstr "로그"
+
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Manage"
msgstr "관리"
@@ -5214,9 +5286,14 @@ msgid "Manage billing"
msgstr "결제 관리"
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Manage Billing"
msgstr "결제 관리"
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
+msgid "Manage billing and subscriptions for organisations where you have billing management permissions."
+msgstr "결제 관리를 할 수 있는 조직의 청구 및 구독을 관리합니다."
+
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "Manage details for this public template"
msgstr "이 공개 템플릿의 세부 정보를 관리합니다"
@@ -5233,6 +5310,7 @@ msgstr "문서 관리"
msgid "Manage linked accounts"
msgstr "연결된 계정 관리"
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Manage organisation"
msgstr "조직 관리"
@@ -5318,8 +5396,8 @@ msgstr "사이트 설정을 여기에서 관리할 수 있습니다"
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Manager"
msgstr "관리자"
@@ -5357,24 +5435,24 @@ msgstr "최대"
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
msgstr "최대 파일 크기: 4MB. 업로드당 최대 100행. 비어 있는 값은 템플릿 기본값이 사용됩니다."
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Maximum number of uploaded files per envelope allowed"
msgstr "봉투당 허용되는 최대 업로드 파일 수"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Member"
msgstr "구성원"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Member Count"
msgstr "구성원 수"
@@ -5382,25 +5460,25 @@ msgstr "구성원 수"
msgid "Member Since"
msgstr "가입일"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Members"
msgstr "구성원"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Message"
msgstr "메시지"
@@ -5421,8 +5499,8 @@ msgstr "최소"
msgid "Missing Recipients"
msgstr "수신자 누락"
-#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
msgid "Modify recipients"
msgstr "수신자 수정"
@@ -5430,8 +5508,8 @@ msgstr "수신자 수정"
msgid "Modify the details of the subscription claim."
msgstr "구독 클레임 세부 정보를 수정합니다."
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Monthly"
msgstr "월간"
@@ -5443,10 +5521,10 @@ msgstr "월간 활성 사용자: 문서를 하나 이상 생성한 사용자"
msgid "Monthly Active Users: Users that had at least one of their documents completed"
msgstr "월간 활성 사용자: 문서가 하나 이상 완료된 사용자"
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
msgid "Move"
msgstr "이동"
@@ -5466,8 +5544,8 @@ msgstr "폴더 이동"
msgid "Move Template to Folder"
msgstr "템플릿을 폴더로 이동"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Move to Folder"
msgstr "폴더로 이동"
@@ -5483,43 +5561,43 @@ msgstr "내 폴더"
msgid "N/A"
msgstr "해당 없음"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: 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/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
-#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
-#: apps/remix/app/components/forms/subscription-claim-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: 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
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/forms/subscription-claim-form.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/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Name"
msgstr "이름"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Name is required"
msgstr "이름은 필수 항목입니다."
@@ -5559,11 +5637,11 @@ msgstr "새 비밀번호"
msgid "New Template"
msgstr "새 템플릿"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Next"
msgstr "다음"
@@ -5580,10 +5658,10 @@ msgstr "다음 수신자 이메일"
msgid "Next Recipient Name"
msgstr "다음 수신자 이름"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "No"
msgstr "아니요"
@@ -5591,24 +5669,24 @@ msgstr "아니요"
msgid "No active drafts"
msgstr "활성 초안 없음"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "No documents found"
msgstr "문서를 찾을 수 없습니다"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "No folders found"
msgstr "폴더를 찾을 수 없습니다."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "No folders found matching \"{searchTerm}\""
msgstr "\"{searchTerm}\"과(와) 일치하는 폴더가 없습니다."
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "No further action is required from you at this time."
msgstr "현재 추가로 수행해야 할 작업은 없습니다."
@@ -5628,25 +5706,27 @@ msgstr "최근 활동 없음"
msgid "No recent documents"
msgstr "최근 문서 없음"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipient matching this description was found."
msgstr "이 설명과 일치하는 수신자를 찾을 수 없습니다."
-#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "No recipients"
msgstr "수신자 없음"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipients with this role"
msgstr "이 역할의 수신자가 없습니다."
-#: 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-action-select.tsx
msgid "No restrictions"
msgstr "제한 없음"
@@ -5687,8 +5767,8 @@ msgid "No valid recipients found"
msgstr "유효한 수신자를 찾을 수 없습니다"
#: apps/remix/app/components/general/multiselect-role-combobox.tsx
-#: packages/ui/primitives/multi-select-combobox.tsx
#: packages/ui/primitives/combobox.tsx
+#: packages/ui/primitives/multi-select-combobox.tsx
msgid "No value found."
msgstr "값이 없습니다."
@@ -5696,16 +5776,16 @@ msgstr "값이 없습니다."
msgid "No worries, it happens! Enter your email and we'll email you a special link to reset your password."
msgstr "걱정하지 마세요. 이메일을 입력하시면 비밀번호를 재설정할 수 있는 특별 링크를 보내드립니다."
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
#: packages/lib/constants/document.ts
msgid "None"
msgstr "없음"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Not found"
msgstr "찾을 수 없음"
@@ -5718,12 +5798,12 @@ msgstr "지원되지 않습니다"
msgid "Nothing to do"
msgstr "할 일이 없습니다"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: 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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Number"
msgstr "숫자"
@@ -5736,13 +5816,13 @@ msgstr "숫자 형식"
msgid "Number needs to be formatted as {numberFormat}"
msgstr "숫자는 {numberFormat} 형식이어야 합니다"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of members allowed. 0 = Unlimited"
msgstr "허용되는 구성원 수. 0 = 무제한"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of teams allowed. 0 = Unlimited"
msgstr "허용되는 팀 수. 0 = 무제한"
@@ -5782,10 +5862,6 @@ msgstr "이 페이지에서 API 토큰을 생성하고 관리할 수 있습니
msgid "On this page, you can create new Webhooks and manage the existing ones."
msgstr "이 페이지에서 새 웹훅을 생성하고 기존 웹훅을 관리할 수 있습니다."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "On this page, you can edit the webhook and its settings."
-msgstr "이 페이지에서 웹훅과 설정을 편집할 수 있습니다."
-
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Once confirmed, the following will occur:"
msgstr "확인되면 다음 작업이 수행됩니다:"
@@ -5826,11 +5902,11 @@ msgstr "한 번에 하나의 파일만 업로드할 수 있습니다"
msgid "Only PDF files are allowed"
msgstr "PDF 파일만 허용됩니다"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Oops! Something went wrong."
msgstr "문제가 발생했습니다."
@@ -5846,8 +5922,8 @@ msgstr "옵션 값은 비워 둘 수 없습니다"
msgid "Options"
msgstr "옵션"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Or"
msgstr "또는"
@@ -5859,9 +5935,10 @@ msgstr "또는"
msgid "Or continue with"
msgstr "또는 다음으로 계속"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Organisation"
msgstr "조직"
@@ -5890,8 +5967,8 @@ msgstr "조직 그룹 설정"
msgid "Organisation has been updated successfully"
msgstr "조직이 성공적으로 업데이트되었습니다."
-#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
msgid "Organisation Insights"
msgstr "조직 인사이트"
@@ -5907,22 +5984,22 @@ msgstr "조직 초대가 전송되었습니다."
msgid "Organisation Manager"
msgstr "조직 매니저"
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: packages/lib/constants/organisations-translations.ts
msgid "Organisation Member"
msgstr "조직 구성원"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
msgid "Organisation Members"
msgstr "조직 구성원"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation Name"
msgstr "조직 이름"
@@ -5935,8 +6012,8 @@ msgstr "조직을 찾을 수 없습니다."
msgid "Organisation role"
msgstr "조직 역할"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Organisation Role"
msgstr "조직 역할"
@@ -5956,17 +6033,17 @@ msgstr "조직 SSO 포털"
msgid "Organisation Teams"
msgstr "조직 팀"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation URL"
msgstr "조직 URL"
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
#: apps/remix/app/routes/_authenticated+/settings+/organisations.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Organisations"
msgstr "조직"
@@ -6003,16 +6080,16 @@ msgstr "그렇지 않으면 문서는 초안으로 생성됩니다."
msgid "Override organisation settings"
msgstr "조직 설정 재정의"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Owner"
msgstr "소유자"
@@ -6027,8 +6104,8 @@ msgid "Page {0} of {1}"
msgstr "페이지 {0}/{1}"
#. placeholder {0}: i + 1
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Page {0} of {numPages}"
msgstr "페이지 {0}/{numPages}"
@@ -6036,8 +6113,8 @@ msgstr "페이지 {0}/{numPages}"
msgid "Paid"
msgstr "유료"
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
msgid "Passkey"
msgstr "패스키"
@@ -6065,8 +6142,8 @@ msgstr "패스키 이름"
msgid "Passkey Re-Authentication"
msgstr "패스키 재인증"
-#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
msgid "Passkeys"
msgstr "패스키"
@@ -6078,12 +6155,12 @@ msgstr "패스키를 사용하면 생체 인증, 비밀번호 관리자 등을
msgid "Passkeys are not supported on this browser"
msgstr "이 브라우저에서는 패스키가 지원되지 않습니다"
-#: apps/remix/app/components/general/app-command-menu.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
-#: apps/remix/app/components/forms/signup.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Password"
msgstr "비밀번호"
@@ -6099,13 +6176,13 @@ msgstr "비밀번호 재설정 요청"
msgid "Password Reset Successful"
msgstr "비밀번호 재설정 완료"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Password should not be common or based on personal information"
msgstr "비밀번호는 흔히 사용되는 문자열이거나 개인 정보를 기반으로 해서는 안 됩니다."
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Password updated"
msgstr "비밀번호가 업데이트되었습니다"
@@ -6113,6 +6190,10 @@ msgstr "비밀번호가 업데이트되었습니다"
msgid "Password updated!"
msgstr "비밀번호가 업데이트되었습니다!"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Past Due"
+msgstr "연체"
+
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
msgid "Payment overdue"
@@ -6122,15 +6203,15 @@ msgstr "결제 지연"
msgid "PDF Document"
msgstr "PDF 문서"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
-#: packages/ui/components/document/document-read-only-fields.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: packages/lib/constants/document.ts
+#: packages/ui/components/document/document-read-only-fields.tsx
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Pending"
msgstr "보류 중"
@@ -6150,13 +6231,13 @@ msgstr "보류 중인 문서"
msgid "Pending invitations"
msgstr "보류 중인 초대장"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per month"
msgstr "월별"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per year"
msgstr "연간"
@@ -6165,15 +6246,15 @@ msgctxt "Personal organisation (adjective)"
msgid "Personal"
msgstr "개인용"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Personal Account"
msgstr "개인 계정"
-#: apps/remix/app/routes/_authenticated+/inbox.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/inbox.tsx
msgid "Personal Inbox"
msgstr "개인 받은편지함"
@@ -6198,12 +6279,12 @@ msgstr "고정"
msgid "Place and configure form fields in the document"
msgstr "문서에 양식 필드를 배치하고 구성하세요"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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
#: 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 "플레이스홀더"
@@ -6250,8 +6331,8 @@ msgstr "새 비밀번호를 선택해 주세요"
msgid "Please complete the document once reviewed"
msgstr "검토 후 문서를 완료해 주세요"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Please configure the document first"
msgstr "먼저 문서를 구성해 주세요."
@@ -6275,9 +6356,9 @@ msgstr "사이트 소유자에게 추가 지원을 요청해 주세요."
msgid "Please enter a meaningful name for your token. This will help you identify it later."
msgstr "토큰을 나중에 식별할 수 있도록 의미 있는 이름을 입력해 주세요."
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Please enter a valid name."
msgstr "올바른 이름을 입력해 주세요."
@@ -6329,6 +6410,10 @@ msgstr "이 팀과 연결된 모든 문서 접근 권한을 잃게 되며, 모
msgid "Please open your authenticator app and enter the 6-digit code for this document."
msgstr "인증 앱을 열고 이 문서를 위한 6자리 코드를 입력하세요."
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+msgid "Please provide a reason for rejecting this document"
+msgstr "이 문서를 거부하는 이유를 입력해 주세요."
+
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
msgid "Please provide a token from the authenticator, or a backup code. If you do not have a backup code available, please contact support."
msgstr "인증 앱 또는 백업 코드에서 생성된 토큰을 입력해 주세요. 백업 코드가 없다면 지원팀에 문의해 주세요."
@@ -6365,10 +6450,10 @@ msgstr "이메일 주소를 올바르게 입력했는지 확인한 후 다시
msgid "Please try again later."
msgstr "나중에 다시 시도해 주세요."
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Please try again or contact our support."
msgstr "다시 시도하거나 고객 지원팀에 문의해 주세요."
@@ -6382,8 +6467,8 @@ msgstr "확인하려면 {0}을(를) 입력하세요."
msgid "Please type <0>{0}0> to confirm."
msgstr "확인하려면 <0>{0}0>를 입력하세요."
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Please upload a document to continue"
msgstr "계속하려면 문서를 업로드하세요"
@@ -6395,15 +6480,15 @@ msgstr "로고를 업로드해 주세요."
msgid "Pre-formatted CSV template with example data."
msgstr "예시 데이터가 포함된 사전 서식 지정 CSV 템플릿입니다."
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Preferences"
msgstr "환경설정"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Preview"
msgstr "미리보기"
@@ -6425,8 +6510,8 @@ msgstr "보내기 전에 문서를 미리 확인하세요"
msgid "Preview what the signed document will look like with placeholder data"
msgstr "자리표시자 데이터를 사용해 서명된 문서가 어떻게 보일지 미리 확인하세요"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Private"
msgstr "비공개"
@@ -6442,10 +6527,14 @@ msgstr "비공개 템플릿은 본인만 수정 및 열람할 수 있습니다."
msgid "Proceed"
msgstr "계속"
-#: 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/routes/_recipient+/sign.$token+/complete.tsx
+msgid "Processing document"
+msgstr "문서 처리 중"
+
#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/profile.tsx
msgid "Profile"
msgstr "프로필"
@@ -6457,8 +6546,8 @@ msgstr "프로필은 현재 <0>숨김0> 상태입니다."
msgid "Profile is currently <0>visible0>."
msgstr "프로필은 현재 <0>공개0> 상태입니다."
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Profile updated"
msgstr "프로필이 업데이트되었습니다"
@@ -6474,15 +6563,15 @@ msgstr "제공자"
msgid "Provider has been updated successfully"
msgstr "제공자가 성공적으로 업데이트되었습니다"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Public"
msgstr "공개"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Public Profile"
msgstr "공개 프로필"
@@ -6503,8 +6592,8 @@ msgid "Quick Actions"
msgstr "빠른 작업"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Radio"
msgstr "라디오"
@@ -6517,11 +6606,11 @@ msgstr "라디오 버튼 설정"
msgid "Radio values"
msgstr "라디오 값"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Read only"
msgstr "읽기 전용"
@@ -6570,8 +6659,8 @@ msgstr "이 필드에 서명하려면 재인증이 필요합니다"
msgid "Receives copy"
msgstr "사본 수신"
-#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Recent activity"
msgstr "최근 활동"
@@ -6579,10 +6668,10 @@ msgstr "최근 활동"
msgid "Recent documents"
msgstr "최근 문서"
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: 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
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
@@ -6592,9 +6681,9 @@ msgid "Recipient"
msgstr "수신자"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Recipient action authentication"
msgstr "수신자 액션 인증"
@@ -6614,11 +6703,11 @@ msgstr "수신자 서명 요청 이메일"
msgid "Recipient updated"
msgstr "수신자가 업데이트되었습니다"
-#: 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
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Recipients"
msgstr "수신자"
@@ -6662,10 +6751,10 @@ msgstr "빨강"
msgid "Redirect URI"
msgstr "리디렉션 URI"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Redirect URL"
msgstr "리디렉션 URL"
@@ -6673,8 +6762,8 @@ msgstr "리디렉션 URL"
msgid "Redirecting"
msgstr "리디렉션 중"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Registration Successful"
msgstr "등록이 완료되었습니다"
@@ -6682,19 +6771,19 @@ msgstr "등록이 완료되었습니다"
msgid "Reject"
msgstr "거부"
-#: 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
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.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
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
msgid "Reject Document"
msgstr "문서 거부"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
msgid "Rejected"
msgstr "거부됨"
@@ -6707,8 +6796,8 @@ msgstr "거부가 확인되었습니다"
msgid "Rejection reason: {reason}"
msgstr "거부 사유: {reason}"
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
msgid "Reload"
msgstr "새로고침"
@@ -6734,34 +6823,34 @@ msgstr "알림: 이 문서를 {recipientActionVerb}해 주세요."
msgid "Reminder: Please {recipientActionVerb} your document"
msgstr "알림: 귀하의 문서를 {recipientActionVerb}해 주세요."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/avatar-image.tsx
-#: apps/remix/app/components/dialogs/template-use-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-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Remove"
msgstr "제거"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Remove email domain"
msgstr "이메일 도메인 제거"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Remove organisation group"
msgstr "조직 그룹 제거"
@@ -6773,13 +6862,13 @@ msgstr "조직 구성원 제거"
msgid "Remove team email"
msgstr "팀 이메일 제거"
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Remove team member"
msgstr "팀 구성원 제거"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Repeat Password"
msgstr "비밀번호 재입력"
@@ -6787,22 +6876,26 @@ msgstr "비밀번호 재입력"
msgid "Reply to email"
msgstr "회신 이메일"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Reply To Email"
msgstr "회신 이메일"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Request"
+msgstr "요청"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Requesting Organisation"
msgstr "요청하는 조직"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Required field"
msgstr "필수 필드"
@@ -6818,8 +6911,9 @@ msgstr "필요한 범위"
msgid "Reseal document"
msgstr "문서 다시 봉인"
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Resend"
msgstr "다시 보내기"
@@ -6832,9 +6926,9 @@ msgstr "코드 다시 보내기"
msgid "Resend Confirmation Email"
msgstr "확인 이메일 다시 보내기"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Resend Document"
msgstr "문서 다시 보내기"
@@ -6842,9 +6936,9 @@ msgstr "문서 다시 보내기"
msgid "Resend verification"
msgstr "인증 다시 보내기"
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Reset"
msgstr "초기화"
@@ -6857,9 +6951,9 @@ msgstr "2단계 인증 재설정"
msgid "Reset email sent"
msgstr "재설정 이메일이 전송되었습니다"
-#: 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
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Reset Password"
msgstr "비밀번호 재설정"
@@ -6884,6 +6978,18 @@ msgstr "해결"
msgid "Resolve payment"
msgstr "결제 해결"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response"
+msgstr "응답"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Code"
+msgstr "응답 코드"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Headers"
+msgstr "응답 헤더"
+
#: 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 "귀하의 문서는 철저히 비밀로 유지되며 절대 공유되지 않습니다. 강조되는 것은 귀하의 서명 경험뿐입니다. 개인화된 서명 카드를 공유해 서명을 보여 주세요!"
@@ -6904,11 +7010,11 @@ msgstr "재시도 횟수"
msgid "Retry"
msgstr "재시도"
-#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "Return"
msgstr "돌아가기"
@@ -6924,8 +7030,8 @@ msgstr "문서로 돌아가기"
msgid "Return to Home"
msgstr "홈으로 돌아가기"
-#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
msgid "Return to sign in"
msgstr "로그인 화면으로 돌아가기"
@@ -6937,8 +7043,8 @@ msgstr "템플릿으로 돌아가기"
msgid "Review request"
msgstr "요청 검토"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Revoke"
msgstr "철회"
@@ -6956,24 +7062,24 @@ msgstr "모든 세션 해지"
msgid "Right"
msgstr "오른쪽"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Role"
msgstr "역할"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Roles"
msgstr "역할"
@@ -6981,11 +7087,11 @@ msgstr "역할"
msgid "Rows per page"
msgstr "페이지당 행 수"
-#: 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/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
msgid "Save"
msgstr "저장"
@@ -7004,12 +7110,13 @@ msgstr "템플릿 저장"
msgid "Sealing job started"
msgstr "봉인 작업이 시작되었습니다"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
-#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Search"
msgstr "검색"
@@ -7025,6 +7132,10 @@ msgstr "클레임 ID 또는 이름으로 검색"
msgid "Search by document title"
msgstr "문서 제목으로 검색"
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Search by ID"
+msgstr "ID로 검색"
+
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
msgid "Search by name or email"
msgstr "이름 또는 이메일로 검색"
@@ -7041,11 +7152,11 @@ msgstr "조직 이름으로 검색"
msgid "Search documents..."
msgstr "문서 검색..."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "Search folders..."
msgstr "폴더 검색..."
@@ -7057,10 +7168,10 @@ msgstr "언어 검색..."
msgid "Secret"
msgstr "시크릿"
-#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Security"
msgstr "보안"
@@ -7073,8 +7184,8 @@ msgid "See the background jobs tab for the status"
msgstr "상태는 백그라운드 작업 탭에서 확인하세요"
#: 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
+#: packages/ui/primitives/document-flow/types.ts
msgid "Select"
msgstr "선택"
@@ -7094,6 +7205,10 @@ msgstr "요금제 선택"
msgid "Select a plan to continue"
msgstr "계속하려면 요금제를 선택하세요."
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Select a recipient"
+msgstr "수신자를 선택하세요"
+
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
msgid "Select a team to view its dashboard"
msgstr "팀을 선택하여 해당 대시보드를 확인하세요."
@@ -7114,6 +7229,10 @@ msgstr "시간대를 선택하세요."
msgid "Select access methods"
msgstr "접근 방식 선택"
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+msgid "Select an event type"
+msgstr "이벤트 유형을 선택하세요"
+
#: apps/remix/app/components/dialogs/sign-field-dropdown-dialog.tsx
#: packages/ui/primitives/combobox.tsx
msgid "Select an option"
@@ -7128,8 +7247,8 @@ msgstr "조직을 선택하여 팀을 확인하세요."
msgid "Select at least"
msgstr "최소 선택 개수"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "Select authentication methods"
msgstr "인증 방식 선택"
@@ -7142,8 +7261,8 @@ msgstr "기본 옵션 선택"
msgid "Select default role"
msgstr "기본 역할 선택"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Select direction"
msgstr "방향 선택"
@@ -7160,9 +7279,9 @@ msgstr "이 팀에 추가할 구성원 그룹을 선택하세요."
msgid "Select groups to add to this team"
msgstr "이 팀에 추가할 그룹을 선택하세요."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Select members"
msgstr "구성원 선택"
@@ -7182,11 +7301,20 @@ msgstr "옵션 선택"
msgid "Select passkey"
msgstr "패스키 선택"
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Select signature types"
msgstr "서명 유형 선택"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Select text align"
msgstr "텍스트 정렬 선택"
@@ -7207,6 +7335,10 @@ msgstr "이 그룹에 포함할 구성원을 선택하세요."
msgid "Select triggers"
msgstr "트리거 선택"
+#: packages/ui/primitives/multi-select-combobox.tsx
+msgid "Select values..."
+msgstr "값 선택..."
+
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Select vertical align"
msgstr "세로 정렬 선택"
@@ -7215,20 +7347,20 @@ msgstr "세로 정렬 선택"
msgid "Select visibility"
msgstr "공개 범위 선택"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Selected Recipient"
msgstr "선택된 수신자"
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send"
msgstr "보내기"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Send a test webhook with sample data to verify your integration is working correctly."
msgstr "통합 구성이 올바르게 작동하는지 확인하기 위해 샘플 데이터로 테스트 웹후크를 전송합니다."
@@ -7241,9 +7373,9 @@ msgstr "확인 이메일 보내기"
msgid "Send document"
msgstr "문서 보내기"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send Document"
msgstr "문서 보내기"
@@ -7288,8 +7420,8 @@ msgstr "수신자 서명 완료 이메일 보내기"
msgid "Send recipient signing request email"
msgstr "수신자 서명 요청 이메일 보내기"
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
msgid "Send reminder"
msgstr "리마인더 보내기"
@@ -7297,12 +7429,8 @@ msgstr "리마인더 보내기"
msgid "Send reminders to the following recipients"
msgstr "다음 수신자에게 알림을 전송합니다"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
-msgid "Send Test Webhook"
-msgstr "테스트 웹후크 전송"
-
-#: apps/remix/app/components/tables/inbox-table.tsx
#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Sender"
msgstr "보낸 사람"
@@ -7314,8 +7442,10 @@ msgstr "재설정 이메일 전송 중..."
msgid "Sending..."
msgstr "전송 중..."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Sent"
msgstr "발송됨"
@@ -7339,15 +7469,15 @@ msgstr "문서 속성과 수신자 정보를 설정하세요."
msgid "Set up your template properties and recipient information"
msgstr "템플릿 속성과 수신자 정보를 설정하세요."
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/_layout.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/app-nav-mobile.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
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
msgid "Settings"
msgstr "설정"
@@ -7355,17 +7485,14 @@ msgstr "설정"
msgid "Setup"
msgstr "설정"
-#: 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/tables/documents-table-action-dropdown.tsx
+#: packages/ui/components/document/document-share-button.tsx
msgid "Share"
msgstr "공유"
-#: packages/ui/components/document/document-share-button.tsx
-msgid "Share Signature Card"
-msgstr "서명 카드 공유"
-
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Share Signing Card"
msgstr "서명 카드 공유"
@@ -7382,8 +7509,8 @@ msgid "Show"
msgstr "표시"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Show advanced settings"
msgstr "고급 설정 표시"
@@ -7391,26 +7518,26 @@ msgstr "고급 설정 표시"
msgid "Show templates in your public profile for your audience to sign and get started quickly"
msgstr "공개 프로필에 템플릿을 표시해, 사용자가 빠르게 서명하고 시작할 수 있도록 하세요"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/components/tables/inbox-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/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-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
-#: apps/remix/app/components/general/document/document-page-view-button.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/user-profile-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Sign"
msgstr "서명"
@@ -7435,15 +7562,15 @@ msgstr "<0>{0} <1>({1})1>0>로 서명"
msgid "Sign Checkbox Field"
msgstr "체크박스 필드 서명"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign document"
msgstr "문서 서명"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Sign Document"
msgstr "문서 서명"
@@ -7464,16 +7591,16 @@ msgstr "서명 필드"
msgid "Sign Here"
msgstr "여기에 서명"
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: packages/email/template-components/template-reset-password.tsx
msgid "Sign In"
msgstr "로그인"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Sign in to your account"
msgstr "계정에 로그인"
@@ -7489,9 +7616,9 @@ msgstr "이름 서명"
msgid "Sign Number Field"
msgstr "숫자 필드 서명"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Sign Out"
msgstr "로그아웃"
@@ -7503,8 +7630,8 @@ msgstr "서명 필드 서명"
msgid "Sign Text Field"
msgstr "텍스트 필드 서명"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign the document to complete the process."
msgstr "프로세스를 완료하려면 문서에 서명하세요."
@@ -7537,21 +7664,21 @@ msgstr "필드에 전체 이름을 입력하세요"
msgid "Sign your initials into the field"
msgstr "필드에 이니셜을 입력하세요"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Signature"
msgstr "서명"
@@ -7579,15 +7706,10 @@ msgstr "서명 유형"
msgid "Signatures Collected"
msgstr "수집된 서명 수"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/ui/components/document/document-read-only-fields.tsx
-msgid "Signed"
-msgstr "서명됨"
-
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-msgctxt "Signed document (adjective)"
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Signed"
msgstr "서명됨"
@@ -7596,6 +7718,11 @@ msgctxt "Recipient role actioned"
msgid "Signed"
msgstr "서명 완료"
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+msgctxt "Signed document (adjective)"
+msgid "Signed"
+msgstr "서명됨"
+
#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Signer"
msgstr "서명자"
@@ -7641,8 +7768,8 @@ msgstr "대리 서명 대상"
msgid "Signing in..."
msgstr "로그인 중..."
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Signing Links"
msgstr "서명 링크"
@@ -7651,8 +7778,8 @@ msgid "Signing links have been generated for this document."
msgstr "이 문서에 대한 서명 링크가 생성되었습니다."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Signing order is enabled."
msgstr "서명 순서가 활성화되어 있습니다."
@@ -7669,8 +7796,8 @@ msgstr "{0} 이후"
msgid "Site Banner"
msgstr "사이트 배너"
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "Site Settings"
msgstr "사이트 설정"
@@ -7678,50 +7805,51 @@ msgstr "사이트 설정"
msgid "Some signers have not been assigned a signature field. Please assign at least 1 signature field to each signer before proceeding."
msgstr "일부 서명자에게 서명 필드가 할당되지 않았습니다. 진행하기 전에 각 서명자에게 최소 1개 이상의 서명 필드를 할당해 주세요."
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/general/billing-plans.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.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-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/embed/embed-document-signing-page-v1.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-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/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-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
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-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-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-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-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
+#: apps/remix/app/components/general/document/document-audit-log-download-button.tsx
+#: apps/remix/app/components/general/document/document-certificate-download-button.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
#: packages/ui/components/document/document-share-button.tsx
msgid "Something went wrong"
msgstr "문제가 발생했습니다"
@@ -7731,10 +7859,10 @@ msgstr "문제가 발생했습니다"
msgid "Something went wrong while attempting to verify your email address for <0>{0}0>. Please try again later."
msgstr "<0>{0}0> 팀의 이메일 주소를 확인하는 중 문제가 발생했습니다. 나중에 다시 시도해 주세요."
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Something went wrong while loading the document."
msgstr "문서를 불러오는 중 문제가 발생했습니다."
@@ -7759,10 +7887,10 @@ msgstr "팀 결제 구독을 업데이트하는 중 문제가 발생했습니다
msgid "Something went wrong while uploading this file"
msgstr "이 파일을 업로드하는 중 문제가 발생했습니다"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
msgid "Something went wrong!"
msgstr "문제가 발생했습니다!"
@@ -7774,8 +7902,8 @@ msgstr "문제가 발생했습니다."
msgid "Something went wrong. Please try again later."
msgstr "문제가 발생했습니다. 잠시 후 다시 시도해 주세요."
-#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Something went wrong. Please try again or contact support."
msgstr "문제가 발생했습니다. 다시 시도하시거나 지원팀에 문의해 주세요."
@@ -7787,8 +7915,8 @@ msgstr "감사 로그를 다운로드할 수 없습니다. 나중에 다시 시
msgid "Sorry, we were unable to download the certificate. Please try again later."
msgstr "인증서를 다운로드할 수 없습니다. 나중에 다시 시도해 주세요."
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Source"
msgstr "소스"
@@ -7804,16 +7932,19 @@ msgstr "SSO"
msgid "Stats"
msgstr "통계"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Status"
msgstr "상태"
@@ -7840,14 +7971,14 @@ msgstr "Stripe 고객이 성공적으로 생성되었습니다."
msgid "Stripe Customer ID"
msgstr "Stripe 고객 ID"
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Subject"
msgstr "제목"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Subject <0>(Optional)0>"
msgstr "제목 <0>(선택 사항)0>"
@@ -7866,8 +7997,8 @@ msgstr "제출됨"
msgid "Subscribe"
msgstr "구독하기"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Subscription"
msgstr "구독"
@@ -7891,59 +8022,65 @@ msgstr "구독 클레임"
msgid "Subscription invalid"
msgstr "구독이 유효하지 않습니다."
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/verify-email-banner.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/organisation-update-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Subscription Status"
+msgstr "구독 상태"
+
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-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-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-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/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/verify-email-banner.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Success"
msgstr "성공"
@@ -7959,8 +8096,14 @@ msgstr "성공적으로 생성됨: {successCount}"
msgid "Summary:"
msgstr "요약:"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+msgid "support"
+msgstr "support"
+
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "Support"
msgstr "지원"
@@ -7981,11 +8124,11 @@ msgid "Sync failed, changes not saved"
msgstr "동기화에 실패하여 변경 사항이 저장되지 않았습니다"
#: packages/lib/utils/document-audit-logs.ts
-msgctxt "Audit log format"
msgid "System auto inserted fields"
msgstr "시스템이 자동으로 필드를 삽입함"
#: packages/lib/utils/document-audit-logs.ts
+msgctxt "Audit log format"
msgid "System auto inserted fields"
msgstr "시스템이 자동으로 필드를 삽입함"
@@ -7997,10 +8140,10 @@ msgstr "시스템 요구 사항"
msgid "System Theme"
msgstr "시스템 테마"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team"
msgstr "팀"
@@ -8017,8 +8160,8 @@ msgstr "팀 관리자"
msgid "Team Assignments"
msgstr "팀 할당"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Team Count"
msgstr "팀 수"
@@ -8081,14 +8224,14 @@ msgstr "팀 구성원"
msgid "Team Members"
msgstr "팀 구성원"
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "Team members have been added."
msgstr "팀 구성원이 추가되었습니다."
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
msgid "Team Name"
msgstr "팀 이름"
@@ -8105,9 +8248,9 @@ msgstr "팀 전용"
msgid "Team only templates are not linked anywhere and are visible only to your team."
msgstr "팀 전용 템플릿은 어디에도 연결되지 않으며, 팀원만 볼 수 있습니다."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team Role"
msgstr "팀 역할"
@@ -8123,18 +8266,18 @@ msgstr "팀 설정"
msgid "Team url"
msgstr "팀 URL"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Team URL"
msgstr "팀 URL"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
msgid "Teams"
msgstr "팀"
@@ -8146,13 +8289,13 @@ msgstr "팀은 작업을 조직하고 다른 사람과 협업하는 데 도움
msgid "Teams that this organisation group is currently assigned to"
msgstr "이 조직 그룹이 현재 할당된 팀"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/public-profile-template-manage-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.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/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
msgid "Template"
msgstr "템플릿"
@@ -8217,17 +8360,17 @@ msgstr "템플릿 제목"
msgid "Template updated successfully"
msgstr "템플릿이 성공적으로 업데이트되었습니다."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Template uploaded"
msgstr "템플릿이 업로드되었습니다."
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.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
msgid "Templates"
msgstr "템플릿"
@@ -8235,8 +8378,10 @@ msgstr "템플릿"
msgid "Templates allow you to quickly generate documents with pre-filled recipients and fields."
msgstr "템플릿을 사용하면 미리 설정된 수신자와 필드로 문서를 빠르게 생성할 수 있습니다."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Test"
+msgstr "테스트"
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Test Webhook"
msgstr "테스트 웹후크"
@@ -8249,23 +8394,23 @@ msgstr "테스트 웹후크 전송 실패"
msgid "Test webhook sent"
msgstr "테스트 웹후크 전송 완료"
+#: 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/envelope-editor/envelope-editor-fields-drag-drop.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
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/types.ts
-#: packages/ui/primitives/document-flow/add-fields.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Text"
msgstr "텍스트"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Text Align"
msgstr "텍스트 정렬"
@@ -8325,14 +8470,14 @@ msgstr "배너에 표시할 콘텐츠입니다. HTML 사용 가능"
msgid "The default email to use when sending emails to recipients"
msgstr "수신자에게 이메일을 보낼 때 사용할 기본 이메일입니다."
-#: 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
+#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "The direct link has been copied to your clipboard"
msgstr "직접 링크가 클립보드에 복사되었습니다"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "The display name for this email address"
msgstr "이 이메일 주소의 표시 이름입니다."
@@ -8352,8 +8497,8 @@ msgstr "문서가 이제 완료되었습니다. 상위 애플리케이션에서
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 "문서 소유자에게 이 거부 사실이 통보되었습니다. 현재 귀하가 추가로 취해야 할 조치는 없습니다. 문서 소유자가 이 거부와 관련해 문의할 수 있습니다."
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "The document owner has been notified of your decision. They may contact you with further instructions if necessary."
msgstr "문서 소유자에게 귀하의 결정이 이미 전달되었습니다. 필요할 경우 추가 안내를 위해 연락을 드릴 수 있습니다."
@@ -8373,8 +8518,8 @@ msgstr "이 옵션을 선택하면 문서가 즉시 수신자에게 발송됩니
msgid "The document you are looking for could not be found."
msgstr "찾고 있는 문서를 찾을 수 없습니다."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
msgid "The document you are looking for may have been removed, renamed or may have never existed."
msgstr "찾고 있는 문서는 삭제되었거나 이름이 변경되었거나 처음부터 존재하지 않았을 수 있습니다."
@@ -8394,8 +8539,8 @@ msgstr "찾고 있는 이메일 도메인은 삭제되었거나 이름이 변경
msgid "The email or password provided is incorrect"
msgstr "이메일 또는 비밀번호가 올바르지 않습니다."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The events that will trigger a webhook to be sent to your URL."
msgstr "URL로 전송될 웹훅을 트리거하는 이벤트입니다."
@@ -8530,8 +8675,8 @@ msgid "The signer's name"
msgstr "서명자의 이름"
#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "The signing link has been copied to your clipboard."
msgstr "서명 링크가 클립보드에 복사되었습니다."
@@ -8597,8 +8742,8 @@ msgstr "입력된 서명의 글꼴 크기"
msgid "The types of signatures that recipients are allowed to use when signing the document."
msgstr "수신자가 문서에 서명할 때 사용할 수 있는 서명 유형입니다."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The URL for Documenso to send webhook events to."
msgstr "Documenso가 웹훅 이벤트를 전송할 URL입니다."
@@ -8614,7 +8759,7 @@ msgstr "사용자의 2단계 인증이 성공적으로 재설정되었습니다.
msgid "The webhook has been successfully deleted."
msgstr "웹훅이 성공적으로 삭제되었습니다."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The webhook has been updated successfully."
msgstr "웹훅이 성공적으로 업데이트되었습니다."
@@ -8622,7 +8767,7 @@ msgstr "웹훅이 성공적으로 업데이트되었습니다."
msgid "The webhook was successfully created."
msgstr "웹훅이 성공적으로 생성되었습니다."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "The webhook you are looking for may have been removed, renamed or may have never existed."
msgstr "찾고 있는 웹후크는 삭제되었거나 이름이 변경되었거나 처음부터 존재하지 않았을 수 있습니다."
@@ -8666,9 +8811,9 @@ msgstr "이 계정은 아직 인증되지 않았습니다. 로그인하기 전
msgid "This action is irreversible. Please ensure you have informed the user before proceeding."
msgstr "이 작업은 되돌릴 수 없습니다. 진행하기 전에 사용자에게 미리 알렸는지 확인하세요."
-#: 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
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "This action is not reversible. Please be certain."
msgstr "이 작업은 되돌릴 수 없습니다. 신중히 결정해 주세요."
@@ -8696,8 +8841,8 @@ msgstr "현재 이 문서를 삭제할 수 없습니다. 다시 시도해 주세
msgid "This document could not be downloaded at this time. Please try again."
msgstr "현재 이 문서를 다운로드할 수 없습니다. 다시 시도해 주세요."
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
msgid "This document could not be duplicated at this time. Please try again."
msgstr "현재 이 문서를 복제할 수 없습니다. 다시 시도해 주세요."
@@ -8705,6 +8850,7 @@ msgstr "현재 이 문서를 복제할 수 없습니다. 다시 시도해 주세
msgid "This document could not be re-sent at this time. Please try again."
msgstr "현재 이 문서를 재전송할 수 없습니다. 다시 시도해 주세요."
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
msgid "This document has already been sent to this recipient. You can no longer edit this recipient."
msgstr "이 문서는 이미 이 수신자에게 전송되었습니다. 더 이상 이 수신자를 편집할 수 없습니다."
@@ -8873,9 +9019,9 @@ msgstr "이 토큰은 유효하지 않거나 만료되었습니다. 추가 조
msgid "This token is invalid or has expired. Please contact your team for a new invitation."
msgstr "이 토큰은 유효하지 않거나 만료되었습니다. 새 초대를 받으려면 팀에 문의해 주세요."
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "This URL is already in use."
msgstr "이 URL은 이미 사용 중입니다."
@@ -8915,21 +9061,21 @@ msgstr "시간"
msgid "Time zone"
msgstr "시간대"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Time Zone"
msgstr "시간대"
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Title"
msgstr "제목"
@@ -8964,12 +9110,12 @@ msgid "To change the email you must remove and add a new email address."
msgstr "이메일을 변경하려면 기존 이메일을 제거한 뒤 새 이메일 주소를 추가해야 합니다."
#. placeholder {0}: user.email
-#. placeholder {0}: userToEnable.email
#. placeholder {0}: userToDisable.email
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#. placeholder {0}: userToEnable.email
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "To confirm, please enter the accounts email address <0/>({0})."
msgstr "확인하려면 계정 이메일 주소 <0/>({0})를 입력해 주세요."
@@ -8981,8 +9127,8 @@ msgstr "확인하려면 이유를 입력해 주세요"
msgid "To enable two-factor authentication, scan the following QR code using your authenticator app."
msgstr "2단계 인증을 활성화하려면, 인증 앱으로 아래 QR 코드를 스캔하세요."
-#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
msgid "To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox."
msgstr "계정에 접근하려면 받은편지함의 확인 링크를 클릭해 이메일 주소를 확인해 주세요."
@@ -8997,8 +9143,8 @@ msgstr "이 문서를 열람 완료로 표시하려면 로그인해야 합니다
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "To proceed further, please set at least one value for the {0} field."
msgstr "계속 진행하려면 {0} 필드에 최소 한 개 이상의 값을 설정해야 합니다."
@@ -9074,8 +9220,8 @@ msgstr "가입한 전체 서명자 수"
msgid "Total Users"
msgstr "전체 사용자 수"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Triggers"
msgstr "트리거"
@@ -9087,8 +9233,8 @@ msgstr "2단계 인증"
msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app."
msgstr "2단계 인증 복구 코드는 인증 앱에 대한 접근 권한을 잃었을 때 계정에 접근하는 데 사용됩니다."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Two-Factor Authentication"
msgstr "2단계 인증"
@@ -9108,21 +9254,25 @@ msgstr "계정의 2단계 인증이 비활성화되었습니다. 앞으로 로
msgid "Two-Factor Re-Authentication"
msgstr "2단계 재인증"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Type"
msgstr "유형"
#: packages/lib/constants/document.ts
-msgctxt "Type signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Type signature"
msgid "Type"
-msgstr "유형"
+msgstr "입력"
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Type a command or search..."
msgstr "명령을 입력하거나 검색하세요..."
+#: packages/ui/primitives/signature-pad/signature-pad-type.tsx
+msgid "Type your signature"
+msgstr "서명 내용을 입력하세요"
+
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
msgid "Typed signatures are not allowed. Please draw your signature."
msgstr "입력식 서명은 허용되지 않습니다. 서명을 직접 그려 주세요."
@@ -9209,11 +9359,11 @@ msgstr "2단계 인증을 설정할 수 없습니다"
msgid "Unable to sign in"
msgstr "로그인할 수 없습니다"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Unauthorized"
msgstr "권한이 없습니다"
@@ -9221,15 +9371,15 @@ msgstr "권한이 없습니다"
msgid "Uncompleted"
msgstr "미완료"
-#: 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
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.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
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Unknown"
msgstr "알 수 없음"
@@ -9258,27 +9408,28 @@ msgstr "고정 해제"
msgid "Untitled Group"
msgstr "제목 없는 그룹"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: 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/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Update"
@@ -9288,8 +9439,8 @@ msgstr "업데이트"
msgid "Update Banner"
msgstr "배너 업데이트"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Update Billing"
msgstr "결제 정보 업데이트"
@@ -9313,9 +9464,9 @@ msgstr "필드 업데이트"
msgid "Update organisation"
msgstr "조직 업데이트"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "Update organisation member"
msgstr "조직 구성원 업데이트"
@@ -9331,16 +9482,16 @@ msgstr "비밀번호 업데이트"
msgid "Update profile"
msgstr "프로필 업데이트"
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
msgid "Update Recipient"
msgstr "수신자 업데이트"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Update role"
msgstr "역할 업데이트"
@@ -9375,10 +9526,6 @@ msgstr "다이렉트 수신자에게 필요한 역할을 설정하고 필드를
msgid "Update user"
msgstr "사용자 업데이트"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "Update webhook"
-msgstr "웹훅 업데이트"
-
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
msgid "Updated {organisationMemberName} to {roleLabel}."
msgstr "{organisationMemberName}의 역할이 {roleLabel}(으)로 업데이트되었습니다."
@@ -9391,8 +9538,8 @@ msgstr "비밀번호 업데이트 중..."
msgid "Updating Your Information"
msgstr "정보 업데이트"
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "Upgrade"
msgstr "업그레이드"
@@ -9406,12 +9553,12 @@ msgid "Upgrade your plan to upload more documents"
msgstr "더 많은 문서를 업로드하려면 요금제를 업그레이드하세요."
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
msgid "Upload"
msgstr "업로드"
#: packages/lib/constants/document.ts
-msgctxt "Upload signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Upload signature"
msgid "Upload"
msgstr "업로드"
@@ -9443,8 +9590,8 @@ msgstr "사용자 지정 문서 업로드"
msgid "Upload disabled"
msgstr "업로드 비활성화됨"
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: packages/ui/primitives/document-upload-button.tsx
msgid "Upload Document"
msgstr "문서 업로드"
@@ -9454,8 +9601,8 @@ msgid "Upload documents and add recipients"
msgstr "문서를 업로드하고 수신자를 추가하세요"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Upload failed"
msgstr "업로드 실패"
@@ -9476,8 +9623,8 @@ msgstr "템플릿 문서 업로드"
msgid "Upload your brand logo (max 5MB, JPG, PNG, or WebP)"
msgstr "브랜드 로고를 업로드하세요(최대 5MB, JPG, PNG 또는 WebP)"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Uploaded by"
msgstr "업로드한 사람"
@@ -9506,18 +9653,18 @@ msgstr "URL"
msgid "Use"
msgstr "사용"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Authenticator"
msgstr "인증 앱 사용"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Backup Code"
msgstr "백업 코드 사용"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
msgid "Use Template"
msgstr "템플릿 사용"
@@ -9529,8 +9676,8 @@ msgstr "인증 앱을 사용해 코드를 생성하세요"
msgid "Use your passkey for authentication"
msgstr "패스키로 인증하세요."
-#: apps/remix/app/components/tables/internal-audit-log-table.tsx
#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/internal-audit-log-table.tsx
msgid "User"
msgstr "사용자"
@@ -9546,10 +9693,10 @@ msgstr "사용자에게 설정된 비밀번호가 없습니다."
msgid "User not found"
msgstr "사용자를 찾을 수 없습니다."
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "User not found."
msgstr "사용자를 찾을 수 없습니다."
@@ -9569,15 +9716,15 @@ msgstr "사용자 설정"
msgid "User with this email already exists. Please use a different email address."
msgstr "이 이메일을 사용하는 사용자가 이미 있습니다. 다른 이메일 주소를 사용해 주세요."
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
msgid "Users"
msgstr "사용자"
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Validation"
msgstr "검증"
@@ -9585,9 +9732,9 @@ msgstr "검증"
msgid "Validation failed"
msgstr "검증 실패"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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 "Value"
@@ -9629,8 +9776,8 @@ msgstr "이메일 주소 확인"
msgid "Verify your email address to unlock all features."
msgstr "이메일을 확인하면 모든 기능을 사용할 수 있습니다."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Verify your email to upload documents."
msgstr "문서를 업로드하려면 이메일을 인증해야 합니다."
@@ -9638,8 +9785,8 @@ msgstr "문서를 업로드하려면 이메일을 인증해야 합니다."
msgid "Verify your team email address"
msgstr "팀 이메일 주소를 인증하세요."
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Vertical"
msgstr "세로"
@@ -9648,15 +9795,15 @@ msgstr "세로"
msgid "Vertical Align"
msgstr "세로 정렬"
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/inbox-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
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.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/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
msgid "View"
msgstr "보기"
@@ -9689,13 +9836,13 @@ msgstr "관련 문서 모두 보기"
msgid "View all security activity related to your account."
msgstr "계정과 관련된 모든 보안 활동을 확인합니다."
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "View and manage all active sessions for your account."
msgstr "계정의 모든 활성 세션을 조회하고 관리합니다."
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "View and manage all login methods linked to your account."
msgstr "계정에 연결된 모든 로그인 방식을 보고 관리하세요."
@@ -9711,14 +9858,14 @@ msgstr "DNS 레코드 보기"
msgid "View document"
msgstr "문서 보기"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.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
-#: packages/email/template-components/template-document-rejected.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: packages/email/template-components/template-document-invite.tsx
+#: packages/email/template-components/template-document-rejected.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
msgid "View Document"
msgstr "문서 보기"
@@ -9738,6 +9885,10 @@ msgstr "서명을 위해 문서 보기"
msgid "View documents associated with this email"
msgstr "이 이메일과 연결된 문서 보기"
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+msgid "View insights"
+msgstr "인사이트 보기"
+
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
msgid "View invites"
msgstr "초대 보기"
@@ -9771,9 +9922,9 @@ msgstr "팀 보기"
msgid "View the DNS records for this email domain"
msgstr "이 이메일 도메인에 대한 DNS 레코드를 확인합니다."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Viewed"
msgstr "열람됨"
@@ -9821,8 +9972,8 @@ msgstr "다른 서명자들이 이 문서에 서명 완료하기를 기다리는
msgid "Waiting for others to sign"
msgstr "다른 사람이 서명하기를 기다리는 중"
-#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
#: apps/remix/app/components/embed/embed-document-waiting-for-turn.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
msgid "Waiting for Your Turn"
msgstr "내 차례를 기다리는 중"
@@ -9838,17 +9989,17 @@ msgstr "나만의 공개 프로필을 원하시나요?"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
msgid "Warning: Assistant as last signer"
msgstr "경고: 마지막 서명자로 지정된 보조자"
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
msgstr "현재 청구 포털로 이동할 수 없습니다. 다시 시도하시거나 지원팀에 문의해 주세요."
@@ -9895,12 +10046,12 @@ msgstr "직접 템플릿 링크를 제거하는 중 오류가 발생했습니다
msgid "We encountered an error while sending the test webhook. Please check your endpoint and try again."
msgstr "테스트 웹후크를 보내는 동안 오류가 발생했습니다. 엔드포인트를 확인하고 다시 시도해 주세요."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "We encountered an error while updating the webhook. Please try again later."
msgstr "웹훅을 업데이트하는 중 오류가 발생했습니다. 나중에 다시 시도해 주세요."
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "We encountered an unknown error while attempting to add team members. Please try again later."
msgstr "팀 구성원을 추가하는 중 알 수 없는 오류가 발생했습니다. 잠시 후 다시 시도해 주세요."
@@ -9916,8 +10067,8 @@ msgstr "도메인을 추가하는 중 알 수 없는 오류가 발생했습니
msgid "We encountered an unknown error while attempting to create a group. Please try again later."
msgstr "그룹을 생성하는 중 알 수 없는 오류가 발생했습니다. 잠시 후 다시 시도해 주세요."
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "We encountered an unknown error while attempting to create a organisation. Please try again later."
msgstr "조직을 생성하는 중 알 수 없는 오류가 발생했습니다. 잠시 후 다시 시도해 주세요."
@@ -9973,8 +10124,8 @@ msgstr "이 이메일을 제거하는 중 알 수 없는 오류가 발생했습
msgid "We encountered an unknown error while attempting to remove this envelope item. Please try again later."
msgstr "이 봉투 항목을 제거하는 동안 알 수 없는 오류가 발생했습니다. 나중에 다시 시도해 주세요."
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this group. Please try again later."
msgstr "이 그룹을 제거하는 중 알 수 없는 오류가 발생했습니다. 잠시 후 다시 시도해 주세요."
@@ -9982,8 +10133,8 @@ msgstr "이 그룹을 제거하는 중 알 수 없는 오류가 발생했습니
msgid "We encountered an unknown error while attempting to remove this template from your profile. Please try again later."
msgstr "이 템플릿을 프로필에서 제거하는 중 알 수 없는 오류가 발생했습니다. 나중에 다시 시도해 주세요."
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this user. Please try again later."
msgstr "이 사용자를 제거하는 중 알 수 없는 오류가 발생했습니다. 나중에 다시 시도해 주세요."
@@ -10000,10 +10151,10 @@ msgstr "비밀번호를 재설정하는 중 알 수 없는 오류가 발생했
msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support."
msgstr "접근 권한을 철회하는 중 알 수 없는 오류가 발생했습니다. 다시 시도하시거나 지원팀에 문의해 주세요."
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
msgid "We encountered an unknown error while attempting to sign you In. Please try again later."
msgstr "로그인 중 알 수 없는 오류가 발생했습니다. 나중에 다시 시도해 주세요."
@@ -10025,13 +10176,13 @@ msgstr "봉투를 업데이트하는 동안 알 수 없는 오류가 발생했
msgid "We encountered an unknown error while attempting to update the template. Please try again later."
msgstr "템플릿을 업데이트하는 중 알 수 없는 오류가 발생했습니다. 나중에 다시 시도해 주세요."
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this organisation member. Please try again later."
msgstr "이 조직 구성원을 업데이트하는 중 알 수 없는 오류가 발생했습니다. 잠시 후 다시 시도해 주세요."
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this team member. Please try again later."
msgstr "이 팀 구성원을 업데이트하는 중 알 수 없는 오류가 발생했습니다. 나중에 다시 시도해 주세요."
@@ -10039,8 +10190,8 @@ msgstr "이 팀 구성원을 업데이트하는 중 알 수 없는 오류가 발
msgid "We encountered an unknown error while attempting to update your organisation. Please try again later."
msgstr "조직을 업데이트하는 중 알 수 없는 오류가 발생했습니다. 잠시 후 다시 시도해 주세요."
-#: apps/remix/app/components/forms/password.tsx
#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
msgid "We encountered an unknown error while attempting to update your password. Please try again later."
msgstr "비밀번호를 업데이트하는 중 알 수 없는 오류가 발생했습니다. 나중에 다시 시도해 주세요."
@@ -10084,9 +10235,9 @@ msgstr "계정을 생성하지 못했습니다. 입력하신 정보를 확인한
msgid "We were unable to disable two-factor authentication for your account. Please ensure that you have entered your password and backup code correctly and try again."
msgstr "계정의 2단계 인증을 비활성화할 수 없습니다. 비밀번호와 백업 코드를 올바르게 입력했는지 확인한 후 다시 시도해 주세요."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "We were unable to log you out at this time."
msgstr "현재 로그아웃할 수 없습니다."
@@ -10099,11 +10250,11 @@ msgstr "공개 프로필을 공개로 설정할 수 없습니다. 다시 시도
msgid "We were unable to setup two-factor authentication for your account. Please ensure that you have entered your code correctly and try again."
msgstr "계정의 2단계 인증을 설정할 수 없습니다. 코드를 올바르게 입력했는지 확인한 후 다시 시도해 주세요."
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
msgid "We were unable to submit this document at this time. Please try again later."
msgstr "현재 이 문서를 제출할 수 없습니다. 나중에 다시 시도해 주세요."
@@ -10122,8 +10273,8 @@ msgstr "현재 문서 환경설정을 업데이트할 수 없습니다. 나중
msgid "We were unable to update your email preferences at this time, please try again later"
msgstr "현재 이메일 기본 설정을 업데이트할 수 없습니다. 잠시 후 다시 시도해 주세요."
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "We were unable to verify your details. Please try again or contact support"
msgstr "정보를 확인할 수 없습니다. 다시 시도하시거나 지원팀에 문의해 주세요."
@@ -10135,14 +10286,14 @@ msgstr "현재 이메일을 인증할 수 없습니다."
msgid "We were unable to verify your email. If your email is not verified already, please try again."
msgstr "이메일을 인증할 수 없습니다. 이메일이 아직 인증되지 않았다면 다시 시도해 주세요."
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We will generate signing links for you, which you can send to the recipients through your method of choice."
msgstr "수신자에게 보낼 서명 링크를 생성해 드립니다. 링크는 원하는 방식으로 전달할 수 있습니다."
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We won't send anything to notify recipients."
msgstr "수신자에게 알림을 보내지 않습니다."
@@ -10155,8 +10306,8 @@ msgstr "가능한 한 빨리 이메일로 다시 연락드리겠습니다."
msgid "We'll send a 6-digit code to your email"
msgstr "이메일로 6자리 코드를 보내드리겠습니다"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
msgid "We're all empty"
msgstr "모두 비어 있습니다"
@@ -10176,6 +10327,11 @@ msgstr "이메일로 6자리 인증 코드를 보냈습니다. 문서를 완료
msgid "We've sent a confirmation email to <0>{email}0>. Please check your inbox and click the link in the email to verify your account."
msgstr "<0>{email}0>(으)로 확인 이메일을 전송했습니다. 받은편지함을 확인하고 이메일에 포함된 링크를 클릭해 계정을 인증해 주세요."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Webhook"
+msgstr "웹후크"
+
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
msgid "Webhook created"
msgstr "웹훅이 생성되었습니다"
@@ -10184,23 +10340,31 @@ msgstr "웹훅이 생성되었습니다"
msgid "Webhook deleted"
msgstr "웹훅이 삭제되었습니다"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook Details"
+msgstr "웹후크 세부 정보"
+
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Webhook not found"
msgstr "웹후크를 찾을 수 없습니다."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook successfully sent"
+msgstr "웹후크가 성공적으로 전송되었습니다."
+
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Webhook updated"
msgstr "웹훅이 업데이트되었습니다"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Webhook URL"
msgstr "웹훅 URL"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Webhooks"
msgstr "웹훅"
@@ -10236,10 +10400,10 @@ msgstr "이 문서를 편집하려던 것이었나요?"
msgid "What you can do with teams:"
msgstr "팀으로 할 수 있는 일:"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "When enabled, signers can choose who should sign next in the sequence instead of following the predefined order."
msgstr "활성화하면, 미리 정의된 순서 대신 서명자가 다음 서명자를 직접 선택할 수 있습니다."
@@ -10279,20 +10443,20 @@ msgstr "동의 철회"
msgid "Write a description to display on your public profile"
msgstr "공개 프로필에 표시될 설명을 작성하세요."
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Yearly"
msgstr "연간"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Yes"
msgstr "예"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: packages/lib/utils/document-audit-logs.ts
msgid "You"
msgstr "나"
@@ -10360,10 +10524,10 @@ msgstr "다음 문서와 그에 연결된 모든 필드를 삭제하려고 합
msgid "You are about to remove the following email from <0>{0}0>."
msgstr "곧 다음 이메일을 <0>{0}0>에서 제거하려고 합니다."
-#. placeholder {0}: team.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#. placeholder {0}: team.name
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "You are about to remove the following group from <0>{0}0>."
msgstr "곧 다음 그룹을 <0>{0}0>에서 제거하려고 합니다."
@@ -10403,8 +10567,8 @@ msgstr "현재 <0>{0}0>을(를) 업데이트하고 있습니다."
msgid "You are currently updating <0>{memberName}.0>"
msgstr "현재 <0>{memberName}0>을(를) 업데이트하고 있습니다."
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "You are currently updating <0>{organisationMemberName}.0>"
msgstr "현재 <0>{organisationMemberName}0>을(를) 업데이트하고 있습니다."
@@ -10487,8 +10651,8 @@ msgid "You can view the document and its status by clicking the button below."
msgstr "아래 버튼을 클릭하면 문서와 그 상태를 확인할 수 있습니다."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "You cannot add assistants when signing order is disabled."
msgstr "서명 순서가 비활성화된 상태에서는 보조자를 추가할 수 없습니다."
@@ -10516,21 +10680,21 @@ msgstr "자신보다 높은 역할을 가진 팀 구성원의 설정은 변경
msgid "You cannot remove members from this team if the inherit member feature is enabled."
msgstr "구성원 상속 기능이 활성화된 경우 이 팀에서 구성원을 제거할 수 없습니다."
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "You cannot upload documents at this time."
msgstr "현재는 문서를 업로드할 수 없습니다."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload encrypted PDFs"
msgstr "암호화된 PDF는 업로드할 수 없습니다"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload more than {maximumEnvelopeItemCount} items per envelope."
msgstr "봉투당 {maximumEnvelopeItemCount}개보다 많은 항목을 업로드할 수 없습니다."
@@ -10546,6 +10710,10 @@ msgstr "현재 이 조직 내 어느 팀에도 접근 권한이 없습니다.
msgid "You do not have permission to create a token for this team"
msgstr "이 팀에 대한 토큰을 생성할 권한이 없습니다."
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "You don't manage billing for any organisations."
+msgstr "결제를 관리하는 조직이 없습니다."
+
#: packages/email/template-components/template-document-cancel.tsx
msgid "You don't need to sign it anymore."
msgstr "더 이상 이 문서에 서명할 필요가 없습니다."
@@ -10574,8 +10742,8 @@ msgstr "Documenso에서 {0} 조직에 초대되었습니다."
msgid "You have been invited to join the following organisation"
msgstr "다음 조직에 참여하라는 초대를 받았습니다."
-#: packages/lib/server-only/recipient/set-document-recipients.ts
#: packages/lib/server-only/recipient/delete-envelope-recipient.ts
+#: packages/lib/server-only/recipient/set-document-recipients.ts
msgid "You have been removed from a document"
msgstr "문서에서 제거되었습니다."
@@ -10589,8 +10757,8 @@ msgid "You have declined the invitation from <0>{0}0> to join their organisati
msgstr "<0>{0}0> 조직의 초대를 거절했습니다."
#. placeholder {0}: `"${envelope.title}"`
-#: packages/lib/server-only/document/resend-document.ts
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
+#: packages/lib/server-only/document/resend-document.ts
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
msgstr "귀하가 시작한 문서 {0}에 {recipientActionVerb}해야 합니다."
@@ -10606,9 +10774,9 @@ msgstr "아직 템플릿을 생성하지 않았습니다. 템플릿을 생성하
msgid "You have not yet created or received any documents. To create a document please upload one."
msgstr "아직 문서를 생성하거나 받지 않았습니다. 문서를 생성하려면 문서를 업로드해 주세요."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached the limit of the number of files per envelope"
msgstr "봉투당 파일 개수 제한에 도달했습니다"
@@ -10621,14 +10789,14 @@ msgstr "직접 템플릿 최대 한도 {0}개에 도달했습니다. <0>계정
msgid "You have reached the maximum number of teams for your plan. Please contact sales at <0>{SUPPORT_EMAIL}0> if you would like to adjust your plan."
msgstr "현재 요금제에서 만들 수 있는 팀 수의 최대치에 도달했습니다. 요금제 조정을 원하시면 <0>{SUPPORT_EMAIL}0>로 영업팀에 문의해 주세요."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached your document limit for this month. Please upgrade your plan."
msgstr "이번 달 문서 업로드 한도에 도달했습니다. 요금제를 업그레이드해 주세요."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
msgid "You have reached your document limit."
msgstr "문서 한도에 도달했습니다."
@@ -10641,8 +10809,8 @@ msgstr "문서 한도에 도달했습니다. <0>계정을 업그레이드해 계
msgid "You have rejected the document '{documentName}'"
msgstr "'{documentName}' 문서를 거부했습니다."
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "You have rejected this document"
msgstr "이 문서를 거부했습니다."
@@ -10654,8 +10822,8 @@ msgstr "“{documentName}”에 서명했습니다."
msgid "You have successfully left this organisation."
msgstr "성공적으로 이 조직을 탈퇴했습니다."
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "You have successfully registered. Please verify your account by clicking on the link you received in the email."
msgstr "등록이 완료되었습니다. 이메일로 받은 링크를 클릭해 계정을 인증해 주세요."
@@ -10712,10 +10880,10 @@ msgstr "팀 그룹을 업데이트했습니다."
msgid "You have verified your email address for <0>{0}0>."
msgstr "<0>{0}0> 팀의 이메일 주소를 성공적으로 인증했습니다."
-#: 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
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "You must enter '{deleteMessage}' to proceed"
msgstr "' {deleteMessage}'를 입력해야 계속 진행할 수 있습니다"
@@ -10723,8 +10891,8 @@ msgstr "' {deleteMessage}'를 입력해야 계속 진행할 수 있습니다"
msgid "You must select at least one item"
msgstr "최소 한 개의 항목을 선택해야 합니다"
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
msgid "You must type '{deleteMessage}' to confirm"
msgstr "확인하려면 '{deleteMessage}'를 입력해야 합니다."
@@ -10744,8 +10912,8 @@ msgstr "API 토큰을 관리하려면 관리자 권한이 필요합니다."
msgid "You need to be logged in as <0>{email}0> to view this page."
msgstr "이 페이지를 보려면 <0>{email}0> 계정으로 로그인해야 합니다."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "You need to be logged in to view this page."
msgstr "이 페이지를 보려면 로그인해야 합니다."
@@ -10762,8 +10930,8 @@ msgid "You will now be required to enter a code from your authenticator app when
msgstr "앞으로 로그인할 때 인증 앱의 코드를 입력해야 합니다."
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "You will receive an Email copy of the signed document once everyone has signed."
-msgstr "모든 사람이 서명을 완료하면 서명된 문서 사본을 이메일로 받게 됩니다."
+msgid "You will receive an email copy of the signed document once everyone has signed."
+msgstr "모두 서명하면 서명된 문서의 사본이 이메일로 전송됩니다."
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Your Account"
@@ -10818,8 +10986,8 @@ msgstr "현재 요금제의 결제가 연체되었습니다."
msgid "Your direct signing templates"
msgstr "직접 서명 템플릿"
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Your document failed to upload."
msgstr "문서를 업로드하지 못했습니다."
@@ -10847,9 +11015,9 @@ msgstr "문서가 성공적으로 발송되었습니다."
msgid "Your document has been successfully duplicated."
msgstr "문서가 성공적으로 복제되었습니다."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your document has been uploaded successfully."
msgstr "문서가 성공적으로 업로드되었습니다."
@@ -10909,8 +11077,8 @@ msgstr "기존 토큰"
msgid "Your Name"
msgstr "이름"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your new password cannot be the same as your old password."
msgstr "새 비밀번호는 기존 비밀번호와 같을 수 없습니다."
@@ -10926,8 +11094,8 @@ msgstr "조직이 성공적으로 삭제되었습니다."
msgid "Your organisation has been successfully updated."
msgstr "조직이 성공적으로 업데이트되었습니다."
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your password has been updated successfully."
msgstr "비밀번호가 성공적으로 업데이트되었습니다."
@@ -10967,8 +11135,8 @@ msgstr "공개 프로필이 업데이트되었습니다."
msgid "Your recovery code has been copied to your clipboard."
msgstr "복구 코드가 클립보드에 복사되었습니다."
-#: 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/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Your recovery codes are listed below. Please store them in a safe place."
msgstr "아래에 복구 코드가 표시됩니다. 안전한 곳에 보관해 주세요."
@@ -11000,8 +11168,8 @@ msgstr "템플릿이 성공적으로 복제되었습니다."
msgid "Your template has been successfully deleted."
msgstr "템플릿이 성공적으로 삭제되었습니다."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your template has been uploaded successfully."
msgstr "템플릿이 성공적으로 업로드되었습니다."
diff --git a/packages/lib/translations/nl/web.po b/packages/lib/translations/nl/web.po
index e5f0b3232..38f916091 100644
--- a/packages/lib/translations/nl/web.po
+++ b/packages/lib/translations/nl/web.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: nl\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-11-12 06:14\n"
+"PO-Revision-Date: 2025-11-27 06:05\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -20,13 +20,13 @@ msgstr ""
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid ".PDF documents accepted (max {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB)"
-msgstr ".PDF documenten geaccepteerd (max {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB)"
+msgstr ".PDF-documenten toegestaan (max. {APP_DOCUMENT_UPLOAD_SIZE_LIMIT} MB)"
#. placeholder {0}: field.customText
#. placeholder {1}: timezone || ''
#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
msgid "\"{0}\" will appear on the document as it has a timezone of \"{1}\"."
-msgstr "\"{0}\" zal op het document verschijnen omdat het een tijdzone \"{1}\" heeft."
+msgstr "\"{0}\" wordt op het document weergegeven, omdat het een tijdzone \"{1}\" heeft."
#: packages/email/template-components/template-document-super-delete.tsx
msgid "\"{documentName}\" has been deleted by an admin."
@@ -34,51 +34,56 @@ msgstr "\"{documentName}\" is verwijderd door een beheerder."
#: packages/email/template-components/template-document-pending.tsx
msgid "“{documentName}” has been signed"
-msgstr "“{documentName}” is ondertekend"
+msgstr "\"{documentName}\" is ondertekend"
#: packages/email/template-components/template-document-completed.tsx
msgid "“{documentName}” was signed by all signers"
-msgstr "“{documentName}” is ondertekend door alle ondertekenaars"
+msgstr "\"{documentName}\" is door alle ondertekenaars ondertekend"
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "\"{documentTitle}\" has been successfully deleted"
-msgstr "\"{documentTitle}\" is succesvol verwijderd"
+msgstr "\"{documentTitle}\" is succesvol verwijderd."
#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "\"{placeholderEmail}\" on behalf of \"Team Name\" has invited you to sign \"example document\"."
-msgstr "\"{placeholderEmail}\" namens \"Team Name\" heeft je uitgenodigd om \"voorbeeld document\" te ondertekenen."
+msgstr "\"{placeholderEmail}\" heeft namens \"Team Name\" je uitgenodigd om \"example document\" te ondertekenen."
#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "\"Team Name\" has invited you to sign \"example document\"."
-msgstr "\"Team Name\" heeft je uitgenodigd om \"voorbeeld document\" te ondertekenen."
+msgstr "\"Team Name\" heeft je uitgenodigd om \"example document\" te ondertekenen."
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "(You)"
-msgstr "(U)"
+msgstr "(Jij)"
#. placeholder {0}: Math.abs(charactersRemaining)
#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
-msgstr "{0, plural, one {(1 teken over)} other {(# tekens over)}}"
+msgstr "{0, plural, one {(1 teken te veel)} other {(# tekens te veel)}}"
#. placeholder {0}: Math.abs(remaningLength)
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{0, plural, one {# character over the limit} other {# characters over the limit}}"
-msgstr "{0, plural, one {# teken over het limiet} other {# tekens over het limiet}}"
+msgstr "{0, plural, one {# teken boven de limiet} other {# tekens boven de limiet}}"
#. placeholder {0}: fieldMeta?.characterLimit - (field.value?.length ?? 0)
#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
msgid "{0, plural, one {# character remaining} other {# characters remaining}}"
-msgstr "{0, plural, one {# teken over} other {# tekens over}}"
+msgstr "{0, plural, one {# teken resterend} other {# tekens resterend}}"
#. placeholder {0}: folder._count.documents
#: apps/remix/app/components/general/folder/folder-card.tsx
msgid "{0, plural, one {# document} other {# documents}}"
msgstr "{0, plural, one {# document} other {# documenten}}"
+#. placeholder {0}: row.original.eventTriggers.length
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "{0, plural, one {# Event} other {# Events}}"
+msgstr "{0, plural, one {# gebeurtenis} other {# gebeurtenissen}}"
+
#. placeholder {0}: assistantFields.filter((field) => field.recipientId === r.id).length
#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "{0, plural, one {# field} other {# fields}}"
@@ -97,7 +102,7 @@ msgstr "{0, plural, one {# ontvanger} other {# ontvangers}}"
#. placeholder {0}: envelope.recipients.length
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
msgid "{0, plural, one {# Recipient} other {# Recipients}}"
-msgstr "{0, plural, one {# Ontvanger} other {# Ontvangers}}"
+msgstr "{0, plural, one {# ontvanger} other {# ontvangers}}"
#. placeholder {0}: org.teams.length
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
@@ -116,18 +121,18 @@ msgid "{0, plural, one {<0>You have <1>11> pending invitation0>} other {<2>Y
msgstr "{0, plural, one {<0>Je hebt <1>11> openstaande uitnodiging0>} other {<2>Je hebt <3>#3> openstaande uitnodigingen2>}}"
#. placeholder {0}: recipientFieldsRemaining.length
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "{0, plural, one {1 Field Remaining} other {# Fields Remaining}}"
-msgstr "{0, plural, one {1 Veld Over} other {# Velden Over}}"
+msgstr "{0, plural, one {1 veld resterend} other {# velden resterend}}"
#. placeholder {0}: fields.filter((field) => field.envelopeItemId === doc.id).length
#. placeholder {0}: remainingFields.filter((field) => field.envelopeItemId === doc.id).length
-#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
msgid "{0, plural, one {1 Field} other {# Fields}}"
-msgstr "{0, plural, one {1 Veld} other {# Velden}}"
+msgstr "{0, plural, one {1 veld} other {# velden}}"
#. placeholder {0}: autoSignableFields.filter((f) => f.type === fieldType).length
#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
@@ -137,18 +142,18 @@ msgstr "{0, plural, one {1 overeenkomend veld} other {# overeenkomende velden}}"
#. placeholder {0}: recipients.length
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
msgid "{0, plural, one {1 Recipient} other {# Recipients}}"
-msgstr "{0, plural, one {1 Ontvanger} other {# Ontvangers}}"
+msgstr "{0, plural, one {1 ontvanger} other {# ontvangers}}"
#. placeholder {0}: pendingRecipients.length
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}"
-msgstr "{0, plural, one {Wachten op 1 ontvanger} other {Wachten op # ontvangers}}"
+msgstr "{0, plural, one {Wacht op 1 ontvanger} other {Wacht op # ontvangers}}"
-#. placeholder {0}: route.label
#. placeholder {0}: _(FRIENDLY_FIELD_TYPE[fieldType as FieldType])
+#. placeholder {0}: route.label
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
msgid "{0}"
msgstr "{0}"
@@ -166,20 +171,20 @@ msgstr "{0} directe ondertekeningssjablonen"
#. placeholder {1}: envelope.title
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
msgid "{0} has invited you to {recipientActionVerb} the document \"{1}\"."
-msgstr "{0} heeft je uitgenodigd om {recipientActionVerb} het document \"{1}\"."
+msgstr "{0} heeft je uitgenodigd om het document \"{1}\" te {recipientActionVerb}."
#. placeholder {0}: team.name
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
msgid "{0} invited you to {recipientActionVerb} a document"
-msgstr "{0} heeft je uitgenodigd om {recipientActionVerb} een document"
+msgstr "{0} heeft je uitgenodigd om een document te {recipientActionVerb}"
#. placeholder {0}: remaining.documents
#. placeholder {1}: quota.documents
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "{0} of {1} documents remaining this month."
-msgstr "{0} van de {1} documenten blijven deze maand over."
+msgstr "{0} van {1} documenten resterend deze maand."
#. placeholder {0}: table.getFilteredSelectedRowModel().rows.length
#. placeholder {1}: table.getFilteredRowModel().rows.length
@@ -192,7 +197,7 @@ msgstr "{0} van {1} rij(en) geselecteerd."
#. placeholder {2}: envelope.title
#: packages/lib/server-only/document/resend-document.ts
msgid "{0} on behalf of \"{1}\" has invited you to {recipientActionVerb} the document \"{2}\"."
-msgstr "{0} namens \"{1}\" heeft je uitgenodigd om {recipientActionVerb} het document \"{2}\"."
+msgstr "{0} heeft namens \"{1}\" je uitgenodigd om het document \"{2}\" te {recipientActionVerb}."
#. placeholder {0}: organisation.name
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
@@ -205,7 +210,7 @@ msgstr "{browserInfo} op {os}"
#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "{charactersRemaining, plural, one {1 character remaining} other {{charactersRemaining} characters remaining}}"
-msgstr "{charactersRemaining, plural, one {1 resterend teken} other {{charactersRemaining} resterende tekens}}"
+msgstr "{charactersRemaining, plural, one {1 teken resterend} other {{charactersRemaining} tekens resterend}}"
#: packages/email/template-components/template-access-auth-2fa.tsx
msgid "{expiresInMinutes, plural, one {This code will expire in # minute.} other {This code will expire in # minutes.}}"
@@ -234,7 +239,7 @@ msgstr "{inviterName} heeft je uitgenodigd om {action} {documentName}"
#: packages/email/templates/document-invite.tsx
msgid "{inviterName} has invited you to {action} the document \"{documentName}\"."
-msgstr "{inviterName} heeft je uitgenodigd om {action} het document \"{documentName}\"."
+msgstr "{inviterName} heeft je uitgenodigd om het document \"{documentName}\" te {action}."
#: packages/email/templates/recipient-removed-from-document.tsx
msgid "{inviterName} has removed you from the document {documentName}."
@@ -248,20 +253,20 @@ msgstr "{inviterName} heeft je verwijderd uit het document<0/>\"{documentName}\"
#. placeholder {1}: envelope.title
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
msgid "{inviterName} on behalf of \"{0}\" has invited you to {recipientActionVerb} the document \"{1}\"."
-msgstr "{inviterName} namens \"{0}\" heeft u uitgenodigd om het document \"{1}\" te {recipientActionVerb}."
+msgstr "{inviterName} heeft namens \"{0}\" je uitgenodigd om het document \"{1}\" te {recipientActionVerb}."
#. placeholder {0}: _(actionVerb).toLowerCase()
#: packages/email/template-components/template-document-invite.tsx
msgid "{inviterName} on behalf of \"{teamName}\" has invited you to {0}<0/>\"{documentName}\""
-msgstr "{inviterName} namens \"{teamName}\" heeft u uitgenodigd voor {0}<0/>\"{documentName}\""
+msgstr "{inviterName} heeft namens \"{teamName}\" je uitgenodigd om {0}<0/>\"{documentName}\""
#: packages/email/templates/document-invite.tsx
msgid "{inviterName} on behalf of \"{teamName}\" has invited you to {action} {documentName}"
-msgstr "{inviterName} namens \"{teamName}\" heeft je uitgenodigd om {action} {documentName}"
+msgstr "{inviterName} heeft namens \"{teamName}\" je uitgenodigd om {action} {documentName}"
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "{MAXIMUM_PASSKEYS, plural, one {You cannot have more than # passkey.} other {You cannot have more than # passkeys.}}"
-msgstr "{MAXIMUM_PASSKEYS, plural, one {U kunt niet meer dan # toegangssleutel hebben.} other {U kunt niet meer dan # toegangssleutels hebben.}}"
+msgstr "{MAXIMUM_PASSKEYS, plural, one {U kunt niet meer dan # passkey hebben.} other {U kunt niet meer dan # passkeys hebben.}}"
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} added a field"
@@ -274,7 +279,7 @@ msgstr "{prefix} heeft een ontvanger toegevoegd"
#. placeholder {0}: data.envelopeItemTitle
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} created an envelope item with title {0}"
-msgstr "{prefix} heeft een envelopitem gemaakt met de titel {0}"
+msgstr "{prefix} heeft een envelop-item aangemaakt met de titel {0}"
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} created the document"
@@ -283,7 +288,7 @@ msgstr "{prefix} heeft het document aangemaakt"
#. placeholder {0}: data.envelopeItemTitle
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} deleted an envelope item with title {0}"
-msgstr "{prefix} heeft een envelopitem met de titel {0} verwijderd"
+msgstr "{prefix} heeft een envelop-item verwijderd met de titel {0}"
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} deleted the document"
@@ -291,7 +296,7 @@ msgstr "{prefix} heeft het document verwijderd"
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} moved the document to team"
-msgstr "{prefix} heeft het document verplaatst naar een team"
+msgstr "{prefix} heeft het document naar een team verplaatst"
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} opened the document"
@@ -312,24 +317,24 @@ msgstr "{prefix} heeft een ontvanger verwijderd"
#. placeholder {0}: data.recipientEmail
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} resent an email to {0}"
-msgstr "{prefix} heeft een e-mail opnieuw naar {0} verzonden"
+msgstr "{prefix} heeft een e-mail opnieuw verzonden naar {0}"
#. placeholder {0}: data.recipientEmail
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} sent an email to {0}"
-msgstr "{prefix} heeft een e-mail naar {0} gestuurd"
+msgstr "{prefix} heeft een e-mail verzonden naar {0}"
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} sent the document"
-msgstr "{prefix} heeft het document gestuurd"
+msgstr "{prefix} heeft het document verzonden"
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} signed a field"
-msgstr "{prefix} ondertekende een veld"
+msgstr "{prefix} heeft een veld ondertekend"
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} unsigned a field"
-msgstr "{prefix} ondertekende een veld niet"
+msgstr "{prefix} heeft een veld onttekend"
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} updated a field"
@@ -345,7 +350,7 @@ msgstr "{prefix} heeft het document bijgewerkt"
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} updated the document access auth requirements"
-msgstr "{prefix} heeft de authenticatievereisten voor documenttoegang bijgewerkt"
+msgstr "{prefix} heeft de toegangsautorisatievereisten voor het document bijgewerkt"
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} updated the document external ID"
@@ -353,15 +358,15 @@ msgstr "{prefix} heeft de externe ID van het document bijgewerkt"
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} updated the document signing auth requirements"
-msgstr "{prefix} heeft de vereisten voor documentondertekening bijgewerkt"
+msgstr "{prefix} heeft de ondertekeningsautorisatievereisten van het document bijgewerkt"
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} updated the document title"
-msgstr "{prefix} heeft de titel van het document bijgewerkt"
+msgstr "{prefix} heeft de documenttitel bijgewerkt"
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} updated the document visibility"
-msgstr "{prefix} heeft de zichtbaarheid van het document bijgewerkt"
+msgstr "{prefix} heeft de documentzichtbaarheid bijgewerkt"
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} viewed the document"
@@ -382,11 +387,11 @@ msgstr "{recipientCount} ontvangers"
#: packages/email/templates/document-created-from-direct-template.tsx
msgid "{recipientName} {action} a document by using one of your direct links"
-msgstr "{recipientName} {action} een document door een van je directe links te gebruiken"
+msgstr "{recipientName} heeft een document {action} via een van je directe links"
#: packages/email/templates/document-rejected.tsx
msgid "{recipientName} has rejected the document '{documentName}'"
-msgstr "{recipientName} heeft het document '{documentName}' afgewezen"
+msgstr "{recipientName} heeft het document '{documentName}' geweigerd"
#: packages/email/template-components/template-document-recipient-signed.tsx
msgid "{recipientReference} has completed signing the document."
@@ -405,19 +410,19 @@ msgstr "{recipientReference} heeft \"{documentName}\" ondertekend"
msgid "{recipientReference} has signed {documentName}"
msgstr "{recipientReference} heeft {documentName} ondertekend"
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{remaningLength, plural, one {# character remaining} other {# characters remaining}}"
-msgstr "{remaningLength, plural, one {# resterend teken} other {# resterende tekens}}"
+msgstr "{remaningLength, plural, one {# teken resterend} other {# tekens resterend}}"
#: packages/email/template-components/template-document-rejected.tsx
msgid "{signerName} has rejected the document \"{documentName}\"."
-msgstr "{signerName} heeft het document \"{documentName}\" afgewezen."
+msgstr "{signerName} heeft het document \"{documentName}\" geweigerd."
#. placeholder {0}: _(actionVerb).toLowerCase()
#: packages/email/template-components/template-document-invite.tsx
msgid "{teamName} has invited you to {0}<0/>\"{documentName}\""
-msgstr "{teamName} heeft u uitgenodigd voor {0}<0/>\"{documentName}\""
+msgstr "{teamName} heeft je uitgenodigd om {0}<0/>\"{documentName}\""
#: packages/email/templates/document-invite.tsx
msgid "{teamName} has invited you to {action} {documentName}"
@@ -425,7 +430,7 @@ msgstr "{teamName} heeft je uitgenodigd om {action} {documentName}"
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
msgid "{userAgent}"
-msgstr ""
+msgstr "{userAgent}"
#: packages/lib/utils/document-audit-logs.ts
msgid "{userName} approved the document"
@@ -437,15 +442,15 @@ msgstr "{userName} heeft het document in CC gezet"
#: packages/lib/utils/document-audit-logs.ts
msgid "{userName} completed their task"
-msgstr "{userName} heeft hun taak voltooid"
+msgstr "{userName} heeft zijn/haar taak voltooid"
#: packages/lib/utils/document-audit-logs.ts
msgid "{userName} failed to validate a 2FA token for the document"
-msgstr "{userName} is er niet in geslaagd om een 2FA-token voor het document te valideren"
+msgstr "{userName} kon geen 2FA-token voor het document valideren"
#: packages/lib/utils/document-audit-logs.ts
msgid "{userName} rejected the document"
-msgstr "{userName} heeft het document afgewezen"
+msgstr "{userName} heeft het document geweigerd"
#: packages/lib/utils/document-audit-logs.ts
msgid "{userName} requested a 2FA token for the document"
@@ -465,11 +470,11 @@ msgstr "{userName} heeft het document bekeken"
#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
msgid "{validationLength, plural, one {Select at least # option} other {Select at least # options}}"
-msgstr "{validationLength, plural, one {Selecteer minstens # optie} other {Selecteer minstens # opties}}"
+msgstr "{validationLength, plural, one {Selecteer minimaal # optie} other {Selecteer minimaal # opties}}"
#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
msgid "{validationLength, plural, one {Select at most # option} other {Select at most # options}}"
-msgstr "{validationLength, plural, one {Selecteer hoogstens # optie} other {Selecteer hoogstens # opties}}"
+msgstr "{validationLength, plural, one {Selecteer maximaal # optie} other {Selecteer maximaal # opties}}"
#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
msgid "{validationLength, plural, one {Select exactly # option} other {Select exactly # options}}"
@@ -477,7 +482,7 @@ msgstr "{validationLength, plural, one {Selecteer precies # optie} other {Select
#: packages/ui/primitives/data-table-pagination.tsx
msgid "{visibleRows, plural, one {Showing # result.} other {Showing # results.}}"
-msgstr "{visibleRows, plural, one {# resultaat weergeven.} other {# resultaten weergeven.}}"
+msgstr "{visibleRows, plural, one {# resultaat wordt getoond.} other {# resultaten worden getoond.}}"
#. placeholder {0}: document.title
#. placeholder {0}: envelope.title
@@ -488,23 +493,23 @@ msgstr "<0>\"{0}\"0>is niet langer beschikbaar om te ondertekenen"
#: packages/email/templates/organisation-account-link-confirmation.tsx
msgid "<0>{organisationName}0> has requested to create an account on your behalf."
-msgstr "<0>{organisationName}0> heeft verzocht een account voor u aan te maken."
+msgstr "<0>{organisationName}0> heeft verzocht om een account voor je aan te maken."
#: packages/email/templates/organisation-account-link-confirmation.tsx
msgid "<0>{organisationName}0> has requested to link your current Documenso account to their organisation."
-msgstr "<0>{organisationName}0> heeft verzocht uw huidige Documenso-account aan hun organisatie te koppelen."
+msgstr "<0>{organisationName}0> heeft verzocht om je huidige Documenso-account aan hun organisatie te koppelen."
#: 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> heeft gevraagd om uw e-mailadres voor hun team op Documenso te gebruiken."
+msgstr "<0>{teamName}0> heeft verzocht om je e-mailadres te gebruiken voor hun team op Documenso."
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "<0>Account management:0> Modify your account settings, permissions, and preferences"
-msgstr "<0>Accountbeheer:0> Wijzig uw accountinstellingen, machtigingen en voorkeuren"
+msgstr "<0>Accountbeheer:0> Je accountinstellingen, rechten en voorkeuren wijzigen"
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "<0>Data access:0> Access all data associated with your account"
-msgstr "<0>Data toegang:0> Toegang tot alle gegevens die aan uw account zijn gekoppeld"
+msgstr "<0>Gegevenstoegang:0> Toegang tot alle gegevens die aan je account zijn gekoppeld"
#: packages/ui/components/document/document-signature-settings-tooltip.tsx
msgid "<0>Drawn0> - A signature that is drawn using a mouse or stylus."
@@ -515,13 +520,17 @@ msgstr "<0>Getekend0> - Een handtekening die is getekend met een muis of stylu
msgid "<0>Email0> - The recipient will be emailed the document to sign, approve, etc."
msgstr "<0>E-mail0> - De ontvanger krijgt het document per e-mail om te ondertekenen, goed te keuren, enz."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "<0>Events:0> All"
+msgstr "<0>Gebeurtenissen:0> Alle"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "<0>Full account access:0> View all your profile information, settings, and activity"
-msgstr "<0>Volledige accounttoegang:0> Bekijk al uw profielinformatie, instellingen en activiteiten"
+msgstr "<0>Volledige accounttoegang:0> Bekijk al je profielinformatie, instellingen en activiteit"
#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Inherit authentication method0> - Use the global action signing authentication method configured in the \"General Settings\" step"
-msgstr "<0>Authenticatiemethode overnemen0> - Gebruik de globale actiesignatuur-authenticatiemethode die is geconfigureerd in de stap \"Algemene instellingen\""
+msgstr "<0>Authenticatiemethode overnemen0> - Gebruik de globale authenticatiemethode voor actie-ondertekening die is geconfigureerd in de stap \"Algemene instellingen\""
#: packages/ui/components/document/document-global-auth-action-select.tsx
msgid "<0>No restrictions0> - No authentication required"
@@ -529,7 +538,7 @@ msgstr "<0>Geen beperkingen0> - Geen authenticatie vereist"
#: packages/ui/components/document/document-global-auth-access-select.tsx
msgid "<0>No restrictions0> - The document can be accessed directly by the URL sent to the recipient"
-msgstr "<0>Geen beperkingen0> - Het document is rechtstreeks toegankelijk via de URL die naar de ontvanger is verzonden"
+msgstr "<0>Geen beperkingen0> - Het document kan rechtstreeks worden geopend via de URL die naar de ontvanger is verzonden"
#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>None0> - No authentication required"
@@ -538,34 +547,34 @@ msgstr "<0>Geen0> - Geen authenticatie vereist"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "<0>None0> - We will generate links which you can send to the recipients manually."
-msgstr "<0>Geen0> - We zullen links genereren die u handmatig naar de ontvangers kunt sturen."
+msgstr "<0>Geen0> - We genereren links die je handmatig naar de ontvangers kunt sturen."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "<0>Note0> - If you use Links in combination with direct templates, you will need to manually send the links to the remaining recipients."
-msgstr "<0>Opmerking0> - Als u links gebruikt in combinatie met directe sjablonen, moet u de links handmatig naar de resterende ontvangers sturen."
+msgstr "<0>Let op0> - Als je Links gebruikt in combinatie met directe sjablonen, moet je de links handmatig naar de overige ontvangers sturen."
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require 2FA0> - The recipient must have an account and 2FA enabled via their settings"
-msgstr "<0>2FA vereisen0> - De ontvanger moet een account en 2FA ingeschakeld hebben via hun instellingen"
+msgstr "<0>2FA vereisen0> - De ontvanger moet een account hebben en 2FA ingeschakeld hebben via zijn of haar instellingen"
#: packages/ui/components/document/document-global-auth-access-select.tsx
msgid "<0>Require account0> - The recipient must be signed in to view the document"
-msgstr "<0>Account vereist0> - De ontvanger moet zijn ingelogd om het document te bekijken"
+msgstr "<0>Account vereisen0> - De ontvanger moet zijn aangemeld om het document te bekijken"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require passkey0> - The recipient must have an account and passkey configured via their settings"
-msgstr "<0>Passkey vereisen0> - De ontvanger moet een account en passkey geconfigureerd hebben via hun instellingen"
+msgstr "<0>Passkey vereisen0> - De ontvanger moet een account hebben en een passkey geconfigureerd hebben via zijn of haar instellingen"
#: packages/ui/components/document/document-global-auth-action-select.tsx
msgid "<0>Require password0> - The recipient must have an account and password configured via their settings, the password will be verified during signing"
-msgstr "<0>Wachtwoord vereisen0> - De ontvanger moet een account en wachtwoord hebben dat via hun instellingen is geconfigureerd, het wachtwoord zal tijdens het ondertekenen worden geverifieerd"
+msgstr "<0>Wachtwoord vereisen0> - De ontvanger moet een account en wachtwoord hebben geconfigureerd via zijn of haar instellingen; het wachtwoord wordt tijdens het ondertekenen geverifieerd"
#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
msgid "<0>Sender:0> All"
-msgstr "<0>Afzender:0> Alles"
+msgstr "<0>Afzender:0> Alle"
#: packages/ui/components/document/document-signature-settings-tooltip.tsx
msgid "<0>Typed0> - A signature that is typed using a keyboard."
@@ -577,11 +586,11 @@ msgstr "<0>Geüpload0> - Een handtekening die is geüpload vanuit een bestand.
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "0 Free organisations left"
-msgstr "0 Gratis organisaties over"
+msgstr "0 gratis organisaties over"
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "1 Free organisations left"
-msgstr "1 Gratis organisatie over"
+msgstr "1 gratis organisatie over"
#: apps/remix/app/components/forms/token.tsx
msgid "1 month"
@@ -597,7 +606,7 @@ msgstr "2FA"
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "2FA Reset"
-msgstr "Reset 2FA"
+msgstr "2FA-reset"
#: apps/remix/app/components/forms/token.tsx
msgid "3 months"
@@ -605,12 +614,12 @@ msgstr "3 maanden"
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "400 Error"
-msgstr "400 Fout"
+msgstr "400-fout"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "401 Unauthorized"
-msgstr "401 Ongeautoriseerd"
+msgstr "401 Niet gemachtigd"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
msgid "404 Document not found"
@@ -624,9 +633,9 @@ msgstr "404 E-maildomein niet gevonden"
msgid "404 not found"
msgstr "404 niet gevonden"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "404 Not found"
msgstr "404 Niet gevonden"
@@ -654,13 +663,13 @@ msgstr "404 Team niet gevonden"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
msgid "404 Template not found"
-msgstr "404 Template niet gevonden"
+msgstr "404 Sjabloon niet gevonden"
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "404 User not found"
msgstr "404 Gebruiker niet gevonden"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "404 Webhook not found"
msgstr "404 Webhook niet gevonden"
@@ -670,7 +679,7 @@ msgstr "5 documenten per maand"
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "5 Documents a month"
-msgstr "5 Documenten per maand"
+msgstr "5 documenten per maand"
#: apps/remix/app/components/general/generic-error-layout.tsx
msgid "500 Internal Server Error"
@@ -686,19 +695,19 @@ msgstr "7 dagen"
#: apps/remix/app/components/forms/send-confirmation-email.tsx
msgid "A confirmation email has been sent, and it should arrive in your inbox shortly."
-msgstr "Een bevestigingsmail is verzonden en zou spoedig in uw inbox moeten aankomen."
+msgstr "Er is een bevestigingsmail verzonden; deze zou binnenkort in je inbox moeten verschijnen."
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "A device capable of accessing, opening, and reading documents"
-msgstr "Een apparaat dat in staat is om documenten te openen, te bekijken en te lezen"
+msgstr "Een apparaat dat toegang kan krijgen tot documenten, deze kan openen en lezen"
#: 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 "Een document is gemaakt door uw directe sjabloon dat van u vraagt om het te {recipientActionVerb}."
+msgstr "Er is een document aangemaakt via je directe sjabloon dat je moet {recipientActionVerb}."
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "A draft document will be created"
-msgstr "Er zal een conceptdocument worden gemaakt"
+msgstr "Er wordt een conceptdocument aangemaakt"
#: packages/lib/utils/document-audit-logs.ts
msgctxt "Audit log format"
@@ -717,76 +726,76 @@ msgstr "Er is een veld bijgewerkt"
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "A means to print or download documents for your records"
-msgstr "Een middel om documenten af te drukken of te downloaden voor uw archief"
+msgstr "Een manier om documenten voor je administratie te printen of te downloaden"
#: packages/email/templates/organisation-join.tsx
msgid "A member has joined your organisation on Documenso"
-msgstr "Een lid heeft zich bij uw organisatie aangesloten op Documenso"
+msgstr "Een lid is toegetreden tot je organisatie op Documenso"
#: packages/lib/jobs/definitions/emails/send-organisation-member-left-email.handler.ts
msgid "A member has left your organisation"
-msgstr "Een lid heeft uw organisatie verlaten"
+msgstr "Een lid heeft je organisatie verlaten"
#: packages/email/templates/organisation-leave.tsx
msgid "A member has left your organisation {organisationName}"
-msgstr "Een lid heeft uw organisatie {organisationName} verlaten"
+msgstr "Een lid heeft je organisatie {organisationName} verlaten"
#: packages/email/templates/organisation-leave.tsx
msgid "A member has left your organisation on Documenso"
-msgstr "Een lid heeft uw organisatie op Documenso verlaten"
+msgstr "Een lid heeft je organisatie op Documenso verlaten"
#: packages/lib/jobs/definitions/emails/send-organisation-member-joined-email.handler.ts
msgid "A new member has joined your organisation"
-msgstr "Een nieuw lid heeft zich bij uw organisatie aangesloten"
+msgstr "Een nieuw lid is toegetreden tot je organisatie"
#: packages/email/templates/organisation-join.tsx
msgid "A new member has joined your organisation {organisationName}"
-msgstr "Een nieuw lid heeft zich aangesloten bij uw organisatie {organisationName}"
+msgstr "Een nieuw lid is toegetreden tot je organisatie {organisationName}"
#: apps/remix/app/components/forms/token.tsx
msgid "A new token was created successfully."
-msgstr "Een nieuwe token is succesvol aangemaakt."
+msgstr "Er is succesvol een nieuw token aangemaakt."
-#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
-msgstr "Er is een e-mail voor wachtwoordherstel verzonden. Indien u een account heeft, zou u deze binnenkort in uw inbox moeten ontvangen."
+msgstr "Er is een e-mail om je wachtwoord te resetten verzonden; als je een account hebt, zou deze binnenkort in je inbox moeten verschijnen."
#: packages/lib/utils/document-audit-logs.ts
msgctxt "Audit log format"
msgid "A recipient was added"
-msgstr "Een ontvanger is toegevoegd"
+msgstr "Er is een ontvanger toegevoegd"
#: packages/lib/utils/document-audit-logs.ts
msgctxt "Audit log format"
msgid "A recipient was removed"
-msgstr "Een ontvanger is verwijderd"
+msgstr "Er is een ontvanger verwijderd"
#: packages/lib/utils/document-audit-logs.ts
msgctxt "Audit log format"
msgid "A recipient was updated"
-msgstr "Een ontvanger is bijgewerkt"
+msgstr "Er is een ontvanger bijgewerkt"
#: packages/email/templates/organisation-account-link-confirmation.tsx
msgid "A request has been made to create an account for you"
-msgstr "Er is een verzoek gedaan om voor u een account aan te maken"
+msgstr "Er is een verzoek ingediend om een account voor je aan te maken"
#: packages/email/templates/organisation-account-link-confirmation.tsx
msgid "A request has been made to link your Documenso account"
-msgstr "Er is een verzoek gedaan om uw Documenso-account te koppelen"
+msgstr "Er is een verzoek ingediend om je Documenso-account te koppelen"
#. placeholder {0}: team.name
#: 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 "Een verzoek om uw e-mail te gebruiken is geïnitieerd door {0} op Documenso"
+msgstr "Er is een verzoek ingediend door {0} op Documenso om je e-mailadres te gebruiken."
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso"
-msgstr "Een geheim dat naar uw URL wordt verzonden zodat u kunt verifiëren dat het verzoek door Documenso is verzonden"
+msgstr "Een geheim dat naar je URL wordt verzonden, zodat je kunt verifiëren dat het verzoek door Documenso is verzonden"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso."
-msgstr "Een geheim dat naar uw URL wordt verzonden zodat u kunt verifiëren dat het verzoek door Documenso is verzonden."
+msgstr "Een geheim dat naar je URL wordt verzonden, zodat je kunt verifiëren dat het verzoek door Documenso is verzonden."
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "A stable internet connection"
@@ -795,11 +804,11 @@ msgstr "Een stabiele internetverbinding"
#: packages/email/templates/team-delete.tsx
#: packages/email/templates/team-delete.tsx
msgid "A team you were a part of has been deleted"
-msgstr "Een team waarvan u onderdeel was is verwijderd"
+msgstr "Een team waar je deel van uitmaakte, is verwijderd."
#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "A unique URL to access your profile"
-msgstr "Een unieke URL om toegang tot uw profiel te krijgen"
+msgstr "Een unieke URL om toegang te krijgen tot je profiel"
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "A unique URL to identify the organisation"
@@ -807,38 +816,38 @@ msgstr "Een unieke URL om de organisatie te identificeren"
#: apps/remix/app/components/forms/organisation-update-form.tsx
msgid "A unique URL to identify your organisation"
-msgstr "Een unieke URL om uw organisatie te identificeren"
+msgstr "Een unieke URL om je organisatie te identificeren"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "A unique URL to identify your team"
-msgstr "Een unieke URL om uw team te identificeren"
+msgstr "Een unieke URL om je team te identificeren"
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
msgid "A verification email will be sent to the provided email."
-msgstr "Er zal een verificatie-e-mail naar het opgegeven e-mailadres worden verzonden."
+msgstr "Er wordt een verificatie-e-mail naar het opgegeven e-mailadres verzonden."
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: packages/email/templates/organisation-invite.tsx
#: packages/email/templates/confirm-team-email.tsx
+#: packages/email/templates/organisation-invite.tsx
msgid "Accept"
msgstr "Accepteren"
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Accept & Link Account"
-msgstr "Accepteer & Koppel Account"
+msgstr "Accepteren & account koppelen"
#: packages/email/templates/organisation-invite.tsx
msgid "Accept invitation to join an organisation on Documenso"
-msgstr "Accepteer uitnodiging om lid te worden van een organisatie op Documenso"
+msgstr "Uitnodiging accepteren om toe te treden tot een organisatie op Documenso"
#: packages/email/templates/confirm-team-email.tsx
msgid "Accept team email request for {teamName} on Documenso"
-msgstr "Accepteer team e-mailverzoek voor {teamName} op Documenso"
+msgstr "Team-e-mailverzoek voor {teamName} op Documenso accepteren"
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Acceptance and Consent"
-msgstr "Acceptatie en toestemmen"
+msgstr "Aanvaarding en toestemming"
#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
msgid "Access disabled"
@@ -848,26 +857,26 @@ msgstr "Toegang uitgeschakeld"
msgid "Access enabled"
msgstr "Toegang ingeschakeld"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Account"
msgstr "Account"
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Account Authentication"
-msgstr "Accountverificatie"
+msgstr "Accountauthenticatie"
#: packages/email/templates/organisation-account-link-confirmation.tsx
msgid "Account creation request"
-msgstr "Accountaanmaakverzoek"
+msgstr "Verzoek tot aanmaken account"
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Account Creation Request"
-msgstr "Account Aanmaakverzoek"
+msgstr "Verzoek tot aanmaken account"
-#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "Account deleted"
msgstr "Account verwijderd"
@@ -881,11 +890,11 @@ msgstr "Account ingeschakeld"
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Account Linking Request"
-msgstr "Account Koppelverzoek"
+msgstr "Verzoek tot koppelen account"
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Account Re-Authentication"
-msgstr "Opnieuw Verifiëren van Account"
+msgstr "Account‑herauthenticatie"
#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Account unlinked"
@@ -893,88 +902,92 @@ msgstr "Account ontkoppeld"
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Acknowledgment"
-msgstr "Erkenning"
+msgstr "Kennisgeving"
-#: 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/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
+#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Action"
msgstr "Actie"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Actions"
msgstr "Acties"
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
msgid "Active"
msgstr "Actief"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Active sessions"
msgstr "Actieve sessies"
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "Active Subscriptions"
-msgstr "Actieve Abonnementen"
+msgstr "Actieve abonnementen"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Add"
msgstr "Toevoegen"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Add 2 or more signers to enable signing order."
-msgstr "Voeg 2 of meer ondertekenaars toe om de ondertekeningsvolgorde in te schakelen."
+msgstr "Voeg 2 of meer ondertekenaars toe om ondertekeningsvolgorde in te schakelen."
#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
msgid "Add a custom domain to send emails on behalf of your organisation. We'll generate DKIM records that you need to add to your DNS provider."
-msgstr "Voeg een aangepast domein toe om e-mails namens je organisatie te verzenden. We genereren DKIM-records die je moet toevoegen aan je DNS-provider."
+msgstr "Voeg een aangepast domein toe om e-mails te verzenden namens je organisatie. We genereren DKIM-records die je aan je DNS-provider moet toevoegen."
#: packages/ui/primitives/document-dropzone.tsx
msgid "Add a document"
-msgstr "Voeg een document toe"
+msgstr "Een document toevoegen"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Add a URL to redirect the user to once the document is signed"
-msgstr "Voeg een URL toe om de gebruiker om te leiden zodra het document is ondertekend"
+msgstr "Voeg een URL toe waarnaar de gebruiker wordt doorgestuurd zodra het document is ondertekend."
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add all relevant fields for each recipient."
-msgstr "Voeg alle relevante velden voor elke ontvanger toe."
+msgstr "Voeg alle relevante velden toe voor elke ontvanger."
#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add all relevant placeholders for each recipient."
-msgstr "Voeg alle relevante placeholders voor elke ontvanger toe."
+msgstr "Voeg alle relevante placeholders toe voor elke ontvanger."
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Add an authenticator to serve as a secondary authentication method for signing documents."
@@ -982,29 +995,29 @@ msgstr "Voeg een authenticator toe als secundaire authenticatiemethode voor het
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Add an authenticator to serve as a secondary authentication method when signing in, or when signing documents."
-msgstr "Voeg een authenticator toe als secundaire authenticatiemethode tijdens het inloggen of het ondertekenen van documenten."
+msgstr "Voeg een authenticator toe als secundaire authenticatiemethode bij het inloggen of bij het ondertekenen van documenten."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: 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 "Voeg een externe ID toe aan het document. Dit kan worden gebruikt om het document in externe systemen te identificeren."
+msgstr "Voeg een externe ID toe aan het document. Deze kan worden gebruikt om het document in externe systemen te identificeren."
#: 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 "Voeg een externe ID toe aan de sjabloon. Dit kan worden gebruikt voor identificatie in externe systemen."
+msgstr "Voeg een externe ID toe aan de sjabloon. Deze kan worden gebruikt voor identificatie in externe systemen."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
msgid "Add and configure multiple documents"
-msgstr "Voeg meerdere documenten toe en configureer deze"
+msgstr "Voeg meerdere documenten toe en configureer ze"
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
msgid "Add another option"
-msgstr "Voeg een andere optie toe"
+msgstr "Nog een optie toevoegen"
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
msgid "Add another value"
-msgstr "Voeg een andere waarde toe"
+msgstr "Nog een waarde toevoegen"
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Add Attachment"
@@ -1016,21 +1029,21 @@ msgstr "Aangepast e-maildomein toevoegen"
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
msgid "Add email"
-msgstr "Toevoegen e-mail"
+msgstr "E‑mail toevoegen"
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
msgid "Add Email"
-msgstr "E-mail toevoegen"
+msgstr "E-mailadres toevoegen"
#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
msgid "Add Email Domain"
msgstr "E-maildomein toevoegen"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add Fields"
msgstr "Velden toevoegen"
@@ -1066,39 +1079,39 @@ msgstr "Meer toevoegen"
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Add myself"
-msgstr "Voeg mijzelf toe"
+msgstr "Mijzelf toevoegen"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Add Myself"
-msgstr "Voeg mijzelf toe"
+msgstr "Mijzelf toevoegen"
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
msgid "Add Organisation Email"
-msgstr "Organisatie-e-mail toevoegen"
+msgstr "E-mailadres voor organisatie toevoegen"
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "Add passkey"
-msgstr "Voeg wachtwoord toe"
+msgstr "Passkey toevoegen"
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Add Placeholder Recipient"
-msgstr "Voeg plaatsvervangende ontvanger toe"
+msgstr "Plaatshouder-ontvanger toevoegen"
#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add Placeholders"
-msgstr "Plaatsen toevoegen"
+msgstr "Placeholders toevoegen"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
msgid "Add Recipients"
msgstr "Ontvangers toevoegen"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Add Signer"
-msgstr "Voeg ondertekenaar toe"
+msgstr "Ondertekenaar toevoegen"
#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "Add Signers"
@@ -1106,29 +1119,29 @@ msgstr "Ondertekenaars toevoegen"
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
msgid "Add signers and configure signing preferences"
-msgstr "Voeg ondertekenaars toe en configureer ondertekenvoorkeuren"
+msgstr "Voeg ondertekenaars toe en configureer ondertekeningsvoorkeuren"
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
msgid "Add team email"
-msgstr "Team-e-mail toevoegen"
+msgstr "Team‑e‑mail toevoegen"
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Add text"
-msgstr "Voeg tekst toe"
+msgstr "Tekst toevoegen"
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Add text to the field"
-msgstr "Voeg tekst toe aan het veld"
+msgstr "Tekst aan het veld toevoegen"
#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "Add the people who will sign the document."
-msgstr "Voeg de mensen toe die het document zullen ondertekenen."
+msgstr "Voeg de personen toe die het document zullen ondertekenen."
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Add the recipients to create the document with"
-msgstr "Voeg de ontvangers toe om het document mee te maken"
+msgstr "Voeg de ontvangers toe met wie je het document wilt aanmaken"
#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
msgid "Add these DNS records to verify your domain ownership"
@@ -1136,63 +1149,64 @@ msgstr "Voeg deze DNS-records toe om je domeineigendom te verifiëren"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Add this URL to your provider's allowed redirect URIs"
-msgstr "Voeg deze URL toe aan de toegestane omleidings-URI's van uw provider"
+msgstr "Voeg deze URL toe aan de toegestane redirect-URI's van je provider"
#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Additional brand information to display at the bottom of emails"
-msgstr "Aanvullende merkinformatie om onder aan e-mails weer te geven"
+msgstr "Aanvullende merkinformatie om onderaan e‑mails weer te geven"
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Admin"
-msgstr "Admin"
+msgstr "Beheerder"
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
msgid "Admin Actions"
msgstr "Beheerdersacties"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Admin panel"
-msgstr "Beheerderspaneel"
+msgstr "Beheerpaneel"
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
msgid "Admin Panel"
-msgstr "Adminpaneel"
+msgstr "Beheerderspaneel"
#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
msgid "Admins only"
msgstr "Alleen beheerders"
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Advanced Options"
msgstr "Geavanceerde opties"
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Advanced settings"
msgstr "Geavanceerde instellingen"
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
msgid "Advanced Settings"
-msgstr "Geavanceerde Instellingen"
+msgstr "Geavanceerde instellingen"
#: 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."
-msgstr "Na het elektronisch ondertekenen van een document wordt u in de gelegenheid gesteld om het document voor uw archief te bekijken, te downloaden en te printen. Het wordt aanbevolen om een kopie van alle elektronisch ondertekende documenten voor uw persoonlijke archief te bewaren. Wij bewaren ook een kopie van het ondertekende document voor onze administratie, maar we kunnen mogelijk geen kopie van het ondertekende document aan u verstrekken na een bepaalde periode."
+msgstr "Na het elektronisch ondertekenen van een document krijg je de mogelijkheid om het document te bekijken, te downloaden en te printen voor je eigen administratie. Het wordt sterk aanbevolen dat je een kopie van alle elektronisch ondertekende documenten bewaart voor je persoonlijke administratie. Wij bewaren ook een kopie van het ondertekende document voor onze administratie, maar mogelijk kunnen we je na een bepaalde tijd geen kopie meer verstrekken."
#: 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 "Na verzending wordt er automatisch een document gegenereerd en aan uw documentenpagina toegevoegd. U ontvangt ook een melding via e-mail."
+msgstr "Na indiening wordt er automatisch een document gegenereerd en toegevoegd aan je documentenpagina. Je ontvangt ook een melding per e-mail."
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "All"
-msgstr "Alles"
+msgstr "Alle"
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "All documents"
@@ -1204,24 +1218,28 @@ msgstr "Alle documenten zijn voltooid!"
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
msgid "All documents have been processed. Any new documents that are sent or received will show here."
-msgstr "Alle documenten zijn verwerkt. Eventuele nieuwe documenten die worden verzonden of ontvangen, zullen hier verschijnen."
+msgstr "Alle documenten zijn verwerkt. Nieuwe verzonden of ontvangen documenten verschijnen hier."
#: 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."
-msgstr "Alle documenten met betrekking tot het elektronisch ondertekenproces worden elektronisch via ons platform of via e-mail aangeboden. Het is uw verantwoordelijkheid om ervoor te zorgen dat uw e-mailadres actueel is en dat u onze e-mails kunt ontvangen en openen."
+msgstr "Alle documenten die betrekking hebben op het elektronische ondertekeningsproces worden je elektronisch verstrekt via ons platform of per e‑mail. Het is jouw verantwoordelijkheid ervoor te zorgen dat je e‑mailadres actueel is en dat je onze e‑mails kunt ontvangen en openen."
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
msgid "All email domains have been synced successfully"
msgstr "Alle e-maildomeinen zijn succesvol gesynchroniseerd"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "All Folders"
-msgstr "Alle Mappen"
+msgstr "Alle mappen"
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "All inserted signatures will be voided"
-msgstr "Alle ingevoegde handtekeningen zijn ongeldig verklaard"
+msgstr "Alle ingevoerde handtekeningen worden ongeldig gemaakt"
+
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
+msgid "All recipients have signed. The document is being processed and you will receive an email copy shortly."
+msgstr "Alle ontvangers hebben ondertekend. Het document wordt verwerkt en u ontvangt binnenkort een kopie per e-mail."
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "All recipients will be notified"
@@ -1229,46 +1247,46 @@ msgstr "Alle ontvangers worden op de hoogte gebracht"
#: packages/email/template-components/template-document-cancel.tsx
msgid "All signatures have been voided."
-msgstr "Alle handtekeningen zijn ongeldig verklaard."
+msgstr "Alle handtekeningen zijn ongeldig gemaakt."
#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
msgid "All signing links have been copied to your clipboard."
-msgstr "Alle ondertekeningslinks zijn naar uw klembord gekopieerd."
+msgstr "Alle ondertekeningslinks zijn naar je klembord gekopieerd."
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "All templates"
msgstr "Alle sjablonen"
-#: apps/remix/app/components/general/period-selector.tsx
#: apps/remix/app/components/filters/date-range-filter.tsx
+#: apps/remix/app/components/general/period-selector.tsx
msgid "All Time"
-msgstr "Alle tijden"
+msgstr "Alle tijd"
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
msgid "Allow all organisation members to access this team"
-msgstr "Sta alle organisatieleden toe toegang tot dit team te krijgen"
+msgstr "Alle organisatieleden toestaan toegang te hebben tot dit team"
#: packages/email/templates/confirm-team-email.tsx
msgid "Allow document recipients to reply directly to this email address"
-msgstr "Sta documentontvangers toe om direct te antwoorden op dit e-mailadres"
+msgstr "Sta documentontvangers toe direct op dit e-mailadres te antwoorden."
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Allow signers to dictate next signer"
-msgstr "Ondertekenaars toestaan om de volgende ondertekenaar te bepalen"
+msgstr "Ondertekenaars toestaan de volgende ondertekenaar te bepalen"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Allowed Email Domains"
-msgstr "Toegestane E-maildomeinen"
+msgstr "Toegestane e-maildomeinen"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Allowed Signature Types"
-msgstr "Toegestane handtekeningtypes"
+msgstr "Toegestane handtekeningtypen"
#: apps/remix/app/components/tables/admin-claims-table.tsx
msgid "Allowed teams"
@@ -1276,11 +1294,11 @@ msgstr "Toegestane teams"
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Allows authenticating using biometrics, password managers, hardware keys, etc."
-msgstr "Maakt authenticatie mogelijk met biometrie, wachtwoordbeheerders, hardware-sleutels, etc."
+msgstr "Maakt authenticatie mogelijk met biometrie, wachtwoordbeheerders, hardware‑sleutels, enz."
#: apps/remix/app/components/forms/signup.tsx
msgid "Already have an account? <0>Sign in instead0>"
-msgstr "Heb je al een account? <0>Meld je aan0>"
+msgstr "Heb je al een account? <0>Log dan in0>"
#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
msgid "Amount"
@@ -1288,37 +1306,37 @@ msgstr "Bedrag"
#: packages/email/templates/document-super-delete.tsx
msgid "An admin has deleted your document \"{documentName}\"."
-msgstr "Een beheerder heeft uw document \"{documentName}\" verwijderd."
+msgstr "Een beheerder heeft je document \"{documentName}\" verwijderd."
#: 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."
-msgstr "Een door u op ons platform verstrekte elektronische handtekening, verkregen door door te klikken naar een document en uw naam in te voeren, of elke andere elektronische ondertekenmethode die wij bieden, is juridisch bindend. Het heeft dezelfde waarde en afdwingbaarheid als een handmatige handtekening geschreven met inkt op papier."
+msgstr "Een elektronische handtekening die je via ons platform zet, door door te klikken naar een document en je naam in te voeren of via een andere elektronische ondertekeningsmethode die wij aanbieden, is juridisch bindend. Deze heeft dezelfde rechtsgeldigheid en afdwingbaarheid als een met pen op papier geschreven handtekening."
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "An email account"
-msgstr "Een e-mailaccount"
+msgstr "Een e‑mailaccount"
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
msgid "An email containing an invitation will be sent to each member."
-msgstr "Er wordt een e-mail met een uitnodiging naar elk lid verzonden."
+msgstr "Naar elk lid wordt een e‑mail met een uitnodiging gestuurd."
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
msgid "An email with this address already exists."
-msgstr "Er bestaat al een e-mail met dit adres."
+msgstr "Er bestaat al een e-mailadres met dit adres."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/token.tsx
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.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
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "An error occurred"
msgstr "Er is een fout opgetreden"
@@ -1328,17 +1346,17 @@ msgstr "Er is een fout opgetreden tijdens het uploaden."
#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "An error occurred while adding fields."
-msgstr "Er is een fout opgetreden bij het toevoegen van velden."
+msgstr "Er is een fout opgetreden tijdens het toevoegen van velden."
+#: 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/template/template-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "An error occurred while adding signers."
msgstr "Er is een fout opgetreden bij het toevoegen van ondertekenaars."
#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "An error occurred while adding the fields."
-msgstr "Er is een fout opgetreden tijdens het toevoegen van de velden."
+msgstr "Er is een fout opgetreden bij het toevoegen van de velden."
#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "An error occurred while auto-saving the document settings."
@@ -1358,7 +1376,7 @@ msgstr "Er is een fout opgetreden tijdens het automatisch opslaan van de sjabloo
#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "An error occurred while auto-saving the template placeholders."
-msgstr "Er is een fout opgetreden tijdens het automatisch opslaan van de sjabloonplaatsaanduidingen."
+msgstr "Er is een fout opgetreden tijdens het automatisch opslaan van de sjabloonplaatshouders."
#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "An error occurred while auto-saving the template settings."
@@ -1366,43 +1384,43 @@ msgstr "Er is een fout opgetreden tijdens het automatisch opslaan van de sjabloo
#: 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 "Er is een fout opgetreden tijdens het automatisch ondertekenen van het document, sommige velden kunnen niet ondertekend zijn. Controleer en onderteken handmatig de nog resterende velden."
+msgstr "Er is een fout opgetreden tijdens het automatisch ondertekenen van het document; mogelijk zijn sommige velden niet ondertekend. Controleer het document en onderteken eventueel resterende velden handmatig."
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "An error occurred while creating document from template."
-msgstr "Er is een fout opgetreden tijdens het maken van een document uit sjabloon."
+msgstr "Er is een fout opgetreden bij het aanmaken van een document op basis van de sjabloon."
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
msgid "An error occurred while creating the webhook. Please try again."
-msgstr "Er is een fout opgetreden tijdens het maken van de webhook. Probeer het opnieuw."
+msgstr "Er is een fout opgetreden bij het aanmaken van de webhook. Probeer het opnieuw."
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "An error occurred while deleting the user."
-msgstr "Er is een fout opgetreden bij het verwijderen van de gebruiker."
+msgstr "Er is een fout opgetreden tijdens het verwijderen van de gebruiker."
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "An error occurred while disabling direct link signing."
-msgstr "Er is een fout opgetreden bij het uitschakelen van directe linkondertekening."
+msgstr "Er is een fout opgetreden bij het uitschakelen van ondertekenen via directe link."
#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
msgid "An error occurred while disabling the user."
-msgstr "Er is een fout opgetreden bij het uitschakelen van de gebruiker."
+msgstr "Er is een fout opgetreden tijdens het uitschakelen van de gebruiker."
#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
msgid "An error occurred while duplicating template."
-msgstr "Er is een fout opgetreden bij het dupliceren van het sjabloon."
+msgstr "Er is een fout opgetreden bij het dupliceren van de sjabloon."
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "An error occurred while enabling direct link signing."
-msgstr "Er is een fout opgetreden bij het inschakelen van directe linkondertekening."
+msgstr "Er is een fout opgetreden bij het inschakelen van ondertekenen via directe link."
#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
msgid "An error occurred while enabling the user."
-msgstr "Er is een fout opgetreden bij het inschakelen van de gebruiker."
+msgstr "Er is een fout opgetreden tijdens het inschakelen van de gebruiker."
-#: packages/ui/primitives/pdf-viewer.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "An error occurred while loading the document."
-msgstr "Er is een fout opgetreden bij het laden van het document."
+msgstr "Er is een fout opgetreden tijdens het laden van het document."
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
msgid "An error occurred while moving the document."
@@ -1410,22 +1428,22 @@ msgstr "Er is een fout opgetreden bij het verplaatsen van het document."
#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "An error occurred while moving the template."
-msgstr "Er is een fout opgetreden bij het verplaatsen van het sjabloon."
+msgstr "Er is een fout opgetreden bij het verplaatsen van de sjabloon."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while removing the field."
msgstr "Er is een fout opgetreden bij het verwijderen van het veld."
#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
msgid "An error occurred while removing the selection."
-msgstr "Er is een fout opgetreden bij het verwijderen van de selectie."
+msgstr "Er is een fout opgetreden tijdens het verwijderen van de selectie."
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
msgid "An error occurred while removing the signature."
@@ -1433,7 +1451,7 @@ msgstr "Er is een fout opgetreden bij het verwijderen van de handtekening."
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "An error occurred while resetting two factor authentication for the user."
-msgstr "Er is een fout opgetreden bij het opnieuw instellen van tweefactorauthenticatie voor de gebruiker."
+msgstr "Er is een fout opgetreden tijdens het resetten van twee-factor-authenticatie voor de gebruiker."
#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "An error occurred while sending the document."
@@ -1441,60 +1459,60 @@ msgstr "Er is een fout opgetreden bij het verzenden van het document."
#: apps/remix/app/components/forms/send-confirmation-email.tsx
msgid "An error occurred while sending your confirmation email"
-msgstr "Er is een fout opgetreden bij het verzenden van uw bevestigingsmail"
+msgstr "Er is een fout opgetreden bij het verzenden van je bevestigingsmail"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing as assistant."
-msgstr "Er is een fout opgetreden bij het ondertekenen als assistent."
+msgstr "Er is een fout opgetreden tijdens het ondertekenen als assistent."
-#: 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
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing the document."
msgstr "Er is een fout opgetreden bij het ondertekenen van het document."
#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
msgid "An error occurred while signing the field."
-msgstr "Er is een fout opgetreden tijdens het ondertekenen van het veld."
+msgstr "Er is een fout opgetreden bij het ondertekenen van het veld."
#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/general/billing-plans.tsx
msgid "An error occurred while trying to create a checkout session."
-msgstr "Er is een fout opgetreden bij het maken van een afrekeningssessie."
+msgstr "Er is een fout opgetreden bij het aanmaken van een betaalpagina."
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "An error occurred while updating the document settings."
-msgstr "Er is een fout opgetreden bij het updaten van de documentinstellingen."
+msgstr "Er is een fout opgetreden bij het bijwerken van de documentinstellingen."
#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
msgid "An error occurred while updating the signature."
-msgstr "Er is een fout opgetreden bij het updaten van de handtekening."
+msgstr "Er is een fout opgetreden bij het bijwerken van de handtekening."
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "An error occurred while updating your profile."
-msgstr "Er is een fout opgetreden bij het updaten van uw profiel."
+msgstr "Er is een fout opgetreden bij het bijwerken van je profiel."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "An error occurred while uploading your document."
-msgstr "Er is een fout opgetreden bij het uploaden van uw document."
+msgstr "Er is een fout opgetreden bij het uploaden van je document."
#: apps/remix/app/components/forms/support-ticket-form.tsx
msgid "An error occurred. Please try again later."
@@ -1502,73 +1520,73 @@ msgstr "Er is een fout opgetreden. Probeer het later opnieuw."
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "An organisation wants to create an account for you. Please review the details below."
-msgstr "Een organisatie wil een account voor u aanmaken. Bekijk de onderstaande details."
+msgstr "Een organisatie wil een account voor je aanmaken. Controleer de onderstaande details."
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "An organisation wants to link your account. Please review the details below."
-msgstr "Een organisatie wil uw account koppelen. Bekijk de onderstaande details."
+msgstr "Een organisatie wil je account koppelen. Controleer de onderstaande details."
#: apps/remix/app/components/general/generic-error-layout.tsx
msgid "An unexpected error occurred."
msgstr "Er is een onverwachte fout opgetreden."
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/public-profile-form.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/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/general/app-command-menu.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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/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/signin.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/profile.tsx
-#: apps/remix/app/components/forms/organisation-update-form.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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "An unknown error occurred"
msgstr "Er is een onbekende fout opgetreden"
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
msgid "An unknown error occurred while creating the folder."
-msgstr "Er is een onbekende fout opgetreden bij het maken van de map."
+msgstr "Er is een onbekende fout opgetreden tijdens het aanmaken van de map."
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
msgid "An unknown error occurred while deleting the folder."
-msgstr "Er is een onbekende fout opgetreden bij het verwijderen van de map."
+msgstr "Er is een onbekende fout opgetreden tijdens het verwijderen van de map."
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
msgid "An unknown error occurred while moving the folder."
@@ -1576,33 +1594,33 @@ msgstr "Er is een onbekende fout opgetreden tijdens het verplaatsen van de map."
#: apps/remix/app/routes/_authenticated+/inbox.tsx
msgid "Any documents that you have been invited to will appear here"
-msgstr "Alle documenten waarvoor je bent uitgenodigd verschijnen hier"
+msgstr "Documenten waarvoor je aandacht nodig is, verschijnen hier"
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
msgid "Any Source"
-msgstr "Elke Bron"
+msgstr "Elke bron"
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
msgid "Any Status"
-msgstr "Elke Status"
+msgstr "Elke status"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "API Tokens"
-msgstr "API-tokens"
+msgstr "API‑tokens"
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "App Version"
-msgstr "App Versie"
+msgstr "App‑versie"
-#: apps/remix/app/components/tables/inbox-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-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Approve"
msgstr "Goedkeuren"
@@ -1611,9 +1629,9 @@ msgctxt "Recipient role action verb"
msgid "Approve"
msgstr "Goedkeuren"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Approve Document"
msgstr "Document goedkeuren"
@@ -1628,26 +1646,26 @@ msgstr "Goedgekeurd"
#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Approver"
-msgstr "Goedkeurder"
+msgstr "Beoordelaar"
#: packages/lib/constants/recipient-roles.ts
msgctxt "Recipient role name"
msgid "Approver"
-msgstr "Goedkeurder"
+msgstr "Beoordelaar"
#: packages/lib/constants/recipient-roles.ts
msgctxt "Recipient role plural name"
msgid "Approvers"
-msgstr "Goedkeurders"
+msgstr "Beoordelaars"
#: packages/lib/constants/recipient-roles.ts
msgctxt "Recipient role progressive verb"
msgid "Approving"
-msgstr "Goedkeuren"
+msgstr "Aan het goedkeuren"
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
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."
-msgstr "Weet u zeker dat u het document wilt voltooien? Deze actie kan niet ongedaan worden gemaakt. Zorg ervoor dat u alle relevante velden vooraf hebt ingevuld voordat u doorgaat."
+msgstr "Weet je zeker dat je het document wilt voltooien? Deze actie kan niet ongedaan worden gemaakt. Zorg ervoor dat je alle relevante velden volledig vooraf hebt ingevuld voordat je doorgaat."
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
msgid "Are you sure you want to delete the following claim?"
@@ -1655,19 +1673,19 @@ msgstr "Weet je zeker dat je de volgende claim wilt verwijderen?"
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
msgid "Are you sure you want to delete this folder?"
-msgstr "Weet u zeker dat u deze map wilt verwijderen?"
+msgstr "Weet je zeker dat je deze map wilt verwijderen?"
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
msgid "Are you sure you want to delete this token?"
-msgstr "Weet u zeker dat u deze token wilt verwijderen?"
+msgstr "Weet je zeker dat je dit token wilt verwijderen?"
#: 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."
-msgstr "Weet je zeker dat je dit document wilt afwijzen? Deze actie kan niet ongedaan worden gemaakt."
+msgstr "Weet je zeker dat je dit document wilt weigeren? Deze actie kan niet ongedaan worden gemaakt."
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
-msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey."
-msgstr "Weet u zeker dat u de <0>{passkeyName}0> passkey wilt verwijderen."
+msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey?"
+msgstr "Weet u zeker dat u de passkey <0>{passkeyName}0> wilt verwijderen?"
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
msgid "Are you sure you wish to delete this organisation?"
@@ -1675,46 +1693,46 @@ msgstr "Weet je zeker dat je deze organisatie wilt verwijderen?"
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
msgid "Are you sure you wish to delete this team?"
-msgstr "Weet u zeker dat u dit team wilt verwijderen?"
+msgstr "Weet je zeker dat je dit team wilt verwijderen?"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/components/general/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Are you sure?"
-msgstr "Weet u het zeker?"
+msgstr "Weet je het zeker?"
#: apps/remix/app/components/tables/organisation-groups-table.tsx
msgid "Assigned Teams"
-msgstr "Toegewezen Teams"
+msgstr "Toegewezen teams"
#: packages/lib/constants/recipient-roles.ts
msgctxt "Recipient role action verb"
msgid "Assist"
-msgstr "Helpen"
+msgstr "Assisteren"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Assist Document"
-msgstr "Assisteer Document"
+msgstr "Document assisteren"
#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
msgid "Assist with signing"
-msgstr "Assisteer bij ondertekening"
+msgstr "Helpen bij het ondertekenen"
#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Assistant"
@@ -1727,7 +1745,7 @@ msgstr "Assistent"
#: packages/ui/components/recipient/recipient-role-select.tsx
msgid "Assistant role is only available when the document is in sequential signing mode."
-msgstr "De assistent rol is alleen beschikbaar wanneer het document in de sequentiële ondertekenmodus staat."
+msgstr "De rol Assistent is alleen beschikbaar wanneer het document in sequentiële ondertekeningsmodus staat."
#: packages/lib/constants/recipient-roles.ts
msgctxt "Recipient role plural name"
@@ -1736,7 +1754,7 @@ msgstr "Assistenten"
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
msgid "Assistants and Copy roles are currently not compatible with the multi-sign experience."
-msgstr "Assistenten en Kopie rollen zijn momenteel niet compatibel met de multi-sign-ervaring."
+msgstr "Assistent- en Kopie-rollen zijn momenteel niet compatibel met de multi-sign-ervaring."
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
msgid "Assisted"
@@ -1745,20 +1763,20 @@ msgstr "Geassisteerd"
#: packages/lib/constants/recipient-roles.ts
msgctxt "Recipient role actioned"
msgid "Assisted"
-msgstr "Geholpen"
+msgstr "Geassisteerd"
#: packages/lib/constants/recipient-roles.ts
msgctxt "Recipient role progressive verb"
msgid "Assisting"
-msgstr "Helpen"
+msgstr "Aan het assisteren"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
-#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/lib/types/document-meta.ts
+#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
msgid "At least one signature type must be enabled"
-msgstr "Er moet ten minste één handtekeningtype zijn ingeschakeld"
+msgstr "Er moet ten minste één handtekeningtype zijn ingeschakeld."
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Attachment added successfully."
@@ -1768,9 +1786,9 @@ msgstr "Bijlage succesvol toegevoegd."
msgid "Attachment removed successfully."
msgstr "Bijlage succesvol verwijderd."
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Attachments"
@@ -1778,26 +1796,26 @@ msgstr "Bijlagen"
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
msgid "Attempts sealing the document again, useful for after a code change has occurred to resolve an erroneous document."
-msgstr "Probeert het document opnieuw te verzegelen, handig na een codewijziging om een fout document op te lossen."
+msgstr "Probeert het document opnieuw te verzegelen, handig nadat een codewijziging is gedaan om een foutief document op te lossen."
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Audit Log"
-msgstr "Auditlogboek"
+msgstr "Auditlog"
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
msgid "Audit Logs"
-msgstr "Auditlogboeken"
+msgstr "Auditlogs"
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Authentication Level"
-msgstr "Verificatieniveau"
+msgstr "Authenticatieniveau"
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Authentication Portal Not Found"
msgstr "Authenticatieportaal niet gevonden"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Authentication required"
msgstr "Authenticatie vereist"
@@ -1815,20 +1833,20 @@ msgstr "Avatar bijgewerkt"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
msgid "Awaiting email confirmation"
-msgstr "Wachten op bevestiging van e-mail"
+msgstr "Wacht op e‑mailbevestiging"
-#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
msgid "Back"
msgstr "Terug"
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Back home"
-msgstr "Terug naar huis"
+msgstr "Terug naar startpagina"
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "Background Color"
@@ -1838,14 +1856,14 @@ msgstr "Achtergrondkleur"
msgid "Background Jobs"
msgstr "Achtergrondtaken"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Backup Code"
-msgstr "Back-upcode"
+msgstr "Back‑upcode"
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
msgid "Backup codes"
-msgstr "Back-upcodes"
+msgstr "Back‑upcodes"
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "Banner Updated"
@@ -1853,14 +1871,15 @@ msgstr "Banner bijgewerkt"
#: packages/email/template-components/template-confirmation-email.tsx
msgid "Before you get started, please confirm your email address by clicking the button below:"
-msgstr "Voordat u begint, bevestig alstublieft uw e-mailadres door op de knop hieronder te klikken:"
+msgstr "Bevestig je e-mailadres door op de onderstaande knop te klikken voordat je begint:"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
msgid "Billing"
-msgstr "Facturering"
+msgstr "Facturatie"
#: packages/ui/primitives/signature-pad/signature-pad-color-picker.tsx
msgid "Black"
@@ -1872,37 +1891,37 @@ msgstr "Blauw"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Bottom"
-msgstr "Onderkant"
+msgstr "Onder"
#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Brand Details"
-msgstr "Merkgegevens"
+msgstr "Merkdetails"
#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Brand Website"
-msgstr "Merkwebsite"
+msgstr "Website van merk"
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
msgid "Branding"
msgstr "Branding"
#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Branding Logo"
-msgstr "Brandinglogo"
+msgstr "Branding-logo"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Branding Preferences"
-msgstr "Merkvoorkeuren"
+msgstr "Brandingvoorkeuren"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
msgid "Branding preferences updated"
-msgstr "Merkvoorkeuren bijgewerkt"
+msgstr "Brandingvoorkeuren bijgewerkt"
#: apps/remix/app/components/tables/settings-security-activity-table.tsx
msgid "Browser"
@@ -1910,29 +1929,29 @@ msgstr "Browser"
#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
msgid "Bulk Copy"
-msgstr "Bulk Kopiëren"
+msgstr "Bulk kopiëren"
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
msgid "Bulk Import"
-msgstr "Bulk import"
+msgstr "Bulkimport"
#. placeholder {0}: template.title
#: packages/lib/jobs/definitions/internal/bulk-send-template.handler.ts
msgid "Bulk Send Complete: {0}"
-msgstr "Bulkverzending Voltooid: {0}"
+msgstr "Bulkverzending voltooid: {0}"
#: packages/email/templates/bulk-send-complete.tsx
msgid "Bulk send operation complete for template \"{templateName}\""
-msgstr "Bulkverzending voltooid voor sjabloon \"{templateName}\""
+msgstr "Bulkverzending voor sjabloon \"{templateName}\" is voltooid"
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
msgid "Bulk Send Template via CSV"
-msgstr "Sjabloon in bulk verzenden via CSV"
+msgstr "Sjabloon bulksgewijs verzenden via CSV"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Bulk Send via CSV"
-msgstr "Bulk verzenden via CSV"
+msgstr "Bulksgewijs verzenden via CSV"
#: packages/email/templates/organisation-invite.tsx
msgid "by <0>{senderName}0>"
@@ -1941,11 +1960,11 @@ msgstr "door <0>{senderName}0>"
#. placeholder {0}: organisation.name
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "By accepting this request, you grant {0} the following permissions:"
-msgstr "Door dit verzoek te accepteren, verleent u {0} de volgende machtigingen:"
+msgstr "Door dit verzoek te accepteren, geef je {0} de volgende rechten:"
#: packages/email/templates/confirm-team-email.tsx
msgid "By accepting this request, you will be granting <0>{teamName}0> access to:"
-msgstr "Door deze aanvraag te accepteren, geeft u <0>{teamName}0> toegang tot:"
+msgstr "Door dit verzoek te accepteren, geef je <0>{teamName}0> toegang tot:"
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "By deleting this document, the following will occur:"
@@ -1953,118 +1972,117 @@ msgstr "Door dit document te verwijderen, gebeurt het volgende:"
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
msgid "By enabling 2FA, you will be required to enter a code from your authenticator app every time you sign in using email password."
-msgstr "Met het inschakelen van 2FA moet u elke keer dat u inlogt met e-mail en wachtwoord een code invoeren vanuit uw authenticator-app."
+msgstr "Door 2FA in te schakelen, moet je elke keer dat je inlogt met e-mail en wachtwoord een code uit je authenticator-app invoeren."
#: 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."
-msgstr "Door verder te gaan met het gebruik van de elektronische handtekeningsdienst van Documenso, bevestigt u dat u deze openbaarmaking hebt gelezen en begrepen. U gaat akkoord met alle voorwaarden met betrekking tot het gebruik van elektronische handtekeningen en elektronische transacties zoals hierin uiteengezet."
+msgstr "Door gebruik te maken van de elektronische ondertekeningsdienst van Documenso bevestig je dat je deze kennisgeving hebt gelezen en begrepen. Je gaat akkoord met alle voorwaarden die hier zijn uiteengezet met betrekking tot het gebruik van elektronische handtekeningen en elektronische transacties."
#: 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."
-msgstr "Door door te gaan met uw elektronische handtekening, erkent en stemt u ermee in dat deze zal worden gebruikt om het betreffende document te ondertekenen en dezelfde juridische geldigheid heeft als een handgeschreven handtekening. Door het elektronisch ondertekenproces te voltooien, bevestigt u dat u deze voorwaarden begrijpt en accepteert."
+msgstr "Door verder te gaan met je elektronische handtekening erken en stem je ermee in dat deze wordt gebruikt om het betreffende document te ondertekenen en dat deze dezelfde juridische geldigheid heeft als een handgeschreven handtekening. Door het elektronische ondertekeningsproces te voltooien, bevestig je dat je deze voorwaarden begrijpt en accepteert."
#: apps/remix/app/components/forms/signup.tsx
msgid "By proceeding, you agree to our <0>Terms of Service0> and <1>Privacy Policy1>."
-msgstr "Door verder te gaan, gaat u akkoord met onze <0>Gebruiksvoorwaarden0> en <1>Privacybeleid1>."
+msgstr "Door verder te gaan ga je akkoord met onze <0>Servicevoorwaarden0> en <1>Privacyverklaring1>."
#: 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."
-msgstr "Door de functie voor elektronische handtekeningen te gebruiken, stemt u in met het uitvoeren van transacties en het elektronisch ontvangen van openbaarmakingen. U erkent dat uw elektronische handtekening op documenten bindend is en dat u de voorwaarden accepteert die zijn uiteengezet in de documenten die u ondertekent."
+msgstr "Door de functie voor elektronische handtekeningen te gebruiken, stem je ermee in transacties uit te voeren en kennisgevingen elektronisch te ontvangen. Je erkent dat je elektronische handtekening onder documenten bindend is en dat je de voorwaarden van de te ondertekenen documenten accepteert."
#: packages/ui/components/recipient/recipient-role-select.tsx
msgid "Can prepare"
msgstr "Kan voorbereiden"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.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/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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-password.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/general/document/document-attachments-popover.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-test-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-to-folder-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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-create-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-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/claim-update-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.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-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.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/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Cancel"
msgstr "Annuleren"
@@ -2108,11 +2126,15 @@ msgstr "CC'd"
#: packages/lib/constants/recipient-roles.ts
msgctxt "Recipient role plural name"
msgid "Ccers"
-msgstr "Cc-ers"
+msgstr "Ccers"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Center"
-msgstr "Midden"
+msgstr "Centreren"
+
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Change Recipient"
+msgstr "Ontvanger wijzigen"
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
msgid "Character limit"
@@ -2128,23 +2150,23 @@ msgid "Charts"
msgstr "Grafieken"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Checkbox"
msgstr "Selectievakje"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
msgid "Checkbox Settings"
-msgstr "Instellingen voor aankruisvakken"
+msgstr "Instellingen selectievakje"
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Checkbox values"
-msgstr "Selectievakjes waarden"
+msgstr "Waarden selectievakje"
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Checkout"
msgstr "Afrekenen"
@@ -2154,23 +2176,23 @@ msgstr "Kies hieronder een bestaande ontvanger om verder te gaan"
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Choose Direct Link Recipient"
-msgstr "Kies Directe Link Ontvanger"
+msgstr "Directe‑linkontvanger kiezen"
#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "Choose how the document will reach recipients"
-msgstr "Kies hoe het document bij de ontvangers terechtkomt"
+msgstr "Kies hoe het document de ontvangers bereikt"
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
msgid "Choose how to distribute your document to recipients. Email will send notifications, None will generate signing links for manual distribution."
-msgstr "Kies hoe u uw document aan ontvangers wilt distribueren. E-mail stuurt meldingen, Geen genereert ondertekenlinks voor handmatige distributie."
+msgstr "Kies hoe je je document naar ontvangers distribueert. E-mail verstuurt meldingen, Geen genereert ondertekeningslinks voor handmatige distributie."
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
msgid "Choose verification method"
-msgstr "Kies een verificatiemethode"
+msgstr "Verificatiemethode kiezen"
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
msgid "Choose your preferred authentication method:"
-msgstr "Kies je voorkeurs authenticatiemethode:"
+msgstr "Kies je voorkeursauthenticatiemethode:"
#: apps/remix/app/components/forms/token.tsx
msgid "Choose..."
@@ -2196,9 +2218,9 @@ msgstr "Handtekening wissen"
msgid "Click here to get started"
msgstr "Klik hier om te beginnen"
-#: 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/template/template-page-view-recent-activity.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "Click here to retry"
msgstr "Klik hier om opnieuw te proberen"
@@ -2209,50 +2231,52 @@ msgstr "Klik hier om te uploaden"
#: apps/remix/app/components/general/avatar-with-recipient.tsx
#: apps/remix/app/components/general/avatar-with-recipient.tsx
msgid "Click to copy signing link for sending to recipient"
-msgstr "Klik om de ondertekeningslink voor verzending naar de ontvanger te kopiëren"
+msgstr "Klik om de ondertekeningslink te kopiëren om naar de ontvanger te sturen"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.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/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
msgid "Click to insert field"
msgstr "Klik om veld in te voegen"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Client ID"
-msgstr "Klant-ID"
+msgstr "Client-ID"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Client ID is required"
-msgstr "Klant-ID is vereist"
+msgstr "Client-ID is verplicht"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Client Secret"
-msgstr "Klantgeheim"
+msgstr "Clientgeheim"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Client secret is required"
-msgstr "Klantgeheim is vereist"
+msgstr "Clientgeheim is verplicht"
-#: apps/remix/app/components/general/billing-plans.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/support-ticket-form.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/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-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/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/missing-signature-field-dialog.tsx
msgid "Close"
msgstr "Sluiten"
@@ -2263,43 +2287,43 @@ msgstr "Communicatie"
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Compare all plans and features in detail"
-msgstr "Vergelijk alle plannen en functies in detail"
+msgstr "Vergelijk alle abonnementen en functies in detail"
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Complete"
msgstr "Voltooien"
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
msgid "Complete Document"
-msgstr "Document Voltooien"
+msgstr "Document voltooien"
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
msgid "Complete the fields for the following signers."
msgstr "Vul de velden in voor de volgende ondertekenaars."
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: 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/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
-#: packages/lib/constants/document.ts
-#: packages/email/template-components/template-document-self-signed.tsx
-#: packages/email/template-components/template-document-recipient-signed.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
#: packages/email/template-components/template-document-completed.tsx
+#: packages/email/template-components/template-document-recipient-signed.tsx
+#: packages/email/template-components/template-document-self-signed.tsx
+#: packages/lib/constants/document.ts
msgid "Completed"
msgstr "Voltooid"
-#: packages/email/templates/document-self-signed.tsx
#: packages/email/templates/document-completed.tsx
+#: packages/email/templates/document-self-signed.tsx
msgid "Completed Document"
msgstr "Voltooid document"
@@ -2309,7 +2333,7 @@ msgstr "Voltooide documenten"
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "Completed Documents"
-msgstr "Voltooide Documenten"
+msgstr "Voltooide documenten"
#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
@@ -2325,11 +2349,11 @@ msgstr "Configuratiefout"
#. placeholder {0}: parseMessageDescriptor(_, FRIENDLY_FIELD_TYPE[currentField.type])
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
msgid "Configure {0} Field"
-msgstr "Configureer {0} Veld"
+msgstr "{0}-veld configureren"
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
msgid "Configure additional options and preferences"
-msgstr "Configureer extra opties en voorkeuren"
+msgstr "Configureer aanvullende opties en voorkeuren"
#: packages/lib/constants/template.ts
msgid "Configure Direct Recipient"
@@ -2337,11 +2361,11 @@ msgstr "Directe ontvanger configureren"
#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
msgid "Configure Document"
-msgstr "Configureer Document"
+msgstr "Document configureren"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
msgid "Configure document settings and options before sending."
-msgstr "Configureer documentinstellingen en -opties voordat u verzendt."
+msgstr "Configureer documentinstellingen en opties voordat je verzendt."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
msgid "Configure email settings for the document"
@@ -2363,70 +2387,70 @@ msgstr "Configureer algemene instellingen voor de sjabloon."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
msgid "Configure security settings for the document"
-msgstr "Configureer beveiligingsinstellingen voor het document"
+msgstr "Beveiligingsinstellingen voor het document configureren"
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "Configure template"
-msgstr "Configureer sjabloon"
+msgstr "Sjabloon configureren"
#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
msgid "Configure Template"
-msgstr "Configureer Template"
+msgstr "Sjabloon configureren"
#. placeholder {0}: parseMessageDescriptor( _, FRIENDLY_FIELD_TYPE[currentField.type], )
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Configure the {0} field"
-msgstr "Configureer het {0} veld"
+msgstr "Configureer het veld {0}"
#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
msgid "Configure the fields you want to place on the document."
-msgstr "Configureer de velden die u op het document wilt plaatsen."
+msgstr "Configureer de velden die je op het document wilt plaatsen."
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
msgid "Configure the team roles for each group"
-msgstr "Stel de teamrollen in voor elke groep"
+msgstr "Configureer de teamrollen voor elke groep"
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "Configure the team roles for each member"
-msgstr "Stel de teamrollen in voor elk lid"
+msgstr "Configureer de teamrollen voor elk lid"
-#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Confirm"
msgstr "Bevestigen"
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
msgid "Confirm by typing <0>{deleteMessage}0>"
-msgstr "Bevestig door te typen <0>{deleteMessage}0>"
+msgstr "Bevestig door <0>{deleteMessage}0> te typen"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "Confirm by typing: <0>{deleteMessage}0>"
msgstr "Bevestig door te typen: <0>{deleteMessage}0>"
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
msgid "Confirm Deletion"
-msgstr "Verwijdering Bevestigen"
+msgstr "Verwijdering bevestigen"
#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
#: packages/email/template-components/template-confirmation-email.tsx
msgid "Confirm email"
-msgstr "E-mail Bevestigen"
+msgstr "E‑mail bevestigen"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Confirmation email sent"
-msgstr "Bevestigingse-mail verzonden"
+msgstr "Bevestigingsmail verzonden"
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Consent to Electronic Transactions"
-msgstr "Toestemming voor Elektronische Transacties"
+msgstr "Toestemming voor elektronische transacties"
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Contact Information"
@@ -2434,7 +2458,7 @@ msgstr "Contactgegevens"
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Contact sales here"
-msgstr "Neem hier contact op met de verkoopafdeling"
+msgstr "Neem hier contact op met sales"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "Contact us"
@@ -2444,17 +2468,17 @@ msgstr "Neem contact met ons op"
msgid "Content"
msgstr "Inhoud"
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$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+/organisation.invite.$token.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-view.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/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$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+/verify-email.$token.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Continue"
msgstr "Doorgaan"
@@ -2465,7 +2489,7 @@ msgstr "Ga verder door het document goed te keuren."
#: packages/email/template-components/template-document-invite.tsx
msgid "Continue by assisting with the document."
-msgstr "Ga verder door assisteren bij het document."
+msgstr "Ga verder door het document te assisteren."
#: packages/email/template-components/template-document-completed.tsx
msgid "Continue by downloading the document."
@@ -2485,32 +2509,32 @@ msgstr "Doorgaan naar inloggen"
#: apps/remix/app/components/forms/email-preferences-form.tsx
msgid "Controls the default email settings when new documents or templates are created"
-msgstr "Beheert de standaard e-mailinstellingen wanneer nieuwe documenten of sjablonen worden gemaakt"
+msgstr "Bepaalt de standaard e-mailinstellingen wanneer nieuwe documenten of sjablonen worden aangemaakt"
#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Controls the default language of an uploaded document. This will be used as the language in email communications with the recipients."
-msgstr "Bepaalt de standaardtaal van een geüpload document. Deze wordt gebruikt als taal in e-mailcommunicatie met de ontvangers."
+msgstr "Bepaalt de standaardtaal van een geüpload document. Dit wordt gebruikt als taal in e‑mailcommunicatie met de ontvangers."
#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Controls the default visibility of an uploaded document."
-msgstr "Bepaalt de standaard zichtbaarheid van een geüpload document."
+msgstr "Bepaalt de standaardzichtbaarheid van een geüpload document."
#: apps/remix/app/components/forms/document-preferences-form.tsx
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."
-msgstr "Bepaalt de opmaak van het bericht dat wordt verzonden bij het uitnodigen van een ontvanger om een document te ondertekenen. Als er een aangepaste boodschap is verstrekt bij het configureren van het document, wordt deze in plaats daarvan gebruikt."
+msgstr "Bepaalt de opmaak van het bericht dat wordt verzonden bij het uitnodigen van een ontvanger om een document te ondertekenen. Als er tijdens het configureren van het document een aangepast bericht is opgegeven, wordt dat gebruikt."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: 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."
-msgstr "Bepaalt de taal van het document, inclusief de taal voor e-mailmeldingen en het uiteindelijke certificaat dat wordt gegenereerd en aan het document wordt gehecht."
+msgstr "Bepaalt de taal van het document, inclusief de taal van e-mailmeldingen en het uiteindelijke certificaat dat wordt gegenereerd en aan het document wordt toegevoegd."
#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Controls whether the audit logs will be included in the document when it is downloaded. The audit logs can still be downloaded from the logs page separately."
-msgstr "Beheert of de audit logs bij het document worden toegevoegd wanneer het wordt gedownload. De audit logs kunnen nog steeds apart van de logpagina worden gedownload."
+msgstr "Bepaalt of de auditlogs worden opgenomen in het document wanneer het wordt gedownload. De auditlogs kunnen nog steeds apart vanaf de logpagina worden gedownload."
#: apps/remix/app/components/forms/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."
-msgstr "Bepaalt of het ondertekeningscertificaat in het document zal worden opgenomen wanneer het wordt gedownload. Het ondertekeningscertificaat kan nog steeds afzonderlijk worden gedownload van de logpagina."
+msgstr "Bepaalt of het ondertekeningscertificaat wordt opgenomen in het document wanneer het wordt gedownload. Het ondertekeningscertificaat kan nog steeds apart worden gedownload vanaf de logpagina."
#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Controls which signatures are allowed to be used when signing a document."
@@ -2521,21 +2545,22 @@ msgstr "Bepaalt welke handtekeningen mogen worden gebruikt bij het ondertekenen
msgid "Copied"
msgstr "Gekopieerd"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: 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/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: packages/ui/primitives/document-flow/add-subject.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/avatar-with-recipient.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.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/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/components/document/document-share-button.tsx
+#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Copied to clipboard"
msgstr "Gekopieerd naar klembord"
@@ -2550,46 +2575,46 @@ msgstr "Link kopiëren"
#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "Copy sharable link"
-msgstr "Kopieer deelbare link"
+msgstr "Deelbare link kopiëren"
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Copy Shareable Link"
-msgstr "Kopieer Deelbare Link"
+msgstr "Deelbare link kopiëren"
-#: 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/general/document/document-recipient-link-copy-dialog.tsx
msgid "Copy Signing Links"
-msgstr "Ondertekeningslinks Kopiëren"
+msgstr "Ondertekeningslinks kopiëren"
#: apps/remix/app/components/forms/token.tsx
msgid "Copy token"
-msgstr "Kopieer token"
+msgstr "Token kopiëren"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Create"
msgstr "Aanmaken"
#: packages/email/template-components/template-document-self-signed.tsx
msgid "Create a <0>free account0> to access your signed documents at any time."
-msgstr "Maak een <0>gratis account0> aan om te allen tijde toegang te krijgen tot uw ondertekende documenten."
+msgstr "Maak een <0>gratis account0> aan om op elk moment toegang te hebben tot je ondertekende documenten."
#: apps/remix/app/components/forms/signup.tsx
msgid "Create a new account"
-msgstr "Maak een nieuw account aan"
+msgstr "Een nieuw account aanmaken"
#. placeholder {0}: emailDomain.domain
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
msgid "Create a new email address for your organisation using the domain <0>{0}0>."
-msgstr "Maak een nieuw e-mailadres voor uw organisatie met het domein <0>{0}0>."
+msgstr "Maak een nieuw e-mailadres voor je organisatie aan met het domein <0>{0}0>."
#: apps/remix/app/components/general/billing-plans.tsx
msgid "Create a new organisation with {planName} plan. Keep your current organisation on it's current plan"
-msgstr "Creëer een nieuwe organisatie met het {planName}-plan. Houd je huidige organisatie op het huidige plan"
+msgstr "Maak een nieuwe organisatie aan met het {planName}-abonnement. Laat je huidige organisatie op het huidige abonnement staan"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "Create a support ticket"
@@ -2597,7 +2622,7 @@ msgstr "Maak een supportticket aan"
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
msgid "Create a team to collaborate with your team members."
-msgstr "Maak een team aan om met je teamleden samen te werken."
+msgstr "Maak een team aan om samen te werken met je teamleden."
#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
#: packages/email/template-components/template-document-self-signed.tsx
@@ -2606,51 +2631,51 @@ msgstr "Account aanmaken"
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
msgid "Create an organisation for this user"
-msgstr "Creëer een organisatie voor deze gebruiker"
+msgstr "Maak een organisatie aan voor deze gebruiker"
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Create an organisation to collaborate with teams"
-msgstr "Creëer een organisatie om samen te werken met teams"
+msgstr "Maak een organisatie aan om met teams samen te werken"
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
msgid "Create an organisation to get started."
-msgstr "Creëer een organisatie om te beginnen."
+msgstr "Maak een organisatie aan om te beginnen."
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Create and send"
-msgstr "Maak en verstuur"
+msgstr "Aanmaken en verzenden"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Create as draft"
-msgstr "Maak als concept"
+msgstr "Als concept aanmaken"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Create as pending"
-msgstr "Maak als in afwachting"
+msgstr "Als in behandeling aanmaken"
#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
msgid "Create claim"
-msgstr "Claim creëren"
+msgstr "Claim aanmaken"
#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
msgid "Create Claim"
-msgstr "Claim creëren"
+msgstr "Claim aanmaken"
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Create Direct Link"
-msgstr "Directe Link Aanmaken"
+msgstr "Directe link aanmaken"
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Create Direct Signing Link"
-msgstr "Directe Ondertekeningslink Aanmaken"
+msgstr "Directe ondertekeningslink aanmaken"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Create document from template"
-msgstr "Document aanmaken van sjabloon"
+msgstr "Document maken van sjabloon"
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
msgid "Create Email"
-msgstr "Maak E-mail"
+msgstr "E-mail aanmaken"
#: apps/remix/app/components/general/folder/folder-card.tsx
msgid "Create folder"
@@ -2663,116 +2688,117 @@ msgstr "Map maken"
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
msgid "Create group"
-msgstr "Creëer groep"
+msgstr "Groep aanmaken"
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
msgid "Create Groups"
-msgstr "Creëer groepen"
+msgstr "Groepen aanmaken"
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
msgid "Create New Folder"
-msgstr "Nieuwe map maken"
+msgstr "Nieuwe map aanmaken"
#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Create now"
-msgstr "Nu Aanmaken"
+msgstr "Nu aanmaken"
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Create one automatically"
-msgstr "Maak er automatisch één aan"
+msgstr "Automatisch een aanmaken"
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
msgid "Create organisation"
-msgstr "Creëer organisatie"
+msgstr "Organisatie aanmaken"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Create Organisation"
-msgstr "Creëer Organisatie"
+msgstr "Organisatie aanmaken"
#: apps/remix/app/components/general/billing-plans.tsx
msgid "Create separate organisation"
-msgstr "Creëer aparte organisatie"
+msgstr "Afzonderlijke organisatie aanmaken"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Create signing links"
-msgstr "Aanmaken ondertekeningslinks"
+msgstr "Ondertekeningslinks aanmaken"
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Create Stripe customer"
-msgstr "Creëer Stripe-klant"
+msgstr "Stripe-klant aanmaken"
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Create subscription"
-msgstr "Creëer abonnement"
+msgstr "Abonnement aanmaken"
#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
msgid "Create Subscription Claim"
-msgstr "Creëer Abonnementsclaim"
+msgstr "Abonnementsclaim aanmaken"
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
msgid "Create team"
-msgstr "Team Aanmaken"
+msgstr "Team aanmaken"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Create Team"
-msgstr "Team Aanmaken"
+msgstr "Team aanmaken"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Create the document as pending and ready to sign."
-msgstr "Maak het document in afwachting en klaar om te ondertekenen."
+msgstr "Maak het document aan als in behandeling en klaar om te ondertekenen."
#: apps/remix/app/components/forms/token.tsx
#: apps/remix/app/components/forms/token.tsx
msgid "Create token"
-msgstr "Token Aanmaken"
+msgstr "Token aanmaken"
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
msgid "Create webhook"
-msgstr "Webhook Aanmaken"
+msgstr "Webhook aanmaken"
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
msgid "Create Webhook"
-msgstr "Webhook Aanmaken"
+msgstr "Webhook aanmaken"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
msgid "Create your account and start using state-of-the-art document signing."
-msgstr "Maak uw account aan en begin met het gebruik van geavanceerde documentondertekening."
+msgstr "Maak je account aan en begin met het gebruik van moderne documentenondertekening."
#: apps/remix/app/components/forms/signup.tsx
msgid "Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp."
-msgstr "Maak uw account aan en begin met het gebruik van geavanceerde documentondertekening. Open en mooi ondertekenen is binnen handbereik."
+msgstr "Maak je account aan en begin met het gebruik van moderne documentenondertekening. Open en prachtig ondertekenen ligt binnen handbereik."
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: 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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-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
+#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Created"
msgstr "Aangemaakt"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Created At"
-msgstr "Aangemaakt Op"
+msgstr "Aangemaakt op"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
msgid "Created by"
@@ -2782,16 +2808,14 @@ msgstr "Aangemaakt door"
msgid "Created on"
msgstr "Aangemaakt op"
-#. placeholder {0}: i18n.date(webhook.createdAt, DateTime.DATETIME_FULL)
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Created on {0}"
-msgstr "Gemaakt op {0}"
+msgstr "Aangemaakt op {0}"
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
msgid "CSV Structure"
-msgstr "CSV-Structuur"
+msgstr "CSV-structuur"
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "Cumulative MAU (signed in)"
@@ -2803,11 +2827,11 @@ msgstr "Huidig"
#: apps/remix/app/components/forms/password.tsx
msgid "Current Password"
-msgstr "Huidig Wachtwoord"
+msgstr "Huidig wachtwoord"
#: apps/remix/app/components/forms/password.tsx
msgid "Current password is incorrect."
-msgstr "Huidig wachtwoord is onjuist."
+msgstr "Het huidige wachtwoord is onjuist."
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
msgid "Current recipients:"
@@ -2819,79 +2843,79 @@ msgstr "Momenteel hebben alle organisatieleden toegang tot dit team"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
msgid "Currently branding can only be configured for Teams and above plans."
-msgstr "Momenteel kan branding alleen worden geconfigureerd voor Teams- en hogere plannen."
+msgstr "Branding kan momenteel alleen worden geconfigureerd voor Teams- en hogere abonnementen."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Currently email domains can only be configured for Platform and above plans."
-msgstr "Momenteel kunnen e-maildomeinen alleen worden geconfigureerd voor Platform en hogere plannen."
+msgstr "E-maildomeinen kunnen momenteel alleen worden geconfigureerd voor Platform- en hogere abonnementen."
#. placeholder {0}: (field.value.size / (1024 * 1024)).toFixed(2)
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Custom {0} MB file"
-msgstr "Aangepast {0} MB bestand"
+msgstr "Aangepast {0} MB-bestand"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups._index.tsx
msgid "Custom Organisation Groups"
-msgstr "Aangepaste Organisatiegroepen"
+msgstr "Aangepaste organisatiegroepen"
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Dark Mode"
-msgstr "Donkere Modus"
+msgstr "Donker modus"
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
msgid "Dashboard"
msgstr "Dashboard"
-#: apps/remix/app/components/tables/settings-security-activity-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Date"
msgstr "Datum"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
msgid "Date created"
-msgstr "Datum aangemaakt"
+msgstr "Aanmaakdatum"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Date Format"
-msgstr "Datumformaat"
+msgstr "Datumnotatie"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
msgid "Date Settings"
msgstr "Datuminstellingen"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: packages/email/templates/organisation-invite.tsx
msgid "Decline"
-msgstr "Afwijzen"
+msgstr "Weigeren"
#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Default Date Format"
-msgstr "Standaard datumformaat"
+msgstr "Standaarddatumnotatie"
#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Default Document Language"
-msgstr "Standaard Documenttaal"
+msgstr "Standaarddocumenttaal"
#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Default Document Visibility"
-msgstr "Standaard Zichtbaarheid Document"
+msgstr "Standaarddocumentzichtbaarheid"
#: apps/remix/app/components/forms/email-preferences-form.tsx
msgid "Default Email"
-msgstr "Standaard e-mail"
+msgstr "Standaard e-mailadres"
#: apps/remix/app/components/forms/email-preferences-form.tsx
msgid "Default Email Settings"
-msgstr "Standaard e-mailinstellingen"
+msgstr "Standaarde-mailinstellingen"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Default file"
@@ -2899,15 +2923,15 @@ msgstr "Standaardbestand"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Default Organisation Role for New Users"
-msgstr "Standaard Rol voor Nieuwe Gebruikers"
+msgstr "Standaard organisatierol voor nieuwe gebruikers"
#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Default Signature Settings"
-msgstr "Standaard handtekeninginstellingen"
+msgstr "Standaardinstellingen voor handtekeningen"
#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Default Time Zone"
-msgstr "Standaard tijdzone"
+msgstr "Standaardtijdzone"
#: apps/remix/app/components/forms/editor/editor-field-dropdown-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-dropdown-form.tsx
@@ -2916,50 +2940,51 @@ msgstr "Standaardwaarde"
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "delete"
-msgstr "verwijder"
+msgstr "verwijderen"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/folder/folder-card.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-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-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/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Delete"
msgstr "Verwijderen"
-#. placeholder {0}: webhook.webhookUrl
-#. placeholder {0}: token.name
+#. placeholder {0}: folder.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#. placeholder {0}: token.name
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "delete {0}"
-msgstr "verwijder {0}"
+msgstr "{0} verwijderen"
#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
msgid "delete {emailDomain}"
@@ -2967,43 +2992,43 @@ msgstr "verwijder {emailDomain}"
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
msgid "delete {teamName}"
-msgstr "verwijder {teamName}"
+msgstr "{teamName} verwijderen"
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "Delete account"
-msgstr "Account Verwijderen"
+msgstr "Account verwijderen"
+#: 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
#: 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
msgid "Delete Account"
-msgstr "Account Verwijderen"
+msgstr "Account verwijderen"
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
msgid "Delete document"
-msgstr "Document Verwijderen"
+msgstr "Document verwijderen"
+#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: 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
msgid "Delete Document"
-msgstr "Document Verwijderen"
+msgstr "Document verwijderen"
#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
msgid "Delete email"
-msgstr "Verwijder e-mail"
+msgstr "E-mail verwijderen"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Delete email domain"
-msgstr "Verwijder e-maildomein"
+msgstr "E-maildomein verwijderen"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Delete Email Domain"
-msgstr "Verwijder E-maildomein"
+msgstr "E-maildomein verwijderen"
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
msgid "Delete Folder"
@@ -3023,7 +3048,7 @@ msgstr "Organisatielid verwijderen"
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
msgid "Delete passkey"
-msgstr "Passkey Verwijderen"
+msgstr "Passkey verwijderen"
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
msgid "Delete Subscription Claim"
@@ -3031,7 +3056,7 @@ msgstr "Abonnementsclaim verwijderen"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
msgid "Delete team"
-msgstr "Team Verwijderen"
+msgstr "Team verwijderen"
#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "Delete team group"
@@ -3039,62 +3064,71 @@ msgstr "Teamgroep verwijderen"
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Delete Template"
-msgstr "Template Verwijderen"
+msgstr "Sjabloon verwijderen"
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
msgid "Delete the document. This action is irreversible so proceed with caution."
-msgstr "Verwijder het document. Deze actie is onomkeerbaar, wees voorzichtig."
+msgstr "Verwijder het document. Deze actie kan niet ongedaan worden gemaakt, ga dus voorzichtig te werk."
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "Delete the users account and all its contents. This action is irreversible and will cancel their subscription, so proceed with caution."
-msgstr "Verwijder het gebruikersaccount en alle inhoud daarvan. Deze actie is onomkeerbaar en zal hun abonnement annuleren, wees voorzichtig."
+msgstr "Verwijder de gebruikersaccount en alle bijbehorende inhoud. Deze actie kan niet ongedaan worden gemaakt en zal hun abonnement opzeggen, dus ga voorzichtig te werk."
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "Delete Webhook"
-msgstr "Webhook Verwijderen"
+msgstr "Webhook verwijderen"
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
msgid "Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution."
-msgstr "Verwijder uw account en alle inhoud, inclusief voltooide documenten. Deze actie is onomkeerbaar en zal uw abonnement annuleren, wees voorzichtig."
+msgstr "Verwijder je account en alle inhoud, inclusief voltooide documenten. Deze actie kan niet ongedaan worden gemaakt en zal je abonnement opzeggen, dus ga voorzichtig te werk."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Deleted"
msgstr "Verwijderd"
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
msgid "Deleting account..."
-msgstr "Account verwijderen..."
+msgstr "Account wordt verwijderd..."
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Destination"
+msgstr "Bestemming"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Details"
msgstr "Details"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+msgid "Developer Mode"
+msgstr "Ontwikkelaarsmodus"
+
#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Device"
msgstr "Apparaat"
#: 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 "Geen wachtwoordwijziging aangevraagd? We zijn hier om u te helpen uw account te beveiligen, neem gewoon <0>contact met ons op.0>"
+msgstr "Geen wachtwoordwijziging aangevraagd? We helpen je graag je account te beveiligen, <0>neem gewoon contact met ons op.0>"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "direct link"
msgstr "directe link"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Direct link"
msgstr "Directe link"
-#: 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/envelope-editor/envelope-editor.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
msgid "Direct Link"
-msgstr "Directe Link"
+msgstr "Directe link"
#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
msgid "direct link disabled"
@@ -3102,23 +3136,23 @@ msgstr "directe link uitgeschakeld"
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Direct link receiver"
-msgstr "Ontvanger directe link"
+msgstr "Ontvanger met directe link"
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Direct Link Signing"
-msgstr "Directe Link Ondertekening"
+msgstr "Ondertekenen via directe link"
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Direct link signing has been disabled"
-msgstr "Directe link ondertekening is uitgeschakeld"
+msgstr "Ondertekenen via directe link is uitgeschakeld"
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Direct link signing has been enabled"
-msgstr "Directe link ondertekening is ingeschakeld"
+msgstr "Ondertekenen via directe link is ingeschakeld"
#: apps/remix/app/components/tables/templates-table.tsx
msgid "Direct link templates contain one dynamic recipient placeholder. Anyone with access to this link can sign the document, and it will then appear on your documents page."
-msgstr "Directe sjabloonlinks bevatten één dynamische ontvangerinhouder. Iedereen met toegang tot deze link kan het document ondertekenen en het zal dan op uw documentenpagina verschijnen."
+msgstr "Sjablonen met directe link bevatten één dynamische ontvangers‑placeholder. Iedereen met toegang tot deze link kan het document ondertekenen; het verschijnt daarna op je documentpagina."
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Direct template link deleted"
@@ -3128,16 +3162,16 @@ msgstr "Directe sjabloonlink verwijderd"
#. placeholder {1}: quota.directTemplates
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Direct template link usage exceeded ({0}/{1})"
-msgstr "Directe sjabloonlink gebruik overschreden ({0}/{1})"
+msgstr "Gebruik van directe sjabloonlink overschreden ({0}/{1})"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Direction"
msgstr "Richting"
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
msgid "Disable"
msgstr "Uitschakelen"
@@ -3145,7 +3179,7 @@ msgstr "Uitschakelen"
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
msgid "Disable 2FA"
-msgstr "2FA Uitschakelen"
+msgstr "2FA uitschakelen"
#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
msgid "Disable access"
@@ -3162,36 +3196,37 @@ msgstr "Account uitschakelen"
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
msgid "Disable Two Factor Authentication before deleting your account."
-msgstr "Schakel Twee Factor Authenticatie uit voordat u uw account verwijdert."
+msgstr "Schakel twee‑factor‑authenticatie uit voordat je je account verwijdert."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Disabled"
msgstr "Uitgeschakeld"
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Disabling direct link signing will prevent anyone from accessing the link."
-msgstr "Het uitschakelen van directe link ondertekening voorkomt toegang tot de link."
+msgstr "Door ondertekenen via directe link uit te schakelen, voorkom je dat iemand nog toegang tot de link krijgt."
#: 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."
-msgstr "Wanneer de gebruiker is uitgeschakeld, kan de gebruiker het account niet gebruiken. Het schakelt ook alle gerelateerde inhoud uit, zoals abonnementen, webhooks, teams en API-sleutels."
+msgstr "Als je de gebruiker uitschakelt, kan deze het account niet meer gebruiken. Dit schakelt ook alle gerelateerde inhoud uit, zoals abonnement, webhooks, teams en API-sleutels."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "Discord"
msgstr "Discord"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "Display Name"
msgstr "Weergavenaam"
#: apps/remix/app/components/general/teams/team-email-usage.tsx
msgid "Display your name and email in documents"
-msgstr "Toon uw naam en e-mail in documenten"
+msgstr "Toon je naam en e‑mail in documenten"
#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "Distribute Document"
-msgstr "Document Verspreiden"
+msgstr "Document distribueren"
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
msgid "Distribution Method"
@@ -3199,7 +3234,7 @@ msgstr "Distributiemethode"
#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
msgid "DKIM records generated. Please add the DNS records to verify your domain."
-msgstr "DKIM-records gegenereerd. Voeg alstublieft de DNS-records toe om uw domein te verifiëren."
+msgstr "DKIM-records gegenereerd. Voeg de DNS-records toe om je domein te verifiëren."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "DNS Records"
@@ -3207,21 +3242,21 @@ msgstr "DNS-records"
#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
msgid "Do you want to delete this template?"
-msgstr "Wilt u deze sjabloon verwijderen?"
+msgstr "Wil je deze sjabloon verwijderen?"
#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
msgid "Do you want to duplicate this template?"
-msgstr "Wilt u deze sjabloon dupliceren?"
+msgstr "Wil je deze sjabloon dupliceren?"
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
msgid "Documenso will delete <0>all of your documents0>, along with all of your completed documents, signatures, and all other resources belonging to your Account."
-msgstr "Documenso zal <0>al uw documenten0> verwijderen, inclusief alle voltooide documenten, handtekeningen en alle andere bronnen die bij uw account horen."
+msgstr "Documenso verwijdert <0>al je documenten0>, samen met al je voltooide documenten, handtekeningen en alle andere bronnen die bij je account horen."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Document"
msgstr "Document"
@@ -3229,52 +3264,52 @@ msgstr "Document"
#. placeholder {1}: recipient.name
#: packages/lib/jobs/definitions/emails/send-rejection-emails.handler.ts
msgid "Document \"{0}\" - Rejected by {1}"
-msgstr "Document \"{0}\" - Afgewezen door {1}"
+msgstr "Document \"{0}\" - geweigerd door {1}"
#. placeholder {0}: envelope.title
#: packages/lib/jobs/definitions/emails/send-rejection-emails.handler.ts
msgid "Document \"{0}\" - Rejection Confirmed"
-msgstr "Document \"{0}\" - Afwijzing Bevestigd"
+msgstr "Document \"{0}\" - weigering bevestigd"
#. placeholder {0}: envelope.title
#: packages/lib/jobs/definitions/emails/send-document-cancelled-emails.handler.ts
msgid "Document \"{0}\" Cancelled"
-msgstr "Document \"{0}\" Geannuleerd"
+msgstr "Document \"{0}\" geannuleerd"
#: packages/ui/primitives/document-upload-button.tsx
msgid "Document (Legacy)"
-msgstr "Document (Legacy)"
+msgstr "Document (verouderd)"
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Document & Recipients"
-msgstr "Document & Ontvangers"
+msgstr "Document & ontvangers"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Document access"
msgstr "Documenttoegang"
#: packages/lib/utils/document-audit-logs.ts
msgctxt "Audit log format"
msgid "Document access auth updated"
-msgstr "Documenttoegang gezag bijgewerkt"
+msgstr "Documenttoegangsautorisatie bijgewerkt"
#: apps/remix/app/components/general/document/document-status.tsx
msgid "Document All"
-msgstr "Alle Documenten"
+msgstr "Document alles"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
msgid "Document Approved"
-msgstr "Document Goedgekeurd"
+msgstr "Document goedgekeurd"
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: packages/lib/server-only/document/delete-document.ts
#: packages/lib/server-only/admin/admin-super-delete-document.ts
+#: packages/lib/server-only/document/delete-document.ts
msgid "Document Cancelled"
-msgstr "Document Geannuleerd"
+msgstr "Document geannuleerd"
#: apps/remix/app/components/general/document/document-status.tsx
msgid "Document completed"
@@ -3289,7 +3324,7 @@ msgstr "Document voltooid"
#: packages/ui/components/document/document-email-checkboxes.tsx
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Document completed email"
-msgstr "Document voltooid e-mail"
+msgstr "E-mail bij voltooid document"
#: apps/remix/app/components/embed/embed-document-completed.tsx
msgid "Document Completed!"
@@ -3306,29 +3341,29 @@ msgstr "Document aangemaakt"
#: apps/remix/app/routes/embed+/v1+/authoring_.completed.create.tsx
msgid "Document Created"
-msgstr "Document Gemaakt"
+msgstr "Document aangemaakt"
#. placeholder {0}: document.user.name
#: apps/remix/app/components/general/template/template-page-view-recent-activity.tsx
msgid "Document created by <0>{0}0>"
msgstr "Document aangemaakt door <0>{0}0>"
-#: packages/lib/server-only/template/create-document-from-direct-template.ts
#: packages/email/templates/document-created-from-direct-template.tsx
+#: packages/lib/server-only/template/create-document-from-direct-template.ts
msgid "Document created from direct template"
-msgstr "Document gemaakt vanuit direct sjabloon"
+msgstr "Document aangemaakt via directe sjabloon"
#: apps/remix/app/components/general/template/template-page-view-recent-activity.tsx
msgid "Document created using a <0>direct link0>"
-msgstr "Document gemaakt met een <0>directe link0>"
+msgstr "Document aangemaakt via een <0>directe link0>"
#: packages/lib/constants/template.ts
msgid "Document Creation"
msgstr "Documentcreatie"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
msgid "Document deleted"
msgstr "Document verwijderd"
@@ -3339,26 +3374,26 @@ msgstr "Document verwijderd"
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Document deleted email"
-msgstr "Document verwijderde e-mail"
+msgstr "E-mail bij verwijderd document"
#: packages/lib/server-only/document/send-delete-email.ts
msgid "Document Deleted!"
-msgstr "Document Verwijderd!"
+msgstr "Document verwijderd."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Document Distribution Method"
-msgstr "Distributiemethode Document"
+msgstr "Methode voor documentdistributie"
#: apps/remix/app/components/general/document/document-status.tsx
msgid "Document draft"
-msgstr "Document concept"
+msgstr "Documentconcept"
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
msgid "Document Duplicated"
-msgstr "Document Gekopieerd"
+msgstr "Document gedupliceerd"
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Document Editor"
@@ -3367,23 +3402,23 @@ msgstr "Documenteditor"
#: packages/lib/utils/document-audit-logs.ts
msgctxt "Audit log format"
msgid "Document external ID updated"
-msgstr "Document externe ID bijgewerkt"
+msgstr "Externe document-ID bijgewerkt"
#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
msgid "Document found in your account"
-msgstr "Document gevonden in uw account"
+msgstr "Document gevonden in je account"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
msgid "Document ID"
-msgstr "Document ID"
+msgstr "Document‑ID"
#: apps/remix/app/components/general/document/document-page-view-information.tsx
msgid "Document ID (Legacy)"
-msgstr "Document-ID (Legacy)"
+msgstr "Document-ID (verouderd)"
#: apps/remix/app/components/general/document/document-status.tsx
msgid "Document inbox"
-msgstr "Document Inkommand"
+msgstr "Documentinbox"
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "Document is already uploaded"
@@ -3391,24 +3426,24 @@ msgstr "Document is al geüpload"
#: apps/remix/app/components/general/legacy-field-warning-popover.tsx
msgid "Document is using legacy field insertion"
-msgstr "Document maakt gebruik van verouderde veldinvoeging"
+msgstr "Document gebruikt verouderde veldinvoeging"
#: apps/remix/app/components/tables/templates-table.tsx
msgid "Document Limit Exceeded!"
-msgstr "Documentlimiet Overschreden!"
+msgstr "Documentlimiet overschreden!"
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "Document metrics"
-msgstr "Document Statistieken"
+msgstr "Documentstatistieken"
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
msgid "Document moved"
-msgstr "Document Verplaatst"
+msgstr "Document verplaatst"
#: packages/lib/utils/document-audit-logs.ts
msgctxt "Audit log format"
msgid "Document moved to team"
-msgstr "Document verplaatst naar team"
+msgstr "Document naar team verplaatst"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
msgid "Document no longer available to sign"
@@ -3421,17 +3456,17 @@ msgstr "Document geopend"
#: apps/remix/app/components/general/document/document-status.tsx
msgid "Document pending"
-msgstr "Document In Behandeling"
+msgstr "Document in behandeling"
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Document pending email"
-msgstr "In afwachting document e-mail"
+msgstr "E-mail bij document in behandeling"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Document Preferences"
-msgstr "Document voorkeuren"
+msgstr "Documentvoorkeuren"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
@@ -3440,21 +3475,21 @@ msgstr "Documentvoorkeuren bijgewerkt"
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
msgid "Document re-sent"
-msgstr "Document Opnieuw Verzonden"
+msgstr "Document opnieuw verzonden"
#: apps/remix/app/components/general/document/document-status.tsx
msgid "Document rejected"
-msgstr "Document afgewezen"
+msgstr "Document geweigerd"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: packages/email/template-components/template-document-rejected.tsx
msgid "Document Rejected"
-msgstr "Document afgewezen"
+msgstr "Document geweigerd"
#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "Document sent"
-msgstr "Document Verzonden"
+msgstr "Document verzonden"
#: packages/lib/utils/document-audit-logs.ts
msgctxt "Audit log format"
@@ -3467,12 +3502,12 @@ msgstr "Documentinstellingen"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
msgid "Document Signed"
-msgstr "Document Ondertekend"
+msgstr "Document ondertekend"
#: packages/lib/utils/document-audit-logs.ts
msgctxt "Audit log format"
msgid "Document signing auth updated"
-msgstr "Documentondertekening gezag bijgewerkt"
+msgstr "Documentondertekeningsautorisatie bijgewerkt"
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Document signing process will be cancelled"
@@ -3484,7 +3519,7 @@ msgstr "Documentstatus"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
msgid "Document title"
-msgstr "Document Titel"
+msgstr "Documenttitel"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
msgid "Document Title"
@@ -3504,17 +3539,17 @@ msgstr "Document bijgewerkt"
msgid "Document updated successfully"
msgstr "Document succesvol bijgewerkt"
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Document upload disabled due to unpaid invoices"
-msgstr "Documentupload uitgeschakeld vanwege onbetaalde facturen"
+msgstr "Uploaden van documenten uitgeschakeld wegens onbetaalde facturen"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Document uploaded"
-msgstr "Document Geüpload"
+msgstr "Document geüpload"
#: packages/lib/utils/document-audit-logs.ts
msgctxt "Audit log format"
@@ -3523,16 +3558,16 @@ msgstr "Document bekeken"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
msgid "Document Viewed"
-msgstr "Document Bekeken"
+msgstr "Document bekeken"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
msgid "Document visibility"
-msgstr "Zichtbaarheid van document"
+msgstr "Documentzichtbaarheid"
#: packages/lib/utils/document-audit-logs.ts
msgctxt "Audit log format"
msgid "Document visibility updated"
-msgstr "Zichtbaarheid van document bijgewerkt"
+msgstr "Documentzichtbaarheid bijgewerkt"
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
msgid "Document Volume"
@@ -3540,57 +3575,57 @@ msgstr "Documentvolume"
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Document will be permanently deleted"
-msgstr "Document zal permanent worden verwijderd"
+msgstr "Document wordt permanent verwijderd"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "Documentation"
msgstr "Documentatie"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.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/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
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Documents"
msgstr "Documenten"
#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
msgid "Documents and resources related to this envelope."
-msgstr "Documenten en bronnen met betrekking tot deze envelop."
+msgstr "Documenten en bronnen die bij deze envelop horen."
#: apps/remix/app/components/tables/organisation-insights-table.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
msgid "Documents Completed"
-msgstr "Voltooide documenten"
+msgstr "Documenten voltooid"
#: apps/remix/app/components/tables/organisation-insights-table.tsx
msgid "Documents Created"
-msgstr "Aangemaakte documenten"
+msgstr "Documenten aangemaakt"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Documents created from template"
-msgstr "Documenten gemaakt op basis van sjabloon"
+msgstr "Documenten aangemaakt vanuit sjabloon"
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "Documents Received"
-msgstr "Ontvangen Documenten"
+msgstr "Ontvangen documenten"
#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Documents that require your attention will appear here"
-msgstr "Documenten die je aandacht vereisen verschijnen hier"
+msgstr "Documenten die je aandacht vereisen, verschijnen hier"
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "Documents Viewed"
-msgstr "Bekeken Documenten"
+msgstr "Bekeken documenten"
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
msgid "Domain"
@@ -3608,149 +3643,155 @@ msgstr "Domein al in gebruik"
msgid "Domain Name"
msgstr "Domeinnaam"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Don't have an account? <0>Sign up0>"
-msgstr "Heb je geen account? <0>Registreer0>"
+msgstr "Nog geen account? <0>Registreer0>"
-#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-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/general/document/document-certificate-qr-view.tsx
-#: apps/remix/app/components/general/document/document-certificate-qr-view.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/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
#: packages/email/template-components/template-document-completed.tsx
msgid "Download"
msgstr "Downloaden"
#: apps/remix/app/components/general/document/document-audit-log-download-button.tsx
msgid "Download Audit Logs"
-msgstr "Audit Logboeken Downloaden"
+msgstr "Auditlogs downloaden"
#: apps/remix/app/components/general/document/document-certificate-download-button.tsx
msgid "Download Certificate"
-msgstr "Certificaat Downloaden"
+msgstr "Certificaat downloaden"
#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
msgid "Download Files"
msgstr "Bestanden downloaden"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Download PDF"
msgstr "PDF downloaden"
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
msgid "Download Template CSV"
-msgstr "Download Sjabloon CSV"
+msgstr "Sjabloon-CSV downloaden"
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: packages/lib/constants/document.ts
msgid "Draft"
msgstr "Concept"
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Draft documents"
-msgstr "Concept Documenten"
+msgstr "Conceptdocumenten"
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "Drafted Documents"
-msgstr "Concept Documenten"
+msgstr "Conceptdocumenten"
#: packages/ui/primitives/document-dropzone.tsx
msgid "Drag & drop your PDF here."
-msgstr "Sleep & zet hier je PDF neer."
+msgstr "Sleep je PDF hierheen."
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "Drag and drop or click to upload"
-msgstr "Sleep en zet neer of klik om te uploaden"
+msgstr "Slepen en neerzetten of klik om te uploaden"
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
msgid "Drag and drop your PDF file here"
-msgstr "Sleep en zet uw PDF-bestand hier neer"
-
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
-msgid "Draw"
-msgstr "Teken"
+msgstr "Sleep je PDF-bestand hierheen"
#: packages/lib/constants/document.ts
-msgctxt "Draw signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Draw signature"
msgid "Draw"
msgstr "Tekenen"
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "Drop your document here"
-msgstr "Drop je document hier"
+msgstr "Laat je document hier los"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Dropdown"
msgstr "Dropdown"
#: apps/remix/app/components/forms/editor/editor-field-dropdown-form.tsx
msgid "Dropdown must have at least one option"
-msgstr "Dropdown moet minstens één optie hebben"
+msgstr "Dropdown moet ten minste één optie hebben"
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
msgid "Dropdown options"
-msgstr "Dropdown opties"
+msgstr "Dropdown-opties"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
msgid "Dropdown Settings"
-msgstr "Dropdown Instellingen"
+msgstr "Instellingen dropdown"
#: apps/remix/app/components/forms/editor/editor-field-dropdown-form.tsx
msgid "Dropdown values"
-msgstr "Dropdown waarden"
+msgstr "Dropdownwaarden"
-#: 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/envelope-editor/envelope-editor-fields-page-renderer.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
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Duplicate"
msgstr "Dupliceren"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Document"
-msgstr "Document kopiëren"
+msgstr "Document dupliceren"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Duplicate on all pages"
-msgstr "Dupliceer op alle pagina's"
+msgstr "Dupliceren op alle pagina's"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Template"
-msgstr "Template kopiëren"
+msgstr "Sjabloon dupliceren"
#: apps/remix/app/components/forms/editor/editor-field-dropdown-form.tsx
msgid "Duplicate values are not allowed"
msgstr "Dubbele waarden zijn niet toegestaan"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 0"
+msgstr "Bijv. 0"
+
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 100"
+msgstr "Bijv. 100"
+
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Edit"
msgstr "Bewerken"
@@ -3758,87 +3799,96 @@ msgstr "Bewerken"
msgid "Edit Template"
msgstr "Sjabloon bewerken"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Edit webhook"
-msgstr "Webhook Bewerken"
+msgstr "Webhook bewerken"
+
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+msgid "eg. Legal"
+msgstr "bijv. Legal"
+
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+msgid "eg. Mac"
+msgstr "bijv. Mac"
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Electronic Delivery of Documents"
-msgstr "Elektronische Levering van Documenten"
+msgstr "Elektronische levering van documenten"
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Electronic Signature Disclosure"
-msgstr "Elektronische Handtekening bekendmaking"
+msgstr "Kennisgeving elektronische handtekening"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-insights-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/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.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
-#: 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/utils/fields.ts
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-configure-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
+#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Email"
-msgstr "E-mail"
+msgstr "E‑mail"
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/send-confirmation-email.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Email address"
-msgstr "E-mailadres"
+msgstr "E‑mailadres"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Email Address"
-msgstr "E-Mail Adres"
+msgstr "E‑mailadres"
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
msgid "Email already confirmed"
-msgstr "E-mail al bevestigd"
+msgstr "E-mailadres al bevestigd"
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
msgid "Email already exists"
-msgstr "E-mail bestaat al"
+msgstr "E-mailadres bestaat al"
#: apps/remix/app/components/general/direct-template/direct-template-configure-form.tsx
msgid "Email cannot already exist in the template"
-msgstr "E-mail kan niet al in de sjabloon bestaan"
+msgstr "E‑mail mag nog niet in de sjabloon bestaan"
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
msgid "Email Confirmed!"
-msgstr "E-mail bevestigd!"
+msgstr "E‑mail bevestigd!"
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
msgid "Email Created"
@@ -3850,11 +3900,11 @@ msgstr "E-maildomein niet gevonden"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Email Domain Settings"
-msgstr "E-maildomein instellingen"
+msgstr "Instellingen e-maildomein"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Email Domains"
msgstr "E-maildomeinen"
@@ -3864,33 +3914,33 @@ msgstr "E-maildomeinen gesynchroniseerd"
#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
msgid "Email is required"
-msgstr "E-mail is vereist"
+msgstr "E-mailadres is verplicht"
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Email Options"
msgstr "E-mailopties"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Email Preferences"
-msgstr "E-mail voorkeuren"
+msgstr "E-mailvoorkeuren"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
msgid "Email preferences updated"
-msgstr "E-mail voorkeuren bijgewerkt"
+msgstr "E-mailvoorkeuren bijgewerkt"
#: packages/lib/utils/document-audit-logs.ts
msgid "Email resent"
msgstr "E-mail opnieuw verzonden"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Email Sender"
-msgstr "E-mail afzender"
+msgstr "E-mails afzender"
#: packages/lib/utils/document-audit-logs.ts
msgid "Email sent"
@@ -3898,7 +3948,7 @@ msgstr "E-mail verzonden"
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
msgid "Email sent!"
-msgstr "E-mail verstuurd!"
+msgstr "E‑mail verzonden!"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
msgid "Email Settings"
@@ -3910,14 +3960,14 @@ msgstr "E-mailverificatie"
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
msgid "Email verification has been removed"
-msgstr "E-mailverificatie is verwijderd"
+msgstr "E‑mailverificatie is verwijderd"
#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
msgid "Email verification has been resent"
-msgstr "E-mailverificatie is opnieuw verzonden"
+msgstr "E‑mailverificatie is opnieuw verzonden"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Emails"
msgstr "E-mails"
@@ -3936,7 +3986,7 @@ msgstr "Inschakelen"
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
msgid "Enable 2FA"
-msgstr "Schakel 2FA in"
+msgstr "2FA inschakelen"
#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
msgid "Enable access"
@@ -3944,20 +3994,20 @@ msgstr "Toegang inschakelen"
#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
msgid "Enable account"
-msgstr "Schakel account in"
+msgstr "Account inschakelen"
#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
msgid "Enable Account"
-msgstr "Schakel Account in"
+msgstr "Account inschakelen"
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
msgid "Enable Authenticator App"
-msgstr "Schakel Authenticatie-App in"
+msgstr "Authenticator‑app inschakelen"
#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Enable Custom Branding"
-msgstr "Aangepaste Branding Inschakelen"
+msgstr "Aangepaste branding inschakelen"
#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Enable custom branding for all documents in this organisation"
@@ -3969,62 +4019,65 @@ msgstr "Aangepaste branding inschakelen voor alle documenten in dit team"
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Enable direct link signing"
-msgstr "Directe link ondertekenen inschakelen"
+msgstr "Direct-link-ondertekening inschakelen"
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: packages/lib/constants/template.ts
msgid "Enable Direct Link Signing"
-msgstr "Schakel Directe Link Ondertekening in"
+msgstr "Ondertekenen via directe link inschakelen"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Enable signing order"
-msgstr "Ondertekenvolgorde inschakelen"
+msgstr "Ondertekeningsvolgorde inschakelen"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Enable SSO portal"
msgstr "SSO-portaal inschakelen"
-#: 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+/admin+/site-settings.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Enabled"
msgstr "Ingeschakeld"
#: 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."
-msgstr "Door het account in te schakelen kan de gebruiker het account opnieuw gebruiken, evenals alle gerelateerde functies zoals webhooks, teams en API-sleutels."
+msgstr "Als je het account inschakelt, kan de gebruiker het account weer gebruiken, inclusief alle gerelateerde functies zoals webhooks, teams en API-sleutels."
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Enclosed Document"
-msgstr "Bijgevoegde Document"
+msgstr "Bijgevoegd document"
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
msgid "Enter a name for your new folder. Folders help you organise your items."
-msgstr "Voer een naam in voor uw nieuwe map. Mappen helpen u uw items te organiseren."
+msgstr "Voer een naam in voor je nieuwe map. Mappen helpen je je items te organiseren."
#: apps/remix/app/components/forms/subscription-claim-form.tsx
msgid "Enter claim name"
-msgstr "Geef claimnaam in"
+msgstr "Voer claimnaam in"
#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
msgid "Enter the domain you want to use for sending emails (without http:// or www)"
-msgstr "Voer het domein in dat u wilt gebruiken voor het verzenden van e-mails (zonder http:// of www)"
+msgstr "Voer het domein in dat je wilt gebruiken voor het verzenden van e-mails (zonder http:// of www)"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's email"
msgstr "Voer het e-mailadres van de volgende ondertekenaar in"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's name"
msgstr "Voer de naam van de volgende ondertekenaar in"
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
msgid "Enter verification code"
-msgstr "Voer de verificatiecode in"
+msgstr "Verificatiecode invoeren"
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
msgid "Enter your 2FA code"
@@ -4032,16 +4085,16 @@ msgstr "Voer je 2FA-code in"
#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Enter your brand details"
-msgstr "Voer uw merkgegevens in"
+msgstr "Voer je merkgegevens in"
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter your email"
-msgstr "Voer uw e-mail in"
+msgstr "Voer je e‑mail in"
#: apps/remix/app/components/general/direct-template/direct-template-configure-form.tsx
msgid "Enter your email address to receive the completed document."
-msgstr "Voer uw e-mailadres in om het voltooide document te ontvangen."
+msgstr "Voer je e‑mailadres in om het voltooide document te ontvangen."
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
@@ -4050,139 +4103,146 @@ msgstr "Voer je naam in"
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
msgid "Enter your number here"
-msgstr "Voer hier je nummer in"
+msgstr "Voer hier je getal in"
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Enter your password"
msgstr "Voer je wachtwoord in"
-#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "Enter your text here"
-msgstr "Voer hier uw tekst in"
+msgstr "Voer hier je tekst in"
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Enterprise"
-msgstr "Onderneming"
+msgstr "Enterprise"
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
msgid "Envelope distributed"
-msgstr "Envelop gedistribueerd"
+msgstr "Envelope gedistribueerd"
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
msgid "Envelope Duplicated"
-msgstr "Envelop gedupliceerd"
+msgstr "Envelope gedupliceerd"
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Envelope ID"
-msgstr "Envelop-ID"
+msgstr "Envelope-ID"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Envelope Item Count"
-msgstr "Aantal envelopitems"
+msgstr "Aantal envelop-items"
#: packages/lib/utils/document-audit-logs.ts
msgid "Envelope item created"
-msgstr "Envelopitem aangemaakt"
+msgstr "Envelop-item aangemaakt"
#: packages/lib/utils/document-audit-logs.ts
msgid "Envelope item deleted"
-msgstr "Envelopitem verwijderd"
+msgstr "Envelop-item verwijderd"
#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
msgid "Envelope resent"
-msgstr "Envelop opnieuw verzonden"
+msgstr "Envelope opnieuw verzonden"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
msgid "Envelope Title"
-msgstr "Titel van envelop"
+msgstr "Enveloptitel"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
msgid "Envelope updated"
-msgstr "Envelop bijgewerkt"
+msgstr "Envelope bijgewerkt"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$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/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/envelope-signing/envelope-signer-page-renderer.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.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-button-legacy.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/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/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.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-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-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-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-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-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-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-text-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.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/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/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.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/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/verify-email-banner.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Error"
msgstr "Fout"
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "Error uploading file"
-msgstr "Fout bij het uploaden van bestand"
+msgstr "Fout bij uploaden van bestand"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Event"
+msgstr "Gebeurtenis"
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Event Type"
-msgstr "Type gebeurtenis"
+msgstr "Gebeurtenistype"
#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: packages/ui/components/document/document-visibility-select.tsx
msgid "Everyone"
msgstr "Iedereen"
@@ -4192,15 +4252,15 @@ msgstr "Iedereen kan toegang krijgen tot en het document bekijken"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
msgid "Everyone has signed"
-msgstr "Iedereen heeft ondertekend"
+msgstr "Iedereen heeft getekend"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "Everyone has signed! You will receive an Email copy of the signed document."
-msgstr "Iedereen heeft getekend! U ontvangt een e-mailkopie van het ondertekende document."
+msgid "Everyone has signed! You will receive an email copy of the signed document."
+msgstr "Iedereen heeft ondertekend! U ontvangt een kopie van het ondertekende document per e-mail."
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "Exceeded timeout"
-msgstr "Tijdslimiet overschreden"
+msgstr "Time‑out overschreden"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
msgid "Expired"
@@ -4217,125 +4277,130 @@ msgid "Expires on {0}"
msgstr "Verloopt op {0}"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "External ID"
msgstr "Externe ID"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Failed"
+msgstr "Mislukt"
+
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
msgid "Failed to create folder"
-msgstr "Kan map niet maken"
+msgstr "Map aanmaken mislukt"
#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
msgid "Failed to create subscription claim."
-msgstr "Kon de abonnementsclaim niet maken."
+msgstr "Abonnementsclaim aanmaken mislukt."
#: apps/remix/app/components/forms/support-ticket-form.tsx
msgid "Failed to create support ticket"
-msgstr "Kan geen supportticket aanmaken"
+msgstr "Supportticket aanmaken mislukt"
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
msgid "Failed to delete folder"
-msgstr "Mislukt om map te verwijderen"
+msgstr "Map verwijderen mislukt"
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
msgid "Failed to delete subscription claim."
-msgstr "Kon de abonnementsclaim niet verwijderen."
+msgstr "Abonnementsclaim verwijderen mislukt."
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Failed to load document"
-msgstr "Kan document niet laden"
+msgstr "Document laden mislukt"
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
msgid "Failed to move folder"
-msgstr "Mislukt om map te verplaatsen"
+msgstr "Map verplaatsen mislukt"
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
msgid "Failed to reseal document"
-msgstr "Document verzegelen mislukt"
+msgstr "Opnieuw verzegelen van document mislukt"
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Failed to revoke session"
-msgstr "Het intrekken van sessie mislukt"
+msgstr "Sessies intrekken mislukt"
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
msgid "Failed to save settings."
-msgstr "Kon instellingen niet opslaan."
+msgstr "Instellingen opslaan is mislukt."
#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
msgid "Failed to sign out all sessions"
-msgstr "Het afmelden van alle sessies is mislukt"
+msgstr "Uitloggen van alle sessies mislukt"
#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Failed to unlink account"
-msgstr "Kan account niet ontkoppelen"
+msgstr "Account ontkoppelen mislukt"
#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
msgid "Failed to update document"
-msgstr "Kon document niet bijwerken"
+msgstr "Document bijwerken mislukt"
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
msgid "Failed to update recipient"
-msgstr "Ontvanger bijwerken mislukt"
+msgstr "Bijwerken van ontvanger mislukt"
#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
msgid "Failed to update subscription claim."
-msgstr "Kan de abonnementsclaim niet bijwerken."
+msgstr "Abonnementsclaim bijwerken mislukt."
#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Failed to update template"
-msgstr "Kon sjabloon niet bijwerken"
+msgstr "Sjabloon bijwerken mislukt"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Failed to update webhook"
-msgstr "Webhook bijwerken mislukt"
+msgstr "Bijwerken van webhook mislukt"
#: packages/email/templates/bulk-send-complete.tsx
msgid "Failed: {failedCount}"
msgstr "Mislukt: {failedCount}"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Feature Flags"
-msgstr "Functievlaggen"
+msgstr "Feature-flags"
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field character limit"
-msgstr "Veld tekenlimiet"
+msgstr "Tekenlimiet veld"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field font size"
-msgstr "Veld lettergrootte"
+msgstr "Lettergrootte veld"
#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Field format"
-msgstr "Veldformaat"
+msgstr "Veldopmaak"
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field label"
msgstr "Veldlabel"
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field placeholder"
-msgstr "Veld placeholder"
+msgstr "Placeholder voor veld"
#: packages/lib/utils/document-audit-logs.ts
msgctxt "Audit log format"
msgid "Field prefilled by assistant"
-msgstr "Veld ingevuld door assistent"
+msgstr "Veld vooraf ingevuld door assistent"
#: packages/lib/utils/document-audit-logs.ts
msgctxt "Audit log format"
@@ -4355,16 +4420,16 @@ msgstr "Velden"
msgid "Fields updated"
msgstr "Velden bijgewerkt"
+#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "File cannot be larger than {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
-msgstr "Bestand mag niet groter zijn dan {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
+msgstr "Bestand mag niet groter zijn dan {APP_DOCUMENT_UPLOAD_SIZE_LIMIT} MB"
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
msgid "File is larger than {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
-msgstr "Bestand is groter dan {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
+msgstr "Bestand is groter dan {APP_DOCUMENT_UPLOAD_SIZE_LIMIT} MB"
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
msgid "File is too small"
@@ -4376,32 +4441,32 @@ msgstr "Bestandsgrootte overschrijdt de limiet van {APP_DOCUMENT_UPLOAD_SIZE_LIM
#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
msgid "Fill in the details to create a new subscription claim."
-msgstr "Vul de gegevens in om een nieuwe abonnementsclaim te maken."
+msgstr "Vul de gegevens in om een nieuwe abonnementsclaim aan te maken."
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Folder"
msgstr "Map"
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
msgid "Folder created successfully"
-msgstr "Map succesvol gemaakt"
+msgstr "Map succesvol aangemaakt"
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
msgid "Folder deleted successfully"
-msgstr "Map is succesvol verwijderd"
+msgstr "Map succesvol verwijderd"
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
msgid "Folder moved successfully"
-msgstr "Map is succesvol verplaatst"
+msgstr "Map succesvol verplaatst"
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
msgid "Folder Name"
msgstr "Mapnaam"
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
msgid "Folder not found"
msgstr "Map niet gevonden"
@@ -4414,126 +4479,127 @@ msgid "Folder updated successfully"
msgstr "Map succesvol bijgewerkt"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Font Size"
msgstr "Lettergrootte"
#: 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>"
-msgstr "Voor alle vragen met betrekking tot deze openbaarmaking, elektronische handtekeningen, of enige gerelateerde procedures, kunt u contact met ons opnemen op: <0>{SUPPORT_EMAIL}0>"
+msgstr "Voor vragen over deze kennisgeving, elektronische handtekeningen of een gerelateerd proces kun je contact met ons opnemen via: <0>{SUPPORT_EMAIL}0>"
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
msgid "For each recipient, provide their email (required) and name (optional) in separate columns. Download the template CSV below for the correct format."
-msgstr "Voor elke ontvanger, vermeld hun e-mail (vereist) en naam (optioneel) in aparte kolommen. Download de sjabloon-CSV hieronder voor het juiste formaat."
+msgstr "Geef voor elke ontvanger zijn of haar e-mailadres (vereist) en naam (optioneel) op in aparte kolommen. Download hieronder de sjabloon-CSV voor de juiste indeling."
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "For example, if the claim has a new flag \"FLAG_1\" set to true, then this organisation will get that flag added."
-msgstr "Bijvoorbeeld, als de claim een nieuwe vlag \"FLAG_1\" heeft ingesteld op waar, dan krijgt deze organisatie die vlag toegevoegd."
+msgstr "Als de claim bijvoorbeeld een nieuwe flag \"FLAG_1\" op true heeft staan, krijgt deze organisatie die flag toegevoegd."
#: packages/lib/server-only/auth/send-forgot-password.ts
msgid "Forgot Password?"
-msgstr "Wachtwoord Vergeten?"
+msgstr "Wachtwoord vergeten?"
-#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Forgot your password?"
msgstr "Wachtwoord vergeten?"
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Free"
msgstr "Gratis"
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Free Signature"
-msgstr "Gratis Handtekening"
+msgstr "Vrije handtekening"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
msgid "Free Signature Settings"
-msgstr "Instellingen voor gratis handtekening"
+msgstr "Gratis handtekening-instellingen"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.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/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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "Full Name"
-msgstr "Volledige Naam"
+msgstr "Volledige naam"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "General"
msgstr "Algemeen"
#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
msgid "Generate DKIM Records"
-msgstr "Genereer DKIM-records"
+msgstr "DKIM-records genereren"
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Generate Links"
-msgstr "Genereer Links"
+msgstr "Links genereren"
#: packages/ui/components/document/document-global-auth-action-select.tsx
msgid "Global recipient action authentication"
-msgstr "Globale ontvanger actie authenticatie"
+msgstr "Globale ontvangeractie-authenticatie"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Go back"
msgstr "Ga terug"
-#: apps/remix/app/routes/_recipient+/_layout.tsx
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
+#: apps/remix/app/routes/_recipient+/_layout.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Go Back"
-msgstr "Ga Terug"
+msgstr "Ga terug"
#: 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
msgid "Go back home"
-msgstr "Ga terug naar startpagina"
+msgstr "Terug naar home"
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
msgid "Go Back Home"
-msgstr "Ga terug naar huis"
+msgstr "Terug naar home"
#: apps/remix/app/routes/_authenticated+/_layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
msgid "Go home"
-msgstr "Ga naar huis"
+msgstr "Ga naar start"
#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
msgid "Go to document"
@@ -4549,36 +4615,36 @@ msgstr "Ga naar team"
#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Go to your <0>public profile settings0> to add documents."
-msgstr "Ga naar je <0>openbare profielinstellingen0> om documenten toe te voegen."
+msgstr "Ga naar je <0>instellingen voor openbaar profiel0> om documenten toe te voegen."
#: packages/ui/primitives/signature-pad/signature-pad-color-picker.tsx
msgid "Green"
msgstr "Groen"
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Group"
msgstr "Groep"
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
msgid "Group has been created."
-msgstr "Groep is gemaakt."
+msgstr "Groep is aangemaakt."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Group has been updated successfully"
msgstr "Groep is succesvol bijgewerkt"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Group Name"
msgstr "Groepsnaam"
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
msgid "Groups"
msgstr "Groepen"
@@ -4588,7 +4654,7 @@ msgstr "heeft je uitgenodigd om dit document goed te keuren"
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
msgid "has invited you to assist this document"
-msgstr "heeft u uitgenodigd om te assisteren bij dit document"
+msgstr "heeft je uitgenodigd om dit document te assisteren"
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
msgid "has invited you to sign this document"
@@ -4601,14 +4667,14 @@ msgstr "heeft je uitgenodigd om dit document te bekijken"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
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."
-msgstr "Een assistent als laatste ondertekenaar betekent dat ze geen actie kunnen ondernemen omdat er geen volgende ondertekenaars zijn om te assisteren."
+msgstr "Als een assistent de laatste ondertekenaar is, kan hij/zij geen actie ondernemen, omdat er geen volgende ondertekenaars zijn om te assisteren."
#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
msgid "Help complete the document for other signers."
@@ -4616,39 +4682,39 @@ msgstr "Help het document voor andere ondertekenaars te voltooien."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Here you can add email domains to your organisation."
-msgstr "Hier kunt u e-maildomeinen toevoegen aan uw organisatie."
+msgstr "Hier kun je e-maildomeinen aan je organisatie toevoegen."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
msgid "Here you can edit your organisation details."
-msgstr "Hier kunt u de details van uw organisatie bewerken."
+msgstr "Hier kun je je organisatiegegevens bewerken."
#: apps/remix/app/routes/_authenticated+/settings+/profile.tsx
msgid "Here you can edit your personal details."
-msgstr "Hier kunt u uw persoonlijke gegevens wijzigen."
+msgstr "Hier kun je je persoonlijke gegevens bewerken."
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Here you can manage your password and security settings."
-msgstr "Hier kunt u uw wachtwoord en beveiligingsinstellingen beheren."
+msgstr "Hier kun je je wachtwoord‑ en beveiligingsinstellingen beheren."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
msgid "Here you can set branding preferences for your organisation. Teams will inherit these settings by default."
-msgstr "Hier stel je de brandingvoorkeuren voor je organisatie in. Teams erven automatisch deze instellingen."
+msgstr "Hier kun je brandingvoorkeuren instellen voor je organisatie. Teams nemen deze instellingen standaard over."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
msgid "Here you can set branding preferences for your team"
-msgstr "Hier kun je brandingvoorkeuren voor je team instellen"
+msgstr "Hier kun je brandingvoorkeuren instellen voor je team"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
msgid "Here you can set document preferences for your organisation. Teams will inherit these settings by default."
-msgstr "Hier stel je de documentvoorkeuren voor je organisatie in. Teams erven automatisch deze instellingen."
+msgstr "Hier kun je documentvoorkeuren instellen voor je organisatie. Teams nemen deze instellingen standaard over."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
msgid "Here you can set preferences and defaults for branding."
-msgstr "Hier kunt u voorkeuren en standaarden voor merkvoorkeuren instellen."
+msgstr "Hier kun je voorkeuren en standaardinstellingen voor branding instellen."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
msgid "Here you can set preferences and defaults for your team."
-msgstr "Hier kunt u voorkeuren en standaarden voor uw team instellen."
+msgstr "Hier kun je voorkeuren en standaardinstellingen voor je team instellen."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
msgid "Here you can set your general branding preferences"
@@ -4664,7 +4730,7 @@ msgstr "Zo werkt het:"
#: apps/remix/app/components/general/user-profile-timur.tsx
msgid "Hey I’m Timur"
-msgstr "Hallo, ik ben Timur"
+msgstr "Hoi, ik ben Timur"
#: packages/email/templates/bulk-send-complete.tsx
msgid "Hi {userName},"
@@ -4676,34 +4742,34 @@ msgstr "Hallo {userName}, u moet een verificatiecode invoeren om het document \"
#: packages/email/templates/reset-password.tsx
msgid "Hi, {userName} <0>({userEmail})0>"
-msgstr "Hallo, {userName} <0>({userEmail})0>"
+msgstr "Hoi, {userName} <0>({userEmail})0>"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Hide"
msgstr "Verbergen"
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/folder/folder-grid.tsx
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-grid.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
msgid "Home"
msgstr "Home"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Home (No Folder)"
-msgstr "Startpagina (geen map)"
+msgstr "Home (geen map)"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Horizontal"
msgstr "Horizontaal"
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "I agree to link my account with this organization"
-msgstr "Ik ga akkoord om mijn account aan deze organisatie te koppelen"
+msgstr "Ik ga akkoord met het koppelen van mijn account aan deze organisatie"
#: packages/lib/constants/recipient-roles.ts
msgid "I am a signer of this document"
@@ -4715,7 +4781,7 @@ msgstr "Ik ben een kijker van dit document"
#: packages/lib/constants/recipient-roles.ts
msgid "I am an approver of this document"
-msgstr "Ik ben een goedkeurder van dit document"
+msgstr "Ik ben een beoordelaar van dit document"
#: packages/lib/constants/recipient-roles.ts
msgid "I am an assistant of this document"
@@ -4731,9 +4797,8 @@ msgstr "Ik ben de eigenaar van dit document"
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
-msgstr "Ik begrijp dat ik mijn inloggegevens verstrek aan een door deze organisatie geconfigureerde derde partij"
+msgstr "Ik begrijp dat ik mijn inloggegevens verstrek aan een externe dienst die door deze organisatie is ingesteld"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
msgid "I'm sure! Delete it"
msgstr "Ik weet het zeker! Verwijder het"
@@ -4744,19 +4809,19 @@ msgstr "ID"
#: apps/remix/app/components/tables/admin-claims-table.tsx
msgid "ID copied to clipboard"
-msgstr "ID gekopieerd naar klembord"
+msgstr "ID naar klembord gekopieerd"
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
msgid "If there is any issue with your subscription, please contact us at <0>{SUPPORT_EMAIL}0>."
-msgstr "Als er een probleem is met uw abonnement, neem dan contact met ons op via <0>{SUPPORT_EMAIL}0>."
+msgstr "Als er een probleem is met je abonnement, neem dan contact met ons op via <0>{SUPPORT_EMAIL}0>."
#: packages/email/template-components/template-access-auth-2fa.tsx
msgid "If you didn't request this verification code, you can safely ignore this email."
-msgstr "Als u deze verificatiecode niet heeft aangevraagd, dan kunt u deze e-mail gerust negeren."
+msgstr "Als u deze verificatiecode niet heeft aangevraagd, kunt u deze e-mail veilig negeren."
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "If you do not want to use the authenticator prompted, you can close it, which will then display the next available authenticator."
-msgstr "Als u de gevraagde authenticator niet wilt gebruiken, kunt u deze sluiten, waarna de volgende beschikbare authenticator wordt weergegeven."
+msgstr "Als je de voorgestelde authenticator niet wilt gebruiken, kun je deze sluiten; vervolgens wordt de volgende beschikbare authenticator weergegeven."
#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
msgid "If you don't find the confirmation link in your inbox, you can request a new one below."
@@ -4764,67 +4829,71 @@ msgstr "Als je de bevestigingslink niet in je inbox vindt, kun je hieronder een
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
msgid "If your authenticator app does not support QR codes, you can use the following code instead:"
-msgstr "Als je authenticator-app geen QR-codes ondersteunt, kun je in plaats daarvan de volgende code gebruiken:"
+msgstr "Als je authenticator‑app geen QR‑codes ondersteunt, kun je in plaats daarvan de volgende code gebruiken:"
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Important: What This Means"
-msgstr "Belangrijk: Wat Dit Betekent"
+msgstr "Belangrijk: wat dit betekent"
+
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Inactive"
+msgstr "Inactief"
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/document/document-status.tsx
msgid "Inbox"
-msgstr "Inkommand"
+msgstr "Inbox"
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Inbox documents"
-msgstr "Inkommand Documenten"
+msgstr "Inboxdocumenten"
#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Include the Audit Logs in the Document"
-msgstr "Audit logs bij het document voegen"
+msgstr "Auditlogs opnemen in het document"
#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Include the Signing Certificate in the Document"
-msgstr "Voeg het ondertekeningscertificaat toe aan het document"
+msgstr "Het ondertekeningscertificaat opnemen in het document"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Information"
msgstr "Informatie"
#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "Inherit authentication method"
-msgstr "Erf authenticatiemethode"
+msgstr "Authenticatiemethode overnemen"
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
msgid "Inherit from organisation"
-msgstr "Overerven van organisatie"
+msgstr "Overnemen van organisatie"
#: apps/remix/app/components/general/teams/team-inherit-member-alert.tsx
msgid "Inherit organisation members"
-msgstr "Organisatieleden erven over"
+msgstr "Organisatieleden overnemen"
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Inherited subscription claim"
msgstr "Geërfde abonnementsclaim"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: packages/ui/primitives/document-flow/types.ts
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Initials"
msgstr "Initialen"
@@ -4834,15 +4903,15 @@ msgstr "Initialen zijn verplicht"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
msgid "Initials Settings"
-msgstr "Initialen Instellingen"
+msgstr "Initialen-instellingen"
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
msgid "Insert a value into the number field"
-msgstr "Voer een waarde in het nummeringveld in"
+msgstr "Vul een waarde in het nummerveld in"
#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
msgid "Insert a value into the text field"
-msgstr "Voer een waarde in het tekstveld in"
+msgstr "Vul een waarde in het tekstveld in"
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
msgid "Inserted"
@@ -4850,7 +4919,7 @@ msgstr "Ingevoegd"
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "Instance Stats"
-msgstr "Instantie Statistieken"
+msgstr "Instantiestatistieken"
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Invalid code. Please try again."
@@ -4869,8 +4938,8 @@ msgstr "Ongeldig e-mailadres"
msgid "Invalid link"
msgstr "Ongeldige link"
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
msgid "Invalid token"
msgstr "Ongeldig token"
@@ -4880,7 +4949,7 @@ msgstr "Ongeldige token"
#: apps/remix/app/components/forms/reset-password.tsx
msgid "Invalid token provided. Please try again."
-msgstr "Ongeldig token opgegeven. Probeer het opnieuw."
+msgstr "Er is een ongeldig token opgegeven. Probeer het opnieuw."
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
msgid "Invitation accepted"
@@ -4890,8 +4959,8 @@ msgstr "Uitnodiging geaccepteerd"
msgid "Invitation accepted!"
msgstr "Uitnodiging geaccepteerd!"
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
msgid "Invitation declined"
msgstr "Uitnodiging geweigerd"
@@ -4901,7 +4970,7 @@ msgstr "Uitnodiging is verwijderd"
#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
msgid "Invitation has been resent"
-msgstr "Uitnodiging is opnieuw verstuurd"
+msgstr "Uitnodiging is opnieuw verzonden"
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
msgid "Invite"
@@ -4909,11 +4978,11 @@ msgstr "Uitnodigen"
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
msgid "Invite member"
-msgstr "Uitnodigen lid"
+msgstr "Lid uitnodigen"
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
msgid "Invite Members"
-msgstr "Leden Uitnodigen"
+msgstr "Leden uitnodigen"
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
msgid "Invite organisation members"
@@ -4925,25 +4994,25 @@ msgstr "Teamleden uitnodigen om samen te werken"
#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
msgid "Invited At"
-msgstr "Uitgenodigd Bij"
+msgstr "Uitgenodigd op"
#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
msgid "Invoice"
msgstr "Factuur"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "IP Address"
-msgstr "IP-Adres"
+msgstr "IP‑adres"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Issuer URL"
-msgstr "Uitgever URL"
+msgstr "Issuer-URL"
#: 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."
-msgstr "Het is van cruciaal belang om uw contactgegevens, vooral uw e-mailadres, bij ons up-to-date te houden. Breng ons onmiddellijk op de hoogte van eventuele wijzigingen om ervoor te zorgen dat u alle noodzakelijke communicatie blijft ontvangen."
+msgstr "Het is essentieel dat je je contactgegevens, met name je e‑mailadres, up‑to‑date houdt. Stel ons onmiddellijk op de hoogte van wijzigingen om ervoor te zorgen dat je alle noodzakelijke communicatie blijft ontvangen."
#. placeholder {0}: publicProfile.name
#: apps/remix/app/routes/_profile+/p.$url.tsx
@@ -4952,23 +5021,23 @@ msgstr "Het lijkt erop dat {0} nog geen documenten aan zijn profiel heeft toegev
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
msgid "It looks like we ran into an issue!"
-msgstr "Het lijkt erop dat we een probleem hebben ondervonden!"
+msgstr "Het lijkt erop dat we een probleem zijn tegengekomen!"
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
msgid "It seems that the provided token has expired. We've just sent you another token, please check your email and try again."
-msgstr "Het lijkt erop dat de verstrekte token is verlopen. We hebben je zojuist een andere token gestuurd, controleer je e-mail en probeer het opnieuw."
+msgstr "Het lijkt erop dat het opgegeven token is verlopen. We hebben je zojuist een nieuw token gestuurd; controleer je e‑mail en probeer het opnieuw."
#: apps/remix/app/routes/_unauthenticated+/verify-email._index.tsx
msgid "It seems that there is no token provided, if you are trying to verify your email please follow the link in your email."
-msgstr "Het lijkt erop dat er geen token is verstrekt, als u probeert uw e-mail te verifiëren, volg dan de link in uw e-mail."
+msgstr "Het lijkt erop dat er geen token is opgegeven; als je je e‑mail probeert te verifiëren, volg dan de link in je e‑mail."
#: apps/remix/app/components/embed/embed-document-waiting-for-turn.tsx
msgid "It's currently not your turn to sign. Please check back soon as this document should be available for you to sign shortly."
-msgstr "Het is momenteel niet uw beurt om te ondertekenen. Kom later terug, want dit document zou binnenkort beschikbaar moeten zijn voor ondertekening."
+msgstr "Het is momenteel niet jouw beurt om te ondertekenen. Kom binnenkort terug; dit document zou binnenkort beschikbaar moeten zijn om door jou te worden ondertekend."
#: 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."
-msgstr "Het is momenteel niet uw beurt om te ondertekenen. U ontvangt een e-mail met instructies zodra het uw beurt is om het document te ondertekenen."
+msgstr "Het is momenteel niet jouw beurt om te ondertekenen. Je ontvangt een e‑mail met instructies zodra jij aan de beurt bent om het document te ondertekenen."
#: packages/email/templates/organisation-invite.tsx
msgid "Join {organisationName} on Documenso"
@@ -4976,73 +5045,73 @@ msgstr "Word lid van {organisationName} op Documenso"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "Join our community on <0>Discord0> for community support and discussion."
-msgstr "Word lid van onze community op <0>Discord0> voor community ondersteuning en discussie."
+msgstr "Word lid van onze community op <0>Discord0> voor ondersteuning en discussie."
#: apps/remix/app/components/tables/organisation-insights-table.tsx
msgid "Joined"
-msgstr "Toegetreden"
+msgstr "Lid geworden"
#. placeholder {0}: DateTime.fromJSDate(team.createdAt).toRelative({ style: 'short' })
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
msgid "Joined {0}"
-msgstr "Lid geworden van {0}"
+msgstr "Toegetreden {0}"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Label"
msgstr "Label"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Language"
msgstr "Taal"
#: apps/remix/app/components/general/period-selector.tsx
msgid "Last 14 days"
-msgstr "Laatste 14 dagen"
+msgstr "Afgelopen 14 dagen"
#: apps/remix/app/components/general/period-selector.tsx
msgid "Last 30 days"
-msgstr "Laatste 30 dagen"
+msgstr "Afgelopen 30 dagen"
#: apps/remix/app/components/filters/date-range-filter.tsx
msgid "Last 30 Days"
-msgstr "Laatste 30 dagen"
+msgstr "Afgelopen 30 dagen"
#: apps/remix/app/components/general/period-selector.tsx
msgid "Last 7 days"
-msgstr "Laatste 7 dagen"
+msgstr "Afgelopen 7 dagen"
#: apps/remix/app/components/filters/date-range-filter.tsx
msgid "Last 90 Days"
-msgstr "Laatste 90 dagen"
+msgstr "Afgelopen 90 dagen"
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Last Active"
msgstr "Laatst actief"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Last modified"
msgstr "Laatst gewijzigd"
#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
msgid "Last Retried"
-msgstr "Laatst Opnieuw"
+msgstr "Laatst opnieuw geprobeerd"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
msgid "Last updated"
-msgstr "Laatst geüpdatet"
+msgstr "Laatst bijgewerkt"
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Last Updated"
@@ -5050,7 +5119,7 @@ msgstr "Laatst bijgewerkt"
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
msgid "Last updated at"
-msgstr "Laatst geüpdatet om"
+msgstr "Laatst bijgewerkt op"
#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
msgid "Last used"
@@ -5058,19 +5127,19 @@ msgstr "Laatst gebruikt"
#: apps/remix/app/components/filters/date-range-filter.tsx
msgid "Last Year"
-msgstr "Vorig jaar"
+msgstr "Afgelopen jaar"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Leave"
msgstr "Verlaten"
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Leave blank to inherit from the organisation."
-msgstr "Laat leeg om van de organisatie over te erven."
+msgstr "Laat leeg om over te nemen van de organisatie."
#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
msgid "Leave organisation"
@@ -5082,35 +5151,35 @@ msgstr "Links"
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Legality of Electronic Signatures"
-msgstr "Geldigheid van Elektronische Handtekeningen"
+msgstr "Rechtsgeldigheid van elektronische handtekeningen"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Letter spacing"
-msgstr "Letterafstand"
+msgstr "Letterspatiëring"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Letter Spacing"
-msgstr "Letterafstand"
+msgstr "Letterspatiëring"
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Light Mode"
-msgstr "Lichte Modus"
+msgstr "Lichte modus"
#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Like to have your own public profile with agreements?"
-msgstr "Wil je je eigen openbare profiel met overeenkomsten?"
+msgstr "Wil je een eigen openbaar profiel met overeenkomsten?"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Line height"
-msgstr "Lijnhoogte"
+msgstr "Regelhoogte"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Line Height"
-msgstr "Lijnhoogte"
+msgstr "Regelhoogte"
#: packages/email/templates/confirm-team-email.tsx
msgid "Link expires in 1 hour."
-msgstr "Link verloopt in 1 uur."
+msgstr "Link verloopt over 1 uur."
#: packages/email/templates/organisation-account-link-confirmation.tsx
msgid "Link expires in 30 minutes."
@@ -5118,51 +5187,50 @@ msgstr "Link verloopt over 30 minuten."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Link template"
-msgstr "Koppelsjabloon"
+msgstr "Sjabloon koppelen"
#: packages/email/templates/organisation-account-link-confirmation.tsx
msgid "Link your Documenso account"
msgstr "Koppel uw Documenso-account"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Linked Accounts"
-msgstr "Gekoppelde Accounts"
+msgstr "Gekoppelde accounts"
#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Linked At"
-msgstr "Gekoppeld Op"
+msgstr "Gekoppeld op"
#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "Links Generated"
msgstr "Links gegenereerd"
-#. placeholder {0}: webhook.eventTriggers .map((trigger) => toFriendlyWebhookEventName(trigger)) .join(', ')
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-msgid "Listening to {0}"
-msgstr "Luisteren naar {0}"
+msgid "Listening to"
+msgstr "Luistert naar"
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
msgid "Load older activity"
msgstr "Oudere activiteit laden"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Loading"
msgstr "Laden"
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
-msgid "Loading document..."
-msgstr "Document laden..."
-
#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
+#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+msgid "Loading document..."
+msgstr "Document wordt geladen..."
+
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
msgid "Loading Document..."
-msgstr "Document laden..."
+msgstr "Document wordt geladen..."
#: packages/ui/components/recipient/recipient-autocomplete-input.tsx
msgid "Loading suggestions..."
@@ -5176,30 +5244,34 @@ msgstr "Laden..."
msgid "Local timezone"
msgstr "Lokale tijdzone"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Login"
msgstr "Inloggen"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "Logs"
+msgstr "Logboeken"
+
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Manage"
msgstr "Beheren"
#. placeholder {0}: user?.name
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Manage {0}'s profile"
-msgstr "Beheer het profiel van {0}"
+msgstr "Profiel van {0} beheren"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Manage a custom SSO login portal for your organisation."
-msgstr "Beheer een aangepast SSO-loginportaal voor uw organisatie."
+msgstr "Beheer een aangepast SSO-inlogportaal voor uw organisatie."
#: apps/remix/app/routes/_authenticated+/settings+/organisations.tsx
msgid "Manage all organisations you are currently associated with."
-msgstr "Beheer alle organisaties waar je momenteel mee geassocieerd bent."
+msgstr "Beheer alle organisaties waarvan je momenteel lid bent."
#: apps/remix/app/routes/_authenticated+/admin+/claims.tsx
msgid "Manage all subscription claims"
@@ -5207,78 +5279,84 @@ msgstr "Beheer alle abonnementsclaims"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Manage and view template"
-msgstr "Beheer en bekijk sjabloon"
+msgstr "Sjabloon beheren en bekijken"
#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
msgid "Manage billing"
-msgstr "Beheer facturering"
+msgstr "Facturering beheren"
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Manage Billing"
-msgstr "Beheer facturering"
+msgstr "Facturering beheren"
+
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
+msgid "Manage billing and subscriptions for organisations where you have billing management permissions."
+msgstr "Beheer de facturering en abonnementen voor organisaties waarvoor u factureringsrechten heeft."
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "Manage details for this public template"
-msgstr "Beheer details voor deze openbare sjabloon"
+msgstr "Details van deze openbare sjabloon beheren"
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Manage Direct Link"
-msgstr "Beheer directe link"
+msgstr "Directe link beheren"
#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
msgid "Manage documents"
-msgstr "Beheer documenten"
+msgstr "Documenten beheren"
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Manage linked accounts"
-msgstr "Beheer gekoppelde accounts"
+msgstr "Gekoppelde accounts beheren"
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Manage organisation"
-msgstr "Beheer organisatie"
+msgstr "Organisatie beheren"
#: apps/remix/app/routes/_authenticated+/admin+/organisations._index.tsx
msgid "Manage organisations"
-msgstr "Beheer organisaties"
+msgstr "Organisaties beheren"
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Manage passkeys"
-msgstr "Beheer toegangssleutels"
+msgstr "Passkeys beheren"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
msgid "Manage permissions and access controls"
-msgstr "Beheer machtigingen en toegangscontrole"
+msgstr "Machtigingen en toegangsrechten beheren"
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Manage sessions"
-msgstr "Beheer sessies"
+msgstr "Sessies beheren"
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Manage subscription"
-msgstr "Beheer abonnement"
+msgstr "Abonnement beheren"
#. placeholder {0}: organisation.name
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Manage the {0} organisation"
-msgstr "Beheer de {0} organisatie"
+msgstr "De organisatie {0} beheren"
#. placeholder {0}: organisation.name
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Manage the {0} organisation subscription"
-msgstr "Beheer het {0} organisatielidmaatschap"
+msgstr "Het abonnement voor de organisatie {0} beheren"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups._index.tsx
msgid "Manage the custom groups of members for your organisation."
-msgstr "Beheer de aangepaste groepen leden voor jouw organisatie."
+msgstr "Beheer de aangepaste groepen leden voor je organisatie."
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Manage the direct link signing for this template"
-msgstr "Beheer het ondertekenen van directe links voor dit sjabloon"
+msgstr "Ondertekenen via directe link voor deze sjabloon beheren"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
msgid "Manage the groups assigned to this team."
-msgstr "Beheer de groepen toegewezen aan dit team."
+msgstr "Beheer de groepen die aan dit team zijn toegewezen."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
msgid "Manage the members of your team."
@@ -5298,28 +5376,28 @@ msgstr "Beheer de teams in deze organisatie."
#: apps/remix/app/routes/_authenticated+/admin+/users._index.tsx
msgid "Manage users"
-msgstr "Beheer gebruikers"
+msgstr "Gebruikers beheren"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Manage your email domain settings."
-msgstr "Beheer de instellingen van uw e-maildomein."
+msgstr "Beheer je e-maildomeininstellingen."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Manage your organisation group settings."
-msgstr "Beheer uw organiseringsgroepinstellingen."
+msgstr "Beheer de instellingen van je organisatiegroep."
#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
msgid "Manage your passkeys."
-msgstr "Beheer je toegangssleutels."
+msgstr "Beheer je passkeys."
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "Manage your site settings here"
-msgstr "Beheer je site-instellingen hier"
+msgstr "Beheer hier je site‑instellingen"
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Manager"
msgstr "Manager"
@@ -5329,16 +5407,16 @@ msgstr "Managers en hoger"
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Mark as viewed"
-msgstr "Als bekeken markeren"
+msgstr "Markeren als bekeken"
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Mark as Viewed"
-msgstr "Markeer als bekeken"
+msgstr "Markeren als bekeken"
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "MAU (created document)"
-msgstr "MAU (gemaakt document)"
+msgstr "MAU (document aangemaakt)"
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "MAU (had document completed)"
@@ -5357,24 +5435,24 @@ msgstr "Max"
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
msgstr "Maximale bestandsgrootte: 4 MB. Maximaal 100 rijen per upload. Lege waarden gebruiken de standaardwaarden van de sjabloon."
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
-msgid "Maximum number of uploaded files per envelope allowed"
-msgstr "Maximale aantal geüploade bestanden per envelop toegestaan"
-
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
+msgid "Maximum number of uploaded files per envelope allowed"
+msgstr "Maximaal toegestaan aantal geüploade bestanden per envelop"
+
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Member"
msgstr "Lid"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Member Count"
msgstr "Aantal leden"
@@ -5382,31 +5460,31 @@ msgstr "Aantal leden"
msgid "Member Since"
msgstr "Lid sinds"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Members"
msgstr "Leden"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Message"
msgstr "Bericht"
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
msgid "Message <0>(Optional)0>"
-msgstr "Bericht <0>(Optioneel)0>"
+msgstr "Bericht <0>(optioneel)0>"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Middle"
@@ -5421,8 +5499,8 @@ msgstr "Min"
msgid "Missing Recipients"
msgstr "Ontbrekende ontvangers"
-#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
msgid "Modify recipients"
msgstr "Ontvangers wijzigen"
@@ -5430,29 +5508,29 @@ msgstr "Ontvangers wijzigen"
msgid "Modify the details of the subscription claim."
msgstr "Wijzig de details van de abonnementsclaim."
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Monthly"
msgstr "Maandelijks"
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "Monthly Active Users: Users that created at least one Document"
-msgstr "Maandelijkse actieve gebruikers: Gebruikers die ten minste één document hebben gemaakt"
+msgstr "Maandelijks actieve gebruikers: gebruikers die ten minste één document hebben aangemaakt"
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "Monthly Active Users: Users that had at least one of their documents completed"
-msgstr "Maandelijkse actieve gebruikers: Gebruikers waarvan ten minste één document is voltooid"
+msgstr "Maandelijks actieve gebruikers: gebruikers van wie ten minste één document is voltooid"
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
msgid "Move"
msgstr "Verplaatsen"
#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Move \"{templateTitle}\" to a folder"
-msgstr "Verplaats \"{templateTitle}\" naar een map"
+msgstr "\"{templateTitle}\" naar een map verplaatsen"
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
msgid "Move Document to Folder"
@@ -5460,20 +5538,20 @@ msgstr "Document naar map verplaatsen"
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
msgid "Move Folder"
-msgstr "Map verplaatsten"
+msgstr "Map verplaatsen"
#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Move Template to Folder"
msgstr "Sjabloon naar map verplaatsen"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Move to Folder"
-msgstr "Verplaats naar map"
+msgstr "Naar map verplaatsen"
#: packages/ui/components/document/document-global-auth-access-select.tsx
msgid "Multiple access methods can be selected."
-msgstr "Meerdere toegangsmodi kunnen worden geselecteerd."
+msgstr "Er kunnen meerdere toegangsmethoden worden geselecteerd."
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
msgid "My Folder"
@@ -5481,51 +5559,51 @@ msgstr "Mijn map"
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
msgid "N/A"
-msgstr "N.v.t."
+msgstr "n.v.t."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: 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/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
-#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
-#: apps/remix/app/components/forms/subscription-claim-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: 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
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/forms/subscription-claim-form.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/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Name"
msgstr "Naam"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Name is required"
-msgstr "Naam is vereist"
+msgstr "Naam is verplicht"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
msgid "Name Settings"
-msgstr "Naam Instellingen"
+msgstr "Naam-instellingen"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
msgid "Need to sign documents?"
@@ -5559,11 +5637,11 @@ msgstr "Nieuw wachtwoord"
msgid "New Template"
msgstr "Nieuwe sjabloon"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Next"
msgstr "Volgende"
@@ -5580,10 +5658,10 @@ msgstr "E-mailadres volgende ontvanger"
msgid "Next Recipient Name"
msgstr "Naam volgende ontvanger"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "No"
msgstr "Nee"
@@ -5591,26 +5669,26 @@ msgstr "Nee"
msgid "No active drafts"
msgstr "Geen actieve concepten"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "No documents found"
msgstr "Geen documenten gevonden"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "No folders found"
msgstr "Geen mappen gevonden"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "No folders found matching \"{searchTerm}\""
msgstr "Geen mappen gevonden die overeenkomen met \"{searchTerm}\""
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "No further action is required from you at this time."
-msgstr "Op dit moment is er geen verdere actie van uw kant nodig."
+msgstr "Er is op dit moment geen verdere actie van jou vereist."
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
msgid "No organisations found"
@@ -5618,7 +5696,7 @@ msgstr "Geen organisaties gevonden"
#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "No public profile templates found"
-msgstr "Geen openbare sjablonen gevonden"
+msgstr "Geen openbare profielsjablonen gevonden"
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
msgid "No recent activity"
@@ -5628,25 +5706,27 @@ msgstr "Geen recente activiteit"
msgid "No recent documents"
msgstr "Geen recente documenten"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipient matching this description was found."
-msgstr "Geen ontvanger gevonden die aan deze beschrijving voldoet."
+msgstr "Er is geen ontvanger gevonden die aan deze beschrijving voldoet."
-#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "No recipients"
msgstr "Geen ontvangers"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipients with this role"
msgstr "Geen ontvangers met deze rol"
-#: 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-action-select.tsx
msgid "No restrictions"
msgstr "Geen beperkingen"
@@ -5687,25 +5767,25 @@ msgid "No valid recipients found"
msgstr "Geen geldige ontvangers gevonden"
#: apps/remix/app/components/general/multiselect-role-combobox.tsx
-#: packages/ui/primitives/multi-select-combobox.tsx
#: packages/ui/primitives/combobox.tsx
+#: packages/ui/primitives/multi-select-combobox.tsx
msgid "No value found."
msgstr "Geen waarde gevonden."
#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
msgid "No worries, it happens! Enter your email and we'll email you a special link to reset your password."
-msgstr "Geen zorgen, dat gebeurt! Vul je e-mailadres in en we e-mailen je een speciale link om je wachtwoord te resetten."
+msgstr "Geen zorgen, dat gebeurt wel eens! Vul je e‑mail in en we sturen je een speciale link om je wachtwoord te resetten."
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
#: packages/lib/constants/document.ts
msgid "None"
msgstr "Geen"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Not found"
msgstr "Niet gevonden"
@@ -5718,37 +5798,37 @@ msgstr "Niet ondersteund"
msgid "Nothing to do"
msgstr "Niets te doen"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: 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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Number"
msgstr "Nummer"
#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Number format"
-msgstr "Nummerformaat"
+msgstr "Getalnotatie"
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
msgid "Number needs to be formatted as {numberFormat}"
-msgstr "Nummer moet geformatteerd zijn als {numberFormat}"
+msgstr "Nummer moet worden geformatteerd als {numberFormat}"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of members allowed. 0 = Unlimited"
-msgstr "Aantal toegestane leden. 0 = Onbeperkt"
+msgstr "Aantal toegestane leden. 0 = onbeperkt"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of teams allowed. 0 = Unlimited"
-msgstr "Aantal toegestane teams. 0 = Onbeperkt"
+msgstr "Aantal toegestane teams. 0 = onbeperkt"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
msgid "Number Settings"
-msgstr "Nummer Instellingen"
+msgstr "Nummer-instellingen"
#. placeholder {0}: document.team?.name
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
@@ -5758,7 +5838,7 @@ msgstr "namens \"{0}\" heeft je uitgenodigd om dit document goed te keuren"
#. placeholder {0}: document.team?.name
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
msgid "on behalf of \"{0}\" has invited you to assist this document"
-msgstr "namens \"{0}\" heeft u uitgenodigd om te assisteren bij dit document"
+msgstr "namens \"{0}\" heeft je uitgenodigd om dit document te assisteren"
#. placeholder {0}: document.team?.name
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
@@ -5772,47 +5852,43 @@ msgstr "namens \"{0}\" heeft je uitgenodigd om dit document te bekijken"
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
msgid "On this page, you can create a new webhook."
-msgstr "Op deze pagina kun je een nieuwe webhook maken."
+msgstr "Op deze pagina kun je een nieuwe webhook aanmaken."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "On this page, you can create and manage API tokens. See our <0>Documentation0> for more information."
-msgstr "Op deze pagina kunt u API-tokens maken en beheren. Zie onze <0>Documentatie0> voor meer informatie."
+msgstr "Op deze pagina kun je API-tokens aanmaken en beheren. Zie onze <0>documentatie0> voor meer informatie."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "On this page, you can create new Webhooks and manage the existing ones."
-msgstr "Op deze pagina kun je nieuwe webhooks maken en bestaande beheren."
-
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "On this page, you can edit the webhook and its settings."
-msgstr "Op deze pagina kun je de webhook en de instellingen bewerken."
+msgstr "Op deze pagina kun je nieuwe webhooks aanmaken en bestaande beheren."
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Once confirmed, the following will occur:"
-msgstr "Zodra bevestigd, zullen de volgende dingen gebeuren:"
+msgstr "Na bevestiging gebeurt het volgende:"
#: 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 "Zodra ingeschakeld, kunt u elke actieve ontvanger kiezen voor directe linkondertekening, of een nieuwe creëren. Dit ontvangerstype kan niet worden bewerkt of verwijderd."
+msgstr "Zodra dit is ingeschakeld, kun je elke actieve ontvanger selecteren als ontvanger voor ondertekening via directe link, of een nieuwe aanmaken. Dit type ontvanger kan niet worden bewerkt of verwijderd."
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
msgid "Once you have scanned the QR code or entered the code manually, enter the code provided by your authenticator app below."
-msgstr "Zodra je de QR-code hebt gescand of de code handmatig hebt ingevoerd, voer dan hieronder de code in die door je authenticator-app is verstrekt."
+msgstr "Zodra je de QR‑code hebt gescand of de code handmatig hebt ingevoerd, voer je hieronder de code in die door je authenticator‑app is gegenereerd."
#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
msgid "Once you update your DNS records, it may take up to 48 hours for it to be propogated. Once the DNS propagation is complete you will need to come back and press the \"Sync\" domains button"
-msgstr "Zodra u uw DNS-records bijwerkt, kan het tot 48 uur duren voordat deze zijn doorgegeven. Zodra de DNS-propagatie is voltooid, moet u terugkomen en op de knop \"Domeinen synchroniseren\" drukken."
+msgstr "Zodra je je DNS-records hebt bijgewerkt, kan het tot 48 uur duren voordat deze zijn gepropageerd. Zodra de DNS-propagatie is voltooid, moet je terugkomen en op de knop \"Domeinen synchroniseren\" klikken."
#: 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 "Wanneer uw sjabloon is ingesteld, deel de link waar u maar wilt. Degene die de link opent, kan hun gegevens invoeren in het veld voor directe linkontvangers en alle andere aan hen toegewezen velden invullen."
+msgstr "Zodra je sjabloon is ingesteld, kun je de link overal delen. Degene die de link opent, kan zijn of haar gegevens invoeren in het veld voor directe link-ontvanger en alle andere aan hem/haar toegewezen velden invullen."
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
msgid "One of the documents in the current bundle has a signing role that is not compatible with the current signing experience."
-msgstr "Een van de documenten in de huidige bundel heeft een ondertekenende rol die niet compatibel is met de huidige ondertekeningsomgeving."
+msgstr "Een van de documenten in de huidige bundel heeft een ondertekeningsrol die niet compatibel is met de huidige ondertekeningservaring."
#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Only admins can access and view the document"
-msgstr "Alleen beheerders hebben toegang tot en kunnen het document bekijken"
+msgstr "Alleen beheerders kunnen toegang krijgen tot en het document bekijken"
#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Only managers and above can access and view the document"
@@ -5820,17 +5896,17 @@ msgstr "Alleen managers en hoger kunnen toegang krijgen tot en het document beki
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
msgid "Only one file can be uploaded at a time"
-msgstr "Er kan slechts één bestand tegelijk worden geüpload"
+msgstr "Er kan maar één bestand tegelijk worden geüpload"
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
msgid "Only PDF files are allowed"
msgstr "Alleen PDF-bestanden zijn toegestaan"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Oops! Something went wrong."
msgstr "Oeps! Er is iets misgegaan."
@@ -5846,8 +5922,8 @@ msgstr "Optiewaarde mag niet leeg zijn"
msgid "Options"
msgstr "Opties"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Or"
msgstr "Of"
@@ -5859,9 +5935,10 @@ msgstr "OF"
msgid "Or continue with"
msgstr "Of ga verder met"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Organisation"
msgstr "Organisatie"
@@ -5871,11 +5948,11 @@ msgstr "Organisatiebeheerder"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Organisation authentication portal URL"
-msgstr "Organisatie authenticatieportaal URL"
+msgstr "URL van authenticatieportaal van organisatie"
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
msgid "Organisation created"
-msgstr "Organisatie gecreëerd"
+msgstr "Organisatie aangemaakt"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Organisation group not found"
@@ -5888,41 +5965,41 @@ msgstr "Instellingen organisatiegroep"
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation has been updated successfully"
-msgstr "Organisatie succesvol bijgewerkt"
+msgstr "Organisatie is succesvol bijgewerkt"
-#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
msgid "Organisation Insights"
msgstr "Organisatie-inzichten"
#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
msgid "Organisation invitation"
-msgstr "Organisatie uitnodiging"
+msgstr "Organisatie-uitnodiging"
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
msgid "Organisation invitations have been sent."
-msgstr "Organisatie uitnodigingen zijn verzonden."
+msgstr "Organisatie-uitnodigingen zijn verzonden."
#: packages/lib/constants/organisations-translations.ts
msgid "Organisation Manager"
-msgstr "Organisatiebeheerder"
+msgstr "Organisatiemanager"
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: packages/lib/constants/organisations-translations.ts
msgid "Organisation Member"
msgstr "Organisatielid"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
msgid "Organisation Members"
msgstr "Organisatieleden"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation Name"
msgstr "Organisatienaam"
@@ -5935,8 +6012,8 @@ msgstr "Organisatie niet gevonden"
msgid "Organisation role"
msgstr "Organisatierol"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Organisation Role"
msgstr "Organisatierol"
@@ -5950,23 +6027,23 @@ msgstr "Organisatie-instellingen"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Organisation SSO Portal"
-msgstr "Organisatie SSO Portal"
+msgstr "SSO-portaal van organisatie"
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation Teams"
msgstr "Organisatieteams"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation URL"
msgstr "Organisatie-URL"
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
#: apps/remix/app/routes/_authenticated+/settings+/organisations.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Organisations"
msgstr "Organisaties"
@@ -5976,19 +6053,19 @@ msgstr "Organisaties waarvan de gebruiker lid is."
#: apps/remix/app/components/general/folder/folder-card.tsx
msgid "Organise your documents"
-msgstr "Organiseer uw documenten"
+msgstr "Organiseer je documenten"
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
msgid "Organise your members into groups which can be assigned to teams"
-msgstr "Organiseer uw leden in groepen die aan teams kunnen worden toegewezen"
+msgstr "Organiseer je leden in groepen die aan teams kunnen worden toegewezen"
#: apps/remix/app/components/general/folder/folder-card.tsx
msgid "Organise your templates"
-msgstr "Organiseer uw sjablonen"
+msgstr "Organiseer je sjablonen"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
msgid "Organize your documents and templates"
-msgstr "Organiseer uw documenten en sjablonen"
+msgstr "Organiseer je documenten en sjablonen"
#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
msgctxt "Original document (adjective)"
@@ -5997,22 +6074,22 @@ msgstr "Origineel"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Otherwise, the document will be created as a draft."
-msgstr "Anders wordt het document als concept gemaakt."
+msgstr "Anders wordt het document als concept aangemaakt."
#: apps/remix/app/components/forms/email-preferences-form.tsx
msgid "Override organisation settings"
-msgstr "Overschrijf organisatiestandaarden"
+msgstr "Organisatie-instellingen overschrijven"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Owner"
msgstr "Eigenaar"
@@ -6027,8 +6104,8 @@ msgid "Page {0} of {1}"
msgstr "Pagina {0} van {1}"
#. placeholder {0}: i + 1
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Page {0} of {numPages}"
msgstr "Pagina {0} van {numPages}"
@@ -6036,82 +6113,86 @@ msgstr "Pagina {0} van {numPages}"
msgid "Paid"
msgstr "Betaald"
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
msgid "Passkey"
-msgstr "Toegangssleutel"
+msgstr "Passkey"
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "Passkey already exists for the provided authenticator"
-msgstr "De toegangssleutel bestaat al voor de verstrekte authenticator"
+msgstr "Er bestaat al een passkey voor de opgegeven authenticator"
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "Passkey creation cancelled due to one of the following reasons:"
-msgstr "Aanmaak van toegangssleutel geannuleerd door een van de volgende redenen:"
+msgstr "Aanmaken van passkey is geannuleerd om een van de volgende redenen:"
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
msgid "Passkey has been removed"
-msgstr "Toegangssleutel is verwijderd"
+msgstr "Passkey is verwijderd"
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
msgid "Passkey has been updated"
-msgstr "Toegangssleutel is bijgewerkt"
+msgstr "Passkey is bijgewerkt"
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "Passkey name"
-msgstr "Toegangssleutelnaam"
+msgstr "Naam van passkey"
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Passkey Re-Authentication"
-msgstr "Passkey Hervalidatie"
+msgstr "Passkey‑herauthenticatie"
-#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
msgid "Passkeys"
-msgstr "Toegangssleutels"
+msgstr "Passkeys"
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "Passkeys allow you to sign in and authenticate using biometrics, password managers, etc."
-msgstr "Met toegangssleutels kun je inloggen en authenticeren met biometrische gegevens, wachtwoordmanagers, enz."
+msgstr "Met passkeys kun je inloggen en authenticeren met biometrie, wachtwoordbeheerders, enz."
#: apps/remix/app/components/forms/signin.tsx
msgid "Passkeys are not supported on this browser"
-msgstr "Toegangssleutels worden niet ondersteund op deze browser"
+msgstr "Passkeys worden niet ondersteund in deze browser"
-#: apps/remix/app/components/general/app-command-menu.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
-#: apps/remix/app/components/forms/signup.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Password"
msgstr "Wachtwoord"
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Password Re-Authentication"
-msgstr "Wachtwoord her-authenticatie"
+msgstr "Wachtwoordherauthenticatie"
#: packages/email/templates/forgot-password.tsx
msgid "Password Reset Requested"
-msgstr "Wachtwoord Reset Aangevraagd"
+msgstr "Wachtwoordreset aangevraagd"
#: packages/email/templates/reset-password.tsx
msgid "Password Reset Successful"
-msgstr "Wachtwoord Reset Succesvol"
+msgstr "Wachtwoordreset geslaagd"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Password should not be common or based on personal information"
-msgstr "Wachtwoord mag niet algemeen zijn of gebaseerd op persoonlijke informatie"
+msgstr "Het wachtwoord mag niet algemeen zijn of gebaseerd zijn op persoonlijke informatie."
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Password updated"
msgstr "Wachtwoord bijgewerkt"
#: packages/email/template-components/template-reset-password.tsx
msgid "Password updated!"
-msgstr "Wachtwoord bijgewerkt!"
+msgstr "Wachtwoord bijgewerkt."
+
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Past Due"
+msgstr "Achterstallig"
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
@@ -6122,21 +6203,21 @@ msgstr "Betaling achterstallig"
msgid "PDF Document"
msgstr "PDF-document"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
-#: packages/ui/components/document/document-read-only-fields.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: packages/lib/constants/document.ts
+#: packages/ui/components/document/document-read-only-fields.tsx
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Pending"
msgstr "In behandeling"
#: packages/email/templates/document-pending.tsx
msgid "Pending Document"
-msgstr "In afwachting van Document"
+msgstr "Document in behandeling"
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Pending documents"
@@ -6148,15 +6229,15 @@ msgstr "Documenten in behandeling"
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
msgid "Pending invitations"
-msgstr "Uitnodigingen in behandeling"
+msgstr "Openstaande uitnodigingen"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per month"
msgstr "per maand"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per year"
msgstr "per jaar"
@@ -6165,22 +6246,22 @@ msgctxt "Personal organisation (adjective)"
msgid "Personal"
msgstr "Persoonlijk"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Personal Account"
msgstr "Persoonlijk account"
-#: apps/remix/app/routes/_authenticated+/inbox.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/inbox.tsx
msgid "Personal Inbox"
msgstr "Persoonlijke inbox"
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Pick a number"
-msgstr "Kies een nummer"
+msgstr "Kies een getal"
#: apps/remix/app/components/general/claim-account.tsx
msgid "Pick a password"
@@ -6188,57 +6269,57 @@ msgstr "Kies een wachtwoord"
#: apps/remix/app/components/general/user-profile-timur.tsx
msgid "Pick any of the following agreements below and start signing to get started"
-msgstr "Kies een van de onderstaande overeenkomsten en begin met ondertekenen om te beginnen"
+msgstr "Kies een van de onderstaande overeenkomsten en begin met ondertekenen om te starten"
#: apps/remix/app/components/general/folder/folder-card.tsx
msgid "Pin"
-msgstr "Vastpinnen"
+msgstr "Vastmaken"
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Place and configure form fields in the document"
-msgstr "Plaats en configureer formulier velden in het document"
+msgstr "Plaats en configureer formuliervelden in het document"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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
#: 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 "Placeholder"
#. placeholder {0}: _(actionVerb).toLowerCase()
#: packages/email/template-components/template-document-invite.tsx
msgid "Please {0} your document<0/>\"{documentName}\""
-msgstr "Gelieve {0} je document<0/>\"{documentName}\""
+msgstr "{0} je document<0/>\"{documentName}\""
#: packages/email/templates/document-invite.tsx
msgid "Please {action} your document {documentName}"
-msgstr "Gelieve {action} je document {documentName}"
+msgstr "{action} je document {documentName}"
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
msgid "Please {recipientActionVerb} this document"
-msgstr "Gelieve {recipientActionVerb} dit document"
+msgstr "{recipientActionVerb} dit document"
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
msgid "Please {recipientActionVerb} this document created by your direct template"
-msgstr "Gelieve {recipientActionVerb} dit document gemaakt door uw directe sjabloon"
+msgstr "{recipientActionVerb} dit document dat is aangemaakt via je directe sjabloon"
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
msgid "Please {recipientActionVerb} your document"
-msgstr "Gelieve {recipientActionVerb} je document"
+msgstr "{recipientActionVerb} je document"
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
msgid "Please check the CSV file and make sure it is according to our format"
-msgstr "Controleer het CSV-bestand en zorg ervoor dat dit volgens ons formaat is"
+msgstr "Controleer het CSV‑bestand en zorg dat het overeenkomt met ons formaat"
#: apps/remix/app/components/embed/embed-document-waiting-for-turn.tsx
msgid "Please check with the parent application for more information."
-msgstr "Raadpleeg de hoofdtoepassing voor meer informatie."
+msgstr "Raadpleeg de hoofdapplicatie voor meer informatie."
#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
msgid "Please check your email for updates."
-msgstr "Controleer uw e-mail voor updates."
+msgstr "Controleer je e‑mail voor updates."
#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
msgid "Please choose your new password"
@@ -6248,36 +6329,36 @@ msgstr "Kies je nieuwe wachtwoord"
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
msgid "Please complete the document once reviewed"
-msgstr "Voltooi het document zodra het is nagekeken"
+msgstr "Voltooi het document nadat u het heeft gecontroleerd"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Please configure the document first"
msgstr "Configureer eerst het document"
#: packages/lib/server-only/auth/send-confirmation-email.ts
msgid "Please confirm your email"
-msgstr "Gelieve je e-mail te bevestigen"
+msgstr "Bevestig je e-mailadres"
#: packages/email/templates/confirm-email.tsx
msgid "Please confirm your email address"
-msgstr "Gelieve je e-mailadres te bevestigen"
+msgstr "Bevestig je e-mailadres"
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Please contact support if you would like to revert this action."
-msgstr "Neem contact op met de ondersteuning als je deze actie wilt terugdraaien."
+msgstr "Neem contact op met support als je deze actie ongedaan wilt maken."
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
msgid "Please contact the site owner for further assistance."
-msgstr "Neem contact op met de eigenaar van de site voor verdere hulp."
+msgstr "Neem contact op met de site-eigenaar voor verdere hulp."
#: apps/remix/app/components/forms/token.tsx
msgid "Please enter a meaningful name for your token. This will help you identify it later."
-msgstr "Voer een betekenisvolle naam in voor je token. Dit zal je helpen hem later te identificeren."
+msgstr "Voer een betekenisvolle naam in voor je token. Hiermee kun je het later herkennen."
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Please enter a valid name."
msgstr "Voer een geldige naam in."
@@ -6291,59 +6372,63 @@ msgstr "Markeer als bekeken om te voltooien"
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
msgid "Please mark as viewed to complete."
-msgstr "Markeer alstublieft als bekeken om te voltooien."
+msgstr "Markeer als bekeken om te voltooien."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Please note that anyone who signs in through your portal will be added to your organisation as a member."
-msgstr "Houd er rekening mee dat iedereen die via uw portaal inlogt, aan uw organisatie als lid wordt toegevoegd."
+msgstr "Let op: iedereen die via uw portaal inlogt, wordt als lid aan uw organisatie toegevoegd."
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Please note that proceeding will remove direct linking recipient and turn it into a placeholder."
-msgstr "Let op dat doorgaan ervoor zorgt dat de directe koppelingsontvanger wordt verwijderd en wordt omgezet in een tijdelijke aanduiding."
+msgstr "Let op: doorgaan verwijdert de ontvanger voor direct linken en verandert deze in een placeholder."
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Please note that this action is <0>irreversible0>."
-msgstr "Let op dat deze actie <0>onomkeerbaar0> is."
+msgstr "Let op: deze actie is <0>onomkeerbaar0>."
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Please note that this action is <0>irreversible0>. Once confirmed, this document will be permanently deleted."
-msgstr "Wees ervan bewust dat deze actie <0>onomkeerbaar0> is. Na bevestiging wordt dit document permanent verwijderd."
+msgstr "Let op: deze actie is <0>onomkeerbaar0>. Na bevestiging wordt dit document permanent verwijderd."
#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
msgid "Please note that this action is irreversible. Once confirmed, your template will be permanently deleted."
-msgstr "Let op dat deze actie onomkeerbaar is. Na bevestiging wordt je sjabloon permanent verwijderd."
+msgstr "Let op: deze actie is onomkeerbaar. Na bevestiging wordt je sjabloon permanent verwijderd."
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
msgid "Please note that this action is irreversible. Once confirmed, your token will be permanently deleted."
-msgstr "Let op dat deze actie onomkeerbaar is. Na bevestiging wordt je token permanent verwijderd."
+msgstr "Let op: deze actie is onomkeerbaar. Na bevestiging wordt je token permanent verwijderd."
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "Please note that this action is irreversible. Once confirmed, your webhook will be permanently deleted."
-msgstr "Let op dat deze actie onomkeerbaar is. Na bevestiging wordt je webhook permanent verwijderd."
+msgstr "Let op: deze actie is onomkeerbaar. Na bevestiging wordt je webhook permanent verwijderd."
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
msgid "Please note that you will lose access to all documents associated with this team & all the members will be removed and notified"
-msgstr "Let op dat je de toegang tot alle documenten die aan dit team zijn gekoppeld verliest & alle leden worden verwijderd en op de hoogte gesteld"
+msgstr "Let op: je verliest de toegang tot alle documenten die aan dit team zijn gekoppeld; alle leden worden verwijderd en op de hoogte gebracht"
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
msgid "Please open your authenticator app and enter the 6-digit code for this document."
-msgstr "Open alstublieft uw authenticator-app en voer de 6-cijferige code voor dit document in."
+msgstr "Open uw authenticatie-app en voer de 6-cijferige code voor dit document in."
+
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+msgid "Please provide a reason for rejecting this document"
+msgstr "Geef een reden op voor het weigeren van dit document"
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
msgid "Please provide a token from the authenticator, or a backup code. If you do not have a backup code available, please contact support."
-msgstr "Geef een token van de authenticator of een back-upcode op. Als je geen back-upcode hebt, neem dan contact op met de ondersteuning."
+msgstr "Voer een token uit de authenticator of een back‑upcode in. Als je geen back‑upcode hebt, neem dan contact op met support."
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Please provide a token from your authenticator, or a backup code."
-msgstr "Geef een token van je authenticator of een back-upcode op."
+msgstr "Voer een token van je authenticator of een back‑upcode in."
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
msgid "Please review the document before approving."
-msgstr "Beoordeel het document voordat u goedkeurt."
+msgstr "Controleer het document voordat je het goedkeurt."
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
msgid "Please review the document before signing."
-msgstr "Gelieve het document te bekijken voordat u het ondertekent."
+msgstr "Controleer het document voordat je ondertekent."
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Please select a PDF file"
@@ -6351,7 +6436,7 @@ msgstr "Selecteer een PDF-bestand"
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
msgid "Please select how you'd like to receive your verification code."
-msgstr "Selecteer alstublieft hoe u uw verificatiecode wilt ontvangen."
+msgstr "Selecteer hoe u uw verificatiecode wilt ontvangen."
#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
msgid "Please try a different domain."
@@ -6359,33 +6444,33 @@ msgstr "Probeer een ander domein."
#: apps/remix/app/components/forms/send-confirmation-email.tsx
msgid "Please try again and make sure you enter the correct email address."
-msgstr "Probeer opnieuw en zorg ervoor dat je het juiste e-mailadres invoert."
+msgstr "Probeer het opnieuw en controleer of je het juiste e‑mailadres hebt ingevoerd."
#: apps/remix/app/components/dialogs/template-create-dialog.tsx
msgid "Please try again later."
-msgstr "Probeer het later nog eens."
+msgstr "Probeer het later opnieuw."
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Please try again or contact our support."
msgstr "Probeer het opnieuw of neem contact op met onze ondersteuning."
#. placeholder {0}: `'${_(deleteMessage)}'`
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Please type {0} to confirm"
-msgstr "Type {0} om te bevestigen"
+msgstr "Typ {0} om te bevestigen."
#. placeholder {0}: user.email
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
msgid "Please type <0>{0}0> to confirm."
msgstr "Typ <0>{0}0> om te bevestigen."
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Please upload a document to continue"
-msgstr "Upload alstublieft een document om verder te gaan"
+msgstr "Upload een document om door te gaan"
#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Please upload a logo"
@@ -6393,40 +6478,40 @@ msgstr "Upload een logo"
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
msgid "Pre-formatted CSV template with example data."
-msgstr "Vooraf ingevulde sjabloon-CSV met voorbeeldgegevens."
+msgstr "Vooraf opgemaakte CSV-sjabloon met voorbeeldgegevens."
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Preferences"
msgstr "Voorkeuren"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Preview"
-msgstr "Voorvertoning"
+msgstr "Voorbeeld"
#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
msgid "Preview and configure template."
-msgstr "Bekijk en configureer sjabloon."
+msgstr "Bekijk en configureer de sjabloon."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Preview Mode"
-msgstr "Voorbeeldmodus"
+msgstr "Previewmodus"
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Preview the document before sending"
-msgstr "Vergelijk het document voordat je het verzendt"
+msgstr "Bekijk een voorbeeld van het document voordat u het verstuurt"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Preview what the signed document will look like with placeholder data"
-msgstr "Bekijk hoe het ondertekende document eruit zal zien met plaatsaanduidingsgegevens"
+msgstr "Bekijk een voorbeeld van hoe het ondertekende document eruitziet met placeholdergegevens"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Private"
msgstr "Privé"
@@ -6436,16 +6521,20 @@ msgstr "Privésjabloon"
#: apps/remix/app/components/tables/templates-table.tsx
msgid "Private templates can only be modified and viewed by you."
-msgstr "Privésjablonen kunnen alleen door jou worden bewerkt en bekeken."
+msgstr "Privésjablonen kunnen alleen door jou worden bekeken en bewerkt."
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
msgid "Proceed"
msgstr "Doorgaan"
-#: 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/routes/_recipient+/sign.$token+/complete.tsx
+msgid "Processing document"
+msgstr "Document verwerken"
+
#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/profile.tsx
msgid "Profile"
msgstr "Profiel"
@@ -6457,8 +6546,8 @@ msgstr "Profiel is momenteel <0>verborgen0>."
msgid "Profile is currently <0>visible0>."
msgstr "Profiel is momenteel <0>zichtbaar0>."
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Profile updated"
msgstr "Profiel bijgewerkt"
@@ -6468,43 +6557,43 @@ msgstr "Voortgang"
#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Provider"
-msgstr "Leverancier"
+msgstr "Provider"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Provider has been updated successfully"
msgstr "Provider is succesvol bijgewerkt"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Public"
msgstr "Openbaar"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Public Profile"
msgstr "Openbaar profiel"
#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "Public profile URL"
-msgstr "URL van openbaar profiel"
+msgstr "Openbare profiel‑URL"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
msgid "Public Template"
-msgstr "Publiek sjabloon"
+msgstr "Publieke sjabloon"
#: apps/remix/app/components/tables/templates-table.tsx
msgid "Public templates are connected to your public profile. Any modifications to public templates will also appear in your public profile."
-msgstr "Openbare sjablonen zijn gekoppeld aan je openbare profiel. Wijzigingen in openbare sjablonen worden ook in je openbare profiel weergegeven."
+msgstr "Openbare sjablonen zijn gekoppeld aan je openbare profiel. Alle wijzigingen aan openbare sjablonen worden ook zichtbaar in je openbare profiel."
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Quick Actions"
msgstr "Snelle acties"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Radio"
msgstr "Radio"
@@ -6517,18 +6606,18 @@ msgstr "Radio-instellingen"
msgid "Radio values"
msgstr "Radiowaarden"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Read only"
-msgstr "Alleen lezen"
+msgstr "Alleen-lezen"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Read Only"
-msgstr "Alleen lezen"
+msgstr "Alleen-lezen"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "Read our documentation to get started with Documenso."
@@ -6536,11 +6625,11 @@ msgstr "Lees onze documentatie om aan de slag te gaan met Documenso."
#: apps/remix/app/components/general/document-signing/document-signing-disclosure.tsx
msgid "Read the full <0>signature disclosure0>."
-msgstr "Lees de volledige <0>handtekening bekendmaking0>."
+msgstr "Lees de volledige <0>kennisgeving elektronische handtekening0>."
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
msgid "Ready"
-msgstr "Gereed"
+msgstr "Klaar"
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Reason"
@@ -6552,26 +6641,26 @@ msgstr "Reden voor annulering: {cancellationReason}"
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
msgid "Reason for rejection: "
-msgstr "Reden voor afwijzing: "
+msgstr "Reden voor weigering: "
#: packages/email/template-components/template-document-rejected.tsx
msgid "Reason for rejection: {rejectionReason}"
-msgstr "Reden van afwijzing: {rejectionReason}"
+msgstr "Reden van weigering: {rejectionReason}"
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
msgid "Reason must be less than 500 characters"
-msgstr "Reden moet minder dan 500 karakters bevatten"
+msgstr "De reden moet uit minder dan 500 tekens bestaan."
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
msgid "Reauthentication is required to sign this field"
-msgstr "Opnieuw authenticatie is vereist om dit veld te ondertekenen"
+msgstr "Opnieuw authenticeren is vereist om dit veld te ondertekenen"
#: packages/ui/components/recipient/recipient-role-select.tsx
msgid "Receives copy"
msgstr "Ontvangt kopie"
-#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Recent activity"
msgstr "Recente activiteit"
@@ -6579,10 +6668,10 @@ msgstr "Recente activiteit"
msgid "Recent documents"
msgstr "Recente documenten"
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: 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
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
@@ -6592,47 +6681,47 @@ msgid "Recipient"
msgstr "Ontvanger"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Recipient action authentication"
-msgstr "Authenticatie van ontvangeractie"
+msgstr "Authenticatie voor ontvangeractie"
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Recipient removed email"
-msgstr "E-mail van verwijderde ontvanger"
+msgstr "E-mail bij verwijderde ontvanger"
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Recipient signed email"
-msgstr "E-mailadres van ondertekenaar"
+msgstr "E-mail bij ondertekende ontvanger"
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Recipient signing request email"
-msgstr "E-mail met verzoek om ondertekening van de ontvanger"
+msgstr "E-mail voor ondertekeningsverzoek aan ontvanger"
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
msgid "Recipient updated"
msgstr "Ontvanger bijgewerkt"
-#: 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
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Recipients"
msgstr "Ontvangers"
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "Recipients metrics"
-msgstr "Ontvangersstatistieken"
+msgstr "Ontvangerstatistieken"
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
msgid "Recipients will be able to sign the document once sent"
-msgstr "Ontvangers kunnen het document ondertekenen zodra het verzonden is."
+msgstr "Ontvangers kunnen het document ondertekenen zodra het is verzonden"
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Recipients will still retain their copy of the document"
-msgstr "Ontvangers zullen hun kopie van het document behouden"
+msgstr "Ontvangers behouden nog steeds hun kopie van het document"
#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
msgid "Record Name"
@@ -6660,61 +6749,61 @@ msgstr "Rood"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Redirect URI"
-msgstr "Redirect URI"
+msgstr "Redirect-URI"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Redirect URL"
-msgstr "Omleidings-URL"
+msgstr "Redirect-URL"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
msgid "Redirecting"
-msgstr "Omleiden"
+msgstr "Doorsturen"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Registration Successful"
-msgstr "Registratie Succesvol"
+msgstr "Registratie geslaagd"
#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Reject"
-msgstr "Afwijzen"
+msgstr "Weigeren"
-#: 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
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.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
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
msgid "Reject Document"
msgstr "Document weigeren"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
msgid "Rejected"
-msgstr "Afgewezen"
+msgstr "Geweigerd"
#: packages/email/template-components/template-document-rejection-confirmed.tsx
msgid "Rejection Confirmed"
-msgstr "Afwijzing Bevestigd"
+msgstr "Weigering bevestigd"
#: packages/email/template-components/template-document-rejection-confirmed.tsx
msgid "Rejection reason: {reason}"
-msgstr "Afwijsreden: {reason}"
+msgstr "Reden van weigering: {reason}"
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
msgid "Reload"
-msgstr "Vernieuwen"
+msgstr "Opnieuw laden"
#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
msgid "Remembered your password? <0>Sign In0>"
-msgstr "Herinnerde je je wachtwoord? <0>Log in0>"
+msgstr "Weet je je wachtwoord weer? <0>Log in0>"
#. placeholder {0}: envelope.documentMeta.subject
#: packages/lib/server-only/document/resend-document.ts
@@ -6724,91 +6813,95 @@ msgstr "Herinnering: {0}"
#. placeholder {0}: envelope.team.name
#: packages/lib/server-only/document/resend-document.ts
msgid "Reminder: {0} invited you to {recipientActionVerb} a document"
-msgstr "Herinnering: {0} heeft je uitgenodigd om een document {recipientActionVerb} te {recipientActionVerb}"
+msgstr "Herinnering: {0} heeft je uitgenodigd om een document te {recipientActionVerb}"
#: packages/lib/server-only/document/resend-document.ts
msgid "Reminder: Please {recipientActionVerb} this document"
-msgstr "Herinnering: Gelieve dit document te {recipientActionVerb}"
+msgstr "Herinnering: {recipientActionVerb} dit document"
#: packages/lib/server-only/document/resend-document.ts
msgid "Reminder: Please {recipientActionVerb} your document"
-msgstr "Herinnering: Gelieve je document te {recipientActionVerb}"
+msgstr "Herinnering: {recipientActionVerb} je document"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/avatar-image.tsx
-#: apps/remix/app/components/dialogs/template-use-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-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Remove"
msgstr "Verwijderen"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Remove email domain"
-msgstr "Verwijder e-maildomein"
+msgstr "E-maildomein verwijderen"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Remove organisation group"
-msgstr "Verwijder organisatiegroep"
+msgstr "Organisatiegroep verwijderen"
#: apps/remix/app/components/tables/organisation-members-table.tsx
msgid "Remove organisation member"
-msgstr "Verwijder organisatielid"
+msgstr "Organisatielid verwijderen"
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
msgid "Remove team email"
-msgstr "Team-e-mail verwijderen"
+msgstr "Team‑e‑mail verwijderen"
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Remove team member"
msgstr "Teamlid verwijderen"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Repeat Password"
-msgstr "Herhaal wachtwoord"
+msgstr "Wachtwoord herhalen"
#: apps/remix/app/components/forms/email-preferences-form.tsx
msgid "Reply to email"
-msgstr "Antwoord op e-mail"
+msgstr "Reply-to e-mailadres"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Reply To Email"
-msgstr "Antwoord op E-mail"
+msgstr "Reply-to e-mailadres"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Request"
+msgstr "Verzoek"
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Requesting Organisation"
-msgstr "Aangevraagde organisatie"
+msgstr "Aanvragende organisatie"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Required field"
msgstr "Vereist veld"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Required Field"
-msgstr "Verplicht veld"
+msgstr "Veld verplicht"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Required scopes"
@@ -6818,63 +6911,64 @@ msgstr "Vereiste scopes"
msgid "Reseal document"
msgstr "Document opnieuw verzegelen"
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Resend"
msgstr "Opnieuw verzenden"
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
msgid "Resend code"
-msgstr "Code opnieuw verzenden"
+msgstr "Code opnieuw versturen"
#: apps/remix/app/components/general/verify-email-banner.tsx
msgid "Resend Confirmation Email"
-msgstr "Verzending van bevestigingsmail opnieuw verzenden"
+msgstr "Bevestigingsmail opnieuw verzenden"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Resend Document"
-msgstr "Document opnieuw verzenden"
+msgstr "Document opnieuw versturen"
#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
msgid "Resend verification"
msgstr "Verificatie opnieuw verzenden"
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Reset"
-msgstr "Opnieuw instellen"
+msgstr "Resetten"
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "Reset 2FA"
-msgstr "Reset 2FA"
+msgstr "2FA resetten"
#: apps/remix/app/components/forms/forgot-password.tsx
msgid "Reset email sent"
-msgstr "E-mail opnieuw instellen verzonden"
+msgstr "Resetmail verzonden"
-#: 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
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Reset Password"
-msgstr "Wachtwoord opnieuw instellen"
+msgstr "Wachtwoord resetten"
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "Reset the users two factor authentication. This action is irreversible and will disable two factor authentication for the user."
-msgstr "Reset de tweefactorverificatie van de gebruiker. Deze actie is onomkeerbaar en zal de tweefactorverificatie voor de gebruiker uitschakelen."
+msgstr "Reset de tweefactorauthenticatie van de gebruiker. Deze actie is onomkeerbaar en schakelt tweefactorauthenticatie voor de gebruiker uit."
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "Reset Two Factor Authentication"
-msgstr "Reset tweefactorverificatie"
+msgstr "Tweefactorauthenticatie resetten"
#: apps/remix/app/components/forms/reset-password.tsx
msgid "Resetting Password..."
-msgstr "Wachtwoord opnieuw instellen..."
+msgstr "Wachtwoord wordt gereset..."
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
msgid "Resolve"
@@ -6884,9 +6978,21 @@ msgstr "Oplossen"
msgid "Resolve payment"
msgstr "Betaling oplossen"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response"
+msgstr "Antwoord"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Code"
+msgstr "Responscode"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Headers"
+msgstr "Responsheaders"
+
#: 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 "Wees gerust, uw document is strikt vertrouwelijk en zal nooit worden gedeeld. Alleen uw ondertekeningservaring zal worden benadrukt. Deel uw gepersonaliseerde ondertekeningskaart om uw handtekening te tonen!"
+msgstr "Wees gerust, je document is strikt vertrouwelijk en wordt nooit gedeeld. Alleen je ondertekeningservaring wordt uitgelicht. Deel je gepersonaliseerde ondertekeningskaart om je handtekening te laten zien!"
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
msgid "Restricted Access"
@@ -6894,7 +7000,7 @@ msgstr "Beperkte toegang"
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Retention of Documents"
-msgstr "Bewaring van Documenten"
+msgstr "Bewaring van documenten"
#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
msgid "Retried"
@@ -6904,41 +7010,41 @@ msgstr "Opnieuw geprobeerd"
msgid "Retry"
msgstr "Opnieuw proberen"
-#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "Return"
msgstr "Terugkeren"
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Return to Documenso sign in page here"
-msgstr "Keer hier terug naar de Documenso-aanmeldingspagina"
+msgstr "Ga hier terug naar de Documenso-aanmeldpagina"
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Return to documents"
-msgstr "Keer terug naar documenten"
+msgstr "Terug naar documenten"
#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
msgid "Return to Home"
-msgstr "Terug naar startpagina"
+msgstr "Terug naar home"
-#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
msgid "Return to sign in"
msgstr "Terug naar inloggen"
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Return to templates"
-msgstr "Keer terug naar sjablonen"
+msgstr "Terug naar sjablonen"
#: packages/email/templates/organisation-account-link-confirmation.tsx
msgid "Review request"
-msgstr "Beoordeel verzoek"
+msgstr "Verzoek beoordelen"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Revoke"
msgstr "Intrekken"
@@ -6956,24 +7062,24 @@ msgstr "Alle sessies intrekken"
msgid "Right"
msgstr "Rechts"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Role"
msgstr "Rol"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Roles"
msgstr "Rollen"
@@ -6981,11 +7087,11 @@ msgstr "Rollen"
msgid "Rows per page"
msgstr "Rijen per pagina"
-#: 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/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
msgid "Save"
msgstr "Opslaan"
@@ -7002,14 +7108,15 @@ msgstr "Sjabloon opslaan"
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
msgid "Sealing job started"
-msgstr "Verzegeljob gestart"
+msgstr "Verzegelingstaak gestart"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
-#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Search"
msgstr "Zoeken"
@@ -7019,19 +7126,23 @@ msgstr "Zoek en beheer alle organisaties"
#: apps/remix/app/routes/_authenticated+/admin+/claims.tsx
msgid "Search by claim ID or name"
-msgstr "Zoek op claim ID of naam"
+msgstr "Zoeken op claim-ID of naam"
#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
msgid "Search by document title"
-msgstr "Zoek op documenttitel"
+msgstr "Zoeken op documenttitel"
+
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Search by ID"
+msgstr "Zoek op ID"
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
msgid "Search by name or email"
-msgstr "Zoek op naam of e-mail"
+msgstr "Zoeken op naam of e‑mail"
#: apps/remix/app/routes/_authenticated+/admin+/organisations._index.tsx
msgid "Search by organisation ID, name, customer ID or owner email"
-msgstr "Zoek op organisatienummer, naam, klant-ID of e-mail van eigenaar"
+msgstr "Zoeken op organisatie-ID, naam, klant-ID of e-mailadres van eigenaar"
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
msgid "Search by organisation name"
@@ -7041,26 +7152,26 @@ msgstr "Zoek op organisatienaam"
msgid "Search documents..."
msgstr "Documenten zoeken..."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "Search folders..."
-msgstr "Zoek mappen..."
+msgstr "Mappen zoeken..."
#: packages/ui/components/common/language-switcher-dialog.tsx
msgid "Search languages..."
-msgstr "Zoek talen..."
+msgstr "Talen zoeken..."
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
msgid "Secret"
msgstr "Geheim"
-#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Security"
msgstr "Beveiliging"
@@ -7070,11 +7181,11 @@ msgstr "Beveiligingsactiviteit"
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
msgid "See the background jobs tab for the status"
-msgstr "Raadpleeg het achtergrondtaak-tabblad voor de status"
+msgstr "Zie het tabblad Achtergrondtaken voor de status"
#: 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
+#: packages/ui/primitives/document-flow/types.ts
msgid "Select"
msgstr "Selecteren"
@@ -7088,11 +7199,15 @@ msgstr "Selecteer een map om dit document naar te verplaatsen."
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Select a plan"
-msgstr "Kies een plan"
+msgstr "Selecteer een abonnement"
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Select a plan to continue"
-msgstr "Selecteer een plan om door te gaan"
+msgstr "Selecteer een abonnement om verder te gaan"
+
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Select a recipient"
+msgstr "Selecteer een ontvanger"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
msgid "Select a team to view its dashboard"
@@ -7100,11 +7215,11 @@ msgstr "Selecteer een team om het dashboard te bekijken"
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "Select a template you'd like to display on your public profile"
-msgstr "Selecteer een sjabloon dat je wilt tonen op je openbare profiel"
+msgstr "Selecteer een sjabloon die je in je openbare profiel wilt tonen"
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "Select a template you'd like to display on your team's public profile"
-msgstr "Selecteer een sjabloon dat je wilt tonen op het openbare profiel van je team"
+msgstr "Selecteer een sjabloon die je in het openbare profiel van je team wilt tonen"
#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Select a time zone"
@@ -7112,7 +7227,11 @@ msgstr "Selecteer een tijdzone"
#: packages/ui/components/document/document-global-auth-access-select.tsx
msgid "Select access methods"
-msgstr "Selecteer toegangsmethoden"
+msgstr "Selecteer toegangsmethoden"
+
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+msgid "Select an event type"
+msgstr "Selecteer een gebeurtenistype"
#: apps/remix/app/components/dialogs/sign-field-dropdown-dialog.tsx
#: packages/ui/primitives/combobox.tsx
@@ -7128,22 +7247,22 @@ msgstr "Selecteer een organisatie om teams te bekijken"
msgid "Select at least"
msgstr "Selecteer minimaal"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "Select authentication methods"
msgstr "Selecteer authenticatiemethoden"
#: apps/remix/app/components/forms/editor/editor-field-dropdown-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
msgid "Select default option"
-msgstr "Selecteer standaardoptie"
+msgstr "Standaardoptie selecteren"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Select default role"
msgstr "Selecteer standaardrol"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Select direction"
msgstr "Selecteer richting"
@@ -7154,39 +7273,48 @@ msgstr "Selecteer groepen"
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
msgid "Select groups of members to add to the team."
-msgstr "Selecteer groepen leden om toe te voegen aan het team."
+msgstr "Selecteer groepen leden om aan het team toe te voegen."
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
msgid "Select groups to add to this team"
msgstr "Selecteer groepen om aan dit team toe te voegen"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Select members"
msgstr "Selecteer leden"
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "Select members or groups of members to add to the team."
-msgstr "Selecteer leden of groepen leden om toe te voegen aan het team."
+msgstr "Selecteer leden of groepen leden om aan het team toe te voegen."
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "Select members to add to this team"
-msgstr "Selecteer leden om toe te voegen aan dit team"
+msgstr "Selecteer leden om aan dit team toe te voegen"
#: packages/lib/utils/fields.ts
msgid "Select Option"
-msgstr "Selecteer Optie"
+msgstr "Selecteer optie"
#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
msgid "Select passkey"
-msgstr "Selecteer toegangssleutel"
+msgstr "Passkey selecteren"
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Select signature types"
-msgstr "Selecteer handtekeningtypes"
+msgstr "Selecteer handtekeningtypen"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Select text align"
msgstr "Selecteer tekstuitlijning"
@@ -7196,16 +7324,20 @@ msgstr "Selecteer de bestanden die u wilt downloaden."
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
msgid "Select the members to add to this group"
-msgstr "Selecteer de leden om aan deze groep toe te voegen"
+msgstr "Selecteer de leden die je aan deze groep wilt toevoegen"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Select the members to include in this group"
-msgstr "Selecteer de leden die in deze groep moeten worden opgenomen"
+msgstr "Selecteer de leden die je in deze groep wilt opnemen"
#: apps/remix/app/components/general/webhook-multiselect-combobox.tsx
#: apps/remix/app/components/general/webhook-multiselect-combobox.tsx
msgid "Select triggers"
-msgstr "Selecteer triggers"
+msgstr "Triggers selecteren"
+
+#: packages/ui/primitives/multi-select-combobox.tsx
+msgid "Select values..."
+msgstr "Waarden selecteren..."
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Select vertical align"
@@ -7215,81 +7347,81 @@ msgstr "Selecteer verticale uitlijning"
msgid "Select visibility"
msgstr "Selecteer zichtbaarheid"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Selected Recipient"
msgstr "Geselecteerde ontvanger"
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send"
-msgstr "Verstuur"
+msgstr "Verzenden"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Send a test webhook with sample data to verify your integration is working correctly."
-msgstr "Verstuur een test-webhook met voorbeeldgegevens om te verifiëren dat uw integratie correct werkt."
+msgstr "Stuur een testwebhook met voorbeeldgegevens om te verifiëren dat je integratie correct werkt."
#: apps/remix/app/components/forms/send-confirmation-email.tsx
msgid "Send confirmation email"
-msgstr "Bevestigingse-mail versturen"
+msgstr "Bevestigingsmail verzenden"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Send document"
-msgstr "Document versturen"
+msgstr "Document verzenden"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send Document"
-msgstr "Stuur Document"
+msgstr "Document verzenden"
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Send document completed email"
-msgstr "Stuur voltooide document e-mail"
+msgstr "E-mail bij voltooid document verzenden"
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Send document completed email to the owner"
-msgstr "Stuur voltooide document-e-mail naar de eigenaar"
+msgstr "E-mail bij voltooid document naar de eigenaar verzenden"
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Send document deleted email"
-msgstr "Stuur verwijderde document-email"
+msgstr "E-mail bij verwijderd document verzenden"
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Send document pending email"
-msgstr "Stuur e-mail in afwachting van document"
+msgstr "E-mail bij document in behandeling verzenden"
#: packages/email/templates/confirm-team-email.tsx
msgid "Send documents on behalf of the team using the email address"
-msgstr "Stuur documenten namens het team met behulp van het e-mailadres"
+msgstr "Documenten versturen namens het team met dit e-mailadres"
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
msgid "Send documents to recipients immediately"
-msgstr "Stuur documenten direct naar ontvangers"
+msgstr "Documenten direct naar ontvangers verzenden"
#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Send on Behalf of Team"
-msgstr "Verstuur namens team"
+msgstr "Verzenden namens team"
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Send recipient removed email"
-msgstr "Stuur verwijderde ontvanger e-mail"
+msgstr "E-mail bij verwijderde ontvanger verzenden"
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Send recipient signed email"
-msgstr "Stuur ondertekende ontvanger e-mail"
+msgstr "E-mail bij ondertekende ontvanger verzenden"
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "Send recipient signing request email"
-msgstr "Stuur e-mail met aanvraag voor ondertekening van de ontvanger"
+msgstr "E-mail voor ondertekeningsverzoek aan ontvanger verzenden"
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
msgid "Send reminder"
msgstr "Herinnering sturen"
@@ -7297,25 +7429,23 @@ msgstr "Herinnering sturen"
msgid "Send reminders to the following recipients"
msgstr "Stuur herinneringen naar de volgende ontvangers"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
-msgid "Send Test Webhook"
-msgstr "Verzend Test-Webhook"
-
-#: apps/remix/app/components/tables/inbox-table.tsx
#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Sender"
-msgstr "Verzender"
+msgstr "Afzender"
#: apps/remix/app/components/forms/forgot-password.tsx
msgid "Sending Reset Email..."
-msgstr "Reset e-mail verzenden..."
+msgstr "Resetmail wordt verzonden..."
#: apps/remix/app/components/general/verify-email-banner.tsx
msgid "Sending..."
msgstr "Verzenden..."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Sent"
msgstr "Verzonden"
@@ -7333,21 +7463,21 @@ msgstr "Stel een wachtwoord in"
#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
msgid "Set up your document properties and recipient information"
-msgstr "Stel uw documenteigenschappen en ontvangerinformatie in"
+msgstr "Stel je documenteigenschappen en ontvangerinformatie in"
#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
msgid "Set up your template properties and recipient information"
-msgstr "Stel uw sjablooneigenschappen en ontvangerinformatie in"
+msgstr "Stel je sjablooneigenschappen en ontvangerinformatie in"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/_layout.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/app-nav-mobile.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
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
msgid "Settings"
msgstr "Instellingen"
@@ -7355,17 +7485,14 @@ msgstr "Instellingen"
msgid "Setup"
msgstr "Instellen"
-#: 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/tables/documents-table-action-dropdown.tsx
+#: packages/ui/components/document/document-share-button.tsx
msgid "Share"
msgstr "Delen"
-#: packages/ui/components/document/document-share-button.tsx
-msgid "Share Signature Card"
-msgstr "Deel Handtekeningenkaart"
-
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Share Signing Card"
msgstr "Ondertekenkaart delen"
@@ -7375,42 +7502,42 @@ msgstr "Deel de link"
#: packages/ui/components/document/document-share-button.tsx
msgid "Share your signing experience!"
-msgstr "Deel uw ondertekeningservaring!"
+msgstr "Deel je ondertekeningservaring!"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Show"
-msgstr "Toon"
+msgstr "Tonen"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Show advanced settings"
msgstr "Geavanceerde instellingen weergeven"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Show templates in your public profile for your audience to sign and get started quickly"
-msgstr "Toon sjablonen in je openbare profiel zodat je publiek deze snel kan ondertekenen en beginnen"
+msgstr "Toon sjablonen in je openbare profiel zodat je publiek snel kan ondertekenen en beginnen"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/components/tables/inbox-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/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-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
-#: apps/remix/app/components/general/document/document-page-view-button.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/user-profile-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Sign"
msgstr "Ondertekenen"
@@ -7429,23 +7556,23 @@ msgstr "Ondertekenen als {0} <0>({1})0>"
#. placeholder {1}: recipient.email
#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
msgid "Sign as<0>{0} <1>({1})1>0>"
-msgstr "Onderteken als<0>{0} <1>({1})1>0>"
+msgstr "Ondertekenen als<0>{0} <1>({1})1>0>"
#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
msgid "Sign Checkbox Field"
-msgstr "Aanvinkvak ondertekenen"
+msgstr "Checkboxveld ondertekenen"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign document"
msgstr "Document ondertekenen"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Sign Document"
-msgstr "Document Ondertekenen"
+msgstr "Document ondertekenen"
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
msgid "Sign Documents"
@@ -7453,111 +7580,111 @@ msgstr "Documenten ondertekenen"
#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
msgid "Sign Email"
-msgstr "Onderteken e-mail"
+msgstr "E-mail ondertekenen"
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
msgid "Sign field"
-msgstr "Ondertekengedeelte"
+msgstr "Ondertekenveld"
#: apps/remix/app/components/forms/signup.tsx
msgid "Sign Here"
-msgstr "Hier ondertekenen"
+msgstr "Hier tekenen"
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: packages/email/template-components/template-reset-password.tsx
msgid "Sign In"
msgstr "Inloggen"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Sign in to your account"
-msgstr "Meld je aan bij je account"
+msgstr "Log in op je account"
#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
msgid "Sign Initials"
-msgstr "Onderteken initialen"
+msgstr "Initialen ondertekenen"
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
msgid "Sign Name"
-msgstr "Onderteken naam"
+msgstr "Naam ondertekenen"
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
msgid "Sign Number Field"
-msgstr "Onderteken nummer veld"
+msgstr "Nummer-veld ondertekenen"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Sign Out"
msgstr "Uitloggen"
#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
msgid "Sign Signature Field"
-msgstr "Onderteken handtekengingsveld"
+msgstr "Handtekeningveld ondertekenen"
#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
msgid "Sign Text Field"
-msgstr "Onderteken tekstveld"
+msgstr "Tekstveld ondertekenen"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign the document to complete the process."
msgstr "Onderteken het document om het proces te voltooien."
#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Sign up"
-msgstr "Aanmelden"
+msgstr "Registreren"
#: apps/remix/app/components/forms/signup.tsx
msgid "Sign Up with Google"
-msgstr "Aanmelden met Google"
+msgstr "Registreren met Google"
#: apps/remix/app/components/forms/signup.tsx
msgid "Sign Up with Microsoft"
-msgstr "Aanmelden met Microsoft"
+msgstr "Registreren met Microsoft"
#: apps/remix/app/components/forms/signup.tsx
msgid "Sign Up with OIDC"
-msgstr "Aanmelden met OIDC"
+msgstr "Registreren met OIDC"
#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
msgid "Sign your email into the field"
-msgstr "Teken uw e-mail in het veld"
+msgstr "Schrijf uw e-mailadres in het veld"
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
msgid "Sign your full name into the field"
-msgstr "Teken uw volledige naam in het veld"
+msgstr "Schrijf uw volledige naam in het veld"
#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
msgid "Sign your initials into the field"
-msgstr "Teken uw initialen in het veld"
+msgstr "Schrijf uw initialen in het veld"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Signature"
msgstr "Handtekening"
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Signature ID"
-msgstr "Handtekening-ID"
+msgstr "Handtekening‑ID"
#: packages/ui/primitives/signature-pad/signature-pad-draw.tsx
msgid "Signature is too small"
@@ -7565,7 +7692,7 @@ msgstr "Handtekening is te klein"
#: apps/remix/app/components/forms/profile.tsx
msgid "Signature Pad cannot be empty."
-msgstr "Handtekeningpad mag niet leeg zijn."
+msgstr "Handtekeningveld mag niet leeg zijn."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
msgid "Signature Settings"
@@ -7573,16 +7700,21 @@ msgstr "Handtekening-instellingen"
#: packages/ui/components/document/document-signature-settings-tooltip.tsx
msgid "Signature types"
-msgstr "Handtekeningtypes"
+msgstr "Handtekeningtypen"
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "Signatures Collected"
-msgstr "Handtekeningen verzameld"
+msgstr "Verzamelde handtekeningen"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/ui/components/document/document-read-only-fields.tsx
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
+msgid "Signed"
+msgstr "Getekend"
+
+#: packages/lib/constants/recipient-roles.ts
+msgctxt "Recipient role actioned"
msgid "Signed"
msgstr "Ondertekend"
@@ -7591,11 +7723,6 @@ msgctxt "Signed document (adjective)"
msgid "Signed"
msgstr "Ondertekend"
-#: packages/lib/constants/recipient-roles.ts
-msgctxt "Recipient role actioned"
-msgid "Signed"
-msgstr "Ondertekend"
-
#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Signer"
msgstr "Ondertekenaar"
@@ -7607,7 +7734,7 @@ msgstr "Ondertekenaar"
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Signer Events"
-msgstr "Ondertekenaar Gebeurtenissen"
+msgstr "Ondertekenaarsgebeurtenissen"
#: packages/lib/constants/recipient-roles.ts
msgctxt "Recipient role plural name"
@@ -7630,7 +7757,7 @@ msgstr "Ondertekeningscertificaat verstrekt door"
#: packages/lib/server-only/document/send-completed-email.ts
#: packages/lib/server-only/document/send-completed-email.ts
msgid "Signing Complete!"
-msgstr "Ondertekening Voltooid!"
+msgstr "Ondertekening voltooid!"
#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
msgid "Signing for"
@@ -7639,26 +7766,26 @@ msgstr "Ondertekenen voor"
#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/signin.tsx
msgid "Signing in..."
-msgstr "Aanmelden..."
+msgstr "Bezig met inloggen..."
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Signing Links"
msgstr "Ondertekeningslinks"
#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "Signing links have been generated for this document."
-msgstr "Ondertekeningslinks zijn gegenereerd voor dit document."
+msgstr "Voor dit document zijn ondertekeningslinks gegenereerd."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Signing order is enabled."
-msgstr "Ondertekenvolgorde is ingeschakeld."
+msgstr "Ondertekeningsvolgorde is ingeschakeld."
#: apps/remix/app/components/forms/signup.tsx
msgid "Signups are disabled."
-msgstr "Registraties zijn uitgeschakeld."
+msgstr "Aanmeldingen zijn uitgeschakeld."
#. placeholder {0}: DateTime.fromJSDate(publicProfile.badge.since).toFormat('LLL ‘yy')
#: apps/remix/app/routes/_profile+/p.$url.tsx
@@ -7669,59 +7796,60 @@ msgstr "Sinds {0}"
msgid "Site Banner"
msgstr "Sitebanner"
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "Site Settings"
-msgstr "Site-instellingen"
+msgstr "Site‑instellingen"
#: 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 "Enkele ondertekenaars hebben geen handtekeningenveld toegewezen gekregen. Wijs ten minste 1 handtekeningenveld toe aan elke ondertekenaar voordat u doorgaat."
+msgstr "Sommige ondertekenaars hebben geen handtekeningveld toegewezen gekregen. Wijs ten minste 1 handtekeningveld toe aan elke ondertekenaar voordat je doorgaat."
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/general/billing-plans.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.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-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/embed/embed-document-signing-page-v1.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-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/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-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
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-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-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-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-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
+#: apps/remix/app/components/general/document/document-audit-log-download-button.tsx
+#: apps/remix/app/components/general/document/document-certificate-download-button.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
#: packages/ui/components/document/document-share-button.tsx
msgid "Something went wrong"
msgstr "Er is iets misgegaan"
@@ -7729,23 +7857,23 @@ msgstr "Er is iets misgegaan"
#. placeholder {0}: data.teamName
#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "Something went wrong while attempting to verify your email address for <0>{0}0>. Please try again later."
-msgstr "Er is iets misgegaan bij het verifiëren van je e-mailadres voor <0>{0}0>. Probeer het later opnieuw."
+msgstr "Er is iets misgegaan bij het verifiëren van je e‑mailadres voor <0>{0}0>. Probeer het later opnieuw."
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Something went wrong while loading the document."
-msgstr "Er is iets misgegaan bij het laden van het document."
+msgstr "Er is iets misgegaan tijdens het laden van het document."
#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
msgid "Something went wrong while loading your passkeys."
-msgstr "Er is iets misgegaan bij het laden van je toegangssleutels."
+msgstr "Er is iets misgegaan bij het laden van je passkeys."
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
msgid "Something went wrong while rendering the document, some fields may be missing or corrupted."
-msgstr "Er is iets misgegaan bij het weergeven van het document, sommige velden kunnen ontbreken of beschadigd zijn."
+msgstr "Er is iets misgegaan bij het renderen van het document, sommige velden kunnen ontbreken of beschadigd zijn."
#: apps/remix/app/components/general/verify-email-banner.tsx
msgid "Something went wrong while sending the confirmation email."
@@ -7753,18 +7881,18 @@ msgstr "Er is iets misgegaan bij het verzenden van de bevestigingsmail."
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
msgid "Something went wrong while updating the team billing subscription, please contact support."
-msgstr "Er is iets misgegaan bij het bijwerken van het team abonnementsfacturering, neem contact op met ondersteuning."
+msgstr "Er is iets misgegaan bij het bijwerken van het teamabonnement; neem contact op met support."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
msgid "Something went wrong while uploading this file"
-msgstr "Er is iets misgegaan tijdens het uploaden van dit bestand"
+msgstr "Er is iets misgegaan bij het uploaden van dit bestand"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
msgid "Something went wrong!"
-msgstr "Er is iets fout gegaan!"
+msgstr "Er is iets misgegaan!"
#: packages/ui/primitives/data-table.tsx
msgid "Something went wrong."
@@ -7774,27 +7902,27 @@ msgstr "Er is iets misgegaan."
msgid "Something went wrong. Please try again later."
msgstr "Er is iets misgegaan. Probeer het later opnieuw."
-#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Something went wrong. Please try again or contact support."
-msgstr "Er is iets misgegaan. Probeer het opnieuw of neem contact op met ondersteuning."
+msgstr "Er is iets misgegaan. Probeer het opnieuw of neem contact op met support."
#: apps/remix/app/components/general/document/document-audit-log-download-button.tsx
msgid "Sorry, we were unable to download the audit logs. Please try again later."
-msgstr "Sorry, we konden de auditlogboeken niet downloaden. Probeer het later opnieuw."
+msgstr "We konden de auditlogs niet downloaden. Probeer het later opnieuw."
#: apps/remix/app/components/general/document/document-certificate-download-button.tsx
msgid "Sorry, we were unable to download the certificate. Please try again later."
-msgstr "Sorry, we konden het certificaat niet downloaden. Probeer het later opnieuw."
+msgstr "We konden het certificaat niet downloaden. Probeer het later opnieuw."
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Source"
msgstr "Bron"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Space-separated list of domains. Leave empty to allow all domains."
-msgstr "Spatiegescheiden lijst van domeinen. Laat leeg om alle domeinen toe te staan."
+msgstr "Door spaties gescheiden lijst met domeinen. Laat leeg om alle domeinen toe te staan."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
msgid "SSO"
@@ -7804,16 +7932,19 @@ msgstr "SSO"
msgid "Stats"
msgstr "Statistieken"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Status"
msgstr "Status"
@@ -7838,23 +7969,23 @@ msgstr "Stripe-klant succesvol aangemaakt"
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Stripe Customer ID"
-msgstr "Stripe klant-ID"
+msgstr "Stripe-klant-ID"
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Subject"
msgstr "Onderwerp"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Subject <0>(Optional)0>"
-msgstr "Onderwerp <0>(Optioneel)0>"
+msgstr "Onderwerp <0>(optioneel)0>"
#: apps/remix/app/components/forms/support-ticket-form.tsx
msgid "Submit"
-msgstr "Indienen"
+msgstr "Verzenden"
#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
msgid "Submitted"
@@ -7866,22 +7997,22 @@ msgstr "Ingediend"
msgid "Subscribe"
msgstr "Abonneren"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Subscription"
msgstr "Abonnement"
#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
msgid "Subscription claim created successfully."
-msgstr "Abonnementsaanspraak succesvol aangemaakt."
+msgstr "Abonnementsclaim succesvol aangemaakt."
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
msgid "Subscription claim deleted successfully."
-msgstr "Abonnementsaanspraak succesvol verwijderd."
+msgstr "Abonnementsclaim succesvol verwijderd."
#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
msgid "Subscription claim updated successfully."
-msgstr "Abonnementsaanspraak succesvol bijgewerkt."
+msgstr "Abonnementsclaim succesvol bijgewerkt."
#: apps/remix/app/routes/_authenticated+/admin+/claims.tsx
msgid "Subscription Claims"
@@ -7891,103 +8022,115 @@ msgstr "Abonnementsclaims"
msgid "Subscription invalid"
msgstr "Abonnement ongeldig"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/verify-email-banner.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/organisation-update-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Subscription Status"
+msgstr "Abonnementsstatus"
+
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-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-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-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/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/verify-email-banner.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Success"
msgstr "Succes"
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "Successfully created passkey"
-msgstr "Toegangssleutel succesvol aangemaakt"
+msgstr "Passkey succesvol aangemaakt"
#: packages/email/templates/bulk-send-complete.tsx
msgid "Successfully created: {successCount}"
-msgstr "Succesvol gemaakt: {successCount}"
+msgstr "Succesvol aangemaakt: {successCount}"
#: packages/email/templates/bulk-send-complete.tsx
msgid "Summary:"
-msgstr "Samenvatting:"
+msgstr "Overzicht:"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+msgid "support"
+msgstr "support"
+
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "Support"
-msgstr "Ondersteuning"
+msgstr "Support"
#: apps/remix/app/components/forms/support-ticket-form.tsx
msgid "Support ticket created"
-msgstr "Ondersteuningsticket aangemaakt"
+msgstr "Supportticket aangemaakt"
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
msgid "Sync"
-msgstr "Synchroniseer"
+msgstr "Synchroniseren"
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
msgid "Sync Email Domains"
-msgstr "Synchroniseer E-maildomeinen"
+msgstr "E-maildomeinen synchroniseren"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
msgid "Sync failed, changes not saved"
-msgstr "Synchronisatie mislukt, wijzigingen niet opgeslagen"
+msgstr "Synchroniseren mislukt, wijzigingen niet opgeslagen"
+
+#: packages/lib/utils/document-audit-logs.ts
+msgid "System auto inserted fields"
+msgstr "Systeem heeft automatisch velden ingevoegd"
#: packages/lib/utils/document-audit-logs.ts
msgctxt "Audit log format"
msgid "System auto inserted fields"
-msgstr "Systeem automatisch ingevoegde velden"
-
-#: packages/lib/utils/document-audit-logs.ts
-msgid "System auto inserted fields"
-msgstr "Systeem automatisch ingevoegde velden"
+msgstr "Systeem heeft automatisch velden ingevoegd"
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "System Requirements"
@@ -7997,10 +8140,10 @@ msgstr "Systeemvereisten"
msgid "System Theme"
msgstr "Systeemthema"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team"
msgstr "Team"
@@ -8015,62 +8158,62 @@ msgstr "Teambeheerder"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team Assignments"
-msgstr "Teamopdrachten"
+msgstr "Teamtoewijzingen"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Team Count"
-msgstr "Team aantal"
+msgstr "Aantal teams"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
msgid "Team email"
-msgstr "Team e-mail"
+msgstr "Team‑e‑mail"
#: apps/remix/app/components/general/teams/team-email-usage.tsx
msgid "Team Email"
-msgstr "Team e-mail"
+msgstr "Team‑e‑mail"
#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "Team email already verified!"
-msgstr "Team-e-mail al geverifieerd!"
+msgstr "Team‑e‑mail al geverifieerd!"
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
msgid "Team email has been removed"
-msgstr "Team e-mail is verwijderd"
+msgstr "Team‑e‑mail is verwijderd"
#. placeholder {0}: team.name
#: packages/lib/server-only/team/delete-team-email.ts
msgid "Team email has been revoked for {0}"
-msgstr "Het team e-mail is ingetrokken voor {0}"
+msgstr "Teame-mailadres is ingetrokken voor {0}"
#: packages/email/templates/team-email-removed.tsx
msgid "Team email removed"
-msgstr "Team e-mail verwijderd"
+msgstr "Teame-mailadres verwijderd"
#: packages/email/templates/team-email-removed.tsx
msgid "Team email removed for {teamName} on Documenso"
-msgstr "Team e-mail verwijderd voor {teamName} op Documenso"
+msgstr "Teame-mailadres verwijderd voor {teamName} op Documenso"
#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "Team email verification"
-msgstr "Verificatie van team e-mail"
+msgstr "Verificatie van team‑e‑mail"
#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "Team email verified!"
-msgstr "Team e-mail geverifieerd!"
+msgstr "Team‑e‑mail geverifieerd!"
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
msgid "Team email was updated."
-msgstr "Team e-mail is bijgewerkt."
+msgstr "Team‑e‑mail is bijgewerkt."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
msgid "Team Groups"
-msgstr "Team groepen"
+msgstr "Teamgroepen"
#: packages/lib/constants/teams-translations.ts
msgid "Team Manager"
-msgstr "Team Manager"
+msgstr "Teammanager"
#: apps/remix/app/components/tables/team-members-table.tsx
#: packages/lib/constants/teams-translations.ts
@@ -8081,14 +8224,14 @@ msgstr "Teamlid"
msgid "Team Members"
msgstr "Teamleden"
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "Team members have been added."
msgstr "Teamleden zijn toegevoegd."
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
msgid "Team Name"
msgstr "Teamnaam"
@@ -8103,11 +8246,11 @@ msgstr "Alleen team"
#: apps/remix/app/components/tables/templates-table.tsx
msgid "Team only templates are not linked anywhere and are visible only to your team."
-msgstr "Alleen team-sjablonen zijn nergens gelinkt en zijn alleen zichtbaar voor jouw team."
+msgstr "Team‑only‑sjablonen zijn nergens gekoppeld en alleen zichtbaar voor je team."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team Role"
msgstr "Teamrol"
@@ -8121,49 +8264,49 @@ msgstr "Teaminstellingen"
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Team url"
-msgstr "Team url"
+msgstr "Team-url"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Team URL"
-msgstr "Team URL"
+msgstr "Team‑URL"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
msgid "Teams"
msgstr "Teams"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
msgid "Teams help you organise your work and collaborate with others. Create your first team to get started."
-msgstr "Teams helpen u uw werk te organiseren en samen te werken met anderen. Maak uw eerste team om aan de slag te gaan."
+msgstr "Teams helpen je je werk te organiseren en samen te werken met anderen. Maak je eerste team aan om te beginnen."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Teams that this organisation group is currently assigned to"
msgstr "Teams waaraan deze organisatiegroep momenteel is toegewezen"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/public-profile-template-manage-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.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/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
msgid "Template"
msgstr "Sjabloon"
#: apps/remix/app/components/dialogs/template-create-dialog.tsx
#: packages/ui/primitives/document-upload-button.tsx
msgid "Template (Legacy)"
-msgstr "Sjabloon (Legacy)"
+msgstr "Sjabloon (verouderd)"
#: apps/remix/app/routes/embed+/v1+/authoring_.completed.create.tsx
msgid "Template Created"
-msgstr "Sjabloon Gemaakt"
+msgstr "Sjabloon aangemaakt"
#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
msgid "Template deleted"
@@ -8183,7 +8326,7 @@ msgstr "Sjablooneditor"
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "Template has been removed from your public profile."
-msgstr "Sjabloon is verwijderd van je openbare profiel."
+msgstr "Sjabloon is verwijderd uit je openbare profiel."
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "Template has been updated."
@@ -8191,11 +8334,11 @@ msgstr "Sjabloon is bijgewerkt."
#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Template ID (Legacy)"
-msgstr "Sjabloon-ID (Legacy)"
+msgstr "Sjabloon-ID (verouderd)"
#: apps/remix/app/components/general/legacy-field-warning-popover.tsx
msgid "Template is using legacy field insertion"
-msgstr "Sjabloon maakt gebruik van verouderde veldinvoeging"
+msgstr "Sjabloon gebruikt verouderde veldinvoeging"
#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Template moved"
@@ -8211,63 +8354,65 @@ msgstr "Sjablooninstellingen"
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Template title"
-msgstr "Sjabloontitel"
+msgstr "Titel sjabloon"
#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Template updated successfully"
msgstr "Sjabloon succesvol bijgewerkt"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Template uploaded"
msgstr "Sjabloon geüpload"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.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
msgid "Templates"
msgstr "Sjablonen"
#: apps/remix/app/components/dialogs/template-create-dialog.tsx
msgid "Templates allow you to quickly generate documents with pre-filled recipients and fields."
-msgstr "Sjablonen stellen je in staat om documenten snel te genereren met vooraf ingevulde ontvangers en velden."
+msgstr "Met sjablonen kun je snel documenten genereren met vooraf ingevulde ontvangers en velden."
+
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Test"
+msgstr "Test"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Test Webhook"
-msgstr "Test Webhook"
+msgstr "Webhook testen"
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Test webhook failed"
-msgstr "Test-webhook mislukt"
+msgstr "Testwebhook mislukt"
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Test webhook sent"
-msgstr "Test-webhook verzonden"
+msgstr "Testwebhook verzonden"
+#: 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/envelope-editor/envelope-editor-fields-drag-drop.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
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/types.ts
-#: packages/ui/primitives/document-flow/add-fields.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Text"
msgstr "Tekst"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Text Align"
-msgstr "Tekstaanpassing"
+msgstr "Tekstuitlijning"
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "Text Color"
@@ -8279,23 +8424,23 @@ msgstr "Tekst is verplicht"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
msgid "Text Settings"
-msgstr "Tekstinstellingen"
+msgstr "Tekst-instellingen"
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
msgid "Thank you for completing the signing process."
-msgstr "Bedankt voor het voltooien van het ondertekenproces."
+msgstr "Bedankt dat je het ondertekeningsproces hebt voltooid."
#: 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."
-msgstr "Bedankt voor het gebruik van Documenso om uw elektronische document ondertekeningen uit te voeren. Het doel van deze openbaarmaking is om u te informeren over het proces, de wettigheid en uw rechten met betrekking tot het gebruik van elektronische handtekeningen op ons platform. Door te kiezen voor het gebruik van een elektronische handtekening, gaat u akkoord met de onderstaande voorwaarden."
+msgstr "Bedankt dat je Documenso gebruikt om je documenten elektronisch te ondertekenen. Het doel van deze kennisgeving is je te informeren over het proces, de rechtsgeldigheid en je rechten met betrekking tot het gebruik van elektronische handtekeningen op ons platform. Door te kiezen voor een elektronische handtekening ga je akkoord met de onderstaande voorwaarden."
#: packages/email/template-components/template-forgot-password.tsx
msgid "That's okay, it happens! Click the button below to reset your password."
-msgstr "Dat is oké, het gebeurt! Klik op de knop hieronder om uw wachtwoord opnieuw in te stellen."
+msgstr "Geeft niets, dat kan gebeuren! Klik op de onderstaande knop om je wachtwoord te resetten."
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "The account has been deleted successfully."
-msgstr "Het account is succesvol verwijderd."
+msgstr "De account is succesvol verwijderd."
#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
msgid "The account has been disabled successfully."
@@ -8307,32 +8452,32 @@ msgstr "Het account is succesvol ingeschakeld."
#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "The authentication methods required for recipients to sign fields"
-msgstr "De vereiste authenticatiemethoden voor ontvangers om velden te ondertekenen"
+msgstr "De authenticatiemethoden die vereist zijn voor ontvangers om velden te ondertekenen"
#: packages/ui/components/document/document-global-auth-action-select.tsx
msgid "The authentication methods required for recipients to sign the signature field."
-msgstr "De vereiste authenticatiemethoden voor ontvangers om het handtekeningveld te ondertekenen."
+msgstr "De authenticatiemethoden die vereist zijn voor ontvangers om het handtekeningveld te ondertekenen."
#: packages/ui/components/document/document-global-auth-access-select.tsx
msgid "The authentication methods required for recipients to view the document."
-msgstr "De vereiste authenticatiemethoden voor ontvangers om het document te bekijken."
+msgstr "De authenticatiemethoden die vereist zijn voor ontvangers om het document te bekijken."
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "The content to show in the banner, HTML is allowed"
-msgstr "De inhoud om te tonen in de banner, HTML is toegestaan"
+msgstr "De inhoud die in de banner wordt weergegeven; HTML is toegestaan"
#: apps/remix/app/components/forms/email-preferences-form.tsx
msgid "The default email to use when sending emails to recipients"
-msgstr "De standaard e-mail voor het verzenden naar ontvangers"
+msgstr "Het standaarde-mailadres dat wordt gebruikt bij het verzenden van e-mails naar ontvangers"
-#: 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
+#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "The direct link has been copied to your clipboard"
-msgstr "De directe link is naar uw klembord gekopieerd"
+msgstr "De directe link is naar je klembord gekopieerd"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "The display name for this email address"
msgstr "De weergavenaam voor dit e-mailadres"
@@ -8346,16 +8491,16 @@ msgstr "Het document is al opgeslagen en kan niet worden gewijzigd."
#: apps/remix/app/components/embed/embed-document-completed.tsx
msgid "The document is now completed, please follow any instructions provided within the parent application."
-msgstr "Het document is nu voltooid, volg eventuele instructies in de hoofdapplicatie."
+msgstr "Het document is nu voltooid; volg de instructies in de hoofdsapplicatie."
#: 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 "De eigenaar van het document is geïnformeerd over deze afwijzing. Op dit moment zijn er geen verdere acties van u vereist. De eigenaar van het document kan contact met u opnemen voor vragen over deze afwijzing."
+msgstr "De documenteigenaar is op de hoogte gebracht van deze weigering. Er is op dit moment geen verdere actie van jou vereist. De documenteigenaar kan contact met je opnemen met vragen over deze weigering."
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "The document owner has been notified of your decision. They may contact you with further instructions if necessary."
-msgstr "De documenteigenaar is op de hoogte gebracht van uw beslissing. Ze mogen indien nodig contact met u opnemen voor verdere instructies."
+msgstr "De documenteigenaar is op de hoogte gebracht van je beslissing. Indien nodig kan diegene contact met je opnemen met verdere instructies."
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "The document was created but could not be sent to recipients."
@@ -8363,20 +8508,20 @@ msgstr "Het document is aangemaakt, maar kon niet naar ontvangers worden verzond
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "The document will be hidden from your account"
-msgstr "Het document wordt verborgen in uw account"
+msgstr "Het document wordt verborgen in je account"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "The document will be immediately sent to recipients if this is checked."
-msgstr "Het document wordt onmiddellijk naar ontvangers gestuurd als dit is aangevinkt."
+msgstr "Het document wordt direct naar ontvangers verzonden als dit is aangevinkt."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
msgid "The document you are looking for could not be found."
msgstr "Het document dat u zoekt, kon niet worden gevonden."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
msgid "The document you are looking for may have been removed, renamed or may have never existed."
-msgstr "Het document dat u zoekt, kan zijn verwijderd, hernoemd of heeft mogelijk nooit bestaan."
+msgstr "Het document dat u zoekt, is mogelijk verwijderd, hernoemd of heeft misschien nooit bestaan."
#: packages/ui/components/document/document-send-email-message-helper.tsx
msgid "The document's name"
@@ -8384,44 +8529,44 @@ msgstr "De naam van het document"
#: apps/remix/app/components/forms/email-preferences-form.tsx
msgid "The email address which will show up in the \"Reply To\" field in emails"
-msgstr "Het e-mailadres dat in het \"Antwoord aan\" veld in e-mails verschijnt"
+msgstr "Het e-mailadres dat in het veld \"Reply-To\" in e-mails wordt weergegeven"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "The email domain you are looking for may have been removed, renamed or may have never existed."
-msgstr "Het e-maildomein dat u zoekt, kan zijn verwijderd, hernoemd of heeft mogelijk nooit bestaan."
+msgstr "Het e-maildomein dat u zoekt, is mogelijk verwijderd, hernoemd of heeft misschien nooit bestaan."
#: apps/remix/app/components/forms/signin.tsx
msgid "The email or password provided is incorrect"
msgstr "Het opgegeven e-mailadres of wachtwoord is onjuist"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The events that will trigger a webhook to be sent to your URL."
-msgstr "De gebeurtenissen die een webhook naar uw URL zullen triggeren."
+msgstr "De gebeurtenissen die een webhook naar je URL laten sturen."
#: apps/remix/app/components/general/legacy-field-warning-popover.tsx
msgid "The fields have been updated to the new field insertion method successfully"
-msgstr "De velden zijn met succes bijgewerkt naar de nieuwe methode voor veldinvoeging"
+msgstr "De velden zijn succesvol bijgewerkt naar de nieuwe methode voor veldinvoeging"
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
msgid "The folder you are trying to delete does not exist."
-msgstr "De map die u probeert te verwijderen bestaat niet."
+msgstr "De map die je probeert te verwijderen, bestaat niet."
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
msgid "The folder you are trying to move does not exist."
-msgstr "De map die u probeert te verplaatsen bestaat niet."
+msgstr "De map die je probeert te verplaatsen, bestaat niet."
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
msgid "The folder you are trying to move the document to does not exist."
-msgstr "De map waarnaar u het document probeert te verplaatsen bestaat niet."
+msgstr "De map waarnaar je het document probeert te verplaatsen, bestaat niet."
#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "The folder you are trying to move the template to does not exist."
-msgstr "De map waarnaar u de sjabloon probeert te verplaatsen bestaat niet."
+msgstr "De map waarnaar je de sjabloon probeert te verplaatsen, bestaat niet."
#: packages/email/templates/bulk-send-complete.tsx
msgid "The following errors occurred:"
-msgstr "De volgende fout(en) zijn opgetreden:"
+msgstr "De volgende fouten zijn opgetreden:"
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
msgid "The following signers are missing signature fields:"
@@ -8429,53 +8574,53 @@ msgstr "De volgende ondertekenaars missen handtekeningvelden:"
#: packages/email/templates/team-delete.tsx
msgid "The following team has been deleted. You will no longer be able to access this team and its documents"
-msgstr "Het volgende team is verwijderd. U heeft geen toegang meer tot dit team en zijn documenten."
+msgstr "Het volgende team is verwijderd. Je hebt geen toegang meer tot dit team en de documenten."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "The OpenID discovery endpoint URL for your provider"
-msgstr "De OpenID discovery endpoint-URL voor uw provider"
+msgstr "De OpenID-discovery-endpoint-URL voor uw provider"
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "The organisation authentication portal does not exist, or is not configured"
-msgstr "Het organisatieverificatieportaal bestaat niet of is niet geconfigureerd"
+msgstr "Het authenticatieportaal van de organisatie bestaat niet of is niet geconfigureerd"
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
msgid "The organisation email has been created successfully."
-msgstr "Het organisatie-e-mail is succesvol aangemaakt."
+msgstr "Het organisatiemailadres is succesvol aangemaakt."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "The organisation group you are looking for may have been removed, renamed or may have never existed."
-msgstr "De organisatiewerkgroep die u zoekt, kan zijn verwijderd, hernoemd of heeft mogelijk nooit bestaan."
+msgstr "De organisatieronde die u zoekt, is mogelijk verwijderd, hernoemd of heeft misschien nooit bestaan."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "The organisation role that will be applied to all members in this group."
-msgstr "De organisatierol die op alle leden in deze groep zal worden toegepast."
+msgstr "De organisatierol die aan alle leden in deze groep wordt toegewezen."
#: apps/remix/app/routes/_authenticated+/_layout.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "The organisation you are looking for may have been removed, renamed or may have never existed."
-msgstr "De organisatie die u zoekt, kan zijn verwijderd, hernoemd of heeft mogelijk nooit bestaan."
+msgstr "De organisatie die u zoekt, is mogelijk verwijderd, hernoemd of heeft misschien nooit bestaan."
#: apps/remix/app/components/general/generic-error-layout.tsx
msgid "The page you are looking for was moved, removed, renamed or might never have existed."
-msgstr "De pagina die u zocht is verplaatst, verwijderd, hernoemd of heeft mogelijk nooit bestaan."
+msgstr "De pagina die je zoekt is verplaatst, verwijderd, hernoemd of heeft misschien nooit bestaan."
#. placeholder {0}: emailDomain.domain
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
msgid "The part before the @ symbol (e.g., \"support\" for support@{0})"
-msgstr "Het gedeelte voor het @-symbool (bijv. \"support\" voor support@{0})"
+msgstr "Het deel vóór het @-symbool (bijv. \"support\" voor support@{0})"
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
msgid "The preselected values will be ignored unless they meet the validation criteria."
-msgstr "De vooraf geselecteerde waarden worden genegeerd tenzij ze aan de validatiecriteria voldoen."
+msgstr "De vooraf geselecteerde waarden worden genegeerd, tenzij ze aan de validatiecriteria voldoen."
#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "The profile link has been copied to your clipboard"
-msgstr "De profiellink is naar uw klembord gekopieerd"
+msgstr "De profillink is naar je klembord gekopieerd"
#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "The profile you are looking for could not be found."
-msgstr "Het profiel waarnaar u zoekt is niet gevonden."
+msgstr "Het profiel dat je zoekt, kan niet worden gevonden."
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "The public description that will be displayed with this template"
@@ -8483,7 +8628,7 @@ msgstr "De openbare beschrijving die met deze sjabloon wordt weergegeven"
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "The public name for your template"
-msgstr "De openbare naam voor uw sjabloon"
+msgstr "De openbare naam voor je sjabloon"
#: packages/email/template-components/template-document-super-delete.tsx
msgid "The reason provided for deletion is the following:"
@@ -8491,7 +8636,7 @@ msgstr "De opgegeven reden voor verwijdering is als volgt:"
#: packages/ui/components/recipient/recipient-role-select.tsx
msgid "The recipient can prepare the document for later signers by pre-filling suggest values."
-msgstr "De ontvanger kan het document voor latere ondertekenaars voorbereiden door voorgestelde waarden vooraf in te vullen."
+msgstr "De ontvanger kan het document voorbereiden voor latere ondertekenaars door voorgestelde waarden vooraf in te vullen."
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
msgid "The recipient has been updated successfully"
@@ -8503,23 +8648,23 @@ msgstr "De ontvanger hoeft geen actie te ondernemen en ontvangt een kopie van he
#: packages/ui/components/recipient/recipient-role-select.tsx
msgid "The recipient is required to approve the document for it to be completed."
-msgstr "De ontvanger moet het document goedkeuren om het te voltooien."
+msgstr "De ontvanger moet het document goedkeuren voordat het kan worden voltooid."
#: packages/ui/components/recipient/recipient-role-select.tsx
msgid "The recipient is required to sign the document for it to be completed."
-msgstr "De ontvanger moet het document ondertekenen om het te voltooien."
+msgstr "De ontvanger moet het document ondertekenen voordat het kan worden voltooid."
#: packages/ui/components/recipient/recipient-role-select.tsx
msgid "The recipient is required to view the document for it to be completed."
-msgstr "De ontvanger moet het document bekijken om het te voltooien."
+msgstr "De ontvanger moet het document bekijken voordat het kan worden voltooid."
#: packages/ui/components/document/document-share-button.tsx
msgid "The sharing link could not be created at this time. Please try again."
-msgstr "De deelkoppeling kon op dit moment niet worden gemaakt. Probeer het alstublieft opnieuw."
+msgstr "De deellink kon op dit moment niet worden aangemaakt. Probeer het opnieuw."
#: packages/ui/components/document/document-share-button.tsx
msgid "The sharing link has been copied to your clipboard."
-msgstr "De deelkoppeling is naar uw klembord gekopieerd."
+msgstr "De deellink is naar je klembord gekopieerd."
#: packages/ui/components/document/document-send-email-message-helper.tsx
msgid "The signer's email"
@@ -8530,32 +8675,32 @@ msgid "The signer's name"
msgstr "De naam van de ondertekenaar"
#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "The signing link has been copied to your clipboard."
-msgstr "De ondertekeningslink is naar uw klembord gekopieerd."
+msgstr "De ondertekeningslink is naar je klembord gekopieerd."
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "The site banner is a message that is shown at the top of the site. It can be used to display important information to your users."
-msgstr "De site-banner is een bericht dat bovenaan de site wordt weergegeven. Het kan worden gebruikt om belangrijke informatie aan uw gebruikers weer te geven."
+msgstr "De sitebanner is een bericht dat bovenaan de site wordt weergegeven. Je kunt hiermee belangrijke informatie aan je gebruikers tonen."
#: packages/email/templates/team-email-removed.tsx
msgid "The team email <0>{teamEmail}0> has been removed from the following team"
-msgstr "Het team e-mail <0>{teamEmail}0> is verwijderd uit het volgende team"
+msgstr "Het teame-mailadres <0>{teamEmail}0> is verwijderd uit het volgende team"
#: apps/remix/app/routes/_authenticated+/_layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/_layout.tsx
msgid "The team you are looking for may have been removed, renamed or may have never existed."
-msgstr "Het team dat u zoekt, kan zijn verwijderd, hernoemd of heeft mogelijk nooit bestaan."
+msgstr "Het team dat u zoekt, is mogelijk verwijderd, hernoemd of heeft misschien nooit bestaan."
#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "The template has been moved successfully."
-msgstr "De sjabloon is met succes verplaatst."
+msgstr "De sjabloon is succesvol verplaatst."
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "The template will be removed from your profile"
-msgstr "De sjabloon wordt uit uw profiel verwijderd"
+msgstr "De sjabloon wordt verwijderd uit je profiel"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
msgid "The template you are looking for could not be found."
@@ -8563,11 +8708,11 @@ msgstr "De sjabloon die u zoekt, kon niet worden gevonden."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "The template you are looking for may have been removed, renamed or may have never existed."
-msgstr "Het sjabloon dat u zoekt, kan zijn verwijderd, hernoemd of heeft mogelijk nooit bestaan."
+msgstr "De sjabloon die u zoekt, is mogelijk verwijderd, hernoemd of heeft misschien nooit bestaan."
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "The test webhook has been successfully sent to your endpoint."
-msgstr "De test-webhook is succesvol verzonden naar uw eindpunt."
+msgstr "De testwebhook is succesvol naar je endpoint verzonden."
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "The token is invalid or has expired."
@@ -8575,7 +8720,7 @@ msgstr "De token is ongeldig of is verlopen."
#: apps/remix/app/components/forms/token.tsx
msgid "The token was copied to your clipboard."
-msgstr "Het token is naar uw klembord gekopieerd."
+msgstr "Het token is naar je klembord gekopieerd."
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
msgid "The token was deleted successfully."
@@ -8583,38 +8728,38 @@ msgstr "Het token is succesvol verwijderd."
#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
msgid "The token you have used to reset your password is either expired or it never existed. If you have still forgotten your password, please request a new reset link."
-msgstr "Het token dat u hebt gebruikt om uw wachtwoord te resetten is verlopen of heeft nooit bestaan. Als u uw wachtwoord nog steeds bent vergeten, vraag dan om een nieuwe reset-link."
+msgstr "Het token waarmee je je wachtwoord probeerde te resetten, is verlopen of heeft nooit bestaan. Als je je wachtwoord nog steeds bent vergeten, vraag dan een nieuwe resetlink aan."
#: apps/remix/app/components/forms/signin.tsx
msgid "The two-factor authentication code provided is incorrect"
-msgstr "De verstrekte twee-factor authenticatiecode is onjuist"
+msgstr "De opgegeven twee-factor-authenticatiecode is onjuist"
#: apps/remix/app/components/forms/editor/editor-field-signature-form.tsx
msgid "The typed signature font size"
-msgstr "De getypte lettergrootte van de handtekening"
+msgstr "De lettergrootte van de getypte handtekening"
#: packages/ui/components/document/document-signature-settings-tooltip.tsx
msgid "The types of signatures that recipients are allowed to use when signing the document."
-msgstr "De types van handtekeningen die ontvangers mogen gebruiken bij het ondertekenen van het document."
+msgstr "De typen handtekeningen die ontvangers mogen gebruiken bij het ondertekenen van het document."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The URL for Documenso to send webhook events to."
-msgstr "De URL voor Documenso om webhook-gebeurtenissen naar toe te sturen."
+msgstr "De URL waarnaar Documenso webhook‑gebeurtenissen stuurt."
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "The user you are looking for may have been removed, renamed or may have never existed."
-msgstr "De gebruiker die u zoekt, kan zijn verwijderd, hernoemd of heeft mogelijk nooit bestaan."
+msgstr "De gebruiker die u zoekt, is mogelijk verwijderd, hernoemd of heeft misschien nooit bestaan."
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "The user's two factor authentication has been reset successfully."
-msgstr "De tweefactorverificatie van de gebruiker is met succes gereset."
+msgstr "De tweefactorauthenticatie van de gebruiker is succesvol gereset."
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "The webhook has been successfully deleted."
msgstr "De webhook is succesvol verwijderd."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The webhook has been updated successfully."
msgstr "De webhook is succesvol bijgewerkt."
@@ -8622,37 +8767,37 @@ msgstr "De webhook is succesvol bijgewerkt."
msgid "The webhook was successfully created."
msgstr "De webhook is succesvol aangemaakt."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "The webhook you are looking for may have been removed, renamed or may have never existed."
-msgstr "De webhook die u zoekt, kan zijn verwijderd, hernoemd of heeft mogelijk nooit bestaan."
+msgstr "De webhook waar u naar zoekt, is mogelijk verwijderd, hernoemd of heeft misschien nooit bestaan."
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
msgid "There are no active drafts at the current moment. You can upload a document to start drafting."
-msgstr "Er zijn momenteel geen actieve concepten. U kunt een document uploaden om een concept te beginnen."
+msgstr "Er zijn momenteel geen actieve concepten. Upload een document om een concept te starten."
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
msgid "There are no completed documents yet. Documents that you have created or received will appear here once completed."
-msgstr "Er zijn nog geen voltooide documenten. Documenten die u hebt aangemaakt of ontvangen verschijnen hier zodra ze zijn voltooid."
+msgstr "Er zijn nog geen voltooide documenten. Documenten die je hebt aangemaakt of ontvangen, verschijnen hier zodra ze zijn voltooid."
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "There was an error uploading your file. Please try again."
-msgstr "Er is een fout opgetreden bij het uploaden van uw bestand. Probeer het opnieuw."
+msgstr "Er is een fout opgetreden bij het uploaden van je bestand. Probeer het opnieuw."
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
msgid "There was an issue rendering some fields, please review the fields and try again."
-msgstr "Er was een probleem bij het weergeven van sommige velden, controleer de velden en probeer het opnieuw."
+msgstr "Er was een probleem bij het renderen van sommige velden, controleer de velden en probeer het opnieuw."
#: packages/ui/components/document/document-global-auth-action-select.tsx
msgid "These can be overriden by setting the authentication requirements directly on each recipient in the next step. Multiple methods can be selected."
-msgstr "Deze kunnen worden overschreven door de authenticatievereisten direct op elke ontvanger in de volgende stap in te stellen. Meerdere methoden kunnen worden geselecteerd."
+msgstr "Deze kunnen worden overschreven door de authenticatievereisten direct per ontvanger in de volgende stap in te stellen. Er kunnen meerdere methoden worden geselecteerd."
#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "These will override any global settings. Multiple methods can be selected."
-msgstr "Deze zullen eventuele globale instellingen overschrijven. Meerdere methoden kunnen worden geselecteerd."
+msgstr "Deze zullen alle globale instellingen overschrijven. Er kunnen meerdere methoden worden geselecteerd."
#: apps/remix/app/components/general/teams/team-email-usage.tsx
msgid "They have permission on your behalf to:"
-msgstr "Zij hebben namens u toestemming om:"
+msgstr "Ze hebben namens jou toestemming om:"
#: apps/remix/app/components/forms/signin.tsx
msgid "This account has been disabled. Please contact support."
@@ -8660,29 +8805,29 @@ msgstr "Dit account is uitgeschakeld. Neem contact op met de ondersteuning."
#: apps/remix/app/components/forms/signin.tsx
msgid "This account has not been verified. Please verify your account before signing in."
-msgstr "Dit account is niet geverifieerd. Gelieve uw account te verifiëren voordat u inlogt."
+msgstr "Dit account is niet geverifieerd. Verifieer je account voordat je inlogt."
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "This action is irreversible. Please ensure you have informed the user before proceeding."
-msgstr "Deze actie is onomkeerbaar. Zorg ervoor dat u de gebruiker heeft geïnformeerd voordat u doorgaat."
+msgstr "Deze actie is onomkeerbaar. Zorg dat u de gebruiker heeft geïnformeerd voordat u doorgaat."
-#: 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
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "This action is not reversible. Please be certain."
-msgstr "Deze actie is onomkeerbaar. Wees er zeker van."
+msgstr "Deze actie kan niet ongedaan worden gemaakt. Wees zeker."
#: 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)."
-msgstr "Deze actie is omkeerbaar, maar wees voorzichtig, omdat het account mogelijk permanent wordt beïnvloed (bijv. hun instellingen en inhoud worden mogelijk niet goed hersteld)."
+msgstr "Deze actie is omkeerbaar, maar wees voorzichtig, want het account kan blijvend worden beïnvloed (bijv. instellingen en inhoud worden mogelijk niet goed hersteld)."
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
msgid "This claim is locked and cannot be deleted."
-msgstr "Deze aanspraak is vergrendeld en kan niet worden verwijderd."
+msgstr "Deze claim is vergrendeld en kan niet worden verwijderd."
#: 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 "Dit document kan niet worden hersteld, als u de reden voor toekomstige documenten wilt betwisten, neem dan contact op met de ondersteuning."
+msgstr "Dit document kan niet worden teruggezet. Als je de reden voor toekomstige documenten wilt betwisten, neem dan contact op met de ondersteuning."
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "This document cannot be changed"
@@ -8690,24 +8835,25 @@ msgstr "Dit document kan niet worden gewijzigd"
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "This document could not be deleted at this time. Please try again."
-msgstr "Dit document kan op dit moment niet verwijderd worden. Gelieve opnieuw te proberen."
+msgstr "Dit document kan nu niet worden verwijderd. Probeer het opnieuw."
#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
msgid "This document could not be downloaded at this time. Please try again."
-msgstr "Dit document kon op dit moment niet worden gedownload. Probeer het alstublieft opnieuw."
+msgstr "Dit document kon op dit moment niet worden gedownload. Probeer het opnieuw."
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
msgid "This document could not be duplicated at this time. Please try again."
-msgstr "Dit document kan op dit moment niet gedupliceerd worden. Gelieve opnieuw te proberen."
+msgstr "Dit document kan nu niet worden gedupliceerd. Probeer het opnieuw."
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
msgid "This document could not be re-sent at this time. Please try again."
-msgstr "Dit document kan op dit moment niet opnieuw verzonden worden. Gelieve opnieuw te proberen."
+msgstr "Dit document kan nu niet opnieuw worden verzonden. Probeer het opnieuw."
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
msgid "This document has already been sent to this recipient. You can no longer edit this recipient."
-msgstr "Dit document is al naar deze ontvanger verzonden. U kunt deze ontvanger niet meer bewerken."
+msgstr "Dit document is al naar deze ontvanger verzonden. Je kunt deze ontvanger niet meer bewerken."
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
msgid "This document has been cancelled by the owner and is no longer available for others to sign."
@@ -8720,7 +8866,7 @@ msgstr "Dit document is door de eigenaar geannuleerd."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
msgid "This document has been rejected by a recipient"
-msgstr "Dit document is door een ontvanger afgewezen"
+msgstr "Dit document is geweigerd door een ontvanger"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
msgid "This document has been signed by all recipients"
@@ -8728,23 +8874,23 @@ msgstr "Dit document is door alle ontvangers ondertekend"
#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
msgid "This document is available in your Documenso account. You can view more details, recipients, and audit logs there."
-msgstr "Dit document is beschikbaar in uw Documenso-account. U kunt daar meer details, ontvangers en auditlogs bekijken."
+msgstr "Dit document is beschikbaar in je Documenso-account. Je kunt daar meer details, ontvangers en auditlogs bekijken."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
msgid "This document is currently a draft and has not been sent"
-msgstr "Dit document is momenteel een concept en is niet verzonden"
+msgstr "Dit document is momenteel een concept en is nog niet verzonden"
#: apps/remix/app/components/general/legacy-field-warning-popover.tsx
msgid "This document is using legacy field insertion, we recommend using the new field insertion method for more accurate results."
-msgstr "Dit document maakt gebruik van verouderde veldinvoeging, we raden aan de nieuwe methode voor veldinvoeging te gebruiken voor nauwkeurigere resultaten."
+msgstr "Dit document gebruikt verouderde veldinvoeging. We raden aan de nieuwe methode voor veldinvoeging te gebruiken voor nauwkeurigere resultaten."
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
msgid "This document was created by you or a team member using the template above."
-msgstr "Dit document is door u of een teamlid gemaakt met de bovenstaande sjabloon."
+msgstr "Dit document is door jou of een teamlid aangemaakt met de bovenstaande sjabloon."
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
msgid "This document was created using a direct link."
-msgstr "Dit document is gemaakt met een directe link."
+msgstr "Dit document is aangemaakt met een directe link."
#: packages/email/template-components/template-footer.tsx
msgid "This document was sent using <0>Documenso.0>"
@@ -8756,23 +8902,23 @@ msgstr "Dit document wordt gedupliceerd."
#: 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 "Deze e-mail bevestigt dat u het document <0>\"{documentName}\"0> heeft afgewezen dat is verzonden door {documentOwnerName}."
+msgstr "Deze e-mail bevestigt dat je het document <0>\"{documentName}\"0> hebt geweigerd dat door {documentOwnerName} is verzonden."
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
msgid "This email is already being used by another team."
-msgstr "Dit e-mailadres wordt al door een ander team gebruikt."
+msgstr "Dit e‑mailadres wordt al door een ander team gebruikt."
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "This email is sent to the document owner when a recipient has signed the document."
-msgstr "Deze e-mail wordt naar de documenteigenaar verzonden wanneer een ontvanger het document heeft ondertekend."
+msgstr "Deze e-mail wordt naar de documenteigenaar gestuurd wanneer een ontvanger het document heeft ondertekend."
#: 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 "Deze e-mail wordt naar de ontvanger verzonden als deze is verwijderd uit een wachtend document."
+msgstr "Deze e-mail wordt naar de ontvanger gestuurd als hij of zij uit een document in behandeling wordt verwijderd."
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "This email is sent to the recipient requesting them to sign the document."
-msgstr "Deze e-mail wordt naar de ontvanger verzonden om hen te vragen het document te ondertekenen."
+msgstr "Deze e-mail wordt naar de ontvanger gestuurd met het verzoek het document te ondertekenen."
#: 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."
@@ -8780,65 +8926,65 @@ msgstr "Deze e-mail wordt verzonden naar de ontvanger die zojuist het document h
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
msgid "This envelope could not be distributed at this time. Please try again."
-msgstr "Deze envelop kon op dit moment niet worden verspreid. Probeer het later opnieuw."
+msgstr "Deze envelop kon op dit moment niet worden verzonden. Probeer het opnieuw."
#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
msgid "This envelope could not be resent at this time. Please try again."
-msgstr "Deze envelop kon op dit moment niet opnieuw worden verzonden. Probeer het later opnieuw."
+msgstr "Deze envelop kon op dit moment niet opnieuw worden verzonden. Probeer het opnieuw."
#: 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 "Dit veld kan niet worden gewijzigd of verwijderd. Wanneer u de directe link van deze sjabloon deelt of aan uw openbare profiel toevoegt, kan iedereen die er toegang toe heeft hun naam en e-mail invoeren en de velden invullen die aan hen zijn toegewezen."
+msgstr "Dit veld kan niet worden gewijzigd of verwijderd. Wanneer je de directe link van deze sjabloon deelt of aan je openbare profiel toevoegt, kan iedereen die toegang heeft zijn naam en e-mailadres invoeren en de aan hem toegewezen velden invullen."
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
msgid "This folder contains multiple items. Deleting it will remove all subfolders and move all nested documents and templates to the root folder."
-msgstr "Deze map bevat meerdere items. Door deze te verwijderen, worden alle submappen verwijderd en worden alle geneste documenten en sjablonen naar de hoofdmap verplaatst."
+msgstr "Deze map bevat meerdere items. Verwijderen zorgt ervoor dat alle submappen worden verwijderd en alle geneste documenten en sjablonen naar de hoofdmap worden verplaatst."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: 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 "Zo zal het document de ontvangers bereiken zodra het klaar is om te ondertekenen."
+msgstr "Op deze manier bereikt het document de ontvangers zodra het klaar is om te worden ondertekend."
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "This is the claim that this organisation was initially created with. Any feature flag changes to this claim will be backported into this organisation."
-msgstr "Dit is de aanspraak waarmee deze organisatie oorspronkelijk is aangemaakt. Eventuele wijzigingen in deze aanspraak zullen worden teruggevoerd naar deze organisatie."
+msgstr "Dit is de claim waarmee deze organisatie oorspronkelijk is aangemaakt. Eventuele wijzigingen in feature-flags van deze claim worden teruggezet in deze organisatie."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "This is the required scopes you must set in your provider's settings"
-msgstr "Dit zijn de vereiste scopes die u moet instellen in de instellingen van uw provider."
+msgstr "Dit zijn de vereiste scopes die u in de instellingen van uw provider moet configureren"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "This is the URL which users will use to sign in to your organisation."
-msgstr "Dit is de URL die gebruikers zullen gebruiken om zich aan te melden bij uw organisatie."
+msgstr "Dit is de URL die gebruikers zullen gebruiken om bij uw organisatie in te loggen."
#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
msgid "This item cannot be deleted"
-msgstr "Dit item kan niet worden verwijderd."
+msgstr "Dit item kan niet worden verwijderd"
#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "This link is invalid or has expired. Please contact your team to resend a verification."
-msgstr "Deze link is ongeldig of verlopen. Neem contact op met uw team om een verificatie opnieuw te verzenden."
+msgstr "Deze link is ongeldig of verlopen. Neem contact op met je team om de verificatie opnieuw te laten verzenden."
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "This organisation will have administrative control over your account. You can revoke this access later, but they will retain access to any data they've already collected."
-msgstr "Deze organisatie zal administratieve controle hebben over uw account. U kunt deze toegang later intrekken, maar zij behouden toegang tot gegevens die al zijn verzameld."
+msgstr "Deze organisatie krijgt administratieve controle over uw account. U kunt deze toegang later intrekken, maar zij behouden toegang tot alle gegevens die zij al hebben verzameld."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
msgid "This organisation, and any associated data will be permanently deleted."
-msgstr "Dit zal ALLEEN functie-vlaggen achterwaarts compatibel maken die op waar zijn ingesteld; alles wat in de oorspronkelijke aanspraak is uitgeschakeld, zal niet teruggevoerd worden"
+msgstr "Deze organisatie en alle bijbehorende gegevens worden permanent verwijderd."
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "This passkey has already been registered."
-msgstr "Deze toegangssleutel is al geregistreerd."
+msgstr "Deze passkey is al geregistreerd."
#: apps/remix/app/components/forms/signin.tsx
msgid "This passkey is not configured for this application. Please login and add one in the user settings."
-msgstr "Deze toegangssleutel is niet geconfigureerd voor deze applicatie. Log in en voeg er een toe in de gebruikersinstellingen."
+msgstr "Deze passkey is niet geconfigureerd voor deze applicatie. Log in en voeg er een toe in de gebruikersinstellingen."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: 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 "Deze ontvanger kan niet meer worden gewijzigd, omdat ze een veld hebben ondertekend of het document hebben voltooid."
+msgstr "Deze ontvanger kan niet langer worden gewijzigd, omdat hij/zij een veld heeft ondertekend of het document heeft voltooid."
#: apps/remix/app/components/forms/signin.tsx
msgid "This session has expired. Please try again."
@@ -8851,15 +8997,15 @@ msgstr "Deze ondertekenaar heeft het document al ondertekend."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
msgid "This team, and any associated data excluding billing invoices will be permanently deleted."
-msgstr "Dit team en alle bijbehorende gegevens, exclusief facturen, worden permanent verwijderd."
+msgstr "Dit team en alle bijbehorende gegevens, met uitzondering van facturen, worden permanent verwijderd."
#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
msgid "This template could not be deleted at this time. Please try again."
-msgstr "Deze sjabloon kan op dit moment niet verwijderd worden. Gelieve opnieuw te proberen."
+msgstr "Deze sjabloon kan nu niet worden verwijderd. Probeer het opnieuw."
#: apps/remix/app/components/general/legacy-field-warning-popover.tsx
msgid "This template is using legacy field insertion, we recommend using the new field insertion method for more accurate results."
-msgstr "Dit sjabloon gebruikt legacy-veldinvoeging; we raden aan de nieuwe veldinvoegmethode te gebruiken voor meer nauwkeurige resultaten."
+msgstr "Deze sjabloon gebruikt verouderde veldinvoeging. We raden aan de nieuwe methode voor veldinvoeging te gebruiken voor nauwkeurigere resultaten."
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
msgid "This template will be duplicated."
@@ -8867,45 +9013,45 @@ msgstr "Deze sjabloon wordt gedupliceerd."
#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
msgid "This token is invalid or has expired. No action is needed."
-msgstr "Dit token is ongeldig of verlopen. Er is geen actie vereist."
+msgstr "Dit token is ongeldig of verlopen. Er is geen actie nodig."
#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
msgid "This token is invalid or has expired. Please contact your team for a new invitation."
-msgstr "Dit token is ongeldig of verlopen. Neem contact op met uw team voor een nieuwe uitnodiging."
+msgstr "Dit token is ongeldig of verlopen. Neem contact op met je team voor een nieuwe uitnodiging."
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "This URL is already in use."
msgstr "Deze URL is al in gebruik."
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "This will be sent to all recipients if a pending document has been deleted."
-msgstr "Dit wordt naar alle ontvangers verzonden als een wachtend document is verwijderd."
+msgstr "Dit wordt verzonden naar alle ontvangers als een document in behandeling is verwijderd."
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "This will be sent to all recipients once the document has been fully completed."
-msgstr "Dit wordt naar alle ontvangers verzonden zodra het document volledig is voltooid."
+msgstr "Dit wordt verzonden naar alle ontvangers zodra het document volledig is voltooid."
#: packages/ui/components/document/document-email-checkboxes.tsx
msgid "This will be sent to the document owner once the document has been fully completed."
-msgstr "Dit wordt naar de documenteigenaar verzonden zodra het document volledig is voltooid."
+msgstr "Dit wordt verzonden naar de documenteigenaar zodra het document volledig is voltooid."
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
msgid "This will check and sync the status of all email domains for this organisation"
-msgstr "Dit zal de status van alle e-maildomeinen voor deze organisatie controleren en synchroniseren"
+msgstr "Hiermee wordt de status van alle e-maildomeinen voor deze organisatie gecontroleerd en gesynchroniseerd"
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "This will ONLY backport feature flags which are set to true, anything disabled in the initial claim will not be backported"
-msgstr ""
+msgstr "Hiermee worden ALLE feature-flags die op true staan teruggezet; alles wat in de oorspronkelijke claim is uitgeschakeld, wordt niet teruggezet"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "This will remove all emails associated with this email domain"
-msgstr "Dit verwijdert alle e-mails die aan dit e-maildomein zijn gekoppeld"
+msgstr "Hiermee worden alle e-mails die aan dit e-maildomein zijn gekoppeld verwijderd"
#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
msgid "This will sign you out of all other devices. You will need to sign in again on those devices to continue using your account."
-msgstr "Dit logt u uit van alle andere apparaten. U moet opnieuw inloggen op die apparaten om uw account te blijven gebruiken."
+msgstr "Hiermee wordt je op alle andere apparaten uitgelogd. Je moet op die apparaten opnieuw inloggen om je account verder te gebruiken."
#: apps/remix/app/components/tables/document-logs-table.tsx
msgid "Time"
@@ -8915,21 +9061,21 @@ msgstr "Tijd"
msgid "Time zone"
msgstr "Tijdzone"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Time Zone"
msgstr "Tijdzone"
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Title"
msgstr "Titel"
@@ -8943,80 +9089,80 @@ msgstr "Titel mag niet leeg zijn"
#. placeholder {2}: recipient.email
#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
msgid "To {0} this {1}, you need to be logged in as <0>{2}0>"
-msgstr "Om {0} deze {1} te kunnen uitvoeren, moet u ingelogd zijn als <0>{2}0>"
+msgstr "Om deze {1} te {0}, moet u zijn ingelogd als <0>{2}0>"
#. placeholder {0}: actionVerb.toLowerCase()
#. placeholder {1}: actionTarget.toLowerCase()
#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
msgid "To {0} this {1}, you need to be logged in."
-msgstr "Om {0} deze {1} te kunnen uitvoeren, moet u ingelogd zijn."
+msgstr "Om deze {1} te {0}, moet u zijn ingelogd."
#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
msgid "To accept this invitation you must create an account."
-msgstr "Om deze uitnodiging te accepteren moet u een account aanmaken."
+msgstr "Om deze uitnodiging te accepteren, moet je een account aanmaken."
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "To be able to add members to a team, you must first add them to the organisation. For more information, please see the <0>documentation0>."
-msgstr "Om leden aan een team toe te kunnen voegen, moet u ze eerst aan de organisatie toevoegen. Voor meer informatie, zie de <0>documentatie0>."
+msgstr "Om leden aan een team toe te voegen, moet je ze eerst aan de organisatie toevoegen. Raadpleeg de <0>documentatie0> voor meer informatie."
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
msgid "To change the email you must remove and add a new email address."
-msgstr "Om het e-mailadres te wijzigen moet u het verwijderen en een nieuw e-mailadres toevoegen."
+msgstr "Om het e‑mailadres te wijzigen, moet je het verwijderen en een nieuw e‑mailadres toevoegen."
#. placeholder {0}: user.email
-#. placeholder {0}: userToEnable.email
#. placeholder {0}: userToDisable.email
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#. placeholder {0}: userToEnable.email
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "To confirm, please enter the accounts email address <0/>({0})."
-msgstr "Om te bevestigen, voer het e-mailadres van het account in <0/>({0})."
+msgstr "Ter bevestiging voer je het e‑mailadres van de account in <0/>({0})."
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
msgid "To confirm, please enter the reason"
-msgstr "Om te bevestigen, voer de reden in"
+msgstr "Voer ter bevestiging de reden in"
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
msgid "To enable two-factor authentication, scan the following QR code using your authenticator app."
-msgstr "Om tweefactorauthenticatie in te schakelen, scan de volgende QR-code met uw authenticator-app."
+msgstr "Om twee‑factor‑authenticatie in te schakelen, scan je de volgende QR‑code met je authenticator‑app."
-#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
msgid "To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox."
-msgstr "Om toegang te krijgen tot uw account, bevestig uw e-mailadres door op de bevestigingslink in uw inbox te klikken."
+msgstr "Om toegang te krijgen tot je account, moet je je e‑mailadres bevestigen door op de bevestigingslink in je inbox te klikken."
#. placeholder {0}: recipient.email
#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
msgid "To mark this document as viewed, you need to be logged in as <0>{0}0>"
-msgstr "Om dit document als bekeken te markeren, moet u zijn ingelogd als <0>{0}0>"
+msgstr "Om dit document als bekeken te markeren, moet je ingelogd zijn als <0>{0}0>"
#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
msgid "To mark this document as viewed, you need to be logged in."
-msgstr "Om dit document als bekeken te markeren, moet u ingelogd zijn."
+msgstr "Om dit document als bekeken te markeren, moet u zijn ingelogd."
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "To proceed further, please set at least one value for the {0} field."
-msgstr "Om verder te gaan, stel ten minste één waarde in voor het veld {0}."
+msgstr "Stel ten minste één waarde in voor het veld {0} om verder te gaan."
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "To use our electronic signature service, you must have access to:"
-msgstr "Om gebruik te maken van onze elektronische handtekenservice, moet u toegang hebben tot:"
+msgstr "Om onze dienst voor elektronische handtekeningen te gebruiken, moet je toegang hebben tot:"
#: apps/remix/app/components/embed/embed-authentication-required.tsx
msgid "To view this document you need to be signed into your account, please sign in to continue."
-msgstr "Om dit document te bekijken, moet u inloggen op uw account, graag inloggen om door te gaan."
+msgstr "Om dit document te bekijken, moet je ingelogd zijn op je account; log in om verder te gaan."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Toggle the switch to hide your profile from the public."
-msgstr "Zet de schakelaar om uw profiel voor het publiek te verbergen."
+msgstr "Schakel de schakelaar om je profiel voor het publiek te verbergen."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Toggle the switch to show your profile to the public."
-msgstr "Zet de schakelaar om uw profiel voor het publiek weer te geven."
+msgstr "Schakel de schakelaar om je profiel voor het publiek zichtbaar te maken."
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
msgid "Token"
@@ -9024,7 +9170,7 @@ msgstr "Token"
#: apps/remix/app/components/forms/token.tsx
msgid "Token copied to clipboard"
-msgstr "Token naar klembord gekopieerd"
+msgstr "Token gekopieerd naar klembord"
#: apps/remix/app/components/forms/token.tsx
msgid "Token created"
@@ -9040,11 +9186,11 @@ msgstr "Token heeft geen vervaldatum"
#: apps/remix/app/components/forms/token.tsx
msgid "Token expiration date"
-msgstr "Vervaldatum van het token"
+msgstr "Vervaldatum token"
#: apps/remix/app/components/forms/reset-password.tsx
msgid "Token has expired. Please try again."
-msgstr "Token is verlopen. Probeer het opnieuw."
+msgstr "Het token is verlopen. Probeer het opnieuw."
#: apps/remix/app/components/forms/token.tsx
msgid "Token name"
@@ -9052,7 +9198,7 @@ msgstr "Tokennaam"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Top"
-msgstr "Bovenkant"
+msgstr "Boven"
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "Total Documents"
@@ -9064,80 +9210,84 @@ msgstr "Totaal aantal ontvangers"
#: packages/email/templates/bulk-send-complete.tsx
msgid "Total rows processed: {totalProcessed}"
-msgstr "Totaal verwerkte rijen: {totalProcessed}"
+msgstr "Totaal aantal verwerkte rijen: {totalProcessed}"
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "Total Signers that Signed Up"
-msgstr "Totaal aantal ondertekenaars die zich hebben aangemeld"
+msgstr "Totaal aantal ondertekenaars dat zich heeft geregistreerd"
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "Total Users"
msgstr "Totaal aantal gebruikers"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Triggers"
msgstr "Triggers"
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Two factor authentication"
-msgstr "Tweefactorauthenticatie"
+msgstr "Twee‑factor‑authenticatie"
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app."
-msgstr "Herstelcodes voor tweefactorauthenticatie worden gebruikt om toegang te krijgen tot uw account als u de toegang tot uw authenticator-app verliest."
+msgstr "Herstelcodes voor twee‑factor‑authenticatie worden gebruikt om toegang te krijgen tot je account als je geen toegang meer hebt tot je authenticator‑app."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Two-Factor Authentication"
-msgstr "Tweefactorauthenticatie"
+msgstr "Twee‑factor‑authenticatie"
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
msgid "Two-factor authentication disabled"
-msgstr "Tweefactorauthenticatie uitgeschakeld"
+msgstr "Twee‑factor‑authenticatie uitgeschakeld"
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
msgid "Two-factor authentication enabled"
-msgstr "Tweefactorauthenticatie ingeschakeld"
+msgstr "Twee‑factor‑authenticatie ingeschakeld"
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
msgid "Two-factor authentication has been disabled for your account. You will no longer be required to enter a code from your authenticator app when signing in."
-msgstr "Tweefactorauthenticatie is uitgeschakeld voor uw account. U hoeft bij het inloggen geen code meer in te voeren van uw authenticator-app."
+msgstr "Twee‑factor‑authenticatie is uitgeschakeld voor je account. Je hoeft niet langer een code van je authenticator‑app in te voeren bij het inloggen."
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Two-Factor Re-Authentication"
-msgstr "Twee-factor Hervalidatie"
+msgstr "Twee‑factor‑herauthenticatie"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Type"
msgstr "Type"
#: packages/lib/constants/document.ts
-msgctxt "Type signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Type signature"
msgid "Type"
-msgstr "Type"
+msgstr "Typen"
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Type a command or search..."
msgstr "Typ een opdracht of zoek..."
+#: packages/ui/primitives/signature-pad/signature-pad-type.tsx
+msgid "Type your signature"
+msgstr "Typ uw handtekening"
+
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
msgid "Typed signatures are not allowed. Please draw your signature."
-msgstr "Typte handtekeningen zijn niet toegestaan. Teken alstublieft uw handtekening."
+msgstr "Getypte handtekeningen zijn niet toegestaan. Teken je handtekening."
#: apps/remix/app/routes/_unauthenticated+/verify-email._index.tsx
msgid "Uh oh! Looks like you're missing a token"
-msgstr "Oeps! Het lijkt erop dat u een token mist"
+msgstr "Oei! Het lijkt erop dat je een token mist"
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Unable to change the language at this time. Please try again later."
-msgstr "Het is op dit moment niet mogelijk om de taal te wijzigen. Probeer het later opnieuw."
+msgstr "De taal kan nu niet worden gewijzigd. Probeer het later opnieuw."
#: apps/remix/app/components/forms/2fa/recovery-code-list.tsx
msgid "Unable to copy recovery code"
-msgstr "Kan de herstelcode niet kopiëren"
+msgstr "Kan herstelcode niet kopiëren"
#: apps/remix/app/components/forms/token.tsx
msgid "Unable to copy token"
@@ -9145,11 +9295,11 @@ msgstr "Kan token niet kopiëren"
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Unable to create direct template access. Please try again later."
-msgstr "Kan directe sjabloontoegang niet aanmaken. Probeer het later opnieuw."
+msgstr "Kan geen toegang via directe sjabloon maken. Probeer het later opnieuw."
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
msgid "Unable to decline this invitation at this time."
-msgstr "Het is momenteel niet mogelijk om toe te treden tot deze organisatie."
+msgstr "De uitnodiging kan op dit moment niet worden geweigerd."
#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
msgid "Unable to delete invitation. Please try again."
@@ -9161,11 +9311,11 @@ msgstr "Kan team niet verwijderen"
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
msgid "Unable to disable two-factor authentication"
-msgstr "Kan tweefactorauthenticatie niet uitschakelen"
+msgstr "Kan twee‑factor‑authenticatie niet uitschakelen"
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
msgid "Unable to join this organisation at this time."
-msgstr "Onbeperkt"
+msgstr "Je kunt op dit moment niet toetreden tot deze organisatie."
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
msgid "Unable to load document history"
@@ -9173,19 +9323,19 @@ msgstr "Kan documentgeschiedenis niet laden"
#: apps/remix/app/components/general/template/template-page-view-recent-activity.tsx
msgid "Unable to load documents"
-msgstr "Niet mogelijk om documenten te laden"
+msgstr "Kan documenten niet laden"
#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "Unable to load your public profile templates at this time"
-msgstr "Kan uw openbare profielsjablonen op dit moment niet laden"
+msgstr "Kan je openbare profielsjablonen nu niet laden"
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
msgid "Unable to remove email verification at this time. Please try again."
-msgstr "Kan de e-mailverificatie op dit moment niet verwijderen. Probeer het opnieuw."
+msgstr "Kan e‑mailverificatie nu niet verwijderen. Probeer het opnieuw."
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
msgid "Unable to remove team email at this time. Please try again."
-msgstr "Kan team-e-mail op dit moment niet verwijderen. Probeer het opnieuw."
+msgstr "Kan team‑e‑mail nu niet verwijderen. Probeer het opnieuw."
#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
msgid "Unable to resend invitation. Please try again."
@@ -9193,7 +9343,7 @@ msgstr "Kan uitnodiging niet opnieuw verzenden. Probeer het opnieuw."
#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
msgid "Unable to resend verification at this time. Please try again."
-msgstr "Kan verificatie op dit moment niet opnieuw verzenden. Probeer het opnieuw."
+msgstr "Kan verificatie nu niet opnieuw verzenden. Probeer het opnieuw."
#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
msgid "Unable to reset password"
@@ -9202,34 +9352,34 @@ msgstr "Kan wachtwoord niet resetten"
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
msgid "Unable to setup two-factor authentication"
-msgstr "Kan tweefactorauthenticatie niet instellen"
+msgstr "Kan twee‑factor‑authenticatie niet instellen"
#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/signin.tsx
msgid "Unable to sign in"
msgstr "Kan niet inloggen"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Unauthorized"
-msgstr "Niet geautoriseerd"
+msgstr "Niet gemachtigd"
#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
msgid "Uncompleted"
msgstr "Onvoltooid"
-#: 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
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.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
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Unknown"
msgstr "Onbekend"
@@ -9239,11 +9389,11 @@ msgstr "Onbekende fout"
#: apps/remix/app/components/tables/admin-claims-table.tsx
msgid "Unlimited"
-msgstr "Onbeperkte documenten, API en meer"
+msgstr "Onbeperkt"
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Unlimited documents, API and more"
-msgstr "Naamloze groep"
+msgstr "Onbeperkte documenten, API en meer"
#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
@@ -9256,54 +9406,55 @@ msgstr "Losmaken"
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
msgid "Untitled Group"
-msgstr "Facturering bijwerken"
+msgstr "Naamloze groep"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: 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/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Update"
-msgstr "Update"
+msgstr "Bijwerken"
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "Update Banner"
msgstr "Banner bijwerken"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Update Billing"
-msgstr "Claim bijwerken"
+msgstr "Facturering bijwerken"
#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
msgid "Update Claim"
-msgstr "Organisatie bijwerken"
+msgstr "Claim bijwerken"
#: apps/remix/app/components/general/billing-plans.tsx
msgid "Update current organisation"
-msgstr "Organisatie bijwerken"
+msgstr "Huidige organisatie bijwerken"
#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "Update email"
-msgstr "Update e-mail"
+msgstr "E-mail bijwerken"
#: apps/remix/app/components/general/legacy-field-warning-popover.tsx
msgid "Update Fields"
@@ -9311,17 +9462,17 @@ msgstr "Velden bijwerken"
#: apps/remix/app/components/forms/organisation-update-form.tsx
msgid "Update organisation"
-msgstr "Organisatielid bijwerken"
+msgstr "Organisatie bijwerken"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "Update organisation member"
-msgstr "Abonnementsclaim bijwerken"
+msgstr "Organisatielid bijwerken"
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
msgid "Update passkey"
-msgstr "Toegangssleutel bijwerken"
+msgstr "Passkey bijwerken"
#: apps/remix/app/components/forms/password.tsx
msgid "Update password"
@@ -9331,22 +9482,22 @@ msgstr "Wachtwoord bijwerken"
msgid "Update profile"
msgstr "Profiel bijwerken"
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
msgid "Update Recipient"
msgstr "Ontvanger bijwerken"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Update role"
msgstr "Rol bijwerken"
#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
msgid "Update Subscription Claim"
-msgstr "Teamgroep bijwerken"
+msgstr "Abonnementsclaim bijwerken"
#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Update team"
@@ -9355,12 +9506,12 @@ msgstr "Team bijwerken"
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
msgid "Update team email"
-msgstr "Team-e-mail bijwerken"
+msgstr "Team‑e‑mail bijwerken"
#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
msgid "Update team group"
-msgstr "Upgrade <0>{0}0> naar {planName}"
+msgstr "Teamgroep bijwerken"
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
@@ -9369,59 +9520,55 @@ msgstr "Teamlid bijwerken"
#: 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 "Werk de rol bij en voeg velden toe die nodig zijn voor de directe ontvanger. De persoon die de directe link gebruikt, zal het document ondertekenen als de directe ontvanger."
+msgstr "Werk de rol bij en voeg velden toe zoals nodig voor de directe ontvanger. De persoon die de directe link gebruikt, ondertekent het document als directe ontvanger."
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Update user"
msgstr "Gebruiker bijwerken"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "Update webhook"
-msgstr "Webhook bijwerken"
-
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
msgid "Updated {organisationMemberName} to {roleLabel}."
-msgstr "{organisationMemberName} bijgewerkt naar {roleLabel}."
+msgstr "{organisationMemberName} is bijgewerkt naar {roleLabel}."
#: apps/remix/app/components/forms/password.tsx
msgid "Updating password..."
-msgstr "Wachtwoord bijwerken..."
+msgstr "Wachtwoord wordt bijgewerkt..."
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Updating Your Information"
-msgstr "Uw Informatie Bijwerken"
+msgstr "Je gegevens bijwerken"
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "Upgrade"
-msgstr "Upgrade"
+msgstr "Upgraden"
#. placeholder {0}: organisation.name
#: apps/remix/app/components/general/billing-plans.tsx
msgid "Upgrade <0>{0}0> to {planName}"
-msgstr "Gebruik uw toegangssleutel voor authenticatie"
+msgstr "Upgrade <0>{0}0> naar {planName}"
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
msgid "Upgrade your plan to upload more documents"
-msgstr "Upgrade je plan om meer documenten te uploaden"
+msgstr "Upgrade je abonnement om meer documenten te uploaden"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
msgid "Upload"
msgstr "Uploaden"
#: packages/lib/constants/document.ts
-msgctxt "Upload signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Upload signature"
msgid "Upload"
msgstr "Uploaden"
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
msgid "Upload a CSV file to create multiple documents from this template. Each row represents one document with its recipient details."
-msgstr "Upload een CSV-bestand om meerdere documenten van deze sjabloon te maken. Elke rij vertegenwoordigt een document met zijn ontvangergegevens."
+msgstr "Upload een CSV-bestand om meerdere documenten vanuit deze sjabloon te maken. Elke rij vertegenwoordigt één document met de gegevens van de ontvanger."
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Upload a custom document to use instead of the template's default document"
-msgstr "Upload een aangepast document om te gebruiken in plaats van het standaarddocument van de sjabloon"
+msgstr "Upload een aangepast document om te gebruiken in plaats van het standaardsjabloondocument"
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
msgid "Upload and Process"
@@ -9433,7 +9580,7 @@ msgstr "Avatar uploaden"
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
msgid "Upload CSV"
-msgstr "Upload CSV"
+msgstr "CSV uploaden"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Upload custom document"
@@ -9443,19 +9590,19 @@ msgstr "Aangepast document uploaden"
msgid "Upload disabled"
msgstr "Uploaden uitgeschakeld"
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: packages/ui/primitives/document-upload-button.tsx
msgid "Upload Document"
msgstr "Document uploaden"
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Upload documents and add recipients"
-msgstr "Documenten uploaden en ontvangers toevoegen"
+msgstr "Upload documenten en voeg ontvangers toe"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Upload failed"
msgstr "Uploaden mislukt"
@@ -9466,7 +9613,7 @@ msgstr "Handtekening uploaden"
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: packages/ui/primitives/document-upload-button.tsx
msgid "Upload Template"
-msgstr "Upload Sjabloon"
+msgstr "Sjabloon uploaden"
#: packages/ui/primitives/document-dropzone.tsx
msgid "Upload Template Document"
@@ -9474,10 +9621,10 @@ msgstr "Sjabloondocument uploaden"
#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Upload your brand logo (max 5MB, JPG, PNG, or WebP)"
-msgstr "Upload je merklogo (max 5MB, JPG, PNG, of WebP)"
+msgstr "Upload je merklogo (max. 5 MB, JPG, PNG of WebP)"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Uploaded by"
msgstr "Geüpload door"
@@ -9491,7 +9638,7 @@ msgstr "Geüpload bestand is te klein"
#: apps/remix/app/components/forms/avatar-image.tsx
msgid "Uploaded file not an allowed file type"
-msgstr "Geüpload bestand is geen toegestaan bestandsformaat"
+msgstr "Geüpload bestand is van een niet‑toegestaan bestandstype"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
@@ -9504,39 +9651,39 @@ msgstr "URL"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Use"
-msgstr "Gebruik"
+msgstr "Gebruiken"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Authenticator"
-msgstr "Gebruik Authenticator"
+msgstr "Authenticator gebruiken"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Backup Code"
-msgstr "Gebruik back-upcode"
+msgstr "Back‑upcode gebruiken"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
msgid "Use Template"
-msgstr "Gebruik Sjabloon"
+msgstr "Sjabloon gebruiken"
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
msgid "Use your authenticator app to generate a code"
-msgstr "Gebruik uw verificatie-app om een code te genereren"
+msgstr "Gebruik uw authenticatie-app om een code te genereren"
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
msgid "Use your passkey for authentication"
-msgstr "Gebruiker niet gevonden"
+msgstr "Gebruik je passkey voor authenticatie"
-#: apps/remix/app/components/tables/internal-audit-log-table.tsx
#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/internal-audit-log-table.tsx
msgid "User"
msgstr "Gebruiker"
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
msgid "User Agent"
-msgstr "Gebruikersagent"
+msgstr "User Agent"
#: apps/remix/app/components/forms/password.tsx
msgid "User has no password."
@@ -9544,22 +9691,22 @@ msgstr "Gebruiker heeft geen wachtwoord."
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "User not found"
-msgstr "Gebruikersorganisaties"
+msgstr "Gebruiker niet gevonden"
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "User not found."
msgstr "Gebruiker niet gevonden."
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "User Organisations"
-msgstr "Bekijk volgend document"
+msgstr "Gebruikersorganisaties"
#: apps/remix/app/components/forms/signup.tsx
msgid "User profiles are here!"
-msgstr "Gebruikersprofielen zijn hier!"
+msgstr "Gebruikersprofielen zijn er!"
#: apps/remix/app/components/general/menu-switcher.tsx
msgid "User settings"
@@ -9569,15 +9716,15 @@ msgstr "Gebruikersinstellingen"
msgid "User with this email already exists. Please use a different email address."
msgstr "Er bestaat al een gebruiker met dit e-mailadres. Gebruik een ander e-mailadres."
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
msgid "Users"
msgstr "Gebruikers"
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Validation"
msgstr "Validatie"
@@ -9585,9 +9732,9 @@ msgstr "Validatie"
msgid "Validation failed"
msgstr "Validatie mislukt"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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 "Value"
@@ -9603,11 +9750,11 @@ msgstr "Verificatiecode vereist"
#: apps/remix/app/components/general/verify-email-banner.tsx
msgid "Verification Email Sent"
-msgstr "Verificatie-e-mail verzonden"
+msgstr "Verificatie‑e‑mail verzonden"
#: apps/remix/app/components/general/verify-email-banner.tsx
msgid "Verification email sent successfully."
-msgstr "Verificatie-e-mail succesvol verzonden."
+msgstr "Verificatie‑e‑mail succesvol verzonden."
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
msgid "Verify & Complete"
@@ -9615,50 +9762,50 @@ msgstr "Verifiëren en voltooien"
#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
msgid "Verify Domain"
-msgstr "Verifieer Domein"
+msgstr "Domein verifiëren"
#: apps/remix/app/components/general/verify-email-banner.tsx
msgid "Verify Now"
-msgstr "Verifieer nu"
+msgstr "Nu verifiëren"
#: apps/remix/app/components/general/verify-email-banner.tsx
msgid "Verify your email address"
-msgstr "Verifieer uw e-mailadres"
+msgstr "Verifieer je e‑mailadres"
#: apps/remix/app/components/general/verify-email-banner.tsx
msgid "Verify your email address to unlock all features."
-msgstr "Verifieer uw e-mailadres om alle functies te ontgrendelen."
+msgstr "Verifieer je e‑mailadres om alle functies te ontgrendelen."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Verify your email to upload documents."
-msgstr "Verifieer uw e-mail om documenten te uploaden."
+msgstr "Verifieer je e‑mail om documenten te uploaden."
#: packages/email/templates/confirm-team-email.tsx
msgid "Verify your team email address"
-msgstr "Verifieer uw e-mailadres van het team"
+msgstr "Verifieer je teame-mailadres"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Vertical"
msgstr "Verticaal"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Vertical Align"
-msgstr "Verticale uitlijning"
+msgstr "Verticaal uitlijnen"
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/inbox-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
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.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/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
msgid "View"
-msgstr "Bekijk"
+msgstr "Bekijken"
#: packages/lib/constants/recipient-roles.ts
msgctxt "Recipient role action verb"
@@ -9667,19 +9814,19 @@ msgstr "Bekijken"
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "View activity"
-msgstr "Bekijk activiteit"
+msgstr "Activiteit bekijken"
#: packages/email/templates/confirm-team-email.tsx
msgid "View all documents sent to and from this email address"
-msgstr "Bekijk alle documenten die naar en van dit e-mailadres zijn verzonden"
+msgstr "Bekijk alle documenten die naar en vanaf dit e-mailadres zijn verzonden"
#: apps/remix/app/components/general/teams/team-email-usage.tsx
msgid "View all documents sent to your account"
-msgstr "Bekijk alle documenten die naar uw account zijn verzonden"
+msgstr "Bekijk alle documenten die naar je account zijn verzonden"
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "View all recent security activity related to your account."
-msgstr "Bekijk alle recente beveiligingsactiviteiten met betrekking tot uw account."
+msgstr "Bekijk alle recente beveiligingsactiviteiten met betrekking tot je account."
#: apps/remix/app/components/general/template/template-page-view-recent-activity.tsx
msgid "View all related documents"
@@ -9687,17 +9834,17 @@ msgstr "Bekijk alle gerelateerde documenten"
#: apps/remix/app/routes/_authenticated+/settings+/security.activity.tsx
msgid "View all security activity related to your account."
-msgstr "Bekijk alle beveiligingsactiviteiten met betrekking tot jouw account."
+msgstr "Bekijk alle beveiligingsactiviteiten met betrekking tot je account."
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "View and manage all active sessions for your account."
-msgstr "Bekijk en beheer alle actieve sessies voor uw account."
+msgstr "Bekijk en beheer alle actieve sessies van je account."
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "View and manage all login methods linked to your account."
-msgstr "Bekijk en beheer alle aanmeldmethoden die aan uw account zijn gekoppeld."
+msgstr "Bekijk en beheer alle inlogmethoden die aan uw account zijn gekoppeld."
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
msgid "View Codes"
@@ -9705,38 +9852,42 @@ msgstr "Codes bekijken"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "View DNS Records"
-msgstr "Bekijk DNS-records"
+msgstr "DNS-records bekijken"
#: packages/email/templates/document-created-from-direct-template.tsx
msgid "View document"
msgstr "Document bekijken"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.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
-#: packages/email/template-components/template-document-rejected.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: packages/email/template-components/template-document-invite.tsx
+#: packages/email/template-components/template-document-rejected.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
msgid "View Document"
-msgstr "Document Bekijken"
+msgstr "Document bekijken"
#: packages/email/template-components/template-document-invite.tsx
msgid "View Document to approve"
-msgstr "Bekijk document om goed te keuren"
+msgstr "Document bekijken om goed te keuren"
#: packages/email/template-components/template-document-invite.tsx
msgid "View Document to assist"
-msgstr "Bekijk document om te assisteren"
+msgstr "Document bekijken om te assisteren"
#: packages/email/template-components/template-document-invite.tsx
msgid "View Document to sign"
-msgstr "Bekijk document om te ondertekenen"
+msgstr "Document bekijken om te ondertekenen"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
msgid "View documents associated with this email"
-msgstr "Bekijk documenten die aan dit e-mailadres zijn gekoppeld"
+msgstr "Documenten bekijken die aan dit e‑mailadres zijn gekoppeld"
+
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+msgid "View insights"
+msgstr "Inzichten bekijken"
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
msgid "View invites"
@@ -9744,36 +9895,36 @@ msgstr "Uitnodigingen bekijken"
#: apps/remix/app/components/general/template/template-page-view-recent-activity.tsx
msgid "View more"
-msgstr "Bekijk meer"
+msgstr "Meer bekijken"
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
msgid "View next document"
-msgstr "Bekijk eigenaar"
+msgstr "Volgend document bekijken"
#: apps/remix/app/components/tables/admin-organisations-table.tsx
msgid "View owner"
-msgstr "We konden geen Stripe-klant aanmaken. Probeer het opnieuw."
+msgstr "Bekijk eigenaar"
#: packages/email/template-components/template-document-self-signed.tsx
msgid "View plans"
-msgstr "Bekijk abonnementen"
+msgstr "Plannen bekijken"
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
msgid "View Recovery Codes"
-msgstr "Bekijk herstelcodes"
+msgstr "Herstelcodes bekijken"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/_layout.tsx
msgid "View teams"
-msgstr "Bekijk teams"
+msgstr "Teams bekijken"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "View the DNS records for this email domain"
msgstr "Bekijk de DNS-records voor dit e-maildomein"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Viewed"
msgstr "Bekeken"
@@ -9784,17 +9935,17 @@ msgstr "Bekeken"
#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Viewer"
-msgstr "Kijker"
+msgstr "Viewer"
#: packages/lib/constants/recipient-roles.ts
msgctxt "Recipient role name"
msgid "Viewer"
-msgstr "Kijker"
+msgstr "Viewer"
#: packages/lib/constants/recipient-roles.ts
msgctxt "Recipient role plural name"
msgid "Viewers"
-msgstr "Kijkers"
+msgstr "Viewers"
#: packages/lib/constants/recipient-roles.ts
msgctxt "Recipient role progressive verb"
@@ -9815,21 +9966,21 @@ msgstr "Wachten op anderen"
#: packages/lib/server-only/document/send-pending-email.ts
msgid "Waiting for others to complete signing."
-msgstr "Wachten tot anderen klaar zijn met ondertekenen."
+msgstr "Wachten tot anderen het ondertekenen hebben voltooid."
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
msgid "Waiting for others to sign"
-msgstr "Wacht op anderen om te tekenen"
+msgstr "Wachtend op anderen om te ondertekenen"
-#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
#: apps/remix/app/components/embed/embed-document-waiting-for-turn.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
msgid "Waiting for Your Turn"
-msgstr "Wachten op uw beurt"
+msgstr "Wachten op jouw beurt"
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
msgid "Want to send slick signing links like this one? <0>Check out Documenso.0>"
-msgstr "Wil je ook zo'n strakke ondertekeningslink sturen? <0>Bekijk Documenso.0>"
+msgstr "Wil je zulke strakke ondertekeningslinks verzenden als deze? <0>Bekijk Documenso.0>"
#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Want your own public profile?"
@@ -9838,40 +9989,40 @@ msgstr "Wil je een eigen openbaar profiel?"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
msgid "Warning: Assistant as last signer"
msgstr "Waarschuwing: Assistent als laatste ondertekenaar"
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
-msgstr "We kunnen op dit moment niet naar het factureringsportaal gaan. Probeer het opnieuw of neem contact op met de ondersteuning."
+msgstr "We kunnen nu niet doorgaan naar de facturatieportal. Probeer het opnieuw of neem contact op met support."
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
msgid "We are unable to remove this passkey at the moment. Please try again later."
-msgstr "We kunnen deze toegangssleutel momenteel niet verwijderen. Probeer het later opnieuw."
+msgstr "We kunnen deze passkey momenteel niet verwijderen. Probeer het later opnieuw."
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
msgid "We are unable to update this passkey at the moment. Please try again later."
-msgstr "We kunnen deze toegangssleutel momenteel niet bijwerken. Probeer het later opnieuw."
+msgstr "We kunnen deze passkey momenteel niet bijwerken. Probeer het later opnieuw."
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "We couldn't create a Stripe customer. Please try again."
-msgstr "We konden de groep niet bijwerken. Probeer het opnieuw."
+msgstr "We konden geen Stripe-klant aanmaken. Probeer het opnieuw."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "We couldn't update the group. Please try again."
-msgstr "We konden de organisatie niet bijwerken. Probeer het opnieuw."
+msgstr "We konden de groep niet bijwerken. Probeer het opnieuw."
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "We couldn't update the organisation. Please try again."
-msgstr "We ondervonden een onbekende fout bij het toevoegen van teamleden. Probeer het later opnieuw."
+msgstr "We konden de organisatie niet bijwerken. Probeer het opnieuw."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "We couldn't update the provider. Please try again."
@@ -9881,45 +10032,45 @@ msgstr "We konden de provider niet bijwerken. Probeer het opnieuw."
#: packages/lib/client-only/providers/envelope-editor-provider.tsx
#: packages/lib/client-only/providers/envelope-editor-provider.tsx
msgid "We encountered an error while attempting to save your changes. Your changes cannot be saved at this time."
-msgstr "Er is een fout opgetreden bij het opslaan van uw wijzigingen. Uw wijzigingen kunnen momenteel niet worden opgeslagen."
+msgstr "Er is een fout opgetreden bij het opslaan van uw wijzigingen. Uw wijzigingen kunnen op dit moment niet worden opgeslagen."
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
msgid "We encountered an error while creating the email. Please try again later."
-msgstr "We hebben een fout aangetroffen bij het creëren van de e-mail. Probeer het later opnieuw."
+msgstr "Er is een fout opgetreden bij het aanmaken van de e-mail. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "We encountered an error while removing the direct template link. Please try again later."
-msgstr "Er is een fout opgetreden bij het verwijderen van de directe sjabloonkoppeling. Probeer het later opnieuw."
+msgstr "Er is een fout opgetreden bij het verwijderen van de directe sjabloonlink. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "We encountered an error while sending the test webhook. Please check your endpoint and try again."
-msgstr "We hebben een fout aangetroffen bij het verzenden van de test-webhook. Controleer uw eindpunt en probeer het opnieuw."
+msgstr "Er is een fout opgetreden bij het verzenden van de testwebhook. Controleer je endpoint en probeer het opnieuw."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "We encountered an error while updating the webhook. Please try again later."
msgstr "Er is een fout opgetreden bij het bijwerken van de webhook. Probeer het later opnieuw."
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "We encountered an unknown error while attempting to add team members. Please try again later."
-msgstr "We ondervonden een onbekende fout bij het aanmaken van een groep. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het toevoegen van teamleden. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
msgid "We encountered an unknown error while attempting to add this email. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij het toevoegen van dit e-mailadres. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het toevoegen van dit e‑mailadres. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
msgid "We encountered an unknown error while attempting to add your domain. Please try again later."
-msgstr "We hebben een onbekende fout aangetroffen bij het proberen uw domein toe te voegen. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het toevoegen van je domein. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
msgid "We encountered an unknown error while attempting to create a group. Please try again later."
-msgstr "We ondervonden een onbekende fout bij het maken van een organisatie. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het aanmaken van een groep. Probeer het later opnieuw."
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "We encountered an unknown error while attempting to create a organisation. Please try again later."
-msgstr "We ondervonden een onbekende fout bij het verwijderen van deze organisatie. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het aanmaken van een organisatie. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
msgid "We encountered an unknown error while attempting to create a team. Please try again later."
@@ -9927,95 +10078,95 @@ msgstr "Er is een onbekende fout opgetreden bij het aanmaken van een team. Probe
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to delete it. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij het proberen dit te verwijderen. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het verwijderen. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to delete this organisation. Please try again later."
-msgstr "We ondervonden een onbekende fout bij het uitschakelen van toegang."
+msgstr "Er is een onbekende fout opgetreden bij het verwijderen van deze organisatie. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to delete this team. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij de poging om dit team te verwijderen. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het verwijderen van dit team. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to delete this token. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij de poging om dit token te verwijderen. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het verwijderen van dit token. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to delete your account. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij de poging om jouw account te verwijderen. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het verwijderen van je account. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
msgid "We encountered an unknown error while attempting to disable access."
-msgstr "We ondervonden een onbekende fout bij het inschakelen van toegang."
+msgstr "Er is een onbekende fout opgetreden bij het uitschakelen van de toegang. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
msgid "We encountered an unknown error while attempting to enable access."
-msgstr "We ondervonden een onbekende fout tijdens het uitnodigen van organisatieleden. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het inschakelen van de toegang. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
msgid "We encountered an unknown error while attempting to invite organisation members. Please try again later."
-msgstr "We ondervonden een onbekende fout bij het verlaten van deze organisatie. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het uitnodigen van organisatieleden. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
msgid "We encountered an unknown error while attempting to leave this organisation. Please try again later."
-msgstr "We ondervonden een onbekende fout terwijl we probeerden deze groep te verwijderen. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het verlaten van deze organisatie. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this email domain. Please try again later."
-msgstr "We hebben een onbekende fout aangetroffen bij het proberen om dit e-maildomein te verwijderen. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het verwijderen van dit e-maildomein. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this email. Please try again later."
-msgstr "We hebben een onbekende fout aangetroffen bij het proberen om deze e-mail te verwijderen. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het verwijderen van deze e-mail. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this envelope item. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij het verwijderen van dit envelopitem. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het verwijderen van dit envelop-item. Probeer het later opnieuw."
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this group. Please try again later."
-msgstr "We ondervonden een onbekende fout bij het bijwerken van dit organisatielid. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het verwijderen van deze groep. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this template from your profile. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij het proberen deze sjabloon uit jouw profiel te verwijderen. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het verwijderen van deze sjabloon uit je profiel. Probeer het later opnieuw."
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this user. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij het proberen deze gebruiker te verwijderen. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het verwijderen van deze gebruiker. Probeer het later opnieuw."
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
msgid "We encountered an unknown error while attempting to request the two-factor authentication code. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij het aanvragen van de tweefactorverificatiecode. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het opvragen van de tweefactorauthenticatiecode. Probeer het later opnieuw."
#: apps/remix/app/components/forms/reset-password.tsx
msgid "We encountered an unknown error while attempting to reset your password. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij het proberen jouw wachtwoord opnieuw in te stellen. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het resetten van je wachtwoord. Probeer het later opnieuw."
#: apps/remix/app/components/general/teams/team-email-usage.tsx
msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support."
-msgstr "Er is een onbekende fout opgetreden bij de poging om toegang in te trekken. Probeer het opnieuw of neem contact op met de ondersteuning."
+msgstr "Er is een onbekende fout opgetreden bij het intrekken van de toegang. Probeer het opnieuw of neem contact op met support."
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
msgid "We encountered an unknown error while attempting to sign you In. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij de poging om je in te loggen. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het inloggen. Probeer het later opnieuw."
#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/signup.tsx
msgid "We encountered an unknown error while attempting to sign you Up. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij de poging om je te registreren. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het registreren. Probeer het later opnieuw."
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "We encountered an unknown error while attempting to update the banner. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij het proberen de banner bij te werken. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het bijwerken van de banner. Probeer het later opnieuw."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
msgid "We encountered an unknown error while attempting to update the envelope. Please try again later."
@@ -10023,42 +10174,42 @@ msgstr "Er is een onbekende fout opgetreden bij het bijwerken van de envelop. Pr
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "We encountered an unknown error while attempting to update the template. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij het updaten van de sjabloon. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het bijwerken van de sjabloon. Probeer het later opnieuw."
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this organisation member. Please try again later."
-msgstr "We ondervonden een onbekende fout bij het bijwerken van uw organisatie. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het bijwerken van dit organisatielid. Probeer het later opnieuw."
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this team member. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij het updaten van dit teamlid. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het bijwerken van dit teamlid. Probeer het later opnieuw."
#: apps/remix/app/components/forms/organisation-update-form.tsx
msgid "We encountered an unknown error while attempting to update your organisation. Please try again later."
-msgstr "Welkom terug! Hier is een overzicht van uw account."
+msgstr "Er is een onbekende fout opgetreden bij het bijwerken van je organisatie. Probeer het later opnieuw."
-#: apps/remix/app/components/forms/password.tsx
#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
msgid "We encountered an unknown error while attempting to update your password. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij het bijwerken van jouw wachtwoord. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het bijwerken van je wachtwoord. Probeer het later opnieuw."
#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "We encountered an unknown error while attempting to update your public profile. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij de poging om jouw openbare profiel bij te werken. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het bijwerken van je openbare profiel. Probeer het later opnieuw."
#: apps/remix/app/components/forms/team-update-form.tsx
msgid "We encountered an unknown error while attempting to update your team. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij het bijwerken van jouw team. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het bijwerken van je team. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
msgid "We encountered an unknown error while attempting update the team email. Please try again later."
-msgstr "Er is een onbekende fout opgetreden bij de poging het team-e-mailadres bij te werken. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het bijwerken van de team‑e‑mail. Probeer het later opnieuw."
#: apps/remix/app/components/forms/profile.tsx
msgid "We encountered an unknown error while attempting update your profile. Please try again later."
-msgstr "We hebben een onbekende fout ondervonden tijdens het updaten van uw profiel. Probeer het later opnieuw."
+msgstr "Er is een onbekende fout opgetreden bij het bijwerken van je profiel. Probeer het later opnieuw."
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
msgid "We have sent a confirmation email for verification."
@@ -10066,86 +10217,86 @@ msgstr "We hebben een bevestigingsmail voor verificatie verzonden."
#: apps/remix/app/components/forms/signup.tsx
msgid "We need your signature to sign documents"
-msgstr "We hebben je handtekening nodig om documenten te ondertekenen"
+msgstr "We hebben je handtekening nodig om documenten te ondertekenen."
#: apps/remix/app/components/forms/token.tsx
msgid "We were unable to copy the token to your clipboard. Please try again."
-msgstr "We konden het token niet naar jouw klembord kopiëren. Probeer het opnieuw."
+msgstr "We konden het token niet naar je klembord kopiëren. Probeer het opnieuw."
#: apps/remix/app/components/forms/2fa/recovery-code-list.tsx
msgid "We were unable to copy your recovery code to your clipboard. Please try again."
-msgstr "We konden jouw herstelcode niet naar jouw klembord kopiëren. Probeer het opnieuw."
+msgstr "We konden je herstelcode niet naar je klembord kopiëren. Probeer het opnieuw."
#: apps/remix/app/components/forms/signup.tsx
msgid "We were unable to create your account. Please review the information you provided and try again."
-msgstr "Er is een probleem opgetreden bij het aanmaken van je account. Controleer de verstrekte informatie en probeer het opnieuw."
+msgstr "We konden je account niet aanmaken. Controleer de door jou ingevoerde gegevens en probeer het opnieuw."
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
msgid "We were unable to disable two-factor authentication for your account. Please ensure that you have entered your password and backup code correctly and try again."
-msgstr "We konden de tweefactorauthenticatie voor jouw account niet uitschakelen. Zorg ervoor dat je jouw wachtwoord en back-upcode correct hebt ingevoerd en probeer het opnieuw."
+msgstr "We konden twee‑factor‑authenticatie voor je account niet uitschakelen. Controleer of je je wachtwoord en back‑upcode correct hebt ingevoerd en probeer het opnieuw."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "We were unable to log you out at this time."
-msgstr "We konden je op dit moment niet uitloggen."
+msgstr "We konden je nu niet uitloggen."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "We were unable to set your public profile to public. Please try again."
-msgstr "We konden jouw openbare profiel niet openbaar instellen. Probeer het opnieuw."
+msgstr "We konden je openbare profiel nu niet op openbaar zetten. Probeer het opnieuw."
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
msgid "We were unable to setup two-factor authentication for your account. Please ensure that you have entered your code correctly and try again."
-msgstr "We konden de tweefactorauthenticatie voor jouw account niet instellen. Zorg ervoor dat je jouw code correct hebt ingevoerd en probeer het opnieuw."
+msgstr "We konden twee‑factor‑authenticatie voor je account niet instellen. Controleer of je de code correct hebt ingevoerd en probeer het opnieuw."
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
msgid "We were unable to submit this document at this time. Please try again later."
-msgstr "We konden dit document op dit moment niet indienen. Probeer het later opnieuw."
+msgstr "We konden dit document nu niet indienen. Probeer het later opnieuw."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
msgid "We were unable to update your branding preferences at this time, please try again later"
-msgstr "We konden je merkvoorkeuren op dit moment niet bijwerken, probeer het later opnieuw"
+msgstr "We konden je brandingvoorkeuren nu niet bijwerken; probeer het later opnieuw"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
msgid "We were unable to update your document preferences at this time, please try again later"
-msgstr "We konden uw documentvoorkeuren op dit moment niet bijwerken, probeer het later opnieuw"
+msgstr "We konden je documentvoorkeuren nu niet bijwerken; probeer het later opnieuw"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
msgid "We were unable to update your email preferences at this time, please try again later"
-msgstr "We waren niet in staat om uw e-mailvoorkeuren op dit moment bij te werken, probeer het later opnieuw"
+msgstr "We konden je e-mailvoorkeuren op dit moment niet bijwerken, probeer het later opnieuw"
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "We were unable to verify your details. Please try again or contact support"
-msgstr "We konden jouw gegevens niet verifiëren. Probeer het opnieuw of neem contact op met de ondersteuning"
+msgstr "We konden je gegevens niet verifiëren. Probeer het opnieuw of neem contact op met support"
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
msgid "We were unable to verify your email at this time."
-msgstr "We konden uw e-mail op dit moment niet verifiëren."
+msgstr "We konden je e-mailadres op dit moment niet verifiëren."
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
msgid "We were unable to verify your email. If your email is not verified already, please try again."
-msgstr "We konden jouw e-mail niet verifiëren. Als jouw e-mail nog niet is geverifieerd, probeer het dan opnieuw."
+msgstr "We konden je e‑mail niet verifiëren. Als je e‑mail nog niet is geverifieerd, probeer het dan opnieuw."
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We will generate signing links for you, which you can send to the recipients through your method of choice."
-msgstr "We zullen ondertekeningslinks voor u genereren, die u naar de ontvangers kunt sturen via uw gewenste methode."
+msgstr "We genereren ondertekeningslinks voor je, die je via je eigen kanaal naar de ontvangers kunt sturen."
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We won't send anything to notify recipients."
-msgstr "We sturen niets om ontvangers op de hoogte te stellen."
+msgstr "We sturen niets om ontvangers op de hoogte te brengen."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "We'll get back to you as soon as possible via email."
@@ -10153,28 +10304,33 @@ msgstr "We nemen zo snel mogelijk per e-mail contact met u op."
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
msgid "We'll send a 6-digit code to your email"
-msgstr "We sturen een 6-cijferige code naar je e-mail"
+msgstr "We sturen een 6-cijferige code naar uw e-mailadres"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
msgid "We're all empty"
-msgstr "We zijn helemaal leeg"
+msgstr "Alles is leeg"
#: 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 "We wachten nog steeds op andere ondertekenaars om dit document te ondertekenen.<0/>We zullen u informeren zodra het klaar is."
+msgstr "We wachten nog steeds tot andere ondertekenaars dit document ondertekenen.<0/>We laten je weten zodra het klaar is."
#: 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 "We hebben uw wachtwoord gewijzigd zoals u vroeg. U kunt nu met uw nieuwe wachtwoord inloggen."
+msgstr "We hebben je wachtwoord gewijzigd zoals je hebt gevraagd. Je kunt nu inloggen met je nieuwe wachtwoord."
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
msgid "We've sent a 6-digit verification code to your email. Please enter it below to complete the document."
-msgstr "We hebben een 6-cijferige verificatiecode naar uw e-mail gestuurd. Voer het hieronder in om het document te voltooien."
+msgstr "We hebben een 6-cijferige verificatiecode naar uw e-mailadres gestuurd. Voer deze hieronder in om het document te voltooien."
#: apps/remix/app/components/general/verify-email-banner.tsx
msgid "We've sent a confirmation email to <0>{email}0>. Please check your inbox and click the link in the email to verify your account."
-msgstr "We hebben een bevestigingsmail gestuurd naar <0>{email}0>. Controleer jouw inbox en klik op de link in de e-mail om jouw account te verifiëren."
+msgstr "We hebben een bevestigingsmail gestuurd naar <0>{email}0>. Controleer je inbox en klik op de link in de e‑mail om je account te verifiëren."
+
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Webhook"
+msgstr "Webhook"
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
msgid "Webhook created"
@@ -10184,23 +10340,31 @@ msgstr "Webhook aangemaakt"
msgid "Webhook deleted"
msgstr "Webhook verwijderd"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook Details"
+msgstr "Webhookdetails"
+
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Webhook not found"
msgstr "Webhook niet gevonden"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook successfully sent"
+msgstr "Webhook succesvol verzonden"
+
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Webhook updated"
msgstr "Webhook bijgewerkt"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Webhook URL"
-msgstr "Webhook URL"
+msgstr "Webhook‑URL"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Webhooks"
msgstr "Webhooks"
@@ -10210,11 +10374,11 @@ msgstr "Welkom"
#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Welcome back, we are lucky to have you."
-msgstr "Welkom terug, we zijn blij je weer te zien."
+msgstr "Welkom terug, we boffen met je."
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
msgid "Welcome back! Here's an overview of your account."
-msgstr "Wat u kunt doen met teams:"
+msgstr "Welkom terug! Hier is een overzicht van je account."
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Welcome to {organisationName}"
@@ -10226,34 +10390,34 @@ msgstr "Welkom bij Documenso!"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Well-known URL is required"
-msgstr "Goed-bekende URL is vereist"
+msgstr "Well-known URL is verplicht"
#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
msgid "Were you trying to edit this document instead?"
-msgstr "Probeerde u dit document in plaats daarvan te bewerken?"
+msgstr "Probeerde je dit document in plaats daarvan te bewerken?"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
msgid "What you can do with teams:"
-msgstr "Whitelabeling, onbeperkte leden en meer"
+msgstr "Wat je met teams kunt doen:"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "When enabled, signers can choose who should sign next in the sequence instead of following the predefined order."
-msgstr "Wanneer ingeschakeld, kunnen ondertekenaars kiezen wie de volgende in de volgorde moet ondertekenen in plaats van de vooraf bepaalde volgorde te volgen."
+msgstr "Wanneer dit is ingeschakeld, kunnen ondertekenaars zelf kiezen wie de volgende in de volgorde moet ondertekenen in plaats van de vooraf gedefinieerde volgorde te volgen."
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "When you click continue, you will be prompted to add the first available authenticator on your system."
-msgstr "Wanneer je op doorgaan klikt, wordt je gevraagd de eerste beschikbare authenticator op jouw systeem toe te voegen."
+msgstr "Wanneer je op Doorgaan klikt, wordt je gevraagd de eerste beschikbare authenticator op je systeem toe te voegen."
#: 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 "Wanneer u een document ondertekent, kunnen we automatisch de volgende velden invullen en ondertekenen met behulp van reeds verstrekte informatie. U kunt ook handmatig ondertekenen of automatisch ondertekende velden verwijderen indien gewenst."
+msgstr "Wanneer je een document ondertekent, kunnen we de volgende velden automatisch invullen en ondertekenen met informatie die al is opgegeven. Je kunt automatisch ondertekende velden achteraf ook handmatig ondertekenen of verwijderen als je dat wilt."
#: 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."
-msgstr "Wanneer u ons platform gebruikt om uw elektronische handtekening op documenten aan te brengen, stemt u ermee in dit te doen onder de Electronic Signatures in Global and National Commerce Act (E-Sign Act) en andere toepasselijke wetten. Deze actie geeft aan dat u ermee akkoord gaat om elektronische middelen te gebruiken om documenten te ondertekenen en meldingen te ontvangen."
+msgstr "Wanneer je ons platform gebruikt om je elektronische handtekening op documenten te plaatsen, doe je dat onder de Electronic Signatures in Global and National Commerce Act (E‑Sign Act) en andere toepasselijke wetgeving. Deze handeling geeft aan dat je ermee instemt documenten elektronisch te ondertekenen en meldingen elektronisch te ontvangen."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "Whether to enable the SSO portal for your organisation"
@@ -10261,11 +10425,11 @@ msgstr "Of het SSO-portaal voor uw organisatie moet worden ingeschakeld"
#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "While waiting for them to do so you can create your own Documenso account and get started with document signing right away."
-msgstr "Terwijl je wacht, kun je jouw eigen Documenso-account aanmaken en meteen aan de slag gaan met het ondertekenen van documenten."
+msgstr "Terwijl je daarop wacht, kun je je eigen Documenso‑account aanmaken en direct beginnen met documenten ondertekenen."
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Whitelabeling, unlimited members and more"
-msgstr "Schrijf een beschrijving om weer te geven op uw openbare profiel"
+msgstr "Whitelabeling, onbeperkte leden en meer"
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
msgid "Who do you want to remind?"
@@ -10273,45 +10437,45 @@ msgstr "Wie wil je herinneren?"
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Withdrawing Consent"
-msgstr "Toestemming Intrekken"
+msgstr "Toestemming intrekken"
#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "Write a description to display on your public profile"
-msgstr "Ja"
+msgstr "Schrijf een beschrijving die op je openbare profiel wordt weergegeven"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Yearly"
msgstr "Jaarlijks"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Yes"
-msgstr "U staat op het punt om <0>{0}0> te verwijderen. Alle gegevens gerelateerd aan deze organisatie zoals teams, documenten en alle andere bronnen worden verwijderd. Deze actie is onomkeerbaar."
+msgstr "Ja"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: packages/lib/utils/document-audit-logs.ts
msgid "You"
msgstr "Jij"
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "You are about to complete approving the following document"
-msgstr "U staat op het punt de goedkeuring van het volgende document te voltooien"
+msgstr "U staat op het punt het volgende document goed te keuren"
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "You are about to complete assisting the following document"
-msgstr "U staat op het punt de assistentie met het volgende document te voltooien"
+msgstr "U staat op het punt te assisteren bij het volgende document"
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "You are about to complete signing the following document"
-msgstr "U staat op het punt de ondertekening van het volgende document te voltooien"
+msgstr "U staat op het punt het volgende document te ondertekenen"
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "You are about to complete viewing the following document"
-msgstr "U staat op het punt de weergave van het volgende document te voltooien"
+msgstr "U staat op het punt het volgende document te bekijken"
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "You are about to delete <0>\"{documentTitle}\"0>"
@@ -10320,15 +10484,15 @@ msgstr "Je staat op het punt <0>\"{documentTitle}\"0> te verwijderen"
#. placeholder {0}: organisation.name
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
msgid "You are about to delete <0>{0}0>. All data related to this organisation such as teams, documents, and all other resources will be deleted. This action is irreversible."
-msgstr "U staat op het punt om alle organisatieleden toegang te geven tot dit team onder hun organisatierol."
+msgstr "Je staat op het punt <0>{0}0> te verwijderen. Alle gegevens die aan deze organisatie zijn gekoppeld, zoals teams, documenten en alle andere resources, worden verwijderd. Deze actie is onomkeerbaar."
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
msgid "You are about to delete the following team email from <0>{teamName}0>."
-msgstr "Je staat op het punt het volgende team-e-mailadres van <0>{teamName}0> te verwijderen."
+msgstr "Je staat op het punt de volgende team‑e‑mail te verwijderen uit <0>{teamName}0>."
#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
msgid "You are about to give all organisation members access to this team under their organisation role."
-msgstr "U staat op het punt om de volgende organisatie te verlaten."
+msgstr "Je staat op het punt alle organisatieleden toegang te geven tot dit team onder hun organisatierol."
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "You are about to hide <0>\"{documentTitle}\"0>"
@@ -10336,20 +10500,20 @@ msgstr "Je staat op het punt <0>\"{documentTitle}\"0> te verbergen"
#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
msgid "You are about to leave the following organisation."
-msgstr "U staat op het punt de standaardtoegang tot dit team voor alle organisatieleden te verwijderen. Elk lid dat niet expliciet aan dit team is toegevoegd, zal geen toegang meer hebben."
+msgstr "Je staat op het punt de volgende organisatie te verlaten."
#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
msgid "You are about to remove default access to this team for all organisation members. Any members not explicitly added to this team will no longer have access."
-msgstr "U staat op het punt de volgende groep te verwijderen van <0>{0}0>."
+msgstr "Je staat op het punt de standaardtoegang tot dit team voor alle organisatieleden te verwijderen. Leden die niet expliciet aan dit team zijn toegevoegd, hebben dan geen toegang meer."
#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "You are about to remove the <0>{provider}0> login method from your account."
-msgstr "U staat op het punt de <0>{provider}0> inlogmethode van uw account te verwijderen."
+msgstr "U staat op het punt de inlogmethode <0>{provider}0> van uw account te verwijderen."
#. placeholder {0}: organisation.name
#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
msgid "You are about to remove the email domain <0>{emailDomain}0> from <1>{0}1>. All emails associated with this domain will be deleted."
-msgstr "U staat op het punt om het e-maildomein <0>{emailDomain}0> uit <1>{0}1> te verwijderen. Alle e-mails die aan dit domein zijn gekoppeld, worden verwijderd."
+msgstr "Je staat op het punt het e-maildomein <0>{emailDomain}0> uit <1>{0}1> te verwijderen. Alle e-mails die aan dit domein zijn gekoppeld, worden verwijderd."
#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
msgid "You are about to remove the following document and all associated fields"
@@ -10358,197 +10522,201 @@ msgstr "U staat op het punt het volgende document en alle bijbehorende velden te
#. placeholder {0}: organisation.name
#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
msgid "You are about to remove the following email from <0>{0}0>."
-msgstr "U staat op het punt om de volgende e-mail uit <0>{0}0> te verwijderen."
+msgstr "Je staat op het punt de volgende e-mail uit <0>{0}0> te verwijderen."
-#. placeholder {0}: team.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#. placeholder {0}: team.name
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "You are about to remove the following group from <0>{0}0>."
-msgstr "U staat op het punt de volgende gebruiker te verwijderen van <0>{0}0>."
+msgstr "Je staat op het punt de volgende groep te verwijderen uit <0>{0}0>."
#. placeholder {0}: organisation.name
#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
msgid "You are about to remove the following user from <0>{0}0>."
-msgstr "U staat op het punt u op het {planName} te abonneren."
+msgstr "Je staat op het punt de volgende gebruiker te verwijderen uit <0>{0}0>."
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
msgid "You are about to remove the following user from <0>{teamName}0>."
-msgstr "Je staat op het punt om de volgende gebruiker uit <0>{teamName}0> te verwijderen."
+msgstr "Je staat op het punt de volgende gebruiker te verwijderen uit <0>{teamName}0>."
#. placeholder {0}: teamEmail.team.name
#. placeholder {1}: teamEmail.team.url
#: apps/remix/app/components/general/teams/team-email-usage.tsx
msgid "You are about to revoke access for team <0>{0}0> ({1}) to use your email."
-msgstr "Je staat op het punt de toegang voor team <0>{0}0> ({1}) om jouw e-mail te gebruiken, in te trekken."
+msgstr "Je staat op het punt de toegang voor team <0>{0}0> ({1}) om je e‑mail te gebruiken, in te trekken."
#: 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 "U staat op het punt dit document naar de ontvangers te verzenden. Weet u zeker dat u wilt doorgaan?"
+msgstr "Je staat op het punt dit document naar de ontvangers te sturen. Weet je zeker dat je wilt doorgaan?"
#: apps/remix/app/components/general/billing-plans.tsx
msgid "You are about to subscribe to the {planName}"
-msgstr "U werkt momenteel <0>{memberName}.0> bij"
+msgstr "Je staat op het punt je te abonneren op de {planName}"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
msgid "You are currently on the <0>Free Plan0>."
-msgstr "Je zit momenteel in het <0>Gratis Plan0>."
+msgstr "Je zit momenteel in het <0>Gratis abonnement0>."
#. placeholder {0}: organisationEmail.email
#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "You are currently updating <0>{0}0>"
-msgstr "U bent momenteel <0>{0}0> aan het bijwerken"
+msgstr "Je werkt momenteel <0>{0}0> bij"
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
msgid "You are currently updating <0>{memberName}.0>"
-msgstr "U werkt momenteel <0>{organisationMemberName}.0> bij"
+msgstr "Je werkt momenteel <0>{memberName}0> bij."
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "You are currently updating <0>{organisationMemberName}.0>"
-msgstr "U werkt momenteel de <0>{teamGroupName}0> teamgroep bij."
+msgstr "Je werkt momenteel <0>{organisationMemberName}0> bij."
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
msgid "You are currently updating the <0>{passkeyName}0> passkey."
-msgstr "Je bent momenteel bezig met het bijwerken van de toegangssleutel <0>{passkeyName}0>."
+msgstr "Je bent momenteel de passkey <0>{passkeyName}0> aan het bijwerken."
#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
msgid "You are currently updating the <0>{teamGroupName}0> team group."
-msgstr "U bent niet bevoegd om deze pagina te bekijken."
+msgstr "Je werkt momenteel de teamgroep <0>{teamGroupName}0> bij."
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
msgid "You are not allowed to move this document."
-msgstr "U mag dit document niet verplaatsen."
+msgstr "Je mag dit document niet verplaatsen."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "You are not authorized to access this page."
-msgstr "U kunt kiezen om het profiel voor openbaarzicht in of uit te schakelen."
+msgstr "Je bent niet gemachtigd om deze pagina te openen."
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "You are not authorized to delete this user."
-msgstr "U bent niet gemachtigd om deze gebruiker te verwijderen."
+msgstr "Je bent niet gemachtigd om deze gebruiker te verwijderen."
#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
msgid "You are not authorized to disable this user."
-msgstr "U bent niet gemachtigd om deze gebruiker uit te schakelen."
+msgstr "Je bent niet gemachtigd om deze gebruiker uit te schakelen."
#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
msgid "You are not authorized to enable this user."
-msgstr "U bent niet gemachtigd om deze gebruiker in te schakelen."
+msgstr "Je bent niet gemachtigd om deze gebruiker in te schakelen."
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "You are not authorized to reset two factor authentcation for this user."
-msgstr "U bent niet gemachtigd om tweefactorauthenticatie voor deze gebruiker te resetten."
+msgstr "U bent niet gemachtigd om de tweefactorauthenticatie voor deze gebruiker te resetten."
#: 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 "U kunt deze link ook kopiëren en in uw browser plakken: {confirmationLink} (link verloopt over 1 uur)"
+msgstr "Je kunt deze link ook kopiëren en in je browser plakken: {confirmationLink} (link verloopt over 1 uur)"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "You can choose to enable or disable the profile for public view."
-msgstr "U kunt toegang mogelijk maken zodat standaard alle organisatieleden toegang hebben tot dit team."
+msgstr "Je kunt ervoor kiezen het profiel in of uit te schakelen voor openbare weergave."
#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
msgid "You can copy and share these links to recipients so they can action the document."
-msgstr "U kunt deze links kopiëren en delen met ontvangers zodat ze het document kunnen verwerken."
+msgstr "Je kunt deze links kopiëren en met ontvangers delen zodat zij actie op het document kunnen ondernemen."
#: apps/remix/app/components/general/teams/team-inherit-member-alert.tsx
msgid "You can enable access to allow all organisation members to access this team by default."
-msgstr "U kunt geen groep verwijderen die een hogere rol heeft dan u."
+msgstr "Je kunt de toegang inschakelen zodat alle organisatieleden standaard toegang hebben tot dit team."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
msgid "You can manage your email preferences here"
-msgstr "U kunt hier uw e-mailvoorkeuren beheren"
+msgstr "Je kunt hier je e-mailvoorkeuren beheren"
#: 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 "U kunt op elk moment de toegang intrekken in uw teaminstellingen op Documenso <0>hier.0>"
+msgstr "Je kunt de toegang op elk moment intrekken in je teaminstellingen op Documenso <0>hier.0>"
#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "You can update the profile URL by updating the team URL in the general settings page."
-msgstr "Je kunt de profiel-URL bijwerken door de team-URL op de algemene instellingenpagina bij te werken."
+msgstr "Je kunt de profiel‑URL bijwerken door de team‑URL op de pagina Algemene instellingen te wijzigen."
#: packages/ui/components/document/document-send-email-message-helper.tsx
msgid "You can use the following variables in your message:"
-msgstr "U kunt de volgende variabelen in uw bericht gebruiken:"
+msgstr "Je kunt de volgende variabelen in je bericht gebruiken:"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
msgid "You can view documents associated with this email and use this identity when sending documents."
-msgstr "Je kunt documenten bekijken die aan deze e-mail zijn gekoppeld en deze identiteit gebruiken bij het verzenden van documenten."
+msgstr "Je kunt documenten die aan dit e‑mailadres zijn gekoppeld bekijken en deze identiteit gebruiken bij het verzenden van documenten."
#: packages/email/templates/bulk-send-complete.tsx
msgid "You can view the created documents in your dashboard under the \"Documents created from template\" section."
-msgstr "U kunt de gemaakte documenten bekijken in uw dashboard onder de sectie \"Documenten gemaakt uit sjabloon\"."
+msgstr "Je kunt de aangemaakte documenten bekijken in je dashboard onder het gedeelte \"Documents created from template\"."
#: packages/email/template-components/template-document-rejected.tsx
msgid "You can view the document and its status by clicking the button below."
-msgstr "U kunt het document en de status ervan bekijken door op de onderstaande knop te klikken."
+msgstr "Je kunt het document en de status ervan bekijken door op de onderstaande knop te klikken."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "You cannot add assistants when signing order is disabled."
-msgstr "U kunt geen assistenten toevoegen wanneer de ondertekenvolgorde is uitgeschakeld."
+msgstr "Je kunt geen assistenten toevoegen wanneer de ondertekeningsvolgorde is uitgeschakeld."
#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "You cannot delete a group which has a higher role than you."
-msgstr "U kunt geen groep wijzigen die een hogere rol heeft dan u."
+msgstr "Je kunt geen groep verwijderen die een hogere rol heeft dan jij."
#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
msgid "You cannot delete this item because the document has been sent to recipients"
-msgstr "U kunt dit item niet verwijderen omdat het document naar ontvangers is verzonden"
+msgstr "U kunt dit item niet verwijderen omdat het document al naar ontvangers is verzonden"
#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
msgid "You cannot modify a group which has a higher role than you."
-msgstr "U kunt geen organisatielid wijzigen die een hogere rol heeft dan u."
+msgstr "Je kunt geen groep wijzigen die een hogere rol heeft dan jij."
#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "You cannot modify a organisation member who has a higher role than you."
-msgstr "U kunt geen leden verwijderen uit dit team als de functie om leden over te erven is ingeschakeld."
+msgstr "Je kunt een organisatielid met een hogere rol dan jij niet wijzigen."
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
msgid "You cannot modify a team member who has a higher role than you."
-msgstr "Je kunt een teamlid met een hogere rol dan jezelf niet wijzigen."
+msgstr "Je kunt een teamlid met een hogere rol dan jij niet wijzigen."
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
msgid "You cannot remove members from this team if the inherit member feature is enabled."
-msgstr "U heeft momenteel een inactief <0>{currentProductName}0> abonnement."
+msgstr "Je kunt geen leden uit dit team verwijderen als de functie voor overnemen van leden is ingeschakeld."
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "You cannot upload documents at this time."
-msgstr "Op dit moment kunt u geen documenten uploaden."
+msgstr "Je kunt op dit moment geen documenten uploaden."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload encrypted PDFs"
-msgstr "Je kunt geen versleutelde PDF's uploaden"
+msgstr "Je kunt geen versleutelde pdf's uploaden"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload more than {maximumEnvelopeItemCount} items per envelope."
msgstr "U kunt niet meer dan {maximumEnvelopeItemCount} items per envelop uploaden."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
msgid "You currently have an inactive <0>{currentProductName}0> subscription"
-msgstr "U heeft momenteel geen toegang tot teams binnen deze organisatie. Neem contact op met uw organisatie om toegang te vragen."
+msgstr "Je hebt momenteel een inactief {currentProductName}-abonnement"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
msgid "You currently have no access to any teams within this organisation. Please contact your organisation to request access."
-msgstr "U heeft een uitnodiging van <0>{0}0> geaccepteerd om lid te worden van hun organisatie."
+msgstr "Je hebt momenteel geen toegang tot teams binnen deze organisatie. Neem contact op met je organisatie om toegang aan te vragen."
#: apps/remix/app/components/forms/token.tsx
msgid "You do not have permission to create a token for this team"
-msgstr "U heeft geen toestemming om een token voor dit team te maken"
+msgstr "Je hebt geen toestemming om een token voor dit team aan te maken."
+
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "You don't manage billing for any organisations."
+msgstr "U beheert de facturering voor geen enkele organisatie."
#: packages/email/template-components/template-document-cancel.tsx
msgid "You don't need to sign it anymore."
-msgstr "U hoeft het niet meer te ondertekenen."
+msgstr "Je hoeft het niet meer te ondertekenen."
#. placeholder {0}: data.organisationName
#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
@@ -10558,130 +10726,130 @@ msgstr "Je hebt een uitnodiging van <0>{0}0> geaccepteerd om lid te worden van
#. placeholder {0}: data.teamName
#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "You have already verified your email address for <0>{0}0>."
-msgstr "Je hebt jouw e-mailadres al geverifieerd voor <0>{0}0>."
+msgstr "Je hebt je e‑mailadres voor <0>{0}0> al geverifieerd."
#. placeholder {0}: data.organisationName
#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
msgid "You have been invited by <0>{0}0> to join their organisation."
-msgstr "U bent uitgenodigd door <0>{0}0> om lid te worden van hun organisatie."
+msgstr "Je bent door <0>{0}0> uitgenodigd om lid te worden van hun organisatie."
#. placeholder {0}: organisation.name
#: packages/lib/server-only/organisation/create-organisation-member-invites.ts
msgid "You have been invited to join {0} on Documenso"
-msgstr "U bent uitgenodigd door {0} op Documenso"
+msgstr "Je bent uitgenodigd om {0} op Documenso te joinen"
#: packages/email/templates/organisation-invite.tsx
msgid "You have been invited to join the following organisation"
-msgstr "U bent uitgenodigd om lid te worden van de volgende organisatie"
+msgstr "Je bent uitgenodigd om lid te worden van de volgende organisatie"
-#: packages/lib/server-only/recipient/set-document-recipients.ts
#: packages/lib/server-only/recipient/delete-envelope-recipient.ts
+#: packages/lib/server-only/recipient/set-document-recipients.ts
msgid "You have been removed from a document"
-msgstr "U bent verwijderd uit een document"
+msgstr "Je bent verwijderd uit een document"
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
msgid "You have been requested to sign the following documents. Review each document carefully and complete the signing process."
-msgstr "U bent gevraagd de volgende documenten te ondertekenen. Controleer elk document zorgvuldig en voltooi het ondertekeningsproces."
+msgstr "Je bent gevraagd de volgende documenten te ondertekenen. Bekijk elk document zorgvuldig en voltooi het ondertekeningsproces."
#. placeholder {0}: data.organisationName
#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
msgid "You have declined the invitation from <0>{0}0> to join their organisation."
-msgstr "U heeft de uitnodiging van <0>{0}0> om lid te worden van hun organisatie afgewezen."
+msgstr "Je hebt de uitnodiging van <0>{0}0> om lid te worden van hun organisatie geweigerd."
#. placeholder {0}: `"${envelope.title}"`
-#: packages/lib/server-only/document/resend-document.ts
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
+#: packages/lib/server-only/document/resend-document.ts
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
-msgstr "U heeft het document {0} geïnitieerd, waarvoor u het moet {recipientActionVerb}."
+msgstr "Je hebt het document {0} gestart dat je moet {recipientActionVerb}."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "You have no webhooks yet. Your webhooks will be shown here once you create them."
-msgstr "Je hebt nog geen webhooks. Jouw webhooks worden hier weergegeven zodra je ze aanmaakt."
+msgstr "Je hebt nog geen webhooks. Je webhooks worden hier weergegeven zodra je ze aanmaakt."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
msgid "You have not yet created any templates. To create a template please upload one."
-msgstr "Je hebt nog geen sjablonen gemaakt. Om een sjabloon te maken, upload er een."
+msgstr "Je hebt nog geen sjablonen aangemaakt. Upload een document om een sjabloon te maken."
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
msgid "You have not yet created or received any documents. To create a document please upload one."
-msgstr "Je hebt nog geen documenten gemaakt of ontvangen. Om een document te maken, upload er een."
+msgstr "Je hebt nog geen documenten aangemaakt of ontvangen. Upload een document om een document aan te maken."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached the limit of the number of files per envelope"
msgstr "U heeft de limiet van het aantal bestanden per envelop bereikt"
#. placeholder {0}: quota.directTemplates
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "You have reached the maximum limit of {0} direct templates. <0>Upgrade your account to continue!0>"
-msgstr "Je hebt de maximale limiet van {0} directe sjablonen bereikt. <0>Upgrade jouw account om door te gaan!0>"
+msgstr "Je hebt de maximumlimiet van {0} directe sjablonen bereikt. <0>Upgrade je account om verder te gaan!0>"
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
msgid "You have reached the maximum number of teams for your plan. Please contact sales at <0>{SUPPORT_EMAIL}0> if you would like to adjust your plan."
-msgstr "U heeft het maximale aantal teams voor uw plan bereikt. Neem contact op met de verkoopafdeling via <0>{SUPPORT_EMAIL}0> als u uw plan wilt aanpassen."
+msgstr "Je hebt het maximale aantal teams voor je abonnement bereikt. Neem contact op met sales via <0>{SUPPORT_EMAIL}0> als je je abonnement wilt aanpassen."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
-msgid "You have reached your document limit for this month. Please upgrade your plan."
-msgstr "U heeft uw documentlimiet voor deze maand bereikt. Upgrade uw abonnement."
-
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
+msgid "You have reached your document limit for this month. Please upgrade your plan."
+msgstr "Je hebt je documentlimiet voor deze maand bereikt. Upgrade je abonnement."
+
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
msgid "You have reached your document limit."
-msgstr "Je hebt jouw documentlimiet bereikt."
+msgstr "Je hebt je documentlimiet bereikt."
#: apps/remix/app/components/tables/templates-table.tsx
msgid "You have reached your document limit. <0>Upgrade your account to continue!0>"
-msgstr "Je hebt jouw documentlimiet bereikt. <0>Upgrade jouw account om door te gaan!0>"
+msgstr "Je hebt je documentlimiet bereikt. <0>Upgrade je account om verder te gaan!0>"
#: packages/email/templates/document-rejection-confirmed.tsx
msgid "You have rejected the document '{documentName}'"
-msgstr "U heeft het document '{documentName}' afgewezen"
+msgstr "Je hebt het document '{documentName}' geweigerd"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "You have rejected this document"
-msgstr "U hebt dit document afgewezen"
+msgstr "Je hebt dit document geweigerd."
#: packages/email/template-components/template-document-self-signed.tsx
msgid "You have signed “{documentName}”"
-msgstr "U heeft “{documentName}” ondertekend"
+msgstr "Je hebt \"{documentName}\" ondertekend"
#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
msgid "You have successfully left this organisation."
-msgstr "U heeft deze organisatie met succes verlaten."
+msgstr "Je hebt deze organisatie succesvol verlaten."
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "You have successfully registered. Please verify your account by clicking on the link you received in the email."
-msgstr "Je bent succesvol geregistreerd. Verifieer je account door te klikken op de link die je in de e-mail hebt ontvangen."
+msgstr "Je bent succesvol geregistreerd. Verifieer je account door te klikken op de link die je per e‑mail hebt ontvangen."
#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
msgid "You have successfully removed this email domain from the organisation."
-msgstr "U heeft deze e-maildomein succesvol uit de organisatie verwijderd."
+msgstr "Je hebt dit e-maildomein succesvol uit de organisatie verwijderd."
#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
msgid "You have successfully removed this email from the organisation."
-msgstr "U heeft deze e-mail succesvol uit de organisatie verwijderd."
+msgstr "Je hebt deze e-mail succesvol uit de organisatie verwijderd."
#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
msgid "You have successfully removed this envelope item."
-msgstr "U heeft dit envelopitem succesvol verwijderd."
+msgstr "U heeft dit envelop-item succesvol verwijderd."
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
msgid "You have successfully removed this group from the organisation."
-msgstr "U heeft deze groep met succes uit de organisatie verwijderd."
+msgstr "Je hebt deze groep succesvol uit de organisatie verwijderd."
#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "You have successfully removed this group from the team."
-msgstr "U heeft deze groep met succes uit het team verwijderd."
+msgstr "Je hebt deze groep succesvol uit het team verwijderd."
#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
msgid "You have successfully removed this user from the organisation."
-msgstr "U heeft deze gebruiker met succes uit de organisatie verwijderd."
+msgstr "Je hebt deze gebruiker succesvol uit de organisatie verwijderd."
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
msgid "You have successfully removed this user from the team."
@@ -10693,59 +10861,59 @@ msgstr "Je hebt de toegang succesvol ingetrokken."
#: 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."
-msgstr "U heeft het recht om uw toestemming om elektronische handtekeningen te gebruiken op elk moment vóór het voltooien van het ondertekenproces in te trekken. Om uw toestemming in te trekken, neem dan contact op met de afzender van het document. Als het niet lukt om contact op te nemen met de afzender, kunt u contact opnemen met <0>{SUPPORT_EMAIL}0> voor hulp. Wees ervan bewust dat het intrekken van toestemming de voltooiing van de gerelateerde transactie of dienst kan vertragen of stoppen."
+msgstr "Je hebt het recht je toestemming voor het gebruik van elektronische handtekeningen op elk moment vóór voltooiing van het ondertekeningsproces in te trekken. Neem hiervoor contact op met de verzender van het document. Als dat niet lukt, kun je contact opnemen met <0>{SUPPORT_EMAIL}0> voor hulp. Houd er rekening mee dat het intrekken van toestemming de voltooiing van de betreffende transactie of dienst kan vertragen of stopzetten."
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
msgid "You have updated {memberName}."
-msgstr "U heeft {memberName} bijgewerkt."
+msgstr "Je hebt {memberName} bijgewerkt."
#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "You have updated {organisationMemberName}."
-msgstr "U heeft {organisationMemberName} bijgewerkt."
+msgstr "Je hebt {organisationMemberName} bijgewerkt."
#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
msgid "You have updated the team group."
-msgstr "U heeft de teamgroep bijgewerkt."
+msgstr "Je hebt de teamgroep bijgewerkt."
#. placeholder {0}: data.teamName
#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "You have verified your email address for <0>{0}0>."
-msgstr "Je hebt jouw e-mailadres geverifieerd voor <0>{0}0>."
+msgstr "Je hebt je e‑mailadres voor <0>{0}0> geverifieerd."
-#: 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
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "You must enter '{deleteMessage}' to proceed"
msgstr "Je moet '{deleteMessage}' invoeren om door te gaan"
#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
msgid "You must select at least one item"
-msgstr "U moet ten minste één item selecteren"
+msgstr "U moet minstens één item selecteren"
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
msgid "You must type '{deleteMessage}' to confirm"
msgstr "Je moet '{deleteMessage}' typen om te bevestigen"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
msgid "You need at least one recipient to add fields"
-msgstr "U heeft ten minste één ontvanger nodig om velden toe te voegen"
+msgstr "U heeft minimaal één ontvanger nodig om velden toe te voegen"
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
msgid "You need at least one recipient to send a document"
-msgstr "U heeft ten minste één ontvanger nodig om een document te verzenden"
+msgstr "U heeft minimaal één ontvanger nodig om een document te versturen"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "You need to be an admin to manage API tokens."
-msgstr "U moet een beheerder zijn om API-tokens te beheren."
+msgstr "Je moet beheerder zijn om API-tokens te beheren."
#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "You need to be logged in as <0>{email}0> to view this page."
msgstr "Je moet ingelogd zijn als <0>{email}0> om deze pagina te bekijken."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "You need to be logged in to view this page."
msgstr "Je moet ingelogd zijn om deze pagina te bekijken."
@@ -10755,15 +10923,15 @@ msgstr "Je moet 2FA instellen om dit document als bekeken te markeren."
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
msgid "You will need to configure any claims or subscription after creating this organisation"
-msgstr "U moet alle claims of abonnementen configureren nadat u deze organisatie heeft aangemaakt"
+msgstr "Je moet alle claims of abonnementen configureren nadat je deze organisatie hebt aangemaakt"
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
msgid "You will now be required to enter a code from your authenticator app when signing in."
-msgstr "Je moet nu bij het inloggen een code invoeren vanuit jouw authenticatie-app."
+msgstr "Je moet nu bij het inloggen een code uit je authenticator‑app invoeren."
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "You will receive an Email copy of the signed document once everyone has signed."
-msgstr "Je ontvangt een e-mail met een kopie van het ondertekende document zodra iedereen heeft ondertekend."
+msgid "You will receive an email copy of the signed document once everyone has signed."
+msgstr "U ontvangt een kopie van het ondertekende document per e-mail zodra iedereen heeft ondertekend."
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Your Account"
@@ -10775,11 +10943,11 @@ msgstr "Je account is succesvol verwijderd."
#: apps/remix/app/components/forms/avatar-image.tsx
msgid "Your avatar has been updated successfully."
-msgstr "Jouw avatar is succesvol bijgewerkt."
+msgstr "Je avatar is succesvol bijgewerkt."
#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "Your banner has been updated successfully."
-msgstr "Jouw banner is succesvol bijgewerkt."
+msgstr "Je banner is succesvol bijgewerkt."
#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Your brand website URL"
@@ -10788,44 +10956,44 @@ msgstr "De URL van je merkwebsite"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
msgid "Your branding preferences have been updated"
-msgstr "Je merkvoorkeuren zijn bijgewerkt"
+msgstr "Je brandingvoorkeuren zijn bijgewerkt"
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
msgid "Your bulk send has been initiated. You will receive an email notification upon completion."
-msgstr "Uw bulkverzending is gestart. U ontvangt een e-mailmelding bij voltooiing."
+msgstr "Je bulkverzending is gestart. Je ontvangt een e-mailmelding zodra deze is voltooid."
#: packages/email/templates/bulk-send-complete.tsx
msgid "Your bulk send operation for template \"{templateName}\" has completed."
-msgstr "Uw bulkverzendbewerking voor sjabloon \"{templateName}\" is voltooid."
+msgstr "Je bulkverzending voor sjabloon \"{templateName}\" is voltooid."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
msgid "Your current {currentProductName} plan is past due. Please update your payment information."
-msgstr "Uw huidige {currentProductName} abonnement is verlopen. Werk alstublieft uw betalingsinformatie bij."
+msgstr "Je huidige {currentProductName}-abonnement is achterstallig. Werk je betalingsgegevens bij."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "Your current plan includes the following support channels:"
-msgstr "Uw huidige plan bevat de volgende ondersteuningskanalen:"
+msgstr "Uw huidige abonnement omvat de volgende ondersteuningskanalen:"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
msgid "Your current plan is inactive."
-msgstr "Uw huidige abonnement is inactief."
+msgstr "Je huidige abonnement is inactief."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
msgid "Your current plan is past due."
-msgstr "Uw huidige abonnement is verlopen."
+msgstr "Je huidige abonnement is achterstallig."
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "Your direct signing templates"
-msgstr "Jouw directe ondertekeningssjablonen"
+msgstr "Je directe ondertekeningssjablonen"
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Your document failed to upload."
-msgstr "Het uploaden van je document is mislukt."
+msgstr "Je document kon niet worden geüpload."
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Your document has been created from the template successfully."
-msgstr "Je document is succesvol aangemaakt vanuit de sjabloon."
+msgstr "Je document is succesvol aangemaakt op basis van de sjabloon."
#: apps/remix/app/routes/embed+/v1+/authoring_.completed.create.tsx
msgid "Your document has been created successfully"
@@ -10833,7 +11001,7 @@ msgstr "Je document is succesvol aangemaakt"
#: packages/email/template-components/template-document-super-delete.tsx
msgid "Your document has been deleted by an admin!"
-msgstr "Uw document is verwijderd door een beheerder!"
+msgstr "Je document is verwijderd door een beheerder!"
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
msgid "Your document has been re-sent successfully."
@@ -10845,26 +11013,26 @@ msgstr "Je document is succesvol verzonden."
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
msgid "Your document has been successfully duplicated."
-msgstr "Jouw document is succesvol gedupliceerd."
+msgstr "Je document is succesvol gedupliceerd."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your document has been uploaded successfully."
msgstr "Je document is succesvol geüpload."
#: apps/remix/app/components/dialogs/template-create-dialog.tsx
msgid "Your document has been uploaded successfully. You will be redirected to the template page."
-msgstr "Je document is met succes geüpload. Je wordt doorgestuurd naar de sjabloonpagina."
+msgstr "Je document is succesvol geüpload. Je wordt doorgestuurd naar de sjabloonpagina."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
msgid "Your document preferences have been updated"
-msgstr "Je documentvoorkeuren zijn bijgewerkt"
+msgstr "Je documentvoorkeuren zijn bijgewerkt."
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Your documents"
-msgstr "Jouw documenten"
+msgstr "Je documenten"
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Your Email"
@@ -10872,26 +11040,26 @@ msgstr "Uw e-mailadres"
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
msgid "Your email has already been confirmed. You can now use all features of Documenso."
-msgstr "Uw e-mail is al bevestigd. U kunt nu alle functies van Documenso gebruiken."
+msgstr "Je e-mailadres is al bevestigd. Je kunt nu alle functies van Documenso gebruiken."
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
msgid "Your email has been successfully confirmed! You can now use all features of Documenso."
-msgstr "Je e-mail is succesvol bevestigd! Je kunt nu alle functies van Documenso gebruiken."
+msgstr "Je e‑mail is succesvol bevestigd! Je kunt nu alle functies van Documenso gebruiken."
#. placeholder {0}: teamEmail.team.name
#. placeholder {1}: teamEmail.team.url
#: apps/remix/app/components/general/teams/team-email-usage.tsx
msgid "Your email is currently being used by team <0>{0}0> ({1})."
-msgstr "Jouw e-mail wordt momenteel gebruikt door team <0>{0}0> ({1})."
+msgstr "Je e‑mail wordt momenteel gebruikt door team <0>{0}0> ({1})."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
msgid "Your email preferences have been updated"
-msgstr "Uw e-mailvoorkeuren zijn bijgewerkt"
+msgstr "Je e-mailvoorkeuren zijn bijgewerkt"
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
msgid "Your envelope has been distributed successfully."
-msgstr "Uw envelop is succesvol verspreid."
+msgstr "Uw envelop is succesvol verzonden."
#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
msgid "Your envelope has been resent successfully."
@@ -10903,53 +11071,53 @@ msgstr "Uw envelop is succesvol gedupliceerd."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Your existing tokens"
-msgstr "Jouw bestaande tokens"
+msgstr "Je bestaande tokens"
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Your Name"
msgstr "Uw naam"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your new password cannot be the same as your old password."
-msgstr "Je nieuwe wachtwoord kan niet hetzelfde zijn als je oude wachtwoord."
+msgstr "Je nieuwe wachtwoord mag niet hetzelfde zijn als je oude wachtwoord."
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Your organisation has been created."
-msgstr "Uw organisatie is aangemaakt."
+msgstr "Je organisatie is aangemaakt."
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
msgid "Your organisation has been successfully deleted."
-msgstr "Uw organisatie is met succes verwijderd."
+msgstr "Je organisatie is succesvol verwijderd."
#: apps/remix/app/components/forms/organisation-update-form.tsx
msgid "Your organisation has been successfully updated."
-msgstr "Uw organisatie is met succes bijgewerkt."
+msgstr "Je organisatie is succesvol bijgewerkt."
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your password has been updated successfully."
msgstr "Je wachtwoord is succesvol bijgewerkt."
#: packages/email/template-components/template-reset-password.tsx
msgid "Your password has been updated."
-msgstr "Uw wachtwoord is bijgewerkt."
+msgstr "Je wachtwoord is bijgewerkt."
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
msgid "Your payment is overdue. Please settle the payment to avoid any service disruptions."
-msgstr "Uw betaling is achterstallig. Gelieve de betaling te voldoen om serviceonderbrekingen te voorkomen."
+msgstr "Je betaling is te laat. Rond de betaling af om onderbreking van de dienstverlening te voorkomen."
#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Your personal organisation"
-msgstr "Uw persoonlijke organisatie"
+msgstr "Je persoonlijke organisatie"
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
msgid "Your plan does not support inviting members. Please upgrade or your plan or contact sales at <0>{SUPPORT_EMAIL}0> if you would like to discuss your options."
-msgstr "Uw plan ondersteunt geen uitnodigen van leden. Upgrade uw plan of neem contact op met onze verkoopafdeling via <0>{SUPPORT_EMAIL}0> om uw opties te bespreken."
+msgstr "Je abonnement ondersteunt geen uitnodigingen van leden. Upgrade je abonnement of neem contact op met sales via <0>{SUPPORT_EMAIL}0> om je opties te bespreken."
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
msgid "Your plan is no longer valid. Please subscribe to a new plan to continue using Documenso."
-msgstr "Uw plan is niet langer geldig. Abonneer u op een nieuw plan om Documenso te blijven gebruiken."
+msgstr "Je abonnement is niet langer geldig. Neem een nieuw abonnement om Documenso te blijven gebruiken."
#: apps/remix/app/components/forms/profile.tsx
msgid "Your profile has been updated successfully."
@@ -10961,32 +11129,32 @@ msgstr "Je profiel is bijgewerkt."
#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "Your public profile has been updated."
-msgstr "Jouw openbare profiel is bijgewerkt."
+msgstr "Je openbare profiel is bijgewerkt."
#: apps/remix/app/components/forms/2fa/recovery-code-list.tsx
msgid "Your recovery code has been copied to your clipboard."
-msgstr "Jouw herstelcode is gekopieerd naar jouw klembord."
+msgstr "Je herstelcode is naar je klembord gekopieerd."
-#: 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/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Your recovery codes are listed below. Please store them in a safe place."
-msgstr "Jouw herstelcodes staan hieronder vermeld. Bewaar ze op een veilige plaats."
+msgstr "Je herstelcodes staan hieronder. Bewaar ze op een veilige plek."
#: apps/remix/app/components/forms/support-ticket-form.tsx
msgid "Your support request has been submitted. We'll get back to you soon!"
-msgstr "Uw ondersteuningsverzoek is ingediend. We nemen snel contact met je op!"
+msgstr "Uw supportverzoek is ingediend. We nemen snel contact met u op!"
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
msgid "Your team has been created."
-msgstr "Jouw team is aangemaakt."
+msgstr "Je team is aangemaakt."
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
msgid "Your team has been successfully deleted."
-msgstr "Jouw team is succesvol verwijderd."
+msgstr "Je team is succesvol verwijderd."
#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Your team has been successfully updated."
-msgstr "Jouw team is succesvol bijgewerkt."
+msgstr "Je team is succesvol bijgewerkt."
#: apps/remix/app/routes/embed+/v1+/authoring_.completed.create.tsx
msgid "Your template has been created successfully"
@@ -10994,40 +11162,40 @@ msgstr "Je sjabloon is succesvol aangemaakt"
#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
msgid "Your template has been duplicated successfully."
-msgstr "Jouw sjabloon is succesvol gedupliceerd."
+msgstr "Je sjabloon is succesvol gedupliceerd."
#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
msgid "Your template has been successfully deleted."
-msgstr "Jouw sjabloon is succesvol verwijderd."
+msgstr "Je sjabloon is succesvol verwijderd."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your template has been uploaded successfully."
msgstr "Uw sjabloon is succesvol geüpload."
#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
msgid "Your template will be duplicated."
-msgstr "Jouw sjabloon zal worden gedupliceerd."
+msgstr "Je sjabloon wordt gedupliceerd."
#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Your templates has been saved successfully."
-msgstr "Jouw sjablonen zijn succesvol opgeslagen."
+msgstr "Je sjablonen zijn succesvol opgeslagen."
#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
msgid "Your token has expired!"
-msgstr "Jouw token is verlopen!"
+msgstr "Je token is verlopen!"
#: apps/remix/app/components/forms/token.tsx
msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!"
-msgstr "Jouw token is succesvol aangemaakt! Zorg ervoor dat je het kopieert, want je zult het niet meer kunnen zien!"
+msgstr "Je token is succesvol aangemaakt! Zorg dat je het kopieert, want je kunt het later niet meer bekijken!"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Your tokens will be shown here once you create them."
-msgstr "Jouw tokens worden hier weergegeven zodra je ze aanmaakt."
+msgstr "Je tokens worden hier weergegeven zodra je ze aanmaakt."
#: packages/lib/server-only/2fa/email/send-2fa-token-email.ts
msgid "Your two-factor authentication code"
-msgstr "Uw tweefactor authenticatiecode"
+msgstr "Uw tweefactorauthenticatiecode"
#: packages/email/templates/access-auth-2fa.tsx
msgid "Your verification code is {code}"
diff --git a/packages/lib/translations/pl/web.po b/packages/lib/translations/pl/web.po
index 716c2e8fd..9f8399d40 100644
--- a/packages/lib/translations/pl/web.po
+++ b/packages/lib/translations/pl/web.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: pl\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-11-20 02:32\n"
+"PO-Revision-Date: 2025-11-27 05:32\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
@@ -52,9 +52,9 @@ msgstr "Użytkownik „{placeholderEmail}” z zespołu „Zespół X” zaprosi
msgid "\"Team Name\" has invited you to sign \"example document\"."
msgstr "„Zespół X” zaprosił Cię do podpisania dokumentu „ABC”."
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "(You)"
msgstr "(Ty)"
@@ -64,8 +64,8 @@ msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
msgstr "{0, plural, one {Przekroczono 1 znak} few {Przekroczono # znaki} many {Przekroczono # znaków} other {Przekroczono # znaków}}"
#. placeholder {0}: Math.abs(remaningLength)
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{0, plural, one {# character over the limit} other {# characters over the limit}}"
msgstr "{0, plural, one {Przekroczono # znak} few {Przekroczono # znaki} many {Przekroczono # znaków} other {Przekroczono # znaków}}"
@@ -79,6 +79,11 @@ msgstr "{0, plural, one {Pozostał # znak} few {Pozostały # znaki} many {Pozost
msgid "{0, plural, one {# document} other {# documents}}"
msgstr "{0, plural, one {# dokument} few {# dokumenty} many {# dokumentów} other {# dokumentów}}"
+#. placeholder {0}: row.original.eventTriggers.length
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "{0, plural, one {# Event} other {# Events}}"
+msgstr "{0, plural, one {# zdarzenie} few {# zdarzenia} many {# zdarzeń} other {# zdarzenia}}"
+
#. placeholder {0}: assistantFields.filter((field) => field.recipientId === r.id).length
#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "{0, plural, one {# field} other {# fields}}"
@@ -116,16 +121,16 @@ msgid "{0, plural, one {<0>You have <1>11> pending invitation0>} other {<2>Y
msgstr "{0, plural, one {<0>Masz <1>11> oczekujące zaproszenie0>} few {<2>Masz <3>#3> oczekujące zaproszenia2>} many {<2>Masz <3>#3> oczekujących zaproszeń2>} other {<2>Masz <3>#3> oczekujących zaproszeń2>}}"
#. placeholder {0}: recipientFieldsRemaining.length
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "{0, plural, one {1 Field Remaining} other {# Fields Remaining}}"
msgstr "{0, plural, one {Pozostało 1 pole} few {Pozostały # pola} many {Pozostało # pól} other {Pozostało # pola}}"
#. placeholder {0}: fields.filter((field) => field.envelopeItemId === doc.id).length
#. placeholder {0}: remainingFields.filter((field) => field.envelopeItemId === doc.id).length
-#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
msgid "{0, plural, one {1 Field} other {# Fields}}"
msgstr "{0, plural, one {1 pole} few {# pola} many {# pól} other {# pola}}"
@@ -144,11 +149,11 @@ msgstr "{0, plural, one {1 odbiorca} few {# odbiorców} many {# odbiorców} othe
msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}"
msgstr "{0, plural, one {Oczekiwanie na 1 odbiorcę} few {Oczekiwanie na # odbiorców} many {Oczekiwanie na # odbiorców} other {Oczekiwanie na # odbiorców}}"
-#. placeholder {0}: route.label
#. placeholder {0}: _(FRIENDLY_FIELD_TYPE[fieldType as FieldType])
+#. placeholder {0}: route.label
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
msgid "{0}"
msgstr "{0}"
@@ -175,9 +180,9 @@ msgstr "Sprawdź i {recipientActionVerb} dokument utworzony przez zespół {0}"
#. placeholder {0}: remaining.documents
#. placeholder {1}: quota.documents
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "{0} of {1} documents remaining this month."
msgstr "Pozostało {0} z {1} dokumentów w tym miesiącu."
@@ -405,8 +410,8 @@ msgstr "Użytkownik {recipientReference} podpisał dokument „{documentName}”
msgid "{recipientReference} has signed {documentName}"
msgstr "Użytkownik {recipientReference} podpisał dokument „{documentName}”"
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{remaningLength, plural, one {# character remaining} other {# characters remaining}}"
msgstr "{remaningLength, plural, one {Pozostał # znak} few {Pozostały # znaki} many {Pozostało # znaków} other {Pozostało # znaków}}"
@@ -515,6 +520,10 @@ msgstr "<0>Rysowany0> – Podpis narysowany za pomocą myszy lub pióra."
msgid "<0>Email0> - The recipient will be emailed the document to sign, approve, etc."
msgstr "<0>Adres e-mail0> – Odbiorca otrzyma wiadomość z dokumentem do podpisania, zatwierdzenia itp."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "<0>Events:0> All"
+msgstr "<0>Zdarzenia:0> Wszystkie"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "<0>Full account access:0> View all your profile information, settings, and activity"
msgstr "<0>Pełny dostęp do konta:0> Wyświetlanie informacji o profilu, ustawieniach i aktywności"
@@ -545,8 +554,8 @@ msgstr "<0>Brak0> – Wygenerujemy linki, które możesz wysłać do odbiorcó
msgid "<0>Note0> - If you use Links in combination with direct templates, you will need to manually send the links to the remaining recipients."
msgstr "<0>Uwaga0> – Jeśli używasz linków w połączeniu z bezpośrednimi szablonami, musisz ręcznie wysłać linki do pozostałych odbiorców."
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require 2FA0> - The recipient must have an account and 2FA enabled via their settings"
msgstr "<0>Wymagana weryfikacja dwuetapowa0> – Odbiorca musi mieć konto z włączoną weryfikacją dwuetapową"
@@ -554,8 +563,8 @@ msgstr "<0>Wymagana weryfikacja dwuetapowa0> – Odbiorca musi mieć konto z w
msgid "<0>Require account0> - The recipient must be signed in to view the document"
msgstr "<0>Wymagane konto0> – Odbiorca musi być zalogowany"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require passkey0> - The recipient must have an account and passkey configured via their settings"
msgstr "<0>Wymagany klucz dostępu0> – Odbiorca musi mieć konto ze skonfigurowanym kluczem dostępu"
@@ -624,9 +633,9 @@ msgstr "404: Domena nie została znaleziona"
msgid "404 not found"
msgstr "404: Strona nie została znaleziona"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "404 Not found"
msgstr "404: Strona nie została znaleziona"
@@ -660,7 +669,7 @@ msgstr "404: Nie znaleziono szablonu"
msgid "404 User not found"
msgstr "404: Użytkownik nie został znaleziony"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "404 Webhook not found"
msgstr "404: Webhook nie został znaleziony"
@@ -747,8 +756,8 @@ msgstr "Nowy użytkownik dołączył do organizacji {organisationName}"
msgid "A new token was created successfully."
msgstr "Nowy token został pomyślnie utworzony."
-#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
msgstr "Jeśli masz konto, otrzymasz wiadomość z linkiem do resetowania hasła."
@@ -784,7 +793,7 @@ msgstr "Prośba użycia Twojego adresu e-mail została wysłana przez zespół {
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso"
msgstr "Sekret, który zostanie wysłany na Twój adres URL, abyś mógł zweryfikować, że prośba została wysłana przez Documenso"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso."
msgstr "Sekret, który zostanie wysłany na Twój adres URL, abyś mógł zweryfikować, że prośba została wysłana przez Documenso."
@@ -809,8 +818,8 @@ msgstr "Unikalny adres URL organizacji"
msgid "A unique URL to identify your organisation"
msgstr "Unikalny adres URL Twojej organizacji"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "A unique URL to identify your team"
msgstr "Unikalny adres URL Twojego zespołu"
@@ -819,8 +828,8 @@ msgid "A verification email will be sent to the provided email."
msgstr "Wiadomość weryfikacyjna zostanie wysłana na podany adres e-mail."
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: packages/email/templates/organisation-invite.tsx
#: packages/email/templates/confirm-team-email.tsx
+#: packages/email/templates/organisation-invite.tsx
msgid "Accept"
msgstr "Zaakceptuj"
@@ -848,9 +857,9 @@ msgstr "Dostęp został wyłączony"
msgid "Access enabled"
msgstr "Dostęp został włączony"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Account"
msgstr "Konto"
@@ -866,8 +875,8 @@ msgstr "Prośba o utworzenie konta"
msgid "Account Creation Request"
msgstr "Prośba o utworzenie konta"
-#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "Account deleted"
msgstr "Konto zostało usunięte"
@@ -895,46 +904,50 @@ msgstr "Konto zostało rozłączone"
msgid "Acknowledgment"
msgstr "Potwierdzenie"
-#: 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/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
+#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Action"
msgstr "Akcja"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Actions"
msgstr "Akcje"
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
msgid "Active"
msgstr "Aktywny"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Active sessions"
msgstr "Aktywne sesje"
@@ -942,8 +955,8 @@ msgstr "Aktywne sesje"
msgid "Active Subscriptions"
msgstr "Aktywne subskrypcje"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Add"
msgstr "Dodaj"
@@ -960,15 +973,15 @@ msgstr "Dodaj niestandardową domenę, aby wysyłać wiadomości w imieniu swoje
msgid "Add a document"
msgstr "Dodaj dokument"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Add a URL to redirect the user to once the document is signed"
msgstr "Dodaj adres URL do przekierowania użytkownika po podpisaniu dokumentu"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add all relevant fields for each recipient."
msgstr "Dodaj odpowiednie pola dla każdego odbiorcy."
@@ -1001,8 +1014,8 @@ msgstr "Dodaj i skonfiguruj wiele dokumentów"
msgid "Add another option"
msgstr "Dodaj kolejną opcję"
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
msgid "Add another value"
msgstr "Dodaj kolejną opcję"
@@ -1026,11 +1039,11 @@ msgstr "Dodaj adres e-mail"
msgid "Add Email Domain"
msgstr "Dodaj domenę"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add Fields"
msgstr "Dodaj pola"
@@ -1094,8 +1107,8 @@ msgstr "Dodaj domyślny tekst"
msgid "Add Recipients"
msgstr "Dodaj odbiorców"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Add Signer"
msgstr "Dodaj podpisującego"
@@ -1144,8 +1157,8 @@ msgstr "Dodatkowe informacje o marce wyświetlane na dole wiadomości"
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Admin"
msgstr "Administrator"
@@ -1153,8 +1166,8 @@ msgstr "Administrator"
msgid "Admin Actions"
msgstr "Akcje administratora"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Admin panel"
msgstr "Panel administratora"
@@ -1166,15 +1179,15 @@ msgstr "Panel administratora"
msgid "Admins only"
msgstr "Tylko dla administratorów"
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Advanced Options"
msgstr "Opcje zaawansowane"
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Advanced settings"
msgstr "Ustawienia zaawansowane"
@@ -1191,6 +1204,7 @@ msgid "After submission, a document will be automatically generated and added to
msgstr "Przesłany dokument zostanie automatycznie dodany do Twojej strony dokumentów. Otrzymasz również powiadomienie."
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "All"
msgstr "Wszystko"
@@ -1214,8 +1228,8 @@ msgstr "Wszystkie dokumenty związane z procesem podpisywania elektronicznego zo
msgid "All email domains have been synced successfully"
msgstr "Wszystkie domeny zostały pomyślnie zsynchronizowane"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "All Folders"
msgstr "Wszystkie foldery"
@@ -1223,6 +1237,10 @@ msgstr "Wszystkie foldery"
msgid "All inserted signatures will be voided"
msgstr "Wszystkie wstawione podpisy zostaną unieważnione"
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
+msgid "All recipients have signed. The document is being processed and you will receive an email copy shortly."
+msgstr "Wszyscy odbiorcy podpisali. Dokument jest przetwarzany i wkrótce otrzymasz jego kopię e‑mailem."
+
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "All recipients will be notified"
msgstr "Wszyscy odbiorcy zostaną powiadomieni"
@@ -1239,8 +1257,8 @@ msgstr "Wszystkie linki do podpisywania zostały skopiowane do schowka."
msgid "All templates"
msgstr "Wszystkie szablony"
-#: apps/remix/app/components/general/period-selector.tsx
#: apps/remix/app/components/filters/date-range-filter.tsx
+#: apps/remix/app/components/general/period-selector.tsx
msgid "All Time"
msgstr "Cały czas"
@@ -1252,10 +1270,10 @@ msgstr "Zezwalaj wszystkim użytkownikom organizacji na dostęp do tego zespołu
msgid "Allow document recipients to reply directly to this email address"
msgstr "Odpowiadanie odbiorcom dokumentu bezpośrednio na ten adres e-mail"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Allow signers to dictate next signer"
msgstr "Zezwalaj podpisującym wskazać następnego podpisującego"
@@ -1263,10 +1281,10 @@ msgstr "Zezwalaj podpisującym wskazać następnego podpisującego"
msgid "Allowed Email Domains"
msgstr "Dozwolone domeny"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Allowed Signature Types"
msgstr "Dozwolone rodzaje podpisów"
@@ -1306,19 +1324,19 @@ msgstr "Wiadomość z zaproszeniem zostanie wysłana do każdego użytkownika."
msgid "An email with this address already exists."
msgstr "Ten adres e-mail już istnieje."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/token.tsx
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.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
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "An error occurred"
msgstr "Wystąpił błąd"
@@ -1330,9 +1348,9 @@ msgstr "Wystąpił błąd podczas przesyłania."
msgid "An error occurred while adding fields."
msgstr "Wystąpił błąd podczas dodawania pól."
+#: 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/template/template-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "An error occurred while adding signers."
msgstr "Wystąpił błąd podczas dodawania podpisujących."
@@ -1400,7 +1418,7 @@ msgstr "Wystąpił błąd podczas włączania podpisywania za pomocą bezpośred
msgid "An error occurred while enabling the user."
msgstr "Wystąpił błąd podczas włączania użytkownika."
-#: packages/ui/primitives/pdf-viewer.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "An error occurred while loading the document."
msgstr "Wystąpił błąd podczas ładowania dokumentu."
@@ -1412,14 +1430,14 @@ msgstr "Wystąpił błąd podczas przenoszenia dokumentu."
msgid "An error occurred while moving the template."
msgstr "Wystąpił błąd podczas przenoszenia szablonu."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while removing the field."
msgstr "Wystąpił błąd podczas usuwania pola."
@@ -1443,29 +1461,29 @@ msgstr "Wystąpił błąd podczas wysyłania dokumentu."
msgid "An error occurred while sending your confirmation email"
msgstr "Wystąpił błąd podczas wysyłania wiadomości potwierdzającej"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing as assistant."
msgstr "Wystąpił błąd podczas podpisywania jako przygotowujący."
-#: 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
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing the document."
msgstr "Wystąpił błąd podczas podpisywania dokumentu."
@@ -1478,8 +1496,8 @@ msgstr "Wystąpił błąd podczas podpisywania pola."
msgid "An error occurred while trying to create a checkout session."
msgstr "Wystąpił błąd podczas próby utworzenia sesji zamówienia."
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "An error occurred while updating the document settings."
msgstr "Wystąpił błąd podczas aktualizowania ustawień dokumentu."
@@ -1491,8 +1509,8 @@ msgstr "Wystąpił błąd podczas aktualizowania podpisu."
msgid "An error occurred while updating your profile."
msgstr "Wystąpił błąd podczas aktualizowania profilu."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "An error occurred while uploading your document."
msgstr "Wystąpił błąd podczas przesyłania dokumentu."
@@ -1512,53 +1530,53 @@ msgstr "Organizacja chce połączyć Twoje konto. Sprawdź szczegóły poniżej.
msgid "An unexpected error occurred."
msgstr "Wystąpił nieoczekiwany błąd."
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/public-profile-form.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/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/general/app-command-menu.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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/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/signin.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/profile.tsx
-#: apps/remix/app/components/forms/organisation-update-form.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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "An unknown error occurred"
msgstr "Wystąpił nieznany błąd"
@@ -1586,10 +1604,10 @@ msgstr "Dowolne źródło"
msgid "Any Status"
msgstr "Dowolny status"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "API Tokens"
msgstr "Tokeny API"
@@ -1597,12 +1615,12 @@ msgstr "Tokeny API"
msgid "App Version"
msgstr "Wersja aplikacji"
-#: apps/remix/app/components/tables/inbox-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-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Approve"
msgstr "Zatwierdź"
@@ -1611,9 +1629,9 @@ msgctxt "Recipient role action verb"
msgid "Approve"
msgstr "Zatwierdź"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Approve Document"
msgstr "Zatwierdź dokument"
@@ -1666,7 +1684,7 @@ msgid "Are you sure you want to reject this document? This action cannot be undo
msgstr "Czy na pewno chcesz odrzucić dokument? Ta akcja jest nieodwracalna."
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
-msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey."
+msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey?"
msgstr "Czy na pewno chcesz usunąć klucz dostępu <0>{passkeyName}0>?"
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
@@ -1677,23 +1695,23 @@ msgstr "Czy na pewno chcesz usunąć organizację?"
msgid "Are you sure you wish to delete this team?"
msgstr "Czy na pewno chcesz usunąć zespół?"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/components/general/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Are you sure?"
msgstr "Czy na pewno?"
@@ -1706,9 +1724,9 @@ msgctxt "Recipient role action verb"
msgid "Assist"
msgstr "Przygotuj"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Assist Document"
msgstr "Przygotuj dokument"
@@ -1752,11 +1770,11 @@ msgctxt "Recipient role progressive verb"
msgid "Assisting"
msgstr "Przygotowuje"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
-#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/lib/types/document-meta.ts
+#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
msgid "At least one signature type must be enabled"
msgstr "Co najmniej jeden rodzaj podpisu musi pozostać włączony"
@@ -1768,9 +1786,9 @@ msgstr "Załącznik został dodany."
msgid "Attachment removed successfully."
msgstr "Załącznik został usunięty."
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Attachments"
@@ -1796,8 +1814,8 @@ msgstr "Poziom uwierzytelniania"
msgid "Authentication Portal Not Found"
msgstr "Adres logowania SSO nie został znaleziony"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Authentication required"
msgstr "Uwierzytelnienie jest wymagane"
@@ -1817,12 +1835,12 @@ msgstr "Awatar został zaktualizowany"
msgid "Awaiting email confirmation"
msgstr "Oczekiwanie na potwierdzenie adresu"
-#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
msgid "Back"
msgstr "Wstecz"
@@ -1838,8 +1856,8 @@ msgstr "Kolor tła"
msgid "Background Jobs"
msgstr "Zadania w tle"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Backup Code"
msgstr "Kod zapasowy"
@@ -1855,10 +1873,11 @@ msgstr "Baner został zaktualizowany"
msgid "Before you get started, please confirm your email address by clicking the button below:"
msgstr "Zanim zaczniesz, potwierdź adres e-mail, klikając poniższy przycisk:"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
msgid "Billing"
msgstr "Płatności"
@@ -1882,9 +1901,9 @@ msgstr "Szczegóły marki"
msgid "Brand Website"
msgstr "Strona internetowa marki"
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
msgid "Branding"
msgstr "Branding"
@@ -1892,10 +1911,10 @@ msgstr "Branding"
msgid "Branding Logo"
msgstr "Logo marki"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Branding Preferences"
msgstr "Ustawienia brandingu"
@@ -1929,8 +1948,8 @@ msgstr "Zbiorcza wysyłka szablonu „{templateName}” została zakończona"
msgid "Bulk Send Template via CSV"
msgstr "Zbiorcza wysyłka szablonu przez CSV"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Bulk Send via CSV"
msgstr "Zbiorcza wysyłka przez CSV"
@@ -1975,96 +1994,95 @@ msgstr "Korzystając z funkcji podpisu elektronicznego, wyrażasz zgodę na prze
msgid "Can prepare"
msgstr "Może przygotować"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.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/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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-password.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/general/document/document-attachments-popover.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-test-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-to-folder-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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-create-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-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/claim-update-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.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-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.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/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Cancel"
msgstr "Anuluj"
@@ -2114,6 +2132,10 @@ msgstr "Pobierający kopię"
msgid "Center"
msgstr "Wyśrodkuj"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Change Recipient"
+msgstr "Zmień odbiorcę"
+
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
msgid "Character limit"
msgstr "Limit znaków"
@@ -2128,8 +2150,8 @@ msgid "Charts"
msgstr "Wykresy"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Checkbox"
msgstr "Pole wyboru"
@@ -2142,9 +2164,9 @@ msgstr "Ustawienia pola wyboru"
msgid "Checkbox values"
msgstr "Opcje pola wyboru"
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Checkout"
msgstr "Zamów"
@@ -2196,9 +2218,9 @@ msgstr "Wyczyść podpis"
msgid "Click here to get started"
msgstr "Kliknij, aby rozpocząć"
-#: 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/template/template-page-view-recent-activity.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "Click here to retry"
msgstr "Kliknij tutaj, aby spróbować ponownie"
@@ -2211,12 +2233,12 @@ msgstr "Kliknij, aby przesłać"
msgid "Click to copy signing link for sending to recipient"
msgstr "Kliknij, aby skopiować link do podpisywania dla odbiorcy"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.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/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
msgid "Click to insert field"
msgstr "Kliknij, aby wstawić pole"
@@ -2236,23 +2258,25 @@ msgstr "Sekret klienta"
msgid "Client secret is required"
msgstr "Sekret klienta jest wymagany"
-#: apps/remix/app/components/general/billing-plans.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/support-ticket-form.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/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-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/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/missing-signature-field-dialog.tsx
msgid "Close"
msgstr "Zamknij"
@@ -2265,14 +2289,14 @@ msgstr "Komunikacja"
msgid "Compare all plans and features in detail"
msgstr "Porównaj wszystkie plany i funkcje"
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Complete"
msgstr "Zakończ"
@@ -2284,22 +2308,22 @@ msgstr "Zakończ dokument"
msgid "Complete the fields for the following signers."
msgstr "Uzupełnij pola dla następujących podpisujących."
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: 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/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
-#: packages/lib/constants/document.ts
-#: packages/email/template-components/template-document-self-signed.tsx
-#: packages/email/template-components/template-document-recipient-signed.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
#: packages/email/template-components/template-document-completed.tsx
+#: packages/email/template-components/template-document-recipient-signed.tsx
+#: packages/email/template-components/template-document-self-signed.tsx
+#: packages/lib/constants/document.ts
msgid "Completed"
msgstr "Zakończono"
-#: packages/email/templates/document-self-signed.tsx
#: packages/email/templates/document-completed.tsx
+#: packages/email/templates/document-self-signed.tsx
msgid "Completed Document"
msgstr "Dokument został zakończony"
@@ -2375,8 +2399,8 @@ msgstr "Skonfiguruj szablon"
#. placeholder {0}: parseMessageDescriptor( _, FRIENDLY_FIELD_TYPE[currentField.type], )
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Configure the {0} field"
msgstr "Skonfiguruj pole {0}"
@@ -2393,20 +2417,20 @@ msgstr "Skonfiguruj role w zespole dla każdej grupy"
msgid "Configure the team roles for each member"
msgstr "Skonfiguruj role w zespole dla każdego użytkownika"
-#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Confirm"
msgstr "Potwierdź"
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
msgid "Confirm by typing <0>{deleteMessage}0>"
msgstr "Potwierdź, wpisując <0>{deleteMessage}0>"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "Confirm by typing: <0>{deleteMessage}0>"
msgstr "Potwierdź, wpisując: <0>{deleteMessage}0>"
@@ -2419,8 +2443,8 @@ msgstr "Potwierdź usunięcie"
msgid "Confirm email"
msgstr "Potwierdź adres e-mail"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Confirmation email sent"
msgstr "Wiadomość potwierdzająca została wysłana"
@@ -2444,17 +2468,17 @@ msgstr "Skontaktuj się z nami"
msgid "Content"
msgstr "Zawartość"
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$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+/organisation.invite.$token.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-view.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/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$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+/verify-email.$token.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Continue"
msgstr "Kontynuuj"
@@ -2521,21 +2545,22 @@ msgstr "Wybierz dozwolone podpisy podczas podpisywania dokumentu."
msgid "Copied"
msgstr "Skopiowano"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: 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/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: packages/ui/primitives/document-flow/add-subject.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/avatar-with-recipient.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.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/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/components/document/document-share-button.tsx
+#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Copied to clipboard"
msgstr "Skopiowano do schowka"
@@ -2556,8 +2581,8 @@ msgstr "Kopiuj link do udostępniania"
msgid "Copy Shareable Link"
msgstr "Kopiuj link do udostępnienia"
-#: 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/general/document/document-recipient-link-copy-dialog.tsx
msgid "Copy Signing Links"
msgstr "Kopiuj linki do podpisywania"
@@ -2565,12 +2590,12 @@ msgstr "Kopiuj linki do podpisywania"
msgid "Copy token"
msgstr "Kopiuj token"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Create"
msgstr "Utwórz"
@@ -2681,17 +2706,17 @@ msgstr "Utwórz teraz"
msgid "Create one automatically"
msgstr "Utwórz 1 automatycznie"
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
msgid "Create organisation"
msgstr "Utwórz organizację"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Create Organisation"
msgstr "Utwórz organizację"
@@ -2715,14 +2740,14 @@ msgstr "Utwórz subskrypcję"
msgid "Create Subscription Claim"
msgstr "Utwórz subskrypcję"
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
msgid "Create team"
msgstr "Utwórz zespół"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Create Team"
msgstr "Utwórz zespół"
@@ -2751,26 +2776,27 @@ msgstr "Utwórz konto i skorzystaj z najnowocześniejszego rozwiązania do podpi
msgid "Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp."
msgstr "Utwórz konto i zacznij korzystać z nowoczesnego podpisywania dokumentów. Otwarty i piękny podpis jest w zasięgu ręki."
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: 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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-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
+#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Created"
msgstr "Utworzono"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Created At"
msgstr "Utworzono"
@@ -2782,9 +2808,7 @@ msgstr "Utworzono przez"
msgid "Created on"
msgstr "Utworzono"
-#. placeholder {0}: i18n.date(webhook.createdAt, DateTime.DATETIME_FULL)
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Created on {0}"
msgstr "Utworzono {0}"
@@ -2842,13 +2866,13 @@ msgstr "Tryb ciemny"
msgid "Dashboard"
msgstr "Pulpit"
-#: apps/remix/app/components/tables/settings-security-activity-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Date"
msgstr "Data"
@@ -2856,10 +2880,10 @@ msgstr "Data"
msgid "Date created"
msgstr "Data utworzenia"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Date Format"
msgstr "Format daty"
@@ -2867,8 +2891,8 @@ msgstr "Format daty"
msgid "Date Settings"
msgstr "Ustawienia daty"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: packages/email/templates/organisation-invite.tsx
msgid "Decline"
msgstr "Odrzuć"
@@ -2918,46 +2942,47 @@ msgstr "Domyślna wartość"
msgid "delete"
msgstr "usuń"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/folder/folder-card.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-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-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/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Delete"
msgstr "Usuń"
-#. placeholder {0}: webhook.webhookUrl
-#. placeholder {0}: token.name
+#. placeholder {0}: folder.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#. placeholder {0}: token.name
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "delete {0}"
msgstr "usuń {0}"
@@ -2973,11 +2998,11 @@ msgstr "usuń {teamName}"
msgid "Delete account"
msgstr "Usuń konto"
+#: 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
#: 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
msgid "Delete Account"
msgstr "Usuń konto"
@@ -2985,10 +3010,10 @@ msgstr "Usuń konto"
msgid "Delete document"
msgstr "Usuń dokument"
+#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: 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
msgid "Delete Document"
msgstr "Usuń dokument"
@@ -2996,8 +3021,8 @@ msgstr "Usuń dokument"
msgid "Delete email"
msgstr "Usuń adres e-mail"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Delete email domain"
msgstr "Usuń domenę"
@@ -3057,8 +3082,8 @@ msgstr "Usuń webhook"
msgid "Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution."
msgstr "Usuń swoje konto i wszystkie jego dane, w tym zakończone dokumenty. Ta akcja jest nieodwracalna i anuluje subskrypcję."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Deleted"
msgstr "Usunięto"
@@ -3066,13 +3091,22 @@ msgstr "Usunięto"
msgid "Deleting account..."
msgstr "Usuwanie konta..."
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Destination"
+msgstr "Adres docelowy"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Details"
msgstr "Szczegóły"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+msgid "Developer Mode"
+msgstr "Tryb deweloperski"
+
#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Device"
msgstr "Urządzenie"
@@ -3080,19 +3114,19 @@ msgstr "Urządzenie"
msgid "Didn't request a password change? We are here to help you secure your account, just <0>contact us.0>"
msgstr "To nie Twoja prośba? Jesteśmy tutaj, aby pomóc Ci zabezpieczyć konto. <0>Skontaktuj się z nami0>."
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "direct link"
msgstr "bezpośredni link"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Direct link"
msgstr "Bezpośredni link"
-#: 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/envelope-editor/envelope-editor.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
msgid "Direct Link"
msgstr "Bezpośredni link"
@@ -3130,14 +3164,14 @@ msgstr "Bezpośredni link do szablonu został usunięty"
msgid "Direct template link usage exceeded ({0}/{1})"
msgstr "Przekroczono limit użycia bezpośrednich linków do szablonu ({0} / {1})"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Direction"
msgstr "Kierunek"
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
msgid "Disable"
msgstr "Wyłącz"
@@ -3165,6 +3199,7 @@ msgid "Disable Two Factor Authentication before deleting your account."
msgstr "Wyłącz weryfikację dwuetapową przed usunięciem konta."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Disabled"
msgstr "Wyłączone"
@@ -3180,8 +3215,8 @@ msgstr "Wyłączenie użytkownika spowoduje, że nie będzie on mógł korzysta
msgid "Discord"
msgstr "Discord"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "Display Name"
msgstr "Nazwa wyświetlana"
@@ -3217,11 +3252,11 @@ msgstr "Czy chcesz zduplikować szablon?"
msgid "Documenso will delete <0>all of your documents0>, along with all of your completed documents, signatures, and all other resources belonging to your Account."
msgstr "Documenso usunie <0>wszystkie Twoje dokumenty0> (w tym zakończone), podpisy oraz dane powiązane z kontem."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Document"
msgstr "Dokument"
@@ -3250,9 +3285,9 @@ msgid "Document & Recipients"
msgstr "Dokument i odbiorcy"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Document access"
msgstr "Dostęp do dokumentu"
@@ -3271,8 +3306,8 @@ msgstr "Dokument został zatwierdzony"
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: packages/lib/server-only/document/delete-document.ts
#: packages/lib/server-only/admin/admin-super-delete-document.ts
+#: packages/lib/server-only/document/delete-document.ts
msgid "Document Cancelled"
msgstr "Dokument został anulowany"
@@ -3313,8 +3348,8 @@ msgstr "Dokument został utworzony"
msgid "Document created by <0>{0}0>"
msgstr "Dokument został utworzony przez użytkownika <0>{0}0>"
-#: packages/lib/server-only/template/create-document-from-direct-template.ts
#: packages/email/templates/document-created-from-direct-template.tsx
+#: packages/lib/server-only/template/create-document-from-direct-template.ts
msgid "Document created from direct template"
msgstr "Dokument został utworzony z bezpośredniego szablonu"
@@ -3326,9 +3361,9 @@ msgstr "Dokument został utworzony za pomocą <0>bezpośredniego linku0>"
msgid "Document Creation"
msgstr "Tworzenie dokumentu"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
msgid "Document deleted"
msgstr "Dokument usunięty"
@@ -3427,9 +3462,9 @@ msgstr "Dokument oczekujący"
msgid "Document pending email"
msgstr "Wiadomość o oczekującym dokumencie"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Document Preferences"
msgstr "Ustawienia dokumentu"
@@ -3446,8 +3481,8 @@ msgstr "Dokument został ponownie wysłany"
msgid "Document rejected"
msgstr "Dokument odrzucony"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: packages/email/template-components/template-document-rejected.tsx
msgid "Document Rejected"
msgstr "Odrzucono dokument"
@@ -3504,15 +3539,15 @@ msgstr "Zaktualizowano dokument"
msgid "Document updated successfully"
msgstr "Dokument został zaktualizowany"
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Document upload disabled due to unpaid invoices"
msgstr "Przesyłanie dokumentów zostało wyłączone z powodu nieopłaconych faktur"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Document uploaded"
msgstr "Dokument został przesłany"
@@ -3546,20 +3581,20 @@ msgstr "Dokument zostanie trwale usunięty"
msgid "Documentation"
msgstr "Dokumentacja"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.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/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
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Documents"
msgstr "Dokumenty"
@@ -3608,22 +3643,22 @@ msgstr "Domena jest już używana"
msgid "Domain Name"
msgstr "Nazwa domeny"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Don't have an account? <0>Sign up0>"
msgstr "Nie masz konta? <0>Zarejestruj się0>"
-#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-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/general/document/document-certificate-qr-view.tsx
-#: apps/remix/app/components/general/document/document-certificate-qr-view.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/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
#: packages/email/template-components/template-document-completed.tsx
msgid "Download"
msgstr "Pobierz"
@@ -3640,9 +3675,9 @@ msgstr "Pobierz certyfikat"
msgid "Download Files"
msgstr "Pobierz pliki"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Download PDF"
msgstr "Pobierz plik PDF"
@@ -3650,9 +3685,9 @@ msgstr "Pobierz plik PDF"
msgid "Download Template CSV"
msgstr "Pobierz szablon CSV"
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: packages/lib/constants/document.ts
msgid "Draft"
msgstr "Szkic"
@@ -3677,22 +3712,19 @@ msgstr "Przeciągnij i upuść lub kliknij, aby przesłać"
msgid "Drag and drop your PDF file here"
msgstr "Przeciągnij i upuść plik PDF"
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
-msgid "Draw"
-msgstr "Rysowany"
-
#: packages/lib/constants/document.ts
-msgctxt "Draw signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Draw signature"
msgid "Draw"
-msgstr "Rysowany"
+msgstr "Rysuj"
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "Drop your document here"
msgstr "Upuść dokument"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Dropdown"
msgstr "Lista rozwijana"
@@ -3712,20 +3744,20 @@ msgstr "Ustawienia listy rozwijanej"
msgid "Dropdown values"
msgstr "Wartości listy rozwijanej"
-#: 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/envelope-editor/envelope-editor-fields-page-renderer.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
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Duplicate"
msgstr "Zduplikuj"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Document"
msgstr "Duplikuj dokument"
@@ -3734,8 +3766,8 @@ msgstr "Duplikuj dokument"
msgid "Duplicate on all pages"
msgstr "Zduplikuj na wszystkich stronach"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Template"
msgstr "Duplikuj szablon"
@@ -3743,14 +3775,23 @@ msgstr "Duplikuj szablon"
msgid "Duplicate values are not allowed"
msgstr "Zduplikowane wartości nie są dozwolone"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 0"
+msgstr "Np. 0"
+
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 100"
+msgstr "Np. 100"
+
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Edit"
msgstr "Edytuj"
@@ -3758,10 +3799,19 @@ msgstr "Edytuj"
msgid "Edit Template"
msgstr "Edytuj szablon"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Edit webhook"
msgstr "Edytuj webhook"
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+msgid "eg. Legal"
+msgstr "np. Dział prawny"
+
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+msgid "eg. Mac"
+msgstr "np. Mac"
+
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Electronic Delivery of Documents"
msgstr "Elektroniczne dostarczanie dokumentów"
@@ -3770,57 +3820,57 @@ msgstr "Elektroniczne dostarczanie dokumentów"
msgid "Electronic Signature Disclosure"
msgstr "Informacje o podpisie elektronicznym"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-insights-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/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.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
-#: 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/utils/fields.ts
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-configure-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
+#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Email"
msgstr "Adres e-mail"
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/send-confirmation-email.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Email address"
msgstr "Adres e-mail"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Email Address"
msgstr "Adres e-mail"
@@ -3852,9 +3902,9 @@ msgstr "Domena nie została znaleziona"
msgid "Email Domain Settings"
msgstr "Ustawienia domeny"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Email Domains"
msgstr "Domeny"
@@ -3870,9 +3920,9 @@ msgstr "Adres e-mail jest wymagany"
msgid "Email Options"
msgstr "Opcje adresu e-mail"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Email Preferences"
msgstr "Ustawienia adresu e-mail"
@@ -3885,10 +3935,10 @@ msgstr "Ustawienia adresu e-mail zostały zaktualizowane"
msgid "Email resent"
msgstr "Wysłano ponownie wiadomość"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Email Sender"
msgstr "Adres e-mail nadawcy"
@@ -3916,8 +3966,8 @@ msgstr "Weryfikacja adresu e-mail została usunięta"
msgid "Email verification has been resent"
msgstr "Weryfikacja adresu e-mail została ponownie wysłana"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Emails"
msgstr "Adresy e-mail"
@@ -3976,10 +4026,10 @@ msgstr "Włącz podpisywanie za pomocą bezpośredniego linku"
msgid "Enable Direct Link Signing"
msgstr "Włącz podpisywanie za pomocą bezpośredniego linku"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Enable signing order"
msgstr "Włącz kolejność podpisywania"
@@ -3987,10 +4037,11 @@ msgstr "Włącz kolejność podpisywania"
msgid "Enable SSO portal"
msgstr "Włącz logowanie SSO"
-#: 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+/admin+/site-settings.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Enabled"
msgstr "Włączone"
@@ -4014,10 +4065,12 @@ msgstr "Wpisz nazwę"
msgid "Enter the domain you want to use for sending emails (without http:// or www)"
msgstr "Wpisz domenę do wysyłania wiadomości (bez http:// lub www)"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's email"
msgstr "Wpisz adres e-mail następnego podpisującego"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's name"
msgstr "Wpisz nazwę następnego podpisującego"
@@ -4053,11 +4106,12 @@ msgid "Enter your number here"
msgstr "Wpisz liczbę"
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Enter your password"
msgstr "Wpisz hasło"
-#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "Enter your text here"
msgstr "Wpisz tekst"
@@ -4077,8 +4131,8 @@ msgstr "Zduplikowano kopertę"
msgid "Envelope ID"
msgstr "Identyfikator koperty"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Envelope Item Count"
msgstr "Liczba elementów w kopercie"
@@ -4102,75 +4156,75 @@ msgstr "Tytuł koperty"
msgid "Envelope updated"
msgstr "Koperta została zaktualizowana"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$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/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/envelope-signing/envelope-signer-page-renderer.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.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-button-legacy.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/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/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.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-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-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-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-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-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-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-text-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.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/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/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.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/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/verify-email-banner.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Error"
msgstr "Błąd"
@@ -4178,11 +4232,17 @@ msgstr "Błąd"
msgid "Error uploading file"
msgstr "Wystąpił błąd podczas przesyłania pliku"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Event"
+msgstr "Zdarzenie"
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Event Type"
msgstr "Rodzaj zdarzenia"
#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: packages/ui/components/document/document-visibility-select.tsx
msgid "Everyone"
msgstr "Wszyscy"
@@ -4195,8 +4255,8 @@ msgid "Everyone has signed"
msgstr "Wszyscy podpisali"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "Everyone has signed! You will receive an Email copy of the signed document."
-msgstr "Wszyscy podpisali! Otrzymasz wiadomość z podpisanym dokumentem."
+msgid "Everyone has signed! You will receive an email copy of the signed document."
+msgstr "Wszyscy podpisali! Otrzymasz kopię podpisanego dokumentu e‑mailem."
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "Exceeded timeout"
@@ -4217,11 +4277,16 @@ msgid "Expires on {0}"
msgstr "Wygasa {0}"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "External ID"
msgstr "Identyfikator zewnętrzny"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Failed"
+msgstr "Niepowodzenie"
+
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
msgid "Failed to create folder"
msgstr "Nie udało się utworzyć folderu"
@@ -4286,7 +4351,7 @@ msgstr "Nie udało się zaktualizować subskrypcji."
msgid "Failed to update template"
msgstr "Nie udało się zaktualizować szablonu"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Failed to update webhook"
msgstr "Nie udało się zaktualizować webhooku"
@@ -4294,9 +4359,9 @@ msgstr "Nie udało się zaktualizować webhooku"
msgid "Failed: {failedCount}"
msgstr "Niepowodzenie: {failedCount}"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Feature Flags"
msgstr "Flagi funkcji"
@@ -4305,12 +4370,12 @@ msgid "Field character limit"
msgstr "Limit znaków"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field font size"
msgstr "Rozmiar czcionki pola"
@@ -4319,11 +4384,11 @@ msgstr "Rozmiar czcionki pola"
msgid "Field format"
msgstr "Format pola"
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field label"
msgstr "Etykieta pola"
@@ -4355,10 +4420,10 @@ msgstr "Pola"
msgid "Fields updated"
msgstr "Pola zostały zaktualizowane"
+#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "File cannot be larger than {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
msgstr "Plik nie może być większy niż {APP_DOCUMENT_UPLOAD_SIZE_LIMIT} MB"
@@ -4378,8 +4443,8 @@ msgstr "Plik nie może być większy niż {APP_DOCUMENT_UPLOAD_SIZE_LIMIT} MB"
msgid "Fill in the details to create a new subscription claim."
msgstr "Uzupełnił szczegóły, aby utworzyć nową subskrypcję."
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Folder"
msgstr "Folder"
@@ -4399,9 +4464,9 @@ msgstr "Folder został przeniesiony"
msgid "Folder Name"
msgstr "Nazwa folderu"
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
msgid "Folder not found"
msgstr "Folder nie został znaleziony"
@@ -4414,12 +4479,12 @@ msgid "Folder updated successfully"
msgstr "Folder został zaktualizowany"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Font Size"
msgstr "Rozmiar czcionki"
@@ -4439,19 +4504,20 @@ msgstr "Na przykład, jeśli subskrypcja ma nową flagę „FLAG_1” ustawioną
msgid "Forgot Password?"
msgstr "Nie pamiętasz hasła?"
-#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Forgot your password?"
msgstr "Nie pamiętasz hasła?"
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Free"
msgstr "Darmowy"
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Free Signature"
msgstr "Swobodny podpis"
@@ -4459,26 +4525,26 @@ msgstr "Swobodny podpis"
msgid "Free Signature Settings"
msgstr "Ustawienia swobodnego podpisu"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.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/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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "Full Name"
msgstr "Imię i nazwisko"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "General"
msgstr "Ogólne"
@@ -4495,24 +4561,24 @@ msgstr "Wygeneruj linki"
msgid "Global recipient action authentication"
msgstr "Domyślne metody uwierzytelniania odbiorcy"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Go back"
msgstr "Wróć"
-#: apps/remix/app/routes/_recipient+/_layout.tsx
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
+#: apps/remix/app/routes/_recipient+/_layout.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Go Back"
msgstr "Wróć"
@@ -4524,9 +4590,9 @@ msgstr "Wróć"
msgid "Go back home"
msgstr "Powrót do strony głownej"
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
msgid "Go Back Home"
msgstr "Powrót do strony głownej"
@@ -4555,10 +4621,10 @@ msgstr "Przejdź do <0>ustawień profilu publicznego0>, aby dodać dokumenty."
msgid "Green"
msgstr "Zielony"
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Group"
msgstr "Grupa"
@@ -4570,15 +4636,15 @@ msgstr "Grupa została utworzona."
msgid "Group has been updated successfully"
msgstr "Grupa została zaktualizowana"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Group Name"
msgstr "Nazwa grupy"
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
msgid "Groups"
msgstr "Grupy"
@@ -4601,12 +4667,12 @@ msgstr "Zaproszono Cię do wyświetlenia tego dokumentu"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
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."
msgstr "Ustawienie asystenta na samym końcu procesu podpisywania oznacza, że nie będzie on mógł podjąć żadnych działań."
@@ -4678,25 +4744,25 @@ msgstr "Cześć {userName}, wpisz kod weryfikacyjny, aby zakończyć dokument
msgid "Hi, {userName} <0>({userEmail})0>"
msgstr "Cześć, {userName} <0>({userEmail})0>"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Hide"
msgstr "Ukryj"
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/folder/folder-grid.tsx
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-grid.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
msgid "Home"
msgstr "Strona główna"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Home (No Folder)"
msgstr "Strona główna (brak folderu)"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Horizontal"
msgstr "Poziomo"
@@ -4733,7 +4799,6 @@ msgstr "Jestem właścicielem tego dokumentu"
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
msgstr "Rozumiem, że udostępniam swoje poświadczenia zewnętrznej usłudze"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
msgid "I'm sure! Delete it"
msgstr "Usuń trwale"
@@ -4770,6 +4835,10 @@ msgstr "Jeśli Twoja aplikacja uwierzytelniająca nie obsługuje kodów QR, uży
msgid "Important: What This Means"
msgstr "Uwaga: Co to oznacza"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Inactive"
+msgstr "Nieaktywne"
+
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/document/document-status.tsx
@@ -4788,8 +4857,8 @@ msgstr "Dołącz dziennik logów do dokumentu"
msgid "Include the Signing Certificate in the Document"
msgstr "Dołącz certyfikat podpisu do dokumentu"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Information"
msgstr "Informacje"
@@ -4797,17 +4866,17 @@ msgstr "Informacje"
msgid "Inherit authentication method"
msgstr "Odziedzicz metodę uwierzytelniania"
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
msgid "Inherit from organisation"
msgstr "Odziedzicz z organizacji"
@@ -4820,11 +4889,11 @@ msgstr "Odziedzicz użytkowników organizacji"
msgid "Inherited subscription claim"
msgstr "Odziedziczenie subskrypcji"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: packages/ui/primitives/document-flow/types.ts
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Initials"
msgstr "Inicjały"
@@ -4869,8 +4938,8 @@ msgstr "Adres e-mail jest nieprawidłowy"
msgid "Invalid link"
msgstr "Link jest nieprawidłowy"
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
msgid "Invalid token"
msgstr "Token jest nieprawidłowy"
@@ -4890,8 +4959,8 @@ msgstr "Zaproszenie zostało zaakceptowane"
msgid "Invitation accepted!"
msgstr "Zaproszenie zostało zaakceptowane!"
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
msgid "Invitation declined"
msgstr "Zaproszenie zostało odrzucone"
@@ -4931,9 +5000,9 @@ msgstr "Data zaproszenia"
msgid "Invoice"
msgstr "Faktura"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "IP Address"
msgstr "Adres IP"
@@ -4987,23 +5056,23 @@ msgstr "Dołączył"
msgid "Joined {0}"
msgstr "Dołączył {0}"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Label"
msgstr "Etykieta"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Language"
msgstr "Język"
@@ -5031,8 +5100,8 @@ msgstr "Ostatnie 90 dni"
msgid "Last Active"
msgstr "Ostatnia aktywność"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Last modified"
msgstr "Zmodyfikowano"
@@ -5060,15 +5129,15 @@ msgstr "Użyto"
msgid "Last Year"
msgstr "Ostatni rok"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Leave"
msgstr "Opuść"
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Leave blank to inherit from the organisation."
msgstr "Pozostaw puste, aby odziedziczyć z organizacji."
@@ -5124,8 +5193,8 @@ msgstr "Połącz szablon"
msgid "Link your Documenso account"
msgstr "Połącz swoje konto Documenso"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Linked Accounts"
msgstr "Połączone konta"
@@ -5137,30 +5206,29 @@ msgstr "Data połączenia"
msgid "Links Generated"
msgstr "Wygenerowane linki"
-#. placeholder {0}: webhook.eventTriggers .map((trigger) => toFriendlyWebhookEventName(trigger)) .join(', ')
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-msgid "Listening to {0}"
-msgstr "Nasłuchiwanie {0}"
+msgid "Listening to"
+msgstr "Nasłuchuje"
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
msgid "Load older activity"
msgstr "Załaduj starszą aktywność"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Loading"
msgstr "Ładowanie"
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Loading document..."
msgstr "Ładowanie dokumentu..."
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
msgid "Loading Document..."
msgstr "Ładowanie dokumentu..."
@@ -5176,15 +5244,19 @@ msgstr "Ładowanie..."
msgid "Local timezone"
msgstr "Lokalna strefa czasowa"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Login"
msgstr "Zaloguj się"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "Logs"
+msgstr "Dzienniki"
+
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Manage"
msgstr "Zarządzaj"
@@ -5214,9 +5286,14 @@ msgid "Manage billing"
msgstr "Zarządzaj płatnościami"
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Manage Billing"
msgstr "Zarządzaj płatnościami"
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
+msgid "Manage billing and subscriptions for organisations where you have billing management permissions."
+msgstr "Zarządzaj rozliczeniami i subskrypcjami dla organizacji, w których masz uprawnienia do zarządzania rozliczeniami."
+
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "Manage details for this public template"
msgstr "Zarządzaj szczegółami publicznego szablonu"
@@ -5233,6 +5310,7 @@ msgstr "Zarządzaj dokumentami"
msgid "Manage linked accounts"
msgstr "Zarządzaj połączonymi kontami"
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Manage organisation"
msgstr "Zarządzaj organizacją"
@@ -5318,8 +5396,8 @@ msgstr "Tutaj możesz zarządzać ustawieniami strony."
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Manager"
msgstr "Manager"
@@ -5357,24 +5435,24 @@ msgstr "Max"
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
msgstr "Maksymalny rozmiar pliku to 4 MB. Możesz przesłać maksymalnie 100 wierszy na raz. Puste wartości zostaną zastąpione domyślnymi z szablonu."
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Maximum number of uploaded files per envelope allowed"
msgstr "Maksymalna dozwolona liczba przesłanych plików na kopertę"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Member"
msgstr "Użytkownik"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Member Count"
msgstr "Liczba użytkowników"
@@ -5382,25 +5460,25 @@ msgstr "Liczba użytkowników"
msgid "Member Since"
msgstr "Data dołączenia"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Members"
msgstr "Użytkownicy"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Message"
msgstr "Wiadomość"
@@ -5421,8 +5499,8 @@ msgstr "Min"
msgid "Missing Recipients"
msgstr "Brak odbiorców"
-#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
msgid "Modify recipients"
msgstr "Edytuj odbiorców"
@@ -5430,8 +5508,8 @@ msgstr "Edytuj odbiorców"
msgid "Modify the details of the subscription claim."
msgstr "Edytuj szczegóły subskrypcji."
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Monthly"
msgstr "Miesięcznie"
@@ -5443,10 +5521,10 @@ msgstr "Miesięczna liczba aktywnych użytkowników: Użytkownicy, którzy utwor
msgid "Monthly Active Users: Users that had at least one of their documents completed"
msgstr "Miesięczna liczba aktywnych użytkowników: Użytkownicy, którzy zakończyli co najmniej jeden dokument"
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
msgid "Move"
msgstr "Przenieś"
@@ -5466,8 +5544,8 @@ msgstr "Przenieś folder"
msgid "Move Template to Folder"
msgstr "Przenieś szablon do folderu"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Move to Folder"
msgstr "Przenieś do folderu"
@@ -5483,43 +5561,43 @@ msgstr "Mój folder"
msgid "N/A"
msgstr "Nie dotyczy"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: 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/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
-#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
-#: apps/remix/app/components/forms/subscription-claim-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: 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
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/forms/subscription-claim-form.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/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Name"
msgstr "Nazwa"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Name is required"
msgstr "Nazwa jest wymagana"
@@ -5559,11 +5637,11 @@ msgstr "Nowe hasło"
msgid "New Template"
msgstr "Nowy szablon"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Next"
msgstr "Dalej"
@@ -5580,10 +5658,10 @@ msgstr "Adres e-mail następnego odbiorcy"
msgid "Next Recipient Name"
msgstr "Nazwa następnego odbiorcy"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "No"
msgstr "Nie"
@@ -5591,24 +5669,24 @@ msgstr "Nie"
msgid "No active drafts"
msgstr "Brak aktywnych szkiców"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "No documents found"
msgstr "Nie znaleziono dokumentów"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "No folders found"
msgstr "Nie znaleziono folderów"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "No folders found matching \"{searchTerm}\""
msgstr "Nie znaleziono folderów pasujących do „{searchTerm}”"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "No further action is required from you at this time."
msgstr "Nie musisz nic więcej robić."
@@ -5628,25 +5706,27 @@ msgstr "Brak ostatniej aktywności"
msgid "No recent documents"
msgstr "Brak ostatnich dokumentów"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipient matching this description was found."
msgstr "Nie znaleziono odbiorcy pasującego do tego opisu."
-#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "No recipients"
msgstr "Brak odbiorców"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipients with this role"
msgstr "Brak odbiorców z tą rolą"
-#: 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-action-select.tsx
msgid "No restrictions"
msgstr "Brak ograniczeń"
@@ -5687,8 +5767,8 @@ msgid "No valid recipients found"
msgstr "Nie znaleziono ważnych odbiorców"
#: apps/remix/app/components/general/multiselect-role-combobox.tsx
-#: packages/ui/primitives/multi-select-combobox.tsx
#: packages/ui/primitives/combobox.tsx
+#: packages/ui/primitives/multi-select-combobox.tsx
msgid "No value found."
msgstr "Nie znaleziono wartości."
@@ -5696,16 +5776,16 @@ msgstr "Nie znaleziono wartości."
msgid "No worries, it happens! Enter your email and we'll email you a special link to reset your password."
msgstr "Nie martw się! Wpisz swój adres e-mail, a my wyślemy Ci specjalny link do zresetowania hasła."
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
#: packages/lib/constants/document.ts
msgid "None"
msgstr "Brak"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Not found"
msgstr "Strona nie została znaleziona"
@@ -5718,12 +5798,12 @@ msgstr "Nieobsługiwane"
msgid "Nothing to do"
msgstr "Nie masz nic do zrobienia"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: 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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Number"
msgstr "Liczba"
@@ -5736,13 +5816,13 @@ msgstr "Format liczby"
msgid "Number needs to be formatted as {numberFormat}"
msgstr "Liczba musi być w formacie {numberFormat}"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of members allowed. 0 = Unlimited"
msgstr "Liczba dozwolonych użytkowników. 0 = Bez ograniczeń"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of teams allowed. 0 = Unlimited"
msgstr "Liczba dozwolonych zespołów. 0 = Bez ograniczeń"
@@ -5782,10 +5862,6 @@ msgstr "Na tej stronie możesz tworzyć i zarządzać tokenami API. Sprawdź <0>
msgid "On this page, you can create new Webhooks and manage the existing ones."
msgstr "Na tej stronie możesz utworzyć nowe webhooki i zarządzać obecnymi."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "On this page, you can edit the webhook and its settings."
-msgstr "Na tej stronie możesz edytować webhook i jego ustawienia."
-
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Once confirmed, the following will occur:"
msgstr "Potwierdzenie akcji spowoduje następujące skutki:"
@@ -5826,11 +5902,11 @@ msgstr "Możesz przesłać tylko jeden plik na raz"
msgid "Only PDF files are allowed"
msgstr "Dozwolone są tylko pliki PDF"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Oops! Something went wrong."
msgstr "Ups! Coś poszło nie tak."
@@ -5846,8 +5922,8 @@ msgstr "Wartość opcji nie może być pusta"
msgid "Options"
msgstr "Opcje"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Or"
msgstr "Lub"
@@ -5859,9 +5935,10 @@ msgstr "LUB"
msgid "Or continue with"
msgstr "Alternatywne metody logowania"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Organisation"
msgstr "Organizacja"
@@ -5890,8 +5967,8 @@ msgstr "Ustawienia grupy organizacji"
msgid "Organisation has been updated successfully"
msgstr "Organizacja została zaktualizowana"
-#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
msgid "Organisation Insights"
msgstr "Szczegóły organizacji"
@@ -5907,22 +5984,22 @@ msgstr "Zaproszenia do organizacji zostały wysłane."
msgid "Organisation Manager"
msgstr "Manager organizacji"
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: packages/lib/constants/organisations-translations.ts
msgid "Organisation Member"
msgstr "Użytkownik organizacji"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
msgid "Organisation Members"
msgstr "Użytkownicy organizacji"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation Name"
msgstr "Nazwa organizacji"
@@ -5935,8 +6012,8 @@ msgstr "Organizacja nie została znaleziona"
msgid "Organisation role"
msgstr "Rola w organizacji"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Organisation Role"
msgstr "Rola w organizacji"
@@ -5956,17 +6033,17 @@ msgstr "Logowanie SSO organizacji"
msgid "Organisation Teams"
msgstr "Zespoły w organizacji"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation URL"
msgstr "Adres URL organizacji"
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
#: apps/remix/app/routes/_authenticated+/settings+/organisations.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Organisations"
msgstr "Organizacje"
@@ -6003,16 +6080,16 @@ msgstr "W przeciwnym razie dokument zostanie utworzony jako wersja robocza."
msgid "Override organisation settings"
msgstr "Nadpisz ustawienia organizacji"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Owner"
msgstr "Właściciel"
@@ -6027,8 +6104,8 @@ msgid "Page {0} of {1}"
msgstr "Strona {0} z {1}"
#. placeholder {0}: i + 1
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Page {0} of {numPages}"
msgstr "Strona {0} z {numPages}"
@@ -6036,8 +6113,8 @@ msgstr "Strona {0} z {numPages}"
msgid "Paid"
msgstr "Opłacona"
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
msgid "Passkey"
msgstr "Klucz dostępu"
@@ -6065,8 +6142,8 @@ msgstr "Nazwa klucza dostępu"
msgid "Passkey Re-Authentication"
msgstr "Klucz dostępu"
-#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
msgid "Passkeys"
msgstr "Klucze dostępu"
@@ -6078,12 +6155,12 @@ msgstr "Klucze dostępu pozwalają na logowanie i uwierzytelnianie za pomocą bi
msgid "Passkeys are not supported on this browser"
msgstr "Klucze dostępu nie są obsługiwane w tej przeglądarce"
-#: apps/remix/app/components/general/app-command-menu.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
-#: apps/remix/app/components/forms/signup.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Password"
msgstr "Hasło"
@@ -6099,13 +6176,13 @@ msgstr "Prośba o zresetowanie hasła"
msgid "Password Reset Successful"
msgstr "Hasło zostało zresetowane"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Password should not be common or based on personal information"
msgstr "Hasło nie powinno być powszechne ani oparte na informacjach osobistych"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Password updated"
msgstr "Hasło zostało zaktualizowane"
@@ -6113,6 +6190,10 @@ msgstr "Hasło zostało zaktualizowane"
msgid "Password updated!"
msgstr "Hasło zostało zaktualizowane!"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Past Due"
+msgstr "Po terminie"
+
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
msgid "Payment overdue"
@@ -6122,15 +6203,15 @@ msgstr "Zaległa płatność"
msgid "PDF Document"
msgstr "Dokument PDF"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
-#: packages/ui/components/document/document-read-only-fields.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: packages/lib/constants/document.ts
+#: packages/ui/components/document/document-read-only-fields.tsx
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Pending"
msgstr "Oczekujący"
@@ -6150,13 +6231,13 @@ msgstr "Oczekujące dokumenty"
msgid "Pending invitations"
msgstr "Oczekujące zaproszenia"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per month"
msgstr "miesięcznie"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per year"
msgstr "rocznie"
@@ -6165,15 +6246,15 @@ msgctxt "Personal organisation (adjective)"
msgid "Personal"
msgstr "Osobista"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Personal Account"
msgstr "Konto osobiste"
-#: apps/remix/app/routes/_authenticated+/inbox.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/inbox.tsx
msgid "Personal Inbox"
msgstr "Skrzynka odbiorcza"
@@ -6198,12 +6279,12 @@ msgstr "Przypnij"
msgid "Place and configure form fields in the document"
msgstr "Dodaj pola w dokumencie"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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
#: 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 "Domyślny tekst"
@@ -6250,8 +6331,8 @@ msgstr "Wybierz nowe hasło"
msgid "Please complete the document once reviewed"
msgstr "Zakończ dokument po jego sprawdzeniu"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Please configure the document first"
msgstr "Najpierw skonfiguruj dokument"
@@ -6275,9 +6356,9 @@ msgstr "Skontaktuj się z właścicielem dokumentu, aby uzyskać pomoc."
msgid "Please enter a meaningful name for your token. This will help you identify it later."
msgstr "Wpisz nazwę tokena. Pomoże to później w jego identyfikacji."
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Please enter a valid name."
msgstr "Wpisz prawidłową nazwę."
@@ -6329,6 +6410,10 @@ msgstr "Stracisz dostęp do wszystkich dokumentów powiązanych z tym zespołem.
msgid "Please open your authenticator app and enter the 6-digit code for this document."
msgstr "Otwórz aplikację uwierzytelniającą i wpisz 6-cyfrowy kod dla tego dokumentu."
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+msgid "Please provide a reason for rejecting this document"
+msgstr "Podaj powód odrzucenia tego dokumentu"
+
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
msgid "Please provide a token from the authenticator, or a backup code. If you do not have a backup code available, please contact support."
msgstr "Wpisz kod weryfikacyjny z aplikacji uwierzytelniającej lub kod zapasowy. Jeśli nie masz dostępnego kodu zapasowego, skontaktuj się z pomocą techniczną."
@@ -6365,10 +6450,10 @@ msgstr "Spróbuj ponownie i upewnij się, że adres e-mail jest prawidłowy."
msgid "Please try again later."
msgstr "Spróbuj ponownie później."
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Please try again or contact our support."
msgstr "Spróbuj ponownie lub skontaktuj się z naszym wsparciem."
@@ -6382,8 +6467,8 @@ msgstr "Wpisz {0}, aby potwierdzić"
msgid "Please type <0>{0}0> to confirm."
msgstr "Wpisz <0>{0}0>, aby potwierdzić."
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Please upload a document to continue"
msgstr "Prześlij dokument, aby kontynuować"
@@ -6395,15 +6480,15 @@ msgstr "Prześlij logo"
msgid "Pre-formatted CSV template with example data."
msgstr "Wstępnie sformatowany szablon CSV z przykładowymi danymi."
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Preferences"
msgstr "Ustawienia"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Preview"
msgstr "Podgląd"
@@ -6425,8 +6510,8 @@ msgstr "Podgląd dokumentu przed wysłaniem"
msgid "Preview what the signed document will look like with placeholder data"
msgstr "Podgląd podpisanego dokumentu z domyślnymi opcjami"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Private"
msgstr "Prywatny"
@@ -6442,10 +6527,14 @@ msgstr "Prywatne szablony mogą być edytowane i wyświetlane tylko przez Ciebie
msgid "Proceed"
msgstr "Kontynuuj"
-#: 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/routes/_recipient+/sign.$token+/complete.tsx
+msgid "Processing document"
+msgstr "Przetwarzanie dokumentu"
+
#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/profile.tsx
msgid "Profile"
msgstr "Profil"
@@ -6457,8 +6546,8 @@ msgstr "Profil jest <0>ukryty0>."
msgid "Profile is currently <0>visible0>."
msgstr "Profil jest <0>widoczny0>."
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Profile updated"
msgstr "Profil został zaktualizowany"
@@ -6474,15 +6563,15 @@ msgstr "Dostawca"
msgid "Provider has been updated successfully"
msgstr "Dostawca został zaktualizowany"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Public"
msgstr "Publiczny"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Public Profile"
msgstr "Profil publiczny"
@@ -6503,8 +6592,8 @@ msgid "Quick Actions"
msgstr "Szybkie akcje"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Radio"
msgstr "Pole wyboru"
@@ -6517,11 +6606,11 @@ msgstr "Ustawienia pola wyboru"
msgid "Radio values"
msgstr "Wartości pola wyboru"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Read only"
msgstr "Tylko do odczytu"
@@ -6570,8 +6659,8 @@ msgstr "Aby podpisać pole, wymagane jest ponowne uwierzytelnianie"
msgid "Receives copy"
msgstr "Otrzymuje kopię"
-#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Recent activity"
msgstr "Ostatnia aktywność"
@@ -6579,10 +6668,10 @@ msgstr "Ostatnia aktywność"
msgid "Recent documents"
msgstr "Ostatnie dokumenty"
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: 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
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
@@ -6592,9 +6681,9 @@ msgid "Recipient"
msgstr "Odbiorca"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Recipient action authentication"
msgstr "Uwierzytelnianie odbiorcy"
@@ -6614,11 +6703,11 @@ msgstr "Wiadomość z prośbą o podpisanie"
msgid "Recipient updated"
msgstr "Odbiorca został zaktualizowany"
-#: 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
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Recipients"
msgstr "Odbiorcy"
@@ -6662,10 +6751,10 @@ msgstr "Czerwony"
msgid "Redirect URI"
msgstr "Adres URL przekierowania"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Redirect URL"
msgstr "Adres URL przekierowania"
@@ -6673,8 +6762,8 @@ msgstr "Adres URL przekierowania"
msgid "Redirecting"
msgstr "Przekierowywanie"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Registration Successful"
msgstr "Konto zostało utworzone"
@@ -6682,19 +6771,19 @@ msgstr "Konto zostało utworzone"
msgid "Reject"
msgstr "Odrzuć"
-#: 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
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.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
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
msgid "Reject Document"
msgstr "Odrzuć dokument"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
msgid "Rejected"
msgstr "Odrzucono"
@@ -6707,8 +6796,8 @@ msgstr "Potwierdzenie odrzucenia"
msgid "Rejection reason: {reason}"
msgstr "Powód odrzucenia: {reason}"
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
msgid "Reload"
msgstr "Odśwież"
@@ -6734,34 +6823,34 @@ msgstr "Przypomnienie: Sprawdź i {recipientActionVerb} dokument"
msgid "Reminder: Please {recipientActionVerb} your document"
msgstr "Przypomnienie: Sprawdź i {recipientActionVerb} dokument"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/avatar-image.tsx
-#: apps/remix/app/components/dialogs/template-use-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-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Remove"
msgstr "Usuń"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Remove email domain"
msgstr "Usuń domenę"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Remove organisation group"
msgstr "Usuń grupę organizacji"
@@ -6773,13 +6862,13 @@ msgstr "Usuń użytkownika organizacji"
msgid "Remove team email"
msgstr "Usuń adres e-mail zespołu"
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Remove team member"
msgstr "Usuń użytkownika zespołu"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Repeat Password"
msgstr "Potwierdź hasło"
@@ -6787,22 +6876,26 @@ msgstr "Potwierdź hasło"
msgid "Reply to email"
msgstr "Odpowiedz na adres"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Reply To Email"
msgstr "Odpowiedz na adres"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Request"
+msgstr "Żądanie"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Requesting Organisation"
msgstr "Wnioskująca organizacja"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Required field"
msgstr "Pole wymagane"
@@ -6818,8 +6911,9 @@ msgstr "Wymagane zakresy"
msgid "Reseal document"
msgstr "Zapieczętuj ponownie dokument"
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Resend"
msgstr "Wyślij ponownie"
@@ -6832,9 +6926,9 @@ msgstr "Wyślij ponownie kod"
msgid "Resend Confirmation Email"
msgstr "Wyślij ponownie wiadomość weryfikacyjną"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Resend Document"
msgstr "Wyślij ponownie dokument"
@@ -6842,9 +6936,9 @@ msgstr "Wyślij ponownie dokument"
msgid "Resend verification"
msgstr "Wyślij ponownie wiadomość weryfikacyjną"
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Reset"
msgstr "Resetuj"
@@ -6857,9 +6951,9 @@ msgstr "Resetowanie weryfikacji dwuetapowej"
msgid "Reset email sent"
msgstr "Wysłano wiadomość z linkiem do resetowania hasła"
-#: 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
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Reset Password"
msgstr "Resetowanie hasła"
@@ -6884,6 +6978,18 @@ msgstr "Rozwiąż"
msgid "Resolve payment"
msgstr "Rozwiąż płatność"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response"
+msgstr "Odpowiedź"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Code"
+msgstr "Kod odpowiedzi"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Headers"
+msgstr "Nagłówki odpowiedzi"
+
#: 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 "Zapewniamy, że Twój dokument jest poufny i nigdy nie zostanie udostępniony. Udostępnione zostaną tylko Twoje wrażenia związane z podpisywaniem dokumentu. Udostępnij spersonalizowaną kartę ze swoim podpisem!"
@@ -6904,11 +7010,11 @@ msgstr "Ponowiono"
msgid "Retry"
msgstr "Spróbuj ponownie"
-#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "Return"
msgstr "Wróć"
@@ -6924,8 +7030,8 @@ msgstr "Powrót do dokumentów"
msgid "Return to Home"
msgstr "Powrót do strony głównej"
-#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
msgid "Return to sign in"
msgstr "Powrót do logowania"
@@ -6937,8 +7043,8 @@ msgstr "Powrót do szablonów"
msgid "Review request"
msgstr "Sprawdź prośbę"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Revoke"
msgstr "Unieważnij"
@@ -6956,24 +7062,24 @@ msgstr "Unieważnij wszystkie sesje"
msgid "Right"
msgstr "Wyrównaj do lewej"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Role"
msgstr "Rola"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Roles"
msgstr "Role"
@@ -6981,11 +7087,11 @@ msgstr "Role"
msgid "Rows per page"
msgstr "Wiersze na stronę"
-#: 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/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
msgid "Save"
msgstr "Zapisz"
@@ -7004,12 +7110,13 @@ msgstr "Zapisz szablon"
msgid "Sealing job started"
msgstr "Rozpoczęto zapieczętowanie dokumentu"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
-#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Search"
msgstr "Szukaj"
@@ -7025,6 +7132,10 @@ msgstr "Szukaj identyfikatora lub nazwy"
msgid "Search by document title"
msgstr "Szukaj tytułu dokumentu"
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Search by ID"
+msgstr "Szukaj po ID"
+
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
msgid "Search by name or email"
msgstr "Szukaj nazwy lub adresu e-mail"
@@ -7041,11 +7152,11 @@ msgstr "Szukaj nazwy organizacji"
msgid "Search documents..."
msgstr "Szukaj dokumentów..."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "Search folders..."
msgstr "Szukaj folderów..."
@@ -7057,10 +7168,10 @@ msgstr "Szukaj języków..."
msgid "Secret"
msgstr "Sekret"
-#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Security"
msgstr "Bezpieczeństwo"
@@ -7073,8 +7184,8 @@ msgid "See the background jobs tab for the status"
msgstr "Zobacz kartę zadań w tle, aby sprawdzić status"
#: 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
+#: packages/ui/primitives/document-flow/types.ts
msgid "Select"
msgstr "Wybierz"
@@ -7094,6 +7205,10 @@ msgstr "Wybierz plan"
msgid "Select a plan to continue"
msgstr "Wybierz plan, aby kontynuować"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Select a recipient"
+msgstr "Wybierz odbiorcę"
+
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
msgid "Select a team to view its dashboard"
msgstr "Wybierz zespół, aby zobaczyć jego pulpit"
@@ -7114,6 +7229,10 @@ msgstr "Wybierz strefę czasową"
msgid "Select access methods"
msgstr "Wybierz metody dostępu"
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+msgid "Select an event type"
+msgstr "Wybierz typ zdarzenia"
+
#: apps/remix/app/components/dialogs/sign-field-dropdown-dialog.tsx
#: packages/ui/primitives/combobox.tsx
msgid "Select an option"
@@ -7128,8 +7247,8 @@ msgstr "Wybierz organizację, aby zobaczyć zespoły"
msgid "Select at least"
msgstr "Wybierz co najmniej"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "Select authentication methods"
msgstr "Wybierz metody uwierzytelniania"
@@ -7142,8 +7261,8 @@ msgstr "Wybierz domyślną opcję"
msgid "Select default role"
msgstr "Wybierz domyślną rolę"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Select direction"
msgstr "Wybierz kierunek"
@@ -7160,9 +7279,9 @@ msgstr "Wybierz grupy użytkowników do dodania do zespołu."
msgid "Select groups to add to this team"
msgstr "Wybierz grupy, które chcesz dodać do zespołu"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Select members"
msgstr "Wybierz użytkowników"
@@ -7182,11 +7301,20 @@ msgstr "Wybierz opcję"
msgid "Select passkey"
msgstr "Wybierz klucz dostępu"
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Select signature types"
msgstr "Wybierz rodzaje podpisów"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Select text align"
msgstr "Wybierz wyrównanie tekstu"
@@ -7207,6 +7335,10 @@ msgstr "Wybierz użytkowników do dodania do grupy"
msgid "Select triggers"
msgstr "Wybierz wyzwalacze"
+#: packages/ui/primitives/multi-select-combobox.tsx
+msgid "Select values..."
+msgstr "Wybierz wartości..."
+
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Select vertical align"
msgstr "Wybierz wyrównanie w pionie"
@@ -7215,20 +7347,20 @@ msgstr "Wybierz wyrównanie w pionie"
msgid "Select visibility"
msgstr "Wybierz widoczność"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Selected Recipient"
msgstr "Wybrany odbiorca"
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send"
msgstr "Wyślij"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Send a test webhook with sample data to verify your integration is working correctly."
msgstr "Wyślij testowy webhook z przykładowymi danymi, aby zweryfikować połączenie."
@@ -7241,9 +7373,9 @@ msgstr "Wyślij wiadomość potwierdzającą"
msgid "Send document"
msgstr "Wyślij dokument"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send Document"
msgstr "Wyślij dokument"
@@ -7288,8 +7420,8 @@ msgstr "Wyślij potwierdzenie podpisania"
msgid "Send recipient signing request email"
msgstr "Wyślij prośbę o podpisanie"
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
msgid "Send reminder"
msgstr "Wyślij przypomnienie"
@@ -7297,12 +7429,8 @@ msgstr "Wyślij przypomnienie"
msgid "Send reminders to the following recipients"
msgstr "Wyślij przypomnienia do następujących odbiorców"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
-msgid "Send Test Webhook"
-msgstr "Wyślij testowy webhook"
-
-#: apps/remix/app/components/tables/inbox-table.tsx
#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Sender"
msgstr "Nadawca"
@@ -7314,8 +7442,10 @@ msgstr "Wysyłanie wiadomości..."
msgid "Sending..."
msgstr "Wysyłanie..."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Sent"
msgstr "Wysłano"
@@ -7339,15 +7469,15 @@ msgstr "Skonfiguruj właściwości dokumentu i informacje o odbiorcach"
msgid "Set up your template properties and recipient information"
msgstr "Skonfiguruj właściwości szablonu i informacje o odbiorcach"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/_layout.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/app-nav-mobile.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
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
msgid "Settings"
msgstr "Ustawienia"
@@ -7355,17 +7485,14 @@ msgstr "Ustawienia"
msgid "Setup"
msgstr "Konfiguracja"
-#: 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/tables/documents-table-action-dropdown.tsx
+#: packages/ui/components/document/document-share-button.tsx
msgid "Share"
msgstr "Udostępnij"
-#: packages/ui/components/document/document-share-button.tsx
-msgid "Share Signature Card"
-msgstr "Udostępnij kartę podpisu"
-
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Share Signing Card"
msgstr "Udostępnij kartę podpisu"
@@ -7382,8 +7509,8 @@ msgid "Show"
msgstr "Pokaż"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Show advanced settings"
msgstr "Pokaż ustawienia zaawansowane"
@@ -7391,26 +7518,26 @@ msgstr "Pokaż ustawienia zaawansowane"
msgid "Show templates in your public profile for your audience to sign and get started quickly"
msgstr "Pokaż szablony w profilu publicznym, aby szybko podpisać dokument"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/components/tables/inbox-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/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-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
-#: apps/remix/app/components/general/document/document-page-view-button.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/user-profile-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Sign"
msgstr "Podpisz"
@@ -7435,15 +7562,15 @@ msgstr "Podpisz jako<0>{0} <1>({1})1>0>"
msgid "Sign Checkbox Field"
msgstr "Podpisz pole wyboru"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign document"
msgstr "Podpisz dokument"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Sign Document"
msgstr "Podpisz dokument"
@@ -7464,16 +7591,16 @@ msgstr "Pole podpisu"
msgid "Sign Here"
msgstr "Podpisz tutaj"
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: packages/email/template-components/template-reset-password.tsx
msgid "Sign In"
msgstr "Zaloguj się"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Sign in to your account"
msgstr "Zaloguj się na swoje konto"
@@ -7489,9 +7616,9 @@ msgstr "Podpisz nazwę"
msgid "Sign Number Field"
msgstr "Podpisz pole liczby"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Sign Out"
msgstr "Wyloguj"
@@ -7503,8 +7630,8 @@ msgstr "Podpisz pole podpisu"
msgid "Sign Text Field"
msgstr "Podpisz pole tekstowe"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign the document to complete the process."
msgstr "Podpisz dokument, aby zakończyć proces."
@@ -7537,21 +7664,21 @@ msgstr "Podpisz nazwę w polu"
msgid "Sign your initials into the field"
msgstr "Podpisz inicjały w polu"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Signature"
msgstr "Podpis"
@@ -7579,23 +7706,23 @@ msgstr "Rodzaje podpisów"
msgid "Signatures Collected"
msgstr "Liczba podpisów"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/ui/components/document/document-read-only-fields.tsx
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Signed"
-msgstr "Podpisał"
-
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-msgctxt "Signed document (adjective)"
-msgid "Signed"
-msgstr "Podpisany"
+msgstr "Podpisano"
#: packages/lib/constants/recipient-roles.ts
msgctxt "Recipient role actioned"
msgid "Signed"
msgstr "Podpisano"
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+msgctxt "Signed document (adjective)"
+msgid "Signed"
+msgstr "Podpisany"
+
#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Signer"
msgstr "Podpisujący"
@@ -7641,8 +7768,8 @@ msgstr "Podpisywanie w imieniu"
msgid "Signing in..."
msgstr "Logowanie..."
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Signing Links"
msgstr "Linki do podpisywania"
@@ -7651,8 +7778,8 @@ msgid "Signing links have been generated for this document."
msgstr "Linki do podpisywania zostały wygenerowane dla tego dokumentu."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Signing order is enabled."
msgstr "Kolejność podpisywania jest włączona."
@@ -7669,8 +7796,8 @@ msgstr "Od {0}"
msgid "Site Banner"
msgstr "Baner strony internetowej"
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "Site Settings"
msgstr "Ustawienia strony"
@@ -7678,50 +7805,51 @@ msgstr "Ustawienia strony"
msgid "Some signers have not been assigned a signature field. Please assign at least 1 signature field to each signer before proceeding."
msgstr "Niektórym podpisującym nie przypisano pola podpisu. Przypisz co najmniej jedno pole podpisu do każdego podpisującego."
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/general/billing-plans.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.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-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/embed/embed-document-signing-page-v1.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-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/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-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
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-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-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-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-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
+#: apps/remix/app/components/general/document/document-audit-log-download-button.tsx
+#: apps/remix/app/components/general/document/document-certificate-download-button.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
#: packages/ui/components/document/document-share-button.tsx
msgid "Something went wrong"
msgstr "Coś poszło nie tak"
@@ -7731,10 +7859,10 @@ msgstr "Coś poszło nie tak"
msgid "Something went wrong while attempting to verify your email address for <0>{0}0>. Please try again later."
msgstr "Coś poszło nie tak podczas próby weryfikacji adresu e-mail zespołu <0>{0}0>. Spróbuj ponownie później."
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Something went wrong while loading the document."
msgstr "Coś poszło nie tak podczas ładowania dokumentu."
@@ -7759,10 +7887,10 @@ msgstr "Coś poszło nie tak podczas aktualizowania subskrypcji zespołu. Skonta
msgid "Something went wrong while uploading this file"
msgstr "Coś poszło nie tak podczas przesyłania pliku"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
msgid "Something went wrong!"
msgstr "Coś poszło nie tak!"
@@ -7774,8 +7902,8 @@ msgstr "Coś poszło nie tak."
msgid "Something went wrong. Please try again later."
msgstr "Coś poszło nie tak. Spróbuj ponownie później."
-#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Something went wrong. Please try again or contact support."
msgstr "Coś poszło nie tak. Spróbuj ponownie lub skontaktuj się z pomocą techniczną."
@@ -7787,8 +7915,8 @@ msgstr "Nie mogliśmy pobrać dziennika logów. Spróbuj ponownie później."
msgid "Sorry, we were unable to download the certificate. Please try again later."
msgstr "Nie mogliśmy pobrać certyfikatu. Spróbuj ponownie później."
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Source"
msgstr "Źródło"
@@ -7804,16 +7932,19 @@ msgstr "Logowanie SSO"
msgid "Stats"
msgstr "Statystyki"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Status"
msgstr "Status"
@@ -7840,14 +7971,14 @@ msgstr "Klient Stripe został utworzony"
msgid "Stripe Customer ID"
msgstr "Identyfikator klienta Stripe"
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Subject"
msgstr "Temat"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Subject <0>(Optional)0>"
msgstr "Temat <0>(opcjonalnie)0>"
@@ -7866,8 +7997,8 @@ msgstr "Data przesłania"
msgid "Subscribe"
msgstr "Subskrybuj"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Subscription"
msgstr "Subskrypcja"
@@ -7891,59 +8022,65 @@ msgstr "Subskrypcja"
msgid "Subscription invalid"
msgstr "Subskrypcja jest nieprawidłowa"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/verify-email-banner.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/organisation-update-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Subscription Status"
+msgstr "Status subskrypcji"
+
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-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-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-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/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/verify-email-banner.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Success"
msgstr "Sukces"
@@ -7959,8 +8096,14 @@ msgstr "Pomyślnie utworzono: {successCount}"
msgid "Summary:"
msgstr "Podsumowanie:"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+msgid "support"
+msgstr "wsparcie"
+
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "Support"
msgstr "Wsparcie"
@@ -7981,11 +8124,11 @@ msgid "Sync failed, changes not saved"
msgstr "Synchronizacja nie powiodła się. Zmiany nie zostały zapisane"
#: packages/lib/utils/document-audit-logs.ts
-msgctxt "Audit log format"
msgid "System auto inserted fields"
msgstr "System automatycznie uzupełnił pole"
#: packages/lib/utils/document-audit-logs.ts
+msgctxt "Audit log format"
msgid "System auto inserted fields"
msgstr "System automatycznie uzupełnił pole"
@@ -7997,10 +8140,10 @@ msgstr "Wymagania systemowe"
msgid "System Theme"
msgstr "Motyw systemowy"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team"
msgstr "Zespół"
@@ -8017,8 +8160,8 @@ msgstr "Administrator zespołu"
msgid "Team Assignments"
msgstr "Przypisane zespoły"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Team Count"
msgstr "Liczba zespołów"
@@ -8081,14 +8224,14 @@ msgstr "Użytkownik zespołu"
msgid "Team Members"
msgstr "Użytkownicy zespołu"
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "Team members have been added."
msgstr "Użytkownicy zespołu zostali dodani."
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
msgid "Team Name"
msgstr "Nazwa zespołu"
@@ -8105,9 +8248,9 @@ msgstr "Tylko dla zespołu"
msgid "Team only templates are not linked anywhere and are visible only to your team."
msgstr "Szablony tylko dla zespołu nie są nigdzie linkowane i są widoczne tylko w zespole."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team Role"
msgstr "Rola w zespole"
@@ -8123,18 +8266,18 @@ msgstr "Ustawienia zespołu"
msgid "Team url"
msgstr "Adres URL zespołu"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Team URL"
msgstr "Adres URL zespołu"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
msgid "Teams"
msgstr "Zespoły"
@@ -8146,13 +8289,13 @@ msgstr "Zespoły pomagają organizować pracę i współpracować z innymi. Utw
msgid "Teams that this organisation group is currently assigned to"
msgstr "Zespoły, do których przypisana jest grupa organizacji"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/public-profile-template-manage-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.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/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
msgid "Template"
msgstr "Szablon"
@@ -8217,17 +8360,17 @@ msgstr "Tytuł szablonu"
msgid "Template updated successfully"
msgstr "Szablon został zaktualizowany"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Template uploaded"
msgstr "Szablon został przesłany"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.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
msgid "Templates"
msgstr "Szablony"
@@ -8235,8 +8378,10 @@ msgstr "Szablony"
msgid "Templates allow you to quickly generate documents with pre-filled recipients and fields."
msgstr "Szablony umożliwiają szybkie generowanie dokumentów z wcześniej wypełnionymi polami i odbiorcami."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Test"
+msgstr "Test"
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Test Webhook"
msgstr "Testuj webhook"
@@ -8249,23 +8394,23 @@ msgstr "Wysłanie webhooka nie powiodło się"
msgid "Test webhook sent"
msgstr "Testowy webhook został wysłany"
+#: 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/envelope-editor/envelope-editor-fields-drag-drop.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
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/types.ts
-#: packages/ui/primitives/document-flow/add-fields.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Text"
msgstr "Tekst"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Text Align"
msgstr "Wyrównanie tekstu"
@@ -8325,14 +8470,14 @@ msgstr "Zawartość do wyświetlenia w banerze. Dozwolone są znaki HTML"
msgid "The default email to use when sending emails to recipients"
msgstr "Domyślny adres e-mail do wysyłania wiadomości do odbiorców"
-#: 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
+#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "The direct link has been copied to your clipboard"
msgstr "Bezpośredni link został skopiowany do schowka"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "The display name for this email address"
msgstr "Nazwa wyświetlana dla adresu e-mail"
@@ -8352,8 +8497,8 @@ msgstr "Dokument został zakończony. Postępuj zgodnie z instrukcjami na stroni
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 "Właściciel został poinformowany o odrzuceniu dokumentu. Może się z Tobą skontaktować, jeśli będzie to konieczne. Nie musisz nic więcej robić."
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "The document owner has been notified of your decision. They may contact you with further instructions if necessary."
msgstr "Właściciel dokumentu został poinformowany o Twojej decyzji. Może się z Tobą skontaktować, jeśli będzie to konieczne."
@@ -8373,8 +8518,8 @@ msgstr "Dokument zostanie natychmiast wysłany do odbiorców."
msgid "The document you are looking for could not be found."
msgstr "Dokument, którego szukasz, nie został znaleziony."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
msgid "The document you are looking for may have been removed, renamed or may have never existed."
msgstr "Dokument, którego szukasz, mógł zostać usunięty, zmieniony lub mógł nigdy nie istnieć."
@@ -8394,8 +8539,8 @@ msgstr "Domena, której szukasz, mogła zostać usunięta, zmieniona lub mogła
msgid "The email or password provided is incorrect"
msgstr "Adres e-mail lub hasło są nieprawidłowe"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The events that will trigger a webhook to be sent to your URL."
msgstr "Zdarzenia, które spowodują wysłanie webhooka na Twój adres URL."
@@ -8530,8 +8675,8 @@ msgid "The signer's name"
msgstr "Nazwa podpisującego"
#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "The signing link has been copied to your clipboard."
msgstr "Link do podpisywania został skopiowany do schowka."
@@ -8597,8 +8742,8 @@ msgstr "Rozmiar czcionki podpisu pisanego"
msgid "The types of signatures that recipients are allowed to use when signing the document."
msgstr "Rodzaje podpisów, których odbiorcy mogą używać podczas podpisywania dokumentu."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The URL for Documenso to send webhook events to."
msgstr "Adres URL dla Documenso do wysyłania zdarzeń webhook."
@@ -8614,7 +8759,7 @@ msgstr "Weryfikacja dwuetapowa została zresetowana."
msgid "The webhook has been successfully deleted."
msgstr "Webhook został pomyślnie usunięty."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The webhook has been updated successfully."
msgstr "Webhook został pomyślnie zaktualizowany."
@@ -8622,7 +8767,7 @@ msgstr "Webhook został pomyślnie zaktualizowany."
msgid "The webhook was successfully created."
msgstr "Webhook został pomyślnie utworzony."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "The webhook you are looking for may have been removed, renamed or may have never existed."
msgstr "Webhook, którego szukasz, mógł zostać usunięty, zmieniony lub mógł nigdy nie istnieć."
@@ -8666,9 +8811,9 @@ msgstr "Konto nie zostało zweryfikowane. Zweryfikuj konto przed zalogowaniem si
msgid "This action is irreversible. Please ensure you have informed the user before proceeding."
msgstr "Ta akcja jest nieodwracalna. Upewnij się, że użytkownik został poinformowany."
-#: 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
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "This action is not reversible. Please be certain."
msgstr "Ta akcja jest nieodwracalna."
@@ -8696,8 +8841,8 @@ msgstr "Nie można usunąć dokumentu. Spróbuj ponownie."
msgid "This document could not be downloaded at this time. Please try again."
msgstr "Nie można pobrać dokumentu. Spróbuj ponownie."
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
msgid "This document could not be duplicated at this time. Please try again."
msgstr "Nie można zduplikować dokumentu. Spróbuj ponownie."
@@ -8705,6 +8850,7 @@ msgstr "Nie można zduplikować dokumentu. Spróbuj ponownie."
msgid "This document could not be re-sent at this time. Please try again."
msgstr "Nie można ponownie wysłać dokumentu. Spróbuj ponownie."
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
msgid "This document has already been sent to this recipient. You can no longer edit this recipient."
msgstr "Dokument został już wysłany do odbiorcy, więc nie możesz go już edytować."
@@ -8873,9 +9019,9 @@ msgstr "Token jest nieprawidłowy lub wygasł."
msgid "This token is invalid or has expired. Please contact your team for a new invitation."
msgstr "Zaproszenie jest nieprawidłowe lub wygasło. Skontaktuj się ze swoim zespołem."
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "This URL is already in use."
msgstr "Adres URL jest już zajęty."
@@ -8915,21 +9061,21 @@ msgstr "Czas"
msgid "Time zone"
msgstr "Strefa czasowa"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Time Zone"
msgstr "Strefa czasowa"
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Title"
msgstr "Tytuł"
@@ -8964,12 +9110,12 @@ msgid "To change the email you must remove and add a new email address."
msgstr "Aby zmienić adres e-mail, musisz usunąć stary adres i dodać nowy."
#. placeholder {0}: user.email
-#. placeholder {0}: userToEnable.email
#. placeholder {0}: userToDisable.email
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#. placeholder {0}: userToEnable.email
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "To confirm, please enter the accounts email address <0/>({0})."
msgstr "Wpisz adres e-mail konta <0/>({0})."
@@ -8981,8 +9127,8 @@ msgstr "Wpisz powód"
msgid "To enable two-factor authentication, scan the following QR code using your authenticator app."
msgstr "Aby włączyć weryfikację dwuetapową, zeskanuj kod QR za pomocą aplikacji uwierzytelniającej."
-#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
msgid "To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox."
msgstr "Aby uzyskać dostęp do konta, potwierdź adres e-mail, klikając na link potwierdzający w wiadomości."
@@ -8997,8 +9143,8 @@ msgstr "Aby oznaczyć dokument jako wyświetlony, musisz być zalogowany."
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "To proceed further, please set at least one value for the {0} field."
msgstr "Aby kontynuować, ustaw co najmniej jedną wartość do pola {0}."
@@ -9074,8 +9220,8 @@ msgstr "Łączna liczba podpisujących, którzy się zarejestrowali"
msgid "Total Users"
msgstr "Łączna liczba użytkowników"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Triggers"
msgstr "Wyzwalacze"
@@ -9087,8 +9233,8 @@ msgstr "Weryfikacja dwuetapowa"
msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app."
msgstr "Kody odzyskiwania są używane do odzyskania dostępu do konta, w przypadku utraty dostępu do aplikacji uwierzytelniającej."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Two-Factor Authentication"
msgstr "Weryfikacja dwuetapowa"
@@ -9108,21 +9254,25 @@ msgstr "Weryfikacja dwuetapowa konta została wyłączona. Wpisywanie kodu z apl
msgid "Two-Factor Re-Authentication"
msgstr "Weryfikacja dwuetapowa"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Type"
msgstr "Typ"
#: packages/lib/constants/document.ts
-msgctxt "Type signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Type signature"
msgid "Type"
-msgstr "Pisany"
+msgstr "Wpisz"
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Type a command or search..."
msgstr "Wpisz polecenie lub wyszukaj..."
+#: packages/ui/primitives/signature-pad/signature-pad-type.tsx
+msgid "Type your signature"
+msgstr "Wpisz swój podpis"
+
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
msgid "Typed signatures are not allowed. Please draw your signature."
msgstr "Podpisy pisane nie są dozwolone. Narysuj swój podpis."
@@ -9209,11 +9359,11 @@ msgstr "Nie można skonfigurować weryfikacji dwuetapowej"
msgid "Unable to sign in"
msgstr "Nie można się zalogować"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Unauthorized"
msgstr "Nieautoryzowany"
@@ -9221,15 +9371,15 @@ msgstr "Nieautoryzowany"
msgid "Uncompleted"
msgstr "Niezakończono"
-#: 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
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.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
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Unknown"
msgstr "Nieznany"
@@ -9258,27 +9408,28 @@ msgstr "Odepnij"
msgid "Untitled Group"
msgstr "Grupa bez nazwy"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: 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/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Update"
@@ -9288,8 +9439,8 @@ msgstr "Zaktualizuj"
msgid "Update Banner"
msgstr "Zaktualizuj baner"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Update Billing"
msgstr "Zaktualizuj płatności"
@@ -9313,9 +9464,9 @@ msgstr "Zaktualizuj pola"
msgid "Update organisation"
msgstr "Zaktualizuj organizację"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "Update organisation member"
msgstr "Zaktualizuj użytkownika organizacji"
@@ -9331,16 +9482,16 @@ msgstr "Zaktualizuj hasło"
msgid "Update profile"
msgstr "Zaktualizuj profil"
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
msgid "Update Recipient"
msgstr "Zaktualizuj odbiorcę"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Update role"
msgstr "Zaktualizuj rolę"
@@ -9375,10 +9526,6 @@ msgstr "Zaktualizuj rolę i dodaj wymagane pola dla bezpośredniego odbiorcy. Os
msgid "Update user"
msgstr "Zaktualizuj użytkownika"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "Update webhook"
-msgstr "Zaktualizuj webhook"
-
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
msgid "Updated {organisationMemberName} to {roleLabel}."
msgstr "Zaktualizowano użytkownika {organisationMemberName} do roli {roleLabel}."
@@ -9391,8 +9538,8 @@ msgstr "Aktualizowanie hasła..."
msgid "Updating Your Information"
msgstr "Aktualizowanie swoich danych"
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "Upgrade"
msgstr "Ulepsz"
@@ -9406,14 +9553,14 @@ msgid "Upgrade your plan to upload more documents"
msgstr "Ulepsz plan, aby przesłać więcej dokumentów"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
msgid "Upload"
msgstr "Przesłany"
#: packages/lib/constants/document.ts
-msgctxt "Upload signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Upload signature"
msgid "Upload"
-msgstr "Przesłany"
+msgstr "Prześlij"
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
msgid "Upload a CSV file to create multiple documents from this template. Each row represents one document with its recipient details."
@@ -9443,8 +9590,8 @@ msgstr "Prześlij niestandardowy dokument"
msgid "Upload disabled"
msgstr "Przesyłanie jest wyłączone"
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: packages/ui/primitives/document-upload-button.tsx
msgid "Upload Document"
msgstr "Prześlij dokument"
@@ -9454,8 +9601,8 @@ msgid "Upload documents and add recipients"
msgstr "Prześlij dokumenty i dodaj odbiorców"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Upload failed"
msgstr "Przesyłanie nie powiodło się"
@@ -9476,8 +9623,8 @@ msgstr "Prześlij szablon dokumentu"
msgid "Upload your brand logo (max 5MB, JPG, PNG, or WebP)"
msgstr "Prześlij logo marki (maksymalnie 5 MB, JPG, PNG lub WebP)"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Uploaded by"
msgstr "Przesłano przez"
@@ -9506,18 +9653,18 @@ msgstr "Adres URL"
msgid "Use"
msgstr "Użyj"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Authenticator"
msgstr "Użyj aplikacji uwierzytelniającej"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Backup Code"
msgstr "Użyj kodu zapasowego"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
msgid "Use Template"
msgstr "Użyj szablonu"
@@ -9529,8 +9676,8 @@ msgstr "Użyj aplikacji uwierzytelniającej, aby wygenerować kod"
msgid "Use your passkey for authentication"
msgstr "Użyj klucza dostępu do uwierzytelniania"
-#: apps/remix/app/components/tables/internal-audit-log-table.tsx
#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/internal-audit-log-table.tsx
msgid "User"
msgstr "Użytkownik"
@@ -9546,10 +9693,10 @@ msgstr "Użytkownik nie ma hasła."
msgid "User not found"
msgstr "Użytkownik nie został znaleziony"
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "User not found."
msgstr "Użytkownik nie został znaleziony."
@@ -9569,15 +9716,15 @@ msgstr "Ustawienia użytkownika"
msgid "User with this email already exists. Please use a different email address."
msgstr "Użytkownik z tym adresem e-mail już istnieje. Użyj innego adresu."
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
msgid "Users"
msgstr "Użytkownicy"
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Validation"
msgstr "Walidacja"
@@ -9585,9 +9732,9 @@ msgstr "Walidacja"
msgid "Validation failed"
msgstr "Walidacja nie powiodła się"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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 "Value"
@@ -9629,8 +9776,8 @@ msgstr "Zweryfikuj adres e-mail"
msgid "Verify your email address to unlock all features."
msgstr "Zweryfikuj adres e-mail, aby odblokować wszystkie funkcje."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Verify your email to upload documents."
msgstr "Zweryfikuj adres e-mail, aby przesłać dokumenty."
@@ -9638,8 +9785,8 @@ msgstr "Zweryfikuj adres e-mail, aby przesłać dokumenty."
msgid "Verify your team email address"
msgstr "Zweryfikuj adres e-mail zespołu"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Vertical"
msgstr "Pionowo"
@@ -9648,15 +9795,15 @@ msgstr "Pionowo"
msgid "Vertical Align"
msgstr "Wyrównanie w pionie"
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/inbox-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
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.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/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
msgid "View"
msgstr "Wyświetl"
@@ -9689,13 +9836,13 @@ msgstr "Wyświetl powiązane dokumenty"
msgid "View all security activity related to your account."
msgstr "Wyświetl aktywności związane z bezpieczeństwem konta."
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "View and manage all active sessions for your account."
msgstr "Zarządzaj aktywnymi sesjami konta."
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "View and manage all login methods linked to your account."
msgstr "Zarządzaj metodami logowania do Twojego konta."
@@ -9711,14 +9858,14 @@ msgstr "Wyświetl rekordy DNS"
msgid "View document"
msgstr "Wyświetl dokument"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.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
-#: packages/email/template-components/template-document-rejected.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: packages/email/template-components/template-document-invite.tsx
+#: packages/email/template-components/template-document-rejected.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
msgid "View Document"
msgstr "Wyświetl dokument"
@@ -9738,6 +9885,10 @@ msgstr "Wyświetl dokument do podpisania"
msgid "View documents associated with this email"
msgstr "Wyświetl dokumenty powiązane z tym adresem e-mail"
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+msgid "View insights"
+msgstr "Wyświetl statystyki"
+
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
msgid "View invites"
msgstr "Wyświetl zaproszenia"
@@ -9771,9 +9922,9 @@ msgstr "Wyświetl zespoły"
msgid "View the DNS records for this email domain"
msgstr "Wyświetl rekordy DNS dla tej domeny"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Viewed"
msgstr "Wyświetlono"
@@ -9821,8 +9972,8 @@ msgstr "Oczekiwanie na innych, aby zakończyć podpisywanie."
msgid "Waiting for others to sign"
msgstr "Oczekiwanie na podpisy innych"
-#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
#: apps/remix/app/components/embed/embed-document-waiting-for-turn.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
msgid "Waiting for Your Turn"
msgstr "Oczekiwanie na Ciebie"
@@ -9838,17 +9989,17 @@ msgstr "Chcesz mieć profil publiczny?"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
msgid "Warning: Assistant as last signer"
msgstr "Ostrzeżenie: Asystent jako ostatni podpisujący"
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
msgstr "Nie możemy przejść do płatności. Spróbuj ponownie lub skontaktuj się z pomocą techniczną."
@@ -9895,12 +10046,12 @@ msgstr "Wystąpił błąd podczas usuwania bezpośredniego linku do szablonu. Sp
msgid "We encountered an error while sending the test webhook. Please check your endpoint and try again."
msgstr "Wystąpił błąd podczas wysyłania testowego webhooka. Sprawdź punkt końcowy i spróbuj ponownie."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "We encountered an error while updating the webhook. Please try again later."
msgstr "Wystąpił błąd podczas aktualizowania webhooka. Spróbuj ponownie później."
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "We encountered an unknown error while attempting to add team members. Please try again later."
msgstr "Wystąpił nieznany błąd podczas dodawania użytkowników zespołu. Spróbuj ponownie później."
@@ -9916,8 +10067,8 @@ msgstr "Wystąpił nieznany błąd podczas próby dodania domeny. Spróbuj ponow
msgid "We encountered an unknown error while attempting to create a group. Please try again later."
msgstr "Wystąpił nieznany błąd podczas próby utworzenia grupy. Spróbuj ponownie później."
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "We encountered an unknown error while attempting to create a organisation. Please try again later."
msgstr "Wystąpił nieznany błąd podczas próby utworzenia organizacji. Spróbuj ponownie później."
@@ -9973,8 +10124,8 @@ msgstr "Wystąpił nieznany błąd podczas próby usunięcia adresu e-mail. Spr
msgid "We encountered an unknown error while attempting to remove this envelope item. Please try again later."
msgstr "Wystąpił nieznany błąd podczas próby usunięcia elementu koperty. Spróbuj ponownie później."
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this group. Please try again later."
msgstr "Wystąpił nieznany błąd podczas próby usunięcia grupy. Spróbuj ponownie później."
@@ -9982,8 +10133,8 @@ msgstr "Wystąpił nieznany błąd podczas próby usunięcia grupy. Spróbuj pon
msgid "We encountered an unknown error while attempting to remove this template from your profile. Please try again later."
msgstr "Wystąpił nieznany błąd podczas próby usunięcia szablonu z profilu. Spróbuj ponownie później."
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this user. Please try again later."
msgstr "Wystąpił nieznany błąd podczas próby usunięcia użytkownika. Spróbuj ponownie później."
@@ -10000,10 +10151,10 @@ msgstr "Wystąpił nieznany błąd podczas próby zresetowania hasła. Spróbuj
msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support."
msgstr "Wystąpił nieznany błąd podczas próby unieważnienia dostępu. Spróbuj ponownie lub skontaktuj się z pomocą techniczną."
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
msgid "We encountered an unknown error while attempting to sign you In. Please try again later."
msgstr "Wystąpił nieznany błąd podczas próby logowania. Spróbuj ponownie później."
@@ -10025,13 +10176,13 @@ msgstr "Wystąpił nieznany błąd podczas próby zaktualizowania koperty. Spró
msgid "We encountered an unknown error while attempting to update the template. Please try again later."
msgstr "Wystąpił nieznany błąd podczas próby zaktualizowania szablonu. Spróbuj ponownie później."
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this organisation member. Please try again later."
msgstr "Wystąpił nieznany błąd podczas próby zaktualizowania użytkownika organizacji. Spróbuj ponownie później."
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this team member. Please try again later."
msgstr "Wystąpił nieznany błąd podczas próby zaktualizowania użytkownika zespołu. Spróbuj ponownie później."
@@ -10039,8 +10190,8 @@ msgstr "Wystąpił nieznany błąd podczas próby zaktualizowania użytkownika z
msgid "We encountered an unknown error while attempting to update your organisation. Please try again later."
msgstr "Wystąpił nieznany błąd podczas próby zaktualizowania organizacji. Spróbuj ponownie później."
-#: apps/remix/app/components/forms/password.tsx
#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
msgid "We encountered an unknown error while attempting to update your password. Please try again later."
msgstr "Wystąpił nieznany błąd podczas próby zaktualizowania hasła. Spróbuj ponownie później."
@@ -10084,9 +10235,9 @@ msgstr "Nie mogliśmy utworzyć konta. Sprawdź dane i spróbuj ponownie."
msgid "We were unable to disable two-factor authentication for your account. Please ensure that you have entered your password and backup code correctly and try again."
msgstr "Nie mogliśmy wyłączyć weryfikacji dwuetapowej konta. Sprawdź poprawność hasła i kodu zapasowego, a następnie spróbuj ponownie."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "We were unable to log you out at this time."
msgstr "Nie mogliśmy Cię wylogować."
@@ -10099,11 +10250,11 @@ msgstr "Nie mogliśmy zmienić Twojego profilu publicznego na prywatny. Spróbuj
msgid "We were unable to setup two-factor authentication for your account. Please ensure that you have entered your code correctly and try again."
msgstr "Nie mogliśmy skonfigurować weryfikacji dwuetapowej konta. Sprawdź poprawność kodu, a następnie spróbuj ponownie."
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
msgid "We were unable to submit this document at this time. Please try again later."
msgstr "Nie mogliśmy przesłać dokumentu. Spróbuj ponownie później."
@@ -10122,8 +10273,8 @@ msgstr "Nie mogliśmy zaktualizować ustawień dokumentu. Spróbuj ponownie pó
msgid "We were unable to update your email preferences at this time, please try again later"
msgstr "Nie mogliśmy zaktualizować ustawień adresu e-mail. Spróbuj ponownie później"
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "We were unable to verify your details. Please try again or contact support"
msgstr "Nie mogliśmy zweryfikować szczegółów. Spróbuj ponownie lub skontaktuj się z pomocą techniczną"
@@ -10135,14 +10286,14 @@ msgstr "Nie mogliśmy zweryfikować adresu e-mail."
msgid "We were unable to verify your email. If your email is not verified already, please try again."
msgstr "Nie mogliśmy zweryfikować adresu e-mail. Jeśli adres e-mail nie został jeszcze zweryfikowany, spróbuj ponownie."
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We will generate signing links for you, which you can send to the recipients through your method of choice."
msgstr "Wygenerujemy linki do podpisywania, które możesz wysłać do odbiorców."
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We won't send anything to notify recipients."
msgstr "Odbiorcy nie otrzymają żadnych powiadomień."
@@ -10155,8 +10306,8 @@ msgstr "Skontaktujemy się z Tobą wkrótce."
msgid "We'll send a 6-digit code to your email"
msgstr "Otrzymasz wiadomość z 6-cyfrowym kodem"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
msgid "We're all empty"
msgstr "Pusto"
@@ -10176,6 +10327,11 @@ msgstr "Wysłaliśmy Ci wiadomość z 6-cyfrowym kodem. Wpisz go poniżej, aby z
msgid "We've sent a confirmation email to <0>{email}0>. Please check your inbox and click the link in the email to verify your account."
msgstr "Wysłaliśmy wiadomość weryfikacyjną na adres <0>{email}0>. Sprawdź skrzynkę odbiorczą i kliknij link w wiadomości, aby zweryfikować konto."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Webhook"
+msgstr "Webhook"
+
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
msgid "Webhook created"
msgstr "Webhook został utworzony"
@@ -10184,23 +10340,31 @@ msgstr "Webhook został utworzony"
msgid "Webhook deleted"
msgstr "Webhook został usunięty"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook Details"
+msgstr "Szczegóły webhooka"
+
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Webhook not found"
msgstr "Webhook nie został znaleziony"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook successfully sent"
+msgstr "Webhook został pomyślnie wysłany"
+
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Webhook updated"
msgstr "Webhook został zaktualizowany"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Webhook URL"
msgstr "Adres URL webhooka"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Webhooks"
msgstr "Webhooki"
@@ -10236,10 +10400,10 @@ msgstr "Czy chcesz edytować dokument?"
msgid "What you can do with teams:"
msgstr "Dzięki zespołom możesz:"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "When enabled, signers can choose who should sign next in the sequence instead of following the predefined order."
msgstr "Podpisujący mogą wybrać, kto powinien podpisać jako następny w kolejności, zamiast postępować zgodnie z wcześniej ustaloną kolejnością."
@@ -10279,20 +10443,20 @@ msgstr "Wycofanie zgody"
msgid "Write a description to display on your public profile"
msgstr "Wpisz opis, który będzie wyświetlany w profilu publicznym"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Yearly"
msgstr "Rocznie"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Yes"
msgstr "Tak"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: packages/lib/utils/document-audit-logs.ts
msgid "You"
msgstr "Ty"
@@ -10360,10 +10524,10 @@ msgstr "Zamierzasz usunąć następujący dokument i wszystkie powiązane pola"
msgid "You are about to remove the following email from <0>{0}0>."
msgstr "Zamierzasz usunąć następujący adres e-mail z organizacji <0>{0}0>."
-#. placeholder {0}: team.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#. placeholder {0}: team.name
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "You are about to remove the following group from <0>{0}0>."
msgstr "Masz zamiar usunąć następującą grupę z <0>{0}0>."
@@ -10403,8 +10567,8 @@ msgstr "Aktualizujesz adres <0>{0}0>"
msgid "You are currently updating <0>{memberName}.0>"
msgstr "Aktualizujesz użytkownika <0>{memberName}0>."
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "You are currently updating <0>{organisationMemberName}.0>"
msgstr "Aktualizujesz użytkownika <0>{organisationMemberName}0>."
@@ -10487,8 +10651,8 @@ msgid "You can view the document and its status by clicking the button below."
msgstr "Możesz wyświetlić dokument i jego status, klikając przycisk poniżej."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "You cannot add assistants when signing order is disabled."
msgstr "Nie możesz dodać przygotowujących, gdy kolejność podpisywania jest wyłączona."
@@ -10516,21 +10680,21 @@ msgstr "Nie możesz edytować użytkownika zespołu, który ma wyższą rolę ni
msgid "You cannot remove members from this team if the inherit member feature is enabled."
msgstr "Nie możesz usunąć użytkowników zespołu, jeśli funkcja odziedziczenia użytkownika jest włączona."
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "You cannot upload documents at this time."
msgstr "Nie możesz przesyłać dokumentów w tej chwili."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload encrypted PDFs"
msgstr "Nie możesz przesyłać zaszyfrowanych plików PDF"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload more than {maximumEnvelopeItemCount} items per envelope."
msgstr "Nie możesz przesłać więcej niż {maximumEnvelopeItemCount} elementów na kopertę."
@@ -10546,6 +10710,10 @@ msgstr "Obecnie nie masz dostępu do żadnych zespołów w organizacji. Skontakt
msgid "You do not have permission to create a token for this team"
msgstr "Nie masz uprawnień do utworzenia tokena dla tego zespołu"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "You don't manage billing for any organisations."
+msgstr "Nie zarządzasz rozliczeniami dla żadnej organizacji."
+
#: packages/email/template-components/template-document-cancel.tsx
msgid "You don't need to sign it anymore."
msgstr "Nie musisz już go podpisywać."
@@ -10574,8 +10742,8 @@ msgstr "Dołącz do organizacji {0} w Documenso"
msgid "You have been invited to join the following organisation"
msgstr "Masz zaproszenie do dołączenia do następującej organizacji"
-#: packages/lib/server-only/recipient/set-document-recipients.ts
#: packages/lib/server-only/recipient/delete-envelope-recipient.ts
+#: packages/lib/server-only/recipient/set-document-recipients.ts
msgid "You have been removed from a document"
msgstr "Usunięto Cię z dokumentu"
@@ -10589,8 +10757,8 @@ msgid "You have declined the invitation from <0>{0}0> to join their organisati
msgstr "Odrzucono zaproszenie dołączenia do organizacji <0>{0}0>."
#. placeholder {0}: `"${envelope.title}"`
-#: packages/lib/server-only/document/resend-document.ts
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
+#: packages/lib/server-only/document/resend-document.ts
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
msgstr "Sprawdź i {recipientActionVerb} dokument utworzony przez Ciebie."
@@ -10606,9 +10774,9 @@ msgstr "Brak utworzonych szablonów. Prześlij, aby utworzyć."
msgid "You have not yet created or received any documents. To create a document please upload one."
msgstr "Brak utworzonych lub odebranych dokumentów. Prześlij, aby utworzyć."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached the limit of the number of files per envelope"
msgstr "Osiągnięto maksymalną liczbę plików na kopertę"
@@ -10621,14 +10789,14 @@ msgstr "Osiągnięto maksymalną liczbę {0} bezpośrednich szablonów. <0>Uleps
msgid "You have reached the maximum number of teams for your plan. Please contact sales at <0>{SUPPORT_EMAIL}0> if you would like to adjust your plan."
msgstr "Osiągnięto maksymalną liczbę zespołów w planie. Jeśli chcesz zmienić swój plan, skontaktuj się z działem sprzedaży pod adresem <0>{SUPPORT_EMAIL}0>."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached your document limit for this month. Please upgrade your plan."
msgstr "Osiągnięto maksymalną miesięczną liczbę dokumentów. Zaktualizuj plan."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
msgid "You have reached your document limit."
msgstr "Osiągnięto maksymalną liczbę dokumentów."
@@ -10641,8 +10809,8 @@ msgstr "Osiągnięto maksymalną liczbę dokumentów. <0>Ulepsz konto, aby konty
msgid "You have rejected the document '{documentName}'"
msgstr "Dokument „{documentName}” został odrzucony"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "You have rejected this document"
msgstr "Dokument został odrzucony"
@@ -10654,8 +10822,8 @@ msgstr "Podpisałeś „{documentName}”"
msgid "You have successfully left this organisation."
msgstr "Opuszczono organizację."
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "You have successfully registered. Please verify your account by clicking on the link you received in the email."
msgstr "Konto zostało pomyślnie utworzone. Zweryfikuj je za pomocą linku w wiadomości weryfikacyjnej."
@@ -10712,10 +10880,10 @@ msgstr "Grupa zespołu została zaktualizowana."
msgid "You have verified your email address for <0>{0}0>."
msgstr "Adres e-mail zespołu <0>{0}0> został zweryfikowany."
-#: 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
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "You must enter '{deleteMessage}' to proceed"
msgstr "Wpisz „{deleteMessage}”, aby kontynuować"
@@ -10723,8 +10891,8 @@ msgstr "Wpisz „{deleteMessage}”, aby kontynuować"
msgid "You must select at least one item"
msgstr "Wybierz co najmniej jednego odbiorcę"
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
msgid "You must type '{deleteMessage}' to confirm"
msgstr "Wpisz „{deleteMessage}”, aby potwierdzić"
@@ -10744,8 +10912,8 @@ msgstr "Musisz być administratorem, aby zarządzać tokenami API."
msgid "You need to be logged in as <0>{email}0> to view this page."
msgstr "Musisz być zalogowany jako <0>{email}0>, aby zobaczyć tę stronę."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "You need to be logged in to view this page."
msgstr "Musisz być zalogowany, aby zobaczyć tę stronę."
@@ -10762,8 +10930,8 @@ msgid "You will now be required to enter a code from your authenticator app when
msgstr "Kod z aplikacji uwierzytelniającej będzie wymagany podczas logowania."
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "You will receive an Email copy of the signed document once everyone has signed."
-msgstr "Otrzymasz kopię dokumentu, gdy wszyscy go podpiszą."
+msgid "You will receive an email copy of the signed document once everyone has signed."
+msgstr "Otrzymasz kopię podpisanego dokumentu e‑mailem, gdy wszyscy go podpiszą."
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Your Account"
@@ -10818,8 +10986,8 @@ msgstr "Obecny plan jest niezapłacony."
msgid "Your direct signing templates"
msgstr "Twoje bezpośrednie szablony do podpisywania"
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Your document failed to upload."
msgstr "Nie udało się przesłać dokumentu"
@@ -10847,9 +11015,9 @@ msgstr "Twój dokument został pomyślnie wysłany."
msgid "Your document has been successfully duplicated."
msgstr "Twój dokument został pomyślnie zduplikowany."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your document has been uploaded successfully."
msgstr "Twój dokument został pomyślnie przesłany."
@@ -10909,8 +11077,8 @@ msgstr "Obecne tokeny"
msgid "Your Name"
msgstr "Twoja nazwa"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your new password cannot be the same as your old password."
msgstr "Nowe hasło nie może być takie samo jak stare hasło."
@@ -10926,8 +11094,8 @@ msgstr "Organizacja została usunięta."
msgid "Your organisation has been successfully updated."
msgstr "Organizacja została zaktualizowana."
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your password has been updated successfully."
msgstr "Twoje hasło zostało pomyślnie zaktualizowane."
@@ -10967,8 +11135,8 @@ msgstr "Profil publiczny został zaktualizowany."
msgid "Your recovery code has been copied to your clipboard."
msgstr "Kod odzyskiwania został skopiowany do schowka."
-#: 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/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Your recovery codes are listed below. Please store them in a safe place."
msgstr "To są Twoje kody odzyskiwania. Przechowuj je w bezpiecznym miejscu."
@@ -11000,8 +11168,8 @@ msgstr "Twój szablon został pomyślnie zduplikowany."
msgid "Your template has been successfully deleted."
msgstr "Twój szablon został pomyślnie usunięty."
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your template has been uploaded successfully."
msgstr "Twój szablon został pomyślnie przesłany."
diff --git a/packages/lib/translations/pt-BR/web.po b/packages/lib/translations/pt-BR/web.po
index 6d3490de0..618fa1c77 100644
--- a/packages/lib/translations/pt-BR/web.po
+++ b/packages/lib/translations/pt-BR/web.po
@@ -13,10 +13,6 @@ msgstr ""
"Language-Team: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
-msgid " Enable direct link signing"
-msgstr " Ativar assinatura por link direto"
-
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid ".PDF documents accepted (max {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB)"
msgstr "Documentos .PDF aceitos (máx. {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB)"
@@ -51,9 +47,9 @@ msgstr "\"{placeholderEmail}\", em nome de \"Team Name\", convidou você para as
msgid "\"Team Name\" has invited you to sign \"example document\"."
msgstr "\"Team Name\" convidou você para assinar \"example document\"."
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "(You)"
msgstr "(Você)"
@@ -63,8 +59,8 @@ msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
msgstr "{0, plural, one {(1 caractere a mais)} other {(# caracteres a mais)}}"
#. placeholder {0}: Math.abs(remaningLength)
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{0, plural, one {# character over the limit} other {# characters over the limit}}"
msgstr "{0, plural, one {# caractere acima do limite} other {# caracteres acima do limite}}"
@@ -78,6 +74,11 @@ msgstr "{0, plural, one {# caractere restante} other {# caracteres restantes}}"
msgid "{0, plural, one {# document} other {# documents}}"
msgstr "{0, plural, one {# documento} other {# documentos}}"
+#. placeholder {0}: row.original.eventTriggers.length
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "{0, plural, one {# Event} other {# Events}}"
+msgstr ""
+
#. placeholder {0}: assistantFields.filter((field) => field.recipientId === r.id).length
#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "{0, plural, one {# field} other {# fields}}"
@@ -93,6 +94,11 @@ msgstr "{0, plural, one {# pasta} other {# pastas}}"
msgid "{0, plural, one {# recipient} other {# recipients}}"
msgstr "{0, plural, one {# destinatário} other {# destinatários}}"
+#. placeholder {0}: envelope.recipients.length
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+msgid "{0, plural, one {# Recipient} other {# Recipients}}"
+msgstr ""
+
#. placeholder {0}: org.teams.length
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
msgid "{0, plural, one {# team} other {# teams}}"
@@ -110,16 +116,16 @@ msgid "{0, plural, one {<0>You have <1>11> pending invitation0>} other {<2>Y
msgstr "{0, plural, one {<0>Você tem <1>11> convite pendente0>} other {<2>Você tem <3>#3> convites pendentes2>}}"
#. placeholder {0}: recipientFieldsRemaining.length
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "{0, plural, one {1 Field Remaining} other {# Fields Remaining}}"
msgstr "{0, plural, one {1 campo restante} other {# campos restantes}}"
#. placeholder {0}: fields.filter((field) => field.envelopeItemId === doc.id).length
#. placeholder {0}: remainingFields.filter((field) => field.envelopeItemId === doc.id).length
-#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
msgid "{0, plural, one {1 Field} other {# Fields}}"
msgstr "{0, plural, one {1 campo} other {# campos}}"
@@ -138,14 +144,19 @@ msgstr "{0, plural, one {1 destinatário} other {# destinatários}}"
msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}"
msgstr "{0, plural, one {Aguardando 1 destinatário} other {Aguardando # destinatários}}"
-#. placeholder {0}: route.label
#. placeholder {0}: _(FRIENDLY_FIELD_TYPE[fieldType as FieldType])
+#. placeholder {0}: route.label
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
msgid "{0}"
msgstr "{0}"
+#. placeholder {0}: file.name
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+msgid "{0} couldn't be uploaded:"
+msgstr ""
+
#. placeholder {0}: team.name
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "{0} direct signing templates"
@@ -164,9 +175,9 @@ msgstr "{0} convidou você para {recipientActionVerb} um documento"
#. placeholder {0}: remaining.documents
#. placeholder {1}: quota.documents
-#: apps/remix/app/components/general/document/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button.tsx
-#: apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "{0} of {1} documents remaining this month."
msgstr "Restam {0} de {1} documentos este mês."
@@ -183,11 +194,6 @@ msgstr "{0} de {1} linha(s) selecionada(s)."
msgid "{0} on behalf of \"{1}\" has invited you to {recipientActionVerb} the document \"{2}\"."
msgstr "{0}, em nome de \"{1}\", convidou você para {recipientActionVerb} o documento \"{2}\"."
-#. placeholder {0}: envelope.recipients.length
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-msgid "{0} Recipient(s)"
-msgstr "{0} destinatário(s)"
-
#. placeholder {0}: organisation.name
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
msgid "{0} Teams"
@@ -201,6 +207,10 @@ msgstr "{browserInfo} em {os}"
msgid "{charactersRemaining, plural, one {1 character remaining} other {{charactersRemaining} characters remaining}}"
msgstr "{charactersRemaining, plural, one {1 caractere restante} other {{charactersRemaining} caracteres restantes}}"
+#: packages/email/template-components/template-access-auth-2fa.tsx
+msgid "{expiresInMinutes, plural, one {This code will expire in # minute.} other {This code will expire in # minutes.}}"
+msgstr ""
+
#: packages/email/templates/document-invite.tsx
msgid "{inviterName} <0>({inviterEmail})0>"
msgstr "{inviterName} <0>({inviterEmail})0>"
@@ -249,6 +259,10 @@ msgstr "{inviterName}, em nome de \"{teamName}\", convidou você para {0}<0/>\"{
msgid "{inviterName} on behalf of \"{teamName}\" has invited you to {action} {documentName}"
msgstr "{inviterName}, em nome de \"{teamName}\", convidou você para {action} {documentName}"
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+msgid "{MAXIMUM_PASSKEYS, plural, one {You cannot have more than # passkey.} other {You cannot have more than # passkeys.}}"
+msgstr ""
+
#: packages/lib/utils/document-audit-logs.ts
msgid "{prefix} added a field"
msgstr "{prefix} adicionou um campo"
@@ -391,8 +405,8 @@ msgstr "{recipientReference} assinou \"{documentName}\""
msgid "{recipientReference} has signed {documentName}"
msgstr "{recipientReference} assinou {documentName}"
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{remaningLength, plural, one {# character remaining} other {# characters remaining}}"
msgstr "{remaningLength, plural, one {# caractere restante} other {# caracteres restantes}}"
@@ -501,6 +515,10 @@ msgstr "<0>Desenhada0> - Uma assinatura desenhada com mouse ou caneta."
msgid "<0>Email0> - The recipient will be emailed the document to sign, approve, etc."
msgstr "<0>E-mail0> - O destinatário receberá o documento por e-mail para assinar, aprovar etc."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "<0>Events:0> All"
+msgstr ""
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "<0>Full account access:0> View all your profile information, settings, and activity"
msgstr "<0>Acesso total à conta:0> Veja todas as suas informações, configurações e atividade"
@@ -531,8 +549,8 @@ msgstr "<0>Nenhum0> - Vamos gerar links que você pode enviar manualmente aos
msgid "<0>Note0> - If you use Links in combination with direct templates, you will need to manually send the links to the remaining recipients."
msgstr "<0>Observação0> - Se usar Links com modelos diretos, você precisará enviar manualmente os links aos destinatários restantes."
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require 2FA0> - The recipient must have an account and 2FA enabled via their settings"
msgstr "<0>Exigir 2FA0> - O destinatário deve ter conta e 2FA ativado nas configurações"
@@ -540,8 +558,8 @@ msgstr "<0>Exigir 2FA0> - O destinatário deve ter conta e 2FA ativado nas con
msgid "<0>Require account0> - The recipient must be signed in to view the document"
msgstr "<0>Exigir conta0> - O destinatário deve estar autenticado para ver o documento"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require passkey0> - The recipient must have an account and passkey configured via their settings"
msgstr "<0>Exigir chave de acesso0> - O destinatário deve ter conta e chave configurada nas configurações"
@@ -610,9 +628,9 @@ msgstr "404 Domínio de e-mail não encontrado"
msgid "404 not found"
msgstr "404 não encontrado"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "404 Not found"
msgstr "404 Não encontrado"
@@ -646,7 +664,7 @@ msgstr "404 Modelo não encontrado"
msgid "404 User not found"
msgstr "404 Usuário não encontrado"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "404 Webhook not found"
msgstr "404 Webhook não encontrado"
@@ -733,8 +751,8 @@ msgstr "Um novo membro ingressou na sua organização {organisationName}"
msgid "A new token was created successfully."
msgstr "Um novo token foi criado com sucesso."
-#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
msgstr "Um e-mail de redefinição de senha foi enviado; se você tiver uma conta, ele chegará em breve."
@@ -770,7 +788,7 @@ msgstr "{0} iniciou uma solicitação para usar seu e-mail no Documenso"
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso"
msgstr "Um segredo que será enviado para sua URL para verificar que a solicitação foi enviada pelo Documenso"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso."
msgstr "Um segredo que será enviado para sua URL para verificar que a solicitação foi enviada pelo Documenso."
@@ -795,8 +813,8 @@ msgstr "Uma URL única para identificar a organização"
msgid "A unique URL to identify your organisation"
msgstr "Uma URL única para identificar sua organização"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "A unique URL to identify your team"
msgstr "Uma URL única para identificar sua equipe"
@@ -805,8 +823,8 @@ msgid "A verification email will be sent to the provided email."
msgstr "Um e-mail de verificação será enviado para o endereço informado."
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: packages/email/templates/organisation-invite.tsx
#: packages/email/templates/confirm-team-email.tsx
+#: packages/email/templates/organisation-invite.tsx
msgid "Accept"
msgstr "Aceitar"
@@ -834,9 +852,9 @@ msgstr "Acesso desativado"
msgid "Access enabled"
msgstr "Acesso ativado"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Account"
msgstr "Conta"
@@ -852,8 +870,8 @@ msgstr "Solicitação de criação de conta"
msgid "Account Creation Request"
msgstr "Solicitação de criação de conta"
-#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "Account deleted"
msgstr "Conta excluída"
@@ -881,46 +899,50 @@ msgstr "Conta desvinculada"
msgid "Acknowledgment"
msgstr "Reconhecimento"
-#: 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/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
+#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Action"
msgstr "Ação"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Actions"
msgstr "Ações"
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
msgid "Active"
msgstr "Ativo"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Active sessions"
msgstr "Sessões ativas"
@@ -928,8 +950,8 @@ msgstr "Sessões ativas"
msgid "Active Subscriptions"
msgstr "Assinaturas ativas"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Add"
msgstr "Adicionar"
@@ -946,15 +968,15 @@ msgstr "Adicione um domínio personalizado para enviar e-mails em nome da sua or
msgid "Add a document"
msgstr "Adicionar um documento"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Add a URL to redirect the user to once the document is signed"
msgstr "Adicione uma URL para redirecionar o usuário após a assinatura do documento"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add all relevant fields for each recipient."
msgstr "Adicione todos os campos relevantes para cada destinatário."
@@ -987,8 +1009,8 @@ msgstr "Adicione e configure vários documentos"
msgid "Add another option"
msgstr "Adicionar outra opção"
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
msgid "Add another value"
msgstr "Adicionar outro valor"
@@ -1012,11 +1034,11 @@ msgstr "Adicionar e-mail"
msgid "Add Email Domain"
msgstr "Adicionar domínio de e-mail"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add Fields"
msgstr "Adicionar campos"
@@ -1080,8 +1102,8 @@ msgstr "Adicionar placeholders"
msgid "Add Recipients"
msgstr "Adicionar destinatários"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Add Signer"
msgstr "Adicionar signatário"
@@ -1130,8 +1152,8 @@ msgstr "Informações adicionais da marca para exibir no rodapé dos e-mails"
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Admin"
msgstr "Administrador"
@@ -1139,8 +1161,8 @@ msgstr "Administrador"
msgid "Admin Actions"
msgstr "Ações administrativas"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Admin panel"
msgstr "Painel administrativo"
@@ -1152,15 +1174,15 @@ msgstr "Painel Administrativo"
msgid "Admins only"
msgstr "Somente administradores"
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Advanced Options"
msgstr "Opções avançadas"
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Advanced settings"
msgstr "Configurações avançadas"
@@ -1177,6 +1199,7 @@ msgid "After submission, a document will be automatically generated and added to
msgstr "Após o envio, um documento será gerado automaticamente e adicionado à sua página de documentos. Você também receberá uma notificação por e-mail."
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "All"
msgstr "Todos"
@@ -1200,8 +1223,8 @@ msgstr "Todos os documentos relacionados ao processo de assinatura eletrônica s
msgid "All email domains have been synced successfully"
msgstr "Todos os domínios de e-mail foram sincronizados com sucesso"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "All Folders"
msgstr "Todas as pastas"
@@ -1209,6 +1232,10 @@ msgstr "Todas as pastas"
msgid "All inserted signatures will be voided"
msgstr "Todas as assinaturas inseridas serão invalidadas"
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
+msgid "All recipients have signed. The document is being processed and you will receive an email copy shortly."
+msgstr ""
+
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "All recipients will be notified"
msgstr "Todos os destinatários serão notificados"
@@ -1225,6 +1252,7 @@ msgstr "Todos os links de assinatura foram copiados para a área de transferênc
msgid "All templates"
msgstr "Todos os modelos"
+#: apps/remix/app/components/filters/date-range-filter.tsx
#: apps/remix/app/components/general/period-selector.tsx
msgid "All Time"
msgstr "Todo o período"
@@ -1237,10 +1265,10 @@ msgstr "Permitir que todos os membros da organização acessem esta equipe"
msgid "Allow document recipients to reply directly to this email address"
msgstr "Permitir que destinatários respondam diretamente para este endereço de e-mail"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Allow signers to dictate next signer"
msgstr "Permitir que signatários definam o próximo signatário"
@@ -1248,10 +1276,10 @@ msgstr "Permitir que signatários definam o próximo signatário"
msgid "Allowed Email Domains"
msgstr "Domínios de e-mail permitidos"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Allowed Signature Types"
msgstr "Tipos de assinatura permitidos"
@@ -1291,29 +1319,33 @@ msgstr "Um e-mail com o convite será enviado a cada membro."
msgid "An email with this address already exists."
msgstr "Já existe um e-mail com este endereço."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/token.tsx
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.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
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "An error occurred"
msgstr "Ocorreu um erro"
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+msgid "An error occurred during upload."
+msgstr ""
+
#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "An error occurred while adding fields."
msgstr "Ocorreu um erro ao adicionar campos."
+#: 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/template/template-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "An error occurred while adding signers."
msgstr "Ocorreu um erro ao adicionar signatários."
@@ -1381,7 +1413,7 @@ msgstr "Ocorreu um erro ao ativar a assinatura por link direto."
msgid "An error occurred while enabling the user."
msgstr "Ocorreu um erro ao ativar o usuário."
-#: packages/ui/primitives/pdf-viewer.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "An error occurred while loading the document."
msgstr "Ocorreu um erro ao carregar o documento."
@@ -1393,14 +1425,14 @@ msgstr "Ocorreu um erro ao mover o documento."
msgid "An error occurred while moving the template."
msgstr "Ocorreu um erro ao mover o modelo."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while removing the field."
msgstr "Ocorreu um erro ao remover o campo."
@@ -1424,29 +1456,29 @@ msgstr "Ocorreu um erro ao enviar o documento."
msgid "An error occurred while sending your confirmation email"
msgstr "Ocorreu um erro ao enviar seu e-mail de confirmação"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing as assistant."
msgstr "Ocorreu um erro ao assinar como assistente."
-#: 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
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing the document."
msgstr "Ocorreu um erro ao assinar o documento."
@@ -1459,8 +1491,8 @@ msgstr "Ocorreu um erro ao assinar o campo."
msgid "An error occurred while trying to create a checkout session."
msgstr "Ocorreu um erro ao tentar criar a sessão de pagamento."
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "An error occurred while updating the document settings."
msgstr "Ocorreu um erro ao atualizar as configurações do documento."
@@ -1472,9 +1504,8 @@ msgstr "Ocorreu um erro ao atualizar a assinatura."
msgid "An error occurred while updating your profile."
msgstr "Ocorreu um erro ao atualizar seu perfil."
-#: apps/remix/app/components/general/document/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button.tsx
-#: apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "An error occurred while uploading your document."
msgstr "Ocorreu um erro ao enviar o documento."
@@ -1494,53 +1525,53 @@ msgstr "Uma organização deseja vincular sua conta. Revise os detalhes abaixo."
msgid "An unexpected error occurred."
msgstr "Ocorreu um erro inesperado."
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/public-profile-form.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/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/general/app-command-menu.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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/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/signin.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/profile.tsx
-#: apps/remix/app/components/forms/organisation-update-form.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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "An unknown error occurred"
msgstr "Ocorreu um erro desconhecido"
@@ -1568,10 +1599,10 @@ msgstr "Qualquer origem"
msgid "Any Status"
msgstr "Qualquer status"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "API Tokens"
msgstr "Tokens de API"
@@ -1579,12 +1610,12 @@ msgstr "Tokens de API"
msgid "App Version"
msgstr "Versão do app"
-#: apps/remix/app/components/tables/inbox-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-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Approve"
msgstr "Aprovar"
@@ -1593,9 +1624,9 @@ msgctxt "Recipient role action verb"
msgid "Approve"
msgstr "Aprovar"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Approve Document"
msgstr "Aprovar documento"
@@ -1648,8 +1679,8 @@ msgid "Are you sure you want to reject this document? This action cannot be undo
msgstr "Tem certeza de que deseja rejeitar este documento? Essa ação não pode ser desfeita."
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
-msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey."
-msgstr "Tem certeza de que deseja remover a chave de acesso <0>{passkeyName}0>?"
+msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey?"
+msgstr ""
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
msgid "Are you sure you wish to delete this organisation?"
@@ -1659,23 +1690,23 @@ msgstr "Tem certeza de que deseja excluir esta organização?"
msgid "Are you sure you wish to delete this team?"
msgstr "Tem certeza de que deseja excluir esta equipe?"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/components/general/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Are you sure?"
msgstr "Tem certeza?"
@@ -1688,9 +1719,9 @@ msgctxt "Recipient role action verb"
msgid "Assist"
msgstr "Auxiliar"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Assist Document"
msgstr "Auxiliar documento"
@@ -1734,11 +1765,11 @@ msgctxt "Recipient role progressive verb"
msgid "Assisting"
msgstr "Assistindo"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
-#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/lib/types/document-meta.ts
+#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
msgid "At least one signature type must be enabled"
msgstr "Ao menos um tipo de assinatura deve estar habilitado"
@@ -1750,9 +1781,9 @@ msgstr "Anexo adicionado com sucesso."
msgid "Attachment removed successfully."
msgstr "Anexo removido com sucesso."
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Attachments"
@@ -1778,8 +1809,8 @@ msgstr "Nível de autenticação"
msgid "Authentication Portal Not Found"
msgstr "Portal de autenticação não encontrado"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Authentication required"
msgstr "Autenticação necessária"
@@ -1799,12 +1830,12 @@ msgstr "Avatar atualizado"
msgid "Awaiting email confirmation"
msgstr "Aguardando confirmação por e-mail"
-#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
msgid "Back"
msgstr "Voltar"
@@ -1820,8 +1851,8 @@ msgstr "Cor de fundo"
msgid "Background Jobs"
msgstr "Tarefas em segundo plano"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Backup Code"
msgstr "Código de backup"
@@ -1837,10 +1868,11 @@ msgstr "Banner atualizado"
msgid "Before you get started, please confirm your email address by clicking the button below:"
msgstr "Antes de começar, confirme seu endereço de e-mail clicando no botão abaixo:"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
msgid "Billing"
msgstr "Cobrança"
@@ -1852,6 +1884,10 @@ msgstr "Preto"
msgid "Blue"
msgstr "Azul"
+#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+msgid "Bottom"
+msgstr ""
+
#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Brand Details"
msgstr "Detalhes da marca"
@@ -1860,9 +1896,9 @@ msgstr "Detalhes da marca"
msgid "Brand Website"
msgstr "Site da marca"
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
msgid "Branding"
msgstr "Identidade visual"
@@ -1870,10 +1906,10 @@ msgstr "Identidade visual"
msgid "Branding Logo"
msgstr "Logo da marca"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Branding Preferences"
msgstr "Preferências de identidade visual"
@@ -1907,8 +1943,8 @@ msgstr "Operação de envio em massa concluída para o modelo \"{templateName}\"
msgid "Bulk Send Template via CSV"
msgstr "Enviar modelo em massa via CSV"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Bulk Send via CSV"
msgstr "Envio em massa via CSV"
@@ -1953,96 +1989,95 @@ msgstr "Ao usar a assinatura eletrônica, você concorda em realizar transaçõe
msgid "Can prepare"
msgstr "Pode preparar"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.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/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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-password.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/general/document/document-attachments-popover.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-test-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-to-folder-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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-create-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-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/claim-update-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.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-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.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/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Cancel"
msgstr "Cancelar"
@@ -2092,6 +2127,14 @@ msgstr "Copiados"
msgid "Center"
msgstr "Centralizar"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Change Recipient"
+msgstr ""
+
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
+msgid "Character limit"
+msgstr ""
+
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Character Limit"
@@ -2102,8 +2145,8 @@ msgid "Charts"
msgstr "Gráficos"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Checkbox"
msgstr "Caixa de seleção"
@@ -2116,9 +2159,9 @@ msgstr "Configurações da caixa de seleção"
msgid "Checkbox values"
msgstr "Valores da caixa de seleção"
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Checkout"
msgstr "Finalizar compra"
@@ -2170,9 +2213,9 @@ msgstr "Limpar assinatura"
msgid "Click here to get started"
msgstr "Clique aqui para começar"
-#: 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/template/template-page-view-recent-activity.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "Click here to retry"
msgstr "Clique aqui para tentar novamente"
@@ -2185,12 +2228,12 @@ msgstr "Clique aqui para enviar"
msgid "Click to copy signing link for sending to recipient"
msgstr "Clique para copiar o link de assinatura para enviar ao destinatário"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.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/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
msgid "Click to insert field"
msgstr "Clique para inserir o campo"
@@ -2210,23 +2253,25 @@ msgstr "Client Secret"
msgid "Client secret is required"
msgstr "Client secret is required"
-#: apps/remix/app/components/general/billing-plans.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/support-ticket-form.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/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-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/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/missing-signature-field-dialog.tsx
msgid "Close"
msgstr "Fechar"
@@ -2239,14 +2284,14 @@ msgstr "Comunicação"
msgid "Compare all plans and features in detail"
msgstr "Compare todos os planos e recursos em detalhes"
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Complete"
msgstr "Concluir"
@@ -2258,21 +2303,22 @@ msgstr "Concluir documento"
msgid "Complete the fields for the following signers."
msgstr "Preencha os campos para os signatários a seguir."
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: 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/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
-#: packages/lib/constants/document.ts
-#: packages/email/template-components/template-document-self-signed.tsx
-#: packages/email/template-components/template-document-recipient-signed.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
#: packages/email/template-components/template-document-completed.tsx
+#: packages/email/template-components/template-document-recipient-signed.tsx
+#: packages/email/template-components/template-document-self-signed.tsx
+#: packages/lib/constants/document.ts
msgid "Completed"
msgstr "Concluído"
-#: packages/email/templates/document-self-signed.tsx
#: packages/email/templates/document-completed.tsx
+#: packages/email/templates/document-self-signed.tsx
msgid "Completed Document"
msgstr "Documento concluído"
@@ -2348,8 +2394,8 @@ msgstr "Configurar modelo"
#. placeholder {0}: parseMessageDescriptor( _, FRIENDLY_FIELD_TYPE[currentField.type], )
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Configure the {0} field"
msgstr "Configure o campo {0}"
@@ -2366,20 +2412,20 @@ msgstr "Configure as funções da equipe para cada grupo"
msgid "Configure the team roles for each member"
msgstr "Configure as funções da equipe para cada membro"
-#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Confirm"
msgstr "Confirmar"
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
msgid "Confirm by typing <0>{deleteMessage}0>"
msgstr "Confirme digitando <0>{deleteMessage}0>"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "Confirm by typing: <0>{deleteMessage}0>"
msgstr "Confirme digitando: <0>{deleteMessage}0>"
@@ -2392,8 +2438,8 @@ msgstr "Confirmar exclusão"
msgid "Confirm email"
msgstr "Confirmar e-mail"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Confirmation email sent"
msgstr "E-mail de confirmação enviado"
@@ -2417,17 +2463,17 @@ msgstr "Fale conosco"
msgid "Content"
msgstr "Conteúdo"
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$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+/organisation.invite.$token.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-view.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/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$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+/verify-email.$token.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Continue"
msgstr "Continuar"
@@ -2494,21 +2540,22 @@ msgstr "Controla quais tipos de assinatura podem ser utilizados ao assinar um do
msgid "Copied"
msgstr "Copiado"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: 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/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: packages/ui/primitives/document-flow/add-subject.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/avatar-with-recipient.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.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/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/components/document/document-share-button.tsx
+#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Copied to clipboard"
msgstr "Copiado para a área de transferência"
@@ -2529,8 +2576,8 @@ msgstr "Copiar link compartilhável"
msgid "Copy Shareable Link"
msgstr "Copiar link compartilhável"
-#: 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/general/document/document-recipient-link-copy-dialog.tsx
msgid "Copy Signing Links"
msgstr "Copiar links de assinatura"
@@ -2538,17 +2585,12 @@ msgstr "Copiar links de assinatura"
msgid "Copy token"
msgstr "Copiar token"
-#: apps/remix/app/components/general/template/template-drop-zone-wrapper.tsx
-#: apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx
-msgid "couldn't be uploaded:"
-msgstr "não pôde ser enviado:"
-
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Create"
msgstr "Criar"
@@ -2659,17 +2701,17 @@ msgstr "Criar agora"
msgid "Create one automatically"
msgstr "Criar automaticamente"
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
msgid "Create organisation"
msgstr "Criar organização"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Create Organisation"
msgstr "Criar organização"
@@ -2693,14 +2735,14 @@ msgstr "Criar assinatura"
msgid "Create Subscription Claim"
msgstr "Criar reivindicação de assinatura"
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
msgid "Create team"
msgstr "Criar equipe"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Create Team"
msgstr "Criar equipe"
@@ -2729,24 +2771,27 @@ msgstr "Crie sua conta e comece a usar uma assinatura de documentos de ponta."
msgid "Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp."
msgstr "Crie sua conta e utilize uma assinatura de documentos moderna. Uma experiência aberta e elegante está ao seu alcance."
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: 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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/inbox-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
+#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Created"
msgstr "Criado"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Created At"
msgstr "Criado em"
@@ -2758,9 +2803,7 @@ msgstr "Criado por"
msgid "Created on"
msgstr "Criado em"
-#. placeholder {0}: i18n.date(webhook.createdAt, DateTime.DATETIME_FULL)
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Created on {0}"
msgstr "Criado em {0}"
@@ -2818,13 +2861,13 @@ msgstr "Modo escuro"
msgid "Dashboard"
msgstr "Painel"
-#: apps/remix/app/components/tables/settings-security-activity-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Date"
msgstr "Data"
@@ -2832,10 +2875,10 @@ msgstr "Data"
msgid "Date created"
msgstr "Data de criação"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Date Format"
msgstr "Formato de data"
@@ -2843,8 +2886,8 @@ msgstr "Formato de data"
msgid "Date Settings"
msgstr "Configurações de data"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: packages/email/templates/organisation-invite.tsx
msgid "Decline"
msgstr "Recusar"
@@ -2894,46 +2937,47 @@ msgstr "Valor padrão"
msgid "delete"
msgstr "excluir"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/folder/folder-card.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-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-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/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Delete"
msgstr "Excluir"
-#. placeholder {0}: webhook.webhookUrl
-#. placeholder {0}: token.name
+#. placeholder {0}: folder.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#. placeholder {0}: token.name
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "delete {0}"
msgstr "excluir {0}"
@@ -2949,11 +2993,11 @@ msgstr "excluir {teamName}"
msgid "Delete account"
msgstr "Excluir conta"
+#: 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
#: 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
msgid "Delete Account"
msgstr "Excluir conta"
@@ -2961,10 +3005,10 @@ msgstr "Excluir conta"
msgid "Delete document"
msgstr "Excluir documento"
+#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: 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
msgid "Delete Document"
msgstr "Excluir documento"
@@ -2972,8 +3016,8 @@ msgstr "Excluir documento"
msgid "Delete email"
msgstr "Excluir e-mail"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Delete email domain"
msgstr "Excluir domínio de e-mail"
@@ -3033,8 +3077,8 @@ msgstr "Excluir webhook"
msgid "Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution."
msgstr "Exclua sua conta e todo o conteúdo, incluindo documentos concluídos. Esta ação é irreversível e cancelará sua assinatura; proceda com cautela."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Deleted"
msgstr "Excluído"
@@ -3042,13 +3086,22 @@ msgstr "Excluído"
msgid "Deleting account..."
msgstr "Excluindo conta..."
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Destination"
+msgstr ""
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Details"
msgstr "Detalhes"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+msgid "Developer Mode"
+msgstr ""
+
#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Device"
msgstr "Dispositivo"
@@ -3056,19 +3109,19 @@ msgstr "Dispositivo"
msgid "Didn't request a password change? We are here to help you secure your account, just <0>contact us.0>"
msgstr "Não solicitou alteração de senha? Podemos ajudar a proteger sua conta, basta <0>falar conosco0>."
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "direct link"
msgstr "link direto"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Direct link"
msgstr "Link direto"
-#: 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/envelope-editor/envelope-editor.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
msgid "Direct Link"
msgstr "Link direto"
@@ -3106,14 +3159,14 @@ msgstr "Link de modelo direto excluído"
msgid "Direct template link usage exceeded ({0}/{1})"
msgstr "Uso do link de modelo direto excedido ({0}/{1})"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Direction"
msgstr "Direção"
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
msgid "Disable"
msgstr "Desativar"
@@ -3141,6 +3194,7 @@ msgid "Disable Two Factor Authentication before deleting your account."
msgstr "Desative a autenticação em duas etapas antes de excluir sua conta."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Disabled"
msgstr "Desativado"
@@ -3156,8 +3210,8 @@ msgstr "Desativar o usuário impede o uso da conta e também desativa assinatura
msgid "Discord"
msgstr "Discord"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "Display Name"
msgstr "Nome de exibição"
@@ -3193,11 +3247,11 @@ msgstr "Deseja duplicar este modelo?"
msgid "Documenso will delete <0>all of your documents0>, along with all of your completed documents, signatures, and all other resources belonging to your Account."
msgstr "O Documenso excluirá <0>todos os seus documentos0>, incluindo concluídos, assinaturas e demais recursos da sua conta."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Document"
msgstr "Documento"
@@ -3217,14 +3271,18 @@ msgstr "Document \"{0}\" - Rejection Confirmed"
msgid "Document \"{0}\" Cancelled"
msgstr "Document \"{0}\" Cancelled"
+#: packages/ui/primitives/document-upload-button.tsx
+msgid "Document (Legacy)"
+msgstr ""
+
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Document & Recipients"
msgstr "Document & Recipients"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Document access"
msgstr "Acesso ao documento"
@@ -3243,8 +3301,8 @@ msgstr "Documento aprovado"
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: packages/lib/server-only/document/delete-document.ts
#: packages/lib/server-only/admin/admin-super-delete-document.ts
+#: packages/lib/server-only/document/delete-document.ts
msgid "Document Cancelled"
msgstr "Documento cancelado"
@@ -3285,8 +3343,8 @@ msgstr "Documento criado"
msgid "Document created by <0>{0}0>"
msgstr "Documento criado por <0>{0}0>"
-#: packages/lib/server-only/template/create-document-from-direct-template.ts
#: packages/email/templates/document-created-from-direct-template.tsx
+#: packages/lib/server-only/template/create-document-from-direct-template.ts
msgid "Document created from direct template"
msgstr "Documento criado a partir de modelo direto"
@@ -3298,9 +3356,9 @@ msgstr "Documento criado usando um <0>link direto0>"
msgid "Document Creation"
msgstr "Criação de documento"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
msgid "Document deleted"
msgstr "Documento excluído"
@@ -3349,6 +3407,10 @@ msgstr "Documento localizado na sua conta"
msgid "Document ID"
msgstr "ID do documento"
+#: apps/remix/app/components/general/document/document-page-view-information.tsx
+msgid "Document ID (Legacy)"
+msgstr ""
+
#: apps/remix/app/components/general/document/document-status.tsx
msgid "Document inbox"
msgstr "Caixa de entrada de documentos"
@@ -3395,9 +3457,9 @@ msgstr "Documento pendente"
msgid "Document pending email"
msgstr "E-mail de documento pendente"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Document Preferences"
msgstr "Preferências de documento"
@@ -3414,8 +3476,8 @@ msgstr "Documento reenviado"
msgid "Document rejected"
msgstr "Documento rejeitado"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: packages/email/template-components/template-document-rejected.tsx
msgid "Document Rejected"
msgstr "Documento rejeitado"
@@ -3472,15 +3534,15 @@ msgstr "Documento atualizado"
msgid "Document updated successfully"
msgstr "Documento atualizado com sucesso"
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/document/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Document upload disabled due to unpaid invoices"
msgstr "Envio de documentos desabilitado por faturas em atraso"
-#: apps/remix/app/components/general/document/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button.tsx
-#: apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Document uploaded"
msgstr "Documento enviado"
@@ -3502,6 +3564,10 @@ msgctxt "Audit log format"
msgid "Document visibility updated"
msgstr "Visibilidade do documento atualizada"
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+msgid "Document Volume"
+msgstr ""
+
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Document will be permanently deleted"
msgstr "O documento será excluído permanentemente"
@@ -3510,18 +3576,20 @@ msgstr "O documento será excluído permanentemente"
msgid "Documentation"
msgstr "Documentação"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/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
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Documents"
msgstr "Documentos"
@@ -3529,6 +3597,15 @@ msgstr "Documentos"
msgid "Documents and resources related to this envelope."
msgstr "Documentos e recursos relacionados a este envelope."
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+msgid "Documents Completed"
+msgstr ""
+
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+msgid "Documents Created"
+msgstr ""
+
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Documents created from template"
msgstr "Documentos criados a partir do modelo"
@@ -3561,22 +3638,22 @@ msgstr "Domínio já em uso"
msgid "Domain Name"
msgstr "Nome do domínio"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Don't have an account? <0>Sign up0>"
msgstr "Não tem uma conta? <0>Cadastre-se0>"
-#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-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/general/document/document-certificate-qr-view.tsx
-#: apps/remix/app/components/general/document/document-certificate-qr-view.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/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
#: packages/email/template-components/template-document-completed.tsx
msgid "Download"
msgstr "Baixar"
@@ -3593,9 +3670,9 @@ msgstr "Baixar certificado"
msgid "Download Files"
msgstr "Baixar arquivos"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Download PDF"
msgstr "Baixar PDF"
@@ -3603,9 +3680,9 @@ msgstr "Baixar PDF"
msgid "Download Template CSV"
msgstr "Baixar modelo CSV"
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: packages/lib/constants/document.ts
msgid "Draft"
msgstr "Rascunho"
@@ -3626,27 +3703,23 @@ msgstr "Arraste e solte seu PDF aqui."
msgid "Drag and drop or click to upload"
msgstr "Arraste e solte ou clique para enviar"
-#: apps/remix/app/components/general/template/template-drop-zone-wrapper.tsx
-#: apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
msgid "Drag and drop your PDF file here"
msgstr "Arraste e solte seu arquivo PDF aqui"
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
-msgid "Draw"
-msgstr "Desenhar"
-
#: packages/lib/constants/document.ts
-msgctxt "Draw signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Draw signature"
msgid "Draw"
-msgstr "Desenhar"
+msgstr ""
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "Drop your document here"
msgstr "Solte seu documento aqui"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Dropdown"
msgstr "Lista suspensa"
@@ -3666,20 +3739,20 @@ msgstr "Configurações da lista suspensa"
msgid "Dropdown values"
msgstr "Valores da lista suspensa"
-#: 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/envelope-editor/envelope-editor-fields-page-renderer.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
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Duplicate"
msgstr "Duplicar"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Document"
msgstr "Duplicar documento"
@@ -3688,8 +3761,8 @@ msgstr "Duplicar documento"
msgid "Duplicate on all pages"
msgstr "Duplicar em todas as páginas"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Template"
msgstr "Duplicar modelo"
@@ -3697,14 +3770,23 @@ msgstr "Duplicar modelo"
msgid "Duplicate values are not allowed"
msgstr "Valores duplicados não são permitidos"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 0"
+msgstr ""
+
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 100"
+msgstr ""
+
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Edit"
msgstr "Editar"
@@ -3712,10 +3794,19 @@ msgstr "Editar"
msgid "Edit Template"
msgstr "Editar modelo"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Edit webhook"
msgstr "Editar webhook"
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+msgid "eg. Legal"
+msgstr ""
+
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+msgid "eg. Mac"
+msgstr ""
+
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Electronic Delivery of Documents"
msgstr "Entrega eletrônica de documentos"
@@ -3724,56 +3815,57 @@ msgstr "Entrega eletrônica de documentos"
msgid "Electronic Signature Disclosure"
msgstr "Divulgação de assinatura eletrônica"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$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/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.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
-#: 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/utils/fields.ts
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-configure-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
+#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Email"
msgstr "E-mail"
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/send-confirmation-email.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Email address"
msgstr "Endereço de e-mail"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Email Address"
msgstr "Endereço de e-mail"
@@ -3805,9 +3897,9 @@ msgstr "Domínio de e-mail não encontrado"
msgid "Email Domain Settings"
msgstr "Configurações de domínio de e-mail"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Email Domains"
msgstr "Domínios de e-mail"
@@ -3823,9 +3915,9 @@ msgstr "E-mail é obrigatório"
msgid "Email Options"
msgstr "Opções de e-mail"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Email Preferences"
msgstr "Preferências de e-mail"
@@ -3838,10 +3930,10 @@ msgstr "Preferências de e-mail atualizadas"
msgid "Email resent"
msgstr "E-mail reenviado"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Email Sender"
msgstr "Remetente do e-mail"
@@ -3869,8 +3961,8 @@ msgstr "A verificação por e-mail foi removida"
msgid "Email verification has been resent"
msgstr "A verificação por e-mail foi reenviada"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Emails"
msgstr "E-mails"
@@ -3920,15 +4012,19 @@ msgstr "Ativar identidade visual personalizada para todos os documentos desta or
msgid "Enable custom branding for all documents in this team"
msgstr "Ativar identidade visual personalizada para todos os documentos desta equipe"
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+msgid "Enable direct link signing"
+msgstr ""
+
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: packages/lib/constants/template.ts
msgid "Enable Direct Link Signing"
msgstr "Ativar assinatura por link direto"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Enable signing order"
msgstr "Ativar ordem de assinatura"
@@ -3936,10 +4032,11 @@ msgstr "Ativar ordem de assinatura"
msgid "Enable SSO portal"
msgstr "Ativar portal SSO"
-#: 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+/admin+/site-settings.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Enabled"
msgstr "Ativado"
@@ -3963,10 +4060,12 @@ msgstr "Informe o nome da reivindicação"
msgid "Enter the domain you want to use for sending emails (without http:// or www)"
msgstr "Informe o domínio que deseja usar para enviar e-mails (sem http:// ou www)"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's email"
msgstr "Informe o e-mail do próximo signatário"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's name"
msgstr "Informe o nome do próximo signatário"
@@ -4002,11 +4101,12 @@ msgid "Enter your number here"
msgstr "Digite seu número aqui"
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Enter your password"
msgstr "Digite sua senha"
-#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "Enter your text here"
msgstr "Digite seu texto aqui"
@@ -4026,8 +4126,8 @@ msgstr "Envelope duplicado"
msgid "Envelope ID"
msgstr "ID do envelope"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Envelope Item Count"
msgstr "Quantidade de itens do envelope"
@@ -4051,75 +4151,75 @@ msgstr "Título do envelope"
msgid "Envelope updated"
msgstr "Envelope atualizado"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$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/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/envelope-signing/envelope-signer-page-renderer.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/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button.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/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/general/document/document-drop-zone-wrapper.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.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-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-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-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-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-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-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-text-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.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/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/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.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/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/verify-email-banner.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Error"
msgstr "Erro"
@@ -4127,11 +4227,17 @@ msgstr "Erro"
msgid "Error uploading file"
msgstr "Erro ao enviar arquivo"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Event"
+msgstr ""
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Event Type"
msgstr "Tipo de evento"
#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: packages/ui/components/document/document-visibility-select.tsx
msgid "Everyone"
msgstr "Todos"
@@ -4144,8 +4250,8 @@ msgid "Everyone has signed"
msgstr "Todos assinaram"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "Everyone has signed! You will receive an Email copy of the signed document."
-msgstr "Todos assinaram! Você receberá uma cópia do documento assinado por e-mail."
+msgid "Everyone has signed! You will receive an email copy of the signed document."
+msgstr ""
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "Exceeded timeout"
@@ -4166,11 +4272,16 @@ msgid "Expires on {0}"
msgstr "Expira em {0}"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "External ID"
msgstr "ID externo"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Failed"
+msgstr ""
+
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
msgid "Failed to create folder"
msgstr "Falha ao criar a pasta"
@@ -4235,7 +4346,7 @@ msgstr "Falha ao atualizar a reivindicação de assinatura."
msgid "Failed to update template"
msgstr "Falha ao atualizar o modelo"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Failed to update webhook"
msgstr "Falha ao atualizar o webhook"
@@ -4243,24 +4354,23 @@ msgstr "Falha ao atualizar o webhook"
msgid "Failed: {failedCount}"
msgstr "Falhas: {failedCount}"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Feature Flags"
msgstr "Feature Flags"
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field character limit"
msgstr "Limite de caracteres do campo"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field font size"
msgstr "Tamanho da fonte do campo"
@@ -4269,11 +4379,11 @@ msgstr "Tamanho da fonte do campo"
msgid "Field format"
msgstr "Formato do campo"
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field label"
msgstr "Rótulo do campo"
@@ -4305,20 +4415,18 @@ msgstr "Campos"
msgid "Fields updated"
msgstr "Campos atualizados"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/document/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "File cannot be larger than {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
msgstr "File cannot be larger than {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
-#: apps/remix/app/components/general/template/template-drop-zone-wrapper.tsx
-#: apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
msgid "File is larger than {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
msgstr "File is larger than {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
-#: apps/remix/app/components/general/template/template-drop-zone-wrapper.tsx
-#: apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
msgid "File is too small"
msgstr "File is too small"
@@ -4330,8 +4438,8 @@ msgstr "File size exceeds the limit of {APP_DOCUMENT_UPLOAD_SIZE_LIMIT} MB"
msgid "Fill in the details to create a new subscription claim."
msgstr "Fill in the details to create a new subscription claim."
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Folder"
msgstr "Pasta"
@@ -4351,9 +4459,9 @@ msgstr "Folder moved successfully"
msgid "Folder Name"
msgstr "Folder Name"
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
msgid "Folder not found"
msgstr "Folder not found"
@@ -4366,12 +4474,12 @@ msgid "Folder updated successfully"
msgstr "Folder updated successfully"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Font Size"
msgstr "Font Size"
@@ -4391,18 +4499,20 @@ msgstr "For example, if the claim has a new flag \"FLAG_1\" set to true, then th
msgid "Forgot Password?"
msgstr "Forgot Password?"
-#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Forgot your password?"
msgstr "Forgot your password?"
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Free"
msgstr "Gratuito"
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Free Signature"
msgstr "Assinatura livre"
@@ -4410,26 +4520,26 @@ msgstr "Assinatura livre"
msgid "Free Signature Settings"
msgstr "Configurações de assinatura livre"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.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/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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "Full Name"
msgstr "Nome completo"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "General"
msgstr "Geral"
@@ -4446,24 +4556,24 @@ msgstr "Gerar links"
msgid "Global recipient action authentication"
msgstr "Autenticação global de ação do destinatário"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Go back"
msgstr "Voltar"
-#: apps/remix/app/routes/_recipient+/_layout.tsx
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
+#: apps/remix/app/routes/_recipient+/_layout.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Go Back"
msgstr "Voltar"
@@ -4475,9 +4585,9 @@ msgstr "Voltar"
msgid "Go back home"
msgstr "Voltar para a página inicial"
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
msgid "Go Back Home"
msgstr "Voltar para a página inicial"
@@ -4506,10 +4616,10 @@ msgstr "Acesse suas <0>configurações de perfil público0> para adicionar doc
msgid "Green"
msgstr "Verde"
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Group"
msgstr "Grupo"
@@ -4521,15 +4631,15 @@ msgstr "Grupo criado."
msgid "Group has been updated successfully"
msgstr "Grupo atualizado com sucesso"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Group Name"
msgstr "Nome do grupo"
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
msgid "Groups"
msgstr "Grupos"
@@ -4552,12 +4662,12 @@ msgstr "convidou você para visualizar este documento"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
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."
msgstr "Ter um assistente como último signatário significa que ele não poderá agir, pois não há signatários subsequentes para auxiliar."
@@ -4629,25 +4739,25 @@ msgstr "Olá, {userName}, você precisa inserir um código de verificação para
msgid "Hi, {userName} <0>({userEmail})0>"
msgstr "Olá, {userName} <0>({userEmail})0>"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Hide"
msgstr "Ocultar"
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/folder/folder-grid.tsx
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-grid.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
msgid "Home"
msgstr "Início"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Home (No Folder)"
msgstr "Início (sem pasta)"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Horizontal"
msgstr "Horizontal"
@@ -4684,7 +4794,6 @@ msgstr "Sou o proprietário deste documento"
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
msgstr "Entendo que estou fornecendo minhas credenciais a um serviço de terceiros configurado por esta organização"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
msgid "I'm sure! Delete it"
msgstr "Tenho certeza! Excluir"
@@ -4721,6 +4830,10 @@ msgstr "Se o aplicativo autenticador não suportar QR codes, use o código a seg
msgid "Important: What This Means"
msgstr "Importante: o que isso significa"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Inactive"
+msgstr ""
+
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/document/document-status.tsx
@@ -4739,8 +4852,8 @@ msgstr "Incluir os registros de auditoria no documento"
msgid "Include the Signing Certificate in the Document"
msgstr "Incluir o certificado de assinatura no documento"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Information"
msgstr "Informações"
@@ -4748,17 +4861,17 @@ msgstr "Informações"
msgid "Inherit authentication method"
msgstr "Herdar método de autenticação"
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
msgid "Inherit from organisation"
msgstr "Herdar da organização"
@@ -4771,11 +4884,11 @@ msgstr "Herdar membros da organização"
msgid "Inherited subscription claim"
msgstr "Reivindicação de assinatura herdada"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: packages/ui/primitives/document-flow/types.ts
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Initials"
msgstr "Iniciais"
@@ -4820,8 +4933,8 @@ msgstr "E-mail inválido"
msgid "Invalid link"
msgstr "Link inválido"
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
msgid "Invalid token"
msgstr "Token inválido"
@@ -4841,8 +4954,8 @@ msgstr "Convite aceito"
msgid "Invitation accepted!"
msgstr "Convite aceito!"
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
msgid "Invitation declined"
msgstr "Convite recusado"
@@ -4882,9 +4995,9 @@ msgstr "Convidado em"
msgid "Invoice"
msgstr "Fatura"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "IP Address"
msgstr "Endereço IP"
@@ -4929,28 +5042,32 @@ msgstr "Junte-se a {organisationName} no Documenso"
msgid "Join our community on <0>Discord0> for community support and discussion."
msgstr "Junte-se à nossa comunidade no <0>Discord0> para suporte e discussão da comunidade."
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+msgid "Joined"
+msgstr ""
+
#. placeholder {0}: DateTime.fromJSDate(team.createdAt).toRelative({ style: 'short' })
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
msgid "Joined {0}"
msgstr "Entrou {0}"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Label"
msgstr "Rótulo"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Language"
msgstr "Idioma"
@@ -4962,16 +5079,24 @@ msgstr "Últimos 14 dias"
msgid "Last 30 days"
msgstr "Últimos 30 dias"
+#: apps/remix/app/components/filters/date-range-filter.tsx
+msgid "Last 30 Days"
+msgstr ""
+
#: apps/remix/app/components/general/period-selector.tsx
msgid "Last 7 days"
msgstr "Últimos 7 dias"
+#: apps/remix/app/components/filters/date-range-filter.tsx
+msgid "Last 90 Days"
+msgstr ""
+
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Last Active"
msgstr "Última Atividade"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Last modified"
msgstr "Última modificação"
@@ -4995,19 +5120,19 @@ msgstr "Última atualização em"
msgid "Last used"
msgstr "Último uso"
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-msgid "Leaderboard"
-msgstr "Ranking"
+#: apps/remix/app/components/filters/date-range-filter.tsx
+msgid "Last Year"
+msgstr ""
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Leave"
msgstr "Sair"
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Leave blank to inherit from the organisation."
msgstr "Deixe em branco para herdar da organização."
@@ -5023,6 +5148,14 @@ msgstr "Esquerda"
msgid "Legality of Electronic Signatures"
msgstr "Legalidade das Assinaturas Eletrônicas"
+#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+msgid "Letter spacing"
+msgstr ""
+
+#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+msgid "Letter Spacing"
+msgstr ""
+
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Light Mode"
msgstr "Modo Claro"
@@ -5031,6 +5164,14 @@ msgstr "Modo Claro"
msgid "Like to have your own public profile with agreements?"
msgstr "Gostaria de ter seu próprio perfil público com acordos?"
+#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+msgid "Line height"
+msgstr ""
+
+#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+msgid "Line Height"
+msgstr ""
+
#: packages/email/templates/confirm-team-email.tsx
msgid "Link expires in 1 hour."
msgstr "Link expira em 1 hora."
@@ -5047,8 +5188,8 @@ msgstr "Link do modelo"
msgid "Link your Documenso account"
msgstr "Vincular sua conta Documenso"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Linked Accounts"
msgstr "Contas Vinculadas"
@@ -5060,30 +5201,29 @@ msgstr "Vinculado em"
msgid "Links Generated"
msgstr "Links Gerados"
-#. placeholder {0}: webhook.eventTriggers .map((trigger) => toFriendlyWebhookEventName(trigger)) .join(', ')
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-msgid "Listening to {0}"
-msgstr "Ouvindo {0}"
+msgid "Listening to"
+msgstr ""
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
msgid "Load older activity"
msgstr "Carregar atividade mais antiga"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Loading"
msgstr "Carregando"
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Loading document..."
msgstr "Carregando documento..."
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
msgid "Loading Document..."
msgstr "Carregando Documento..."
@@ -5099,15 +5239,19 @@ msgstr "Carregando..."
msgid "Local timezone"
msgstr "Fuso horário local"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Login"
msgstr "Entrar"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "Logs"
+msgstr ""
+
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Manage"
msgstr "Gerenciar"
@@ -5137,9 +5281,14 @@ msgid "Manage billing"
msgstr "Gerenciar cobrança"
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Manage Billing"
msgstr "Gerenciar Cobrança"
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
+msgid "Manage billing and subscriptions for organisations where you have billing management permissions."
+msgstr ""
+
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "Manage details for this public template"
msgstr "Gerenciar detalhes deste modelo público"
@@ -5156,6 +5305,7 @@ msgstr "Gerenciar documentos"
msgid "Manage linked accounts"
msgstr "Gerenciar contas vinculadas"
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Manage organisation"
msgstr "Gerenciar organização"
@@ -5241,8 +5391,8 @@ msgstr "Gerencie as configurações do seu site aqui"
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Manager"
msgstr "Gerente"
@@ -5280,24 +5430,24 @@ msgstr "Máx"
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
msgstr "Tamanho máximo do arquivo: 4MB. Máximo de 100 linhas por upload. Valores em branco usarão os padrões do modelo."
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Maximum number of uploaded files per envelope allowed"
msgstr "Número máximo de arquivos enviados por envelope permitido"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Member"
msgstr "Membro"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Member Count"
msgstr "Contagem de Membros"
@@ -5305,22 +5455,25 @@ msgstr "Contagem de Membros"
msgid "Member Since"
msgstr "Membro desde"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Members"
msgstr "Membros"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Message"
msgstr "Mensagem"
@@ -5328,6 +5481,10 @@ msgstr "Mensagem"
msgid "Message <0>(Optional)0>"
msgstr "Mensagem <0>(Opcional)0>"
+#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+msgid "Middle"
+msgstr ""
+
#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Min"
@@ -5337,8 +5494,8 @@ msgstr "Mín"
msgid "Missing Recipients"
msgstr "Destinatários Ausentes"
-#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
msgid "Modify recipients"
msgstr "Modificar destinatários"
@@ -5346,8 +5503,8 @@ msgstr "Modificar destinatários"
msgid "Modify the details of the subscription claim."
msgstr "Modificar os detalhes da reivindicação de assinatura."
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Monthly"
msgstr "Mensal"
@@ -5359,10 +5516,10 @@ msgstr "Usuários Ativos Mensais: Usuários que criaram pelo menos um Documento"
msgid "Monthly Active Users: Users that had at least one of their documents completed"
msgstr "Usuários Ativos Mensais: Usuários que tiveram pelo menos um de seus documentos concluídos"
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
msgid "Move"
msgstr "Mover"
@@ -5382,8 +5539,8 @@ msgstr "Mover Pasta"
msgid "Move Template to Folder"
msgstr "Mover Modelo para Pasta"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Move to Folder"
msgstr "Mover para pasta"
@@ -5399,42 +5556,43 @@ msgstr "Minha Pasta"
msgid "N/A"
msgstr "N/D"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: 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-document-jobs-table.tsx
-#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
-#: apps/remix/app/components/forms/subscription-claim-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: 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
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/forms/subscription-claim-form.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/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Name"
msgstr "Nome"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Name is required"
msgstr "Nome é obrigatório"
@@ -5470,16 +5628,15 @@ msgstr "Nunca expirar"
msgid "New Password"
msgstr "Nova Senha"
-#: apps/remix/app/components/dialogs/template-create-dialog.tsx
#: apps/remix/app/components/dialogs/template-create-dialog.tsx
msgid "New Template"
msgstr "Novo Modelo"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Next"
msgstr "Avançar"
@@ -5496,10 +5653,10 @@ msgstr "E-mail do Próximo Destinatário"
msgid "Next Recipient Name"
msgstr "Nome do Próximo Destinatário"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "No"
msgstr "Não"
@@ -5507,24 +5664,24 @@ msgstr "Não"
msgid "No active drafts"
msgstr "Nenhum rascunho ativo"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "No documents found"
msgstr "Nenhum documento encontrado"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "No folders found"
msgstr "Nenhuma pasta encontrada"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "No folders found matching \"{searchTerm}\""
msgstr "Nenhuma pasta encontrada correspondendo a \"{searchTerm}\""
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "No further action is required from you at this time."
msgstr "Nenhuma ação adicional é necessária de você no momento."
@@ -5544,25 +5701,27 @@ msgstr "Nenhuma atividade recente"
msgid "No recent documents"
msgstr "Nenhum documento recente"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipient matching this description was found."
msgstr "Nenhum destinatário correspondente a esta descrição foi encontrado."
-#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "No recipients"
msgstr "Nenhum destinatário"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipients with this role"
msgstr "Nenhum destinatário com este papel"
-#: 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-action-select.tsx
msgid "No restrictions"
msgstr "Sem restrições"
@@ -5603,8 +5762,8 @@ msgid "No valid recipients found"
msgstr "Nenhum destinatário válido encontrado"
#: apps/remix/app/components/general/multiselect-role-combobox.tsx
-#: packages/ui/primitives/multi-select-combobox.tsx
#: packages/ui/primitives/combobox.tsx
+#: packages/ui/primitives/multi-select-combobox.tsx
msgid "No value found."
msgstr "Nenhum valor encontrado."
@@ -5612,16 +5771,16 @@ msgstr "Nenhum valor encontrado."
msgid "No worries, it happens! Enter your email and we'll email you a special link to reset your password."
msgstr "Sem problemas, acontece! Digite seu e-mail e enviaremos um link especial para redefinir sua senha."
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
#: packages/lib/constants/document.ts
msgid "None"
msgstr "Nenhum"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Not found"
msgstr "Não encontrado"
@@ -5634,12 +5793,12 @@ msgstr "Não suportado"
msgid "Nothing to do"
msgstr "Nada a fazer"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: 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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Number"
msgstr "Número"
@@ -5652,13 +5811,13 @@ msgstr "Formato do número"
msgid "Number needs to be formatted as {numberFormat}"
msgstr "O número precisa estar formatado como {numberFormat}"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of members allowed. 0 = Unlimited"
msgstr "Número de membros permitidos. 0 = Ilimitado"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of teams allowed. 0 = Unlimited"
msgstr "Número de equipes permitidas. 0 = Ilimitado"
@@ -5698,10 +5857,6 @@ msgstr "Nesta página, você pode criar e gerenciar tokens de API. Consulte noss
msgid "On this page, you can create new Webhooks and manage the existing ones."
msgstr "Nesta página, você pode criar novos Webhooks e gerenciar os existentes."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "On this page, you can edit the webhook and its settings."
-msgstr "Nesta página, você pode editar o webhook e suas configurações."
-
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Once confirmed, the following will occur:"
msgstr "Uma vez confirmado, o seguinte ocorrerá:"
@@ -5734,21 +5889,19 @@ msgstr "Apenas administradores podem acessar e visualizar o documento"
msgid "Only managers and above can access and view the document"
msgstr "Apenas gerentes e acima podem acessar e visualizar o documento"
-#: apps/remix/app/components/general/template/template-drop-zone-wrapper.tsx
-#: apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
msgid "Only one file can be uploaded at a time"
msgstr "Apenas um arquivo pode ser enviado por vez"
-#: apps/remix/app/components/general/template/template-drop-zone-wrapper.tsx
-#: apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
msgid "Only PDF files are allowed"
msgstr "Apenas arquivos PDF são permitidos"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Oops! Something went wrong."
msgstr "Ops! Algo deu errado."
@@ -5764,8 +5917,8 @@ msgstr "O valor da opção não pode estar vazio"
msgid "Options"
msgstr "Opções"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Or"
msgstr "Ou"
@@ -5777,9 +5930,10 @@ msgstr "OU"
msgid "Or continue with"
msgstr "Ou continue com"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Organisation"
msgstr "Organização"
@@ -5808,6 +5962,11 @@ msgstr "Configurações do Grupo da Organização"
msgid "Organisation has been updated successfully"
msgstr "Organização foi atualizada com sucesso"
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
+msgid "Organisation Insights"
+msgstr ""
+
#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
msgid "Organisation invitation"
msgstr "Convite da organização"
@@ -5820,22 +5979,22 @@ msgstr "Convites da organização foram enviados."
msgid "Organisation Manager"
msgstr "Gerente da Organização"
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: packages/lib/constants/organisations-translations.ts
msgid "Organisation Member"
msgstr "Membro da Organização"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
msgid "Organisation Members"
msgstr "Membros da Organização"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation Name"
msgstr "Nome da Organização"
@@ -5848,8 +6007,8 @@ msgstr "Organização não encontrada"
msgid "Organisation role"
msgstr "Papel na organização"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Organisation Role"
msgstr "Papel na Organização"
@@ -5869,17 +6028,17 @@ msgstr "Portal SSO da Organização"
msgid "Organisation Teams"
msgstr "Equipes da Organização"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation URL"
msgstr "URL da Organização"
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
#: apps/remix/app/routes/_authenticated+/settings+/organisations.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Organisations"
msgstr "Organizações"
@@ -5904,8 +6063,9 @@ msgid "Organize your documents and templates"
msgstr "Organize seus documentos e modelos"
#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+msgctxt "Original document (adjective)"
msgid "Original"
-msgstr "Original"
+msgstr ""
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
msgid "Otherwise, the document will be created as a draft."
@@ -5915,16 +6075,16 @@ msgstr "Caso contrário, o documento será criado como rascunho."
msgid "Override organisation settings"
msgstr "Substituir configurações da organização"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Owner"
msgstr "Proprietário"
@@ -5939,13 +6099,17 @@ msgid "Page {0} of {1}"
msgstr "Página {0} de {1}"
#. placeholder {0}: i + 1
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Page {0} of {numPages}"
msgstr "Página {0} de {numPages}"
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+msgid "Paid"
+msgstr ""
+
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
msgid "Passkey"
msgstr "Chave de acesso"
@@ -5973,8 +6137,8 @@ msgstr "Nome da chave de acesso"
msgid "Passkey Re-Authentication"
msgstr "Reautenticação por Chave de Acesso"
-#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
msgid "Passkeys"
msgstr "Chaves de acesso"
@@ -5986,12 +6150,12 @@ msgstr "Chaves de acesso permitem que você faça login e autentique usando biom
msgid "Passkeys are not supported on this browser"
msgstr "Chaves de acesso não são suportadas neste navegador"
-#: apps/remix/app/components/general/app-command-menu.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
-#: apps/remix/app/components/forms/signup.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Password"
msgstr "Senha"
@@ -6007,13 +6171,13 @@ msgstr "Redefinição de Senha Solicitada"
msgid "Password Reset Successful"
msgstr "Redefinição de Senha Bem-sucedida"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Password should not be common or based on personal information"
msgstr "A senha não deve ser comum ou baseada em informações pessoais"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Password updated"
msgstr "Senha atualizada"
@@ -6021,6 +6185,10 @@ msgstr "Senha atualizada"
msgid "Password updated!"
msgstr "Senha atualizada!"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Past Due"
+msgstr ""
+
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
msgid "Payment overdue"
@@ -6030,15 +6198,15 @@ msgstr "Pagamento em atraso"
msgid "PDF Document"
msgstr "Documento PDF"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
-#: packages/ui/components/document/document-read-only-fields.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: packages/lib/constants/document.ts
+#: packages/ui/components/document/document-read-only-fields.tsx
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Pending"
msgstr "Pendente"
@@ -6058,29 +6226,30 @@ msgstr "Documentos Pendentes"
msgid "Pending invitations"
msgstr "Convites pendentes"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per month"
msgstr "por mês"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per year"
msgstr "por ano"
#: apps/remix/app/components/tables/user-organisations-table.tsx
+msgctxt "Personal organisation (adjective)"
msgid "Personal"
-msgstr "Pessoal"
+msgstr ""
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Personal Account"
msgstr "Conta Pessoal"
-#: apps/remix/app/routes/_authenticated+/inbox.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/inbox.tsx
msgid "Personal Inbox"
msgstr "Caixa de Entrada Pessoal"
@@ -6105,12 +6274,12 @@ msgstr "Fixar"
msgid "Place and configure form fields in the document"
msgstr "Coloque e configure campos de formulário no documento"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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
#: 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 "Espaço reservado"
@@ -6157,8 +6326,8 @@ msgstr "Por favor, escolha sua nova senha"
msgid "Please complete the document once reviewed"
msgstr "Por favor, complete o documento após revisar"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Please configure the document first"
msgstr "Por favor, configure o documento primeiro"
@@ -6182,9 +6351,9 @@ msgstr "Por favor, entre em contato com o proprietário do site para obter mais
msgid "Please enter a meaningful name for your token. This will help you identify it later."
msgstr "Por favor, digite um nome significativo para seu token. Isso ajudará você a identificá-lo mais tarde."
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Please enter a valid name."
msgstr "Por favor, digite um nome válido."
@@ -6236,6 +6405,10 @@ msgstr "Observe que você perderá o acesso a todos os documentos associados a e
msgid "Please open your authenticator app and enter the 6-digit code for this document."
msgstr "Por favor, abra seu aplicativo autenticador e digite o código de 6 dígitos para este documento."
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+msgid "Please provide a reason for rejecting this document"
+msgstr ""
+
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
msgid "Please provide a token from the authenticator, or a backup code. If you do not have a backup code available, please contact support."
msgstr "Por favor, forneça um token do autenticador ou um código de backup. Se você não tiver um código de backup disponível, entre em contato com o suporte."
@@ -6268,15 +6441,14 @@ msgstr "Por favor, tente um domínio diferente."
msgid "Please try again and make sure you enter the correct email address."
msgstr "Por favor, tente novamente e certifique-se de inserir o endereço de e-mail correto."
-#: apps/remix/app/components/general/template/template-drop-zone-wrapper.tsx
#: apps/remix/app/components/dialogs/template-create-dialog.tsx
msgid "Please try again later."
msgstr "Por favor, tente novamente mais tarde."
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Please try again or contact our support."
msgstr "Por favor, tente novamente ou entre em contato com nosso suporte."
@@ -6290,8 +6462,8 @@ msgstr "Por favor, digite {0} para confirmar"
msgid "Please type <0>{0}0> to confirm."
msgstr "Por favor, digite <0>{0}0> para confirmar."
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Please upload a document to continue"
msgstr "Por favor, envie um documento para continuar"
@@ -6303,15 +6475,15 @@ msgstr "Por favor, envie um logotipo"
msgid "Pre-formatted CSV template with example data."
msgstr "Modelo CSV pré-formatado com dados de exemplo."
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Preferences"
msgstr "Preferências"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Preview"
msgstr "Visualizar"
@@ -6333,8 +6505,8 @@ msgstr "Visualizar o documento antes de enviar"
msgid "Preview what the signed document will look like with placeholder data"
msgstr "Visualize como o documento assinado ficará com dados de espaço reservado"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Private"
msgstr "Privado"
@@ -6350,10 +6522,14 @@ msgstr "Modelos privados só podem ser modificados e visualizados por você."
msgid "Proceed"
msgstr "Prosseguir"
-#: 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/routes/_recipient+/sign.$token+/complete.tsx
+msgid "Processing document"
+msgstr ""
+
#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/profile.tsx
msgid "Profile"
msgstr "Perfil"
@@ -6365,8 +6541,8 @@ msgstr "Perfil está atualmente <0>oculto0>."
msgid "Profile is currently <0>visible0>."
msgstr "Perfil está atualmente <0>visível0>."
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Profile updated"
msgstr "Perfil atualizado"
@@ -6382,15 +6558,15 @@ msgstr "Provedor"
msgid "Provider has been updated successfully"
msgstr "Provedor foi atualizado com sucesso"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Public"
msgstr "Público"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Public Profile"
msgstr "Perfil Público"
@@ -6411,8 +6587,8 @@ msgid "Quick Actions"
msgstr "Ações Rápidas"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Radio"
msgstr "Rádio"
@@ -6425,15 +6601,16 @@ msgstr "Configurações de Rádio"
msgid "Radio values"
msgstr "Valores de rádio"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Read only"
msgstr "Somente leitura"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Read Only"
msgstr "Somente Leitura"
@@ -6477,8 +6654,8 @@ msgstr "Reautenticação é necessária para assinar este campo"
msgid "Receives copy"
msgstr "Recebe cópia"
-#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Recent activity"
msgstr "Atividade recente"
@@ -6486,10 +6663,10 @@ msgstr "Atividade recente"
msgid "Recent documents"
msgstr "Documentos recentes"
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: 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
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
@@ -6499,9 +6676,9 @@ msgid "Recipient"
msgstr "Destinatário"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Recipient action authentication"
msgstr "Autenticação de ação do destinatário"
@@ -6521,11 +6698,11 @@ msgstr "E-mail de solicitação de assinatura do destinatário"
msgid "Recipient updated"
msgstr "Destinatário atualizado"
-#: 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
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Recipients"
msgstr "Destinatários"
@@ -6569,10 +6746,10 @@ msgstr "Vermelho"
msgid "Redirect URI"
msgstr "URI de Redirecionamento"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Redirect URL"
msgstr "URL de Redirecionamento"
@@ -6580,8 +6757,8 @@ msgstr "URL de Redirecionamento"
msgid "Redirecting"
msgstr "Redirecionando"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Registration Successful"
msgstr "Registro Bem-sucedido"
@@ -6589,19 +6766,19 @@ msgstr "Registro Bem-sucedido"
msgid "Reject"
msgstr "Rejeitar"
-#: 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
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.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
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
msgid "Reject Document"
msgstr "Rejeitar Documento"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
msgid "Rejected"
msgstr "Rejeitado"
@@ -6614,8 +6791,8 @@ msgstr "Rejeição Confirmada"
msgid "Rejection reason: {reason}"
msgstr "Motivo da rejeição: {reason}"
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
msgid "Reload"
msgstr "Recarregar"
@@ -6641,34 +6818,34 @@ msgstr "Lembrete: Por favor, {recipientActionVerb} este documento"
msgid "Reminder: Please {recipientActionVerb} your document"
msgstr "Lembrete: Por favor, {recipientActionVerb} seu documento"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/avatar-image.tsx
-#: apps/remix/app/components/dialogs/template-use-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-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Remove"
msgstr "Remover"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Remove email domain"
msgstr "Remover domínio de e-mail"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Remove organisation group"
msgstr "Remover grupo da organização"
@@ -6680,13 +6857,13 @@ msgstr "Remover membro da organização"
msgid "Remove team email"
msgstr "Remover e-mail da equipe"
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Remove team member"
msgstr "Remover membro da equipe"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Repeat Password"
msgstr "Repetir Senha"
@@ -6694,22 +6871,26 @@ msgstr "Repetir Senha"
msgid "Reply to email"
msgstr "Responder ao e-mail"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Reply To Email"
msgstr "Responder ao E-mail"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Request"
+msgstr ""
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Requesting Organisation"
msgstr "Organização Solicitante"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Required field"
msgstr "Campo obrigatório"
@@ -6725,8 +6906,9 @@ msgstr "Escopos necessários"
msgid "Reseal document"
msgstr "Reselar documento"
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Resend"
msgstr "Reenviar"
@@ -6739,9 +6921,9 @@ msgstr "Reenviar código"
msgid "Resend Confirmation Email"
msgstr "Reenviar E-mail de Confirmação"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Resend Document"
msgstr "Reenviar Documento"
@@ -6749,9 +6931,9 @@ msgstr "Reenviar Documento"
msgid "Resend verification"
msgstr "Reenviar verificação"
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Reset"
msgstr "Redefinir"
@@ -6764,9 +6946,9 @@ msgstr "Redefinir 2FA"
msgid "Reset email sent"
msgstr "E-mail de redefinição enviado"
-#: 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
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Reset Password"
msgstr "Redefinir Senha"
@@ -6791,6 +6973,18 @@ msgstr "Resolver"
msgid "Resolve payment"
msgstr "Resolver pagamento"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response"
+msgstr ""
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Code"
+msgstr ""
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Headers"
+msgstr ""
+
#: 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 "Tenha certeza de que seu documento é estritamente confidencial e nunca será compartilhado. Apenas sua experiência de assinatura será destacada. Compartilhe seu cartão de assinatura personalizado para mostrar sua assinatura!"
@@ -6811,11 +7005,11 @@ msgstr "Tentado novamente"
msgid "Retry"
msgstr "Tentar novamente"
-#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "Return"
msgstr "Voltar"
@@ -6831,8 +7025,8 @@ msgstr "Voltar para documentos"
msgid "Return to Home"
msgstr "Voltar para a Página Inicial"
-#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
msgid "Return to sign in"
msgstr "Voltar para entrar"
@@ -6844,8 +7038,8 @@ msgstr "Voltar para modelos"
msgid "Review request"
msgstr "Revisar solicitação"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Revoke"
msgstr "Revogar"
@@ -6863,23 +7057,24 @@ msgstr "Revogar todas as sessões"
msgid "Right"
msgstr "Direita"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Role"
msgstr "Papel"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Roles"
msgstr "Papéis"
@@ -6887,11 +7082,11 @@ msgstr "Papéis"
msgid "Rows per page"
msgstr "Linhas por página"
-#: 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/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
msgid "Save"
msgstr "Salvar"
@@ -6910,12 +7105,13 @@ msgstr "Salvar Modelo"
msgid "Sealing job started"
msgstr "Trabalho de selamento iniciado"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
-#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Search"
msgstr "Pesquisar"
@@ -6931,7 +7127,10 @@ msgstr "Pesquisar por ID ou nome da reivindicação"
msgid "Search by document title"
msgstr "Pesquisar por título do documento"
-#: apps/remix/app/components/tables/admin-leaderboard-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Search by ID"
+msgstr ""
+
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
msgid "Search by name or email"
msgstr "Pesquisar por nome ou e-mail"
@@ -6940,15 +7139,19 @@ msgstr "Pesquisar por nome ou e-mail"
msgid "Search by organisation ID, name, customer ID or owner email"
msgstr "Pesquisar por ID da organização, nome, ID do cliente ou e-mail do proprietário"
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+msgid "Search by organisation name"
+msgstr ""
+
#: apps/remix/app/components/general/document/document-search.tsx
msgid "Search documents..."
msgstr "Pesquisar documentos..."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "Search folders..."
msgstr "Pesquisar pastas..."
@@ -6960,10 +7163,10 @@ msgstr "Pesquisar idiomas..."
msgid "Secret"
msgstr "Segredo"
-#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Security"
msgstr "Segurança"
@@ -6976,8 +7179,8 @@ msgid "See the background jobs tab for the status"
msgstr "Veja a aba de trabalhos em segundo plano para o status"
#: 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
+#: packages/ui/primitives/document-flow/types.ts
msgid "Select"
msgstr "Selecionar"
@@ -6997,6 +7200,10 @@ msgstr "Selecione um plano"
msgid "Select a plan to continue"
msgstr "Selecione um plano para continuar"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Select a recipient"
+msgstr ""
+
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
msgid "Select a team to view its dashboard"
msgstr "Selecione uma equipe para visualizar seu painel"
@@ -7017,6 +7224,10 @@ msgstr "Selecione um fuso horário"
msgid "Select access methods"
msgstr "Selecionar métodos de acesso"
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+msgid "Select an event type"
+msgstr ""
+
#: apps/remix/app/components/dialogs/sign-field-dropdown-dialog.tsx
#: packages/ui/primitives/combobox.tsx
msgid "Select an option"
@@ -7031,8 +7242,8 @@ msgstr "Selecione uma organização para visualizar equipes"
msgid "Select at least"
msgstr "Selecione pelo menos"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "Select authentication methods"
msgstr "Selecionar métodos de autenticação"
@@ -7045,8 +7256,8 @@ msgstr "Selecionar opção padrão"
msgid "Select default role"
msgstr "Selecionar papel padrão"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Select direction"
msgstr "Selecionar direção"
@@ -7063,9 +7274,9 @@ msgstr "Selecione grupos de membros para adicionar à equipe."
msgid "Select groups to add to this team"
msgstr "Selecione grupos para adicionar a esta equipe"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Select members"
msgstr "Selecionar membros"
@@ -7085,11 +7296,20 @@ msgstr "Selecionar Opção"
msgid "Select passkey"
msgstr "Selecionar chave de acesso"
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Select signature types"
msgstr "Selecionar tipos de assinatura"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Select text align"
msgstr "Selecionar alinhamento de texto"
@@ -7110,24 +7330,32 @@ msgstr "Selecione os membros para incluir neste grupo"
msgid "Select triggers"
msgstr "Selecionar gatilhos"
+#: packages/ui/primitives/multi-select-combobox.tsx
+msgid "Select values..."
+msgstr ""
+
+#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+msgid "Select vertical align"
+msgstr ""
+
#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
msgid "Select visibility"
msgstr "Selecionar visibilidade"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Selected Recipient"
msgstr "Destinatário Selecionado"
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send"
msgstr "Enviar"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Send a test webhook with sample data to verify your integration is working correctly."
msgstr "Envie um webhook de teste com dados de exemplo para verificar se sua integração está funcionando corretamente."
@@ -7140,9 +7368,9 @@ msgstr "Enviar e-mail de confirmação"
msgid "Send document"
msgstr "Enviar documento"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send Document"
msgstr "Enviar Documento"
@@ -7187,8 +7415,8 @@ msgstr "Enviar e-mail de destinatário assinado"
msgid "Send recipient signing request email"
msgstr "Enviar e-mail de solicitação de assinatura do destinatário"
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
msgid "Send reminder"
msgstr "Enviar lembrete"
@@ -7196,12 +7424,8 @@ msgstr "Enviar lembrete"
msgid "Send reminders to the following recipients"
msgstr "Enviar lembretes para os seguintes destinatários"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
-msgid "Send Test Webhook"
-msgstr "Enviar Webhook de Teste"
-
-#: apps/remix/app/components/tables/inbox-table.tsx
#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Sender"
msgstr "Remetente"
@@ -7213,8 +7437,10 @@ msgstr "Enviando E-mail de Redefinição..."
msgid "Sending..."
msgstr "Enviando..."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Sent"
msgstr "Enviado"
@@ -7238,15 +7464,15 @@ msgstr "Configure as propriedades do documento e as informações do destinatár
msgid "Set up your template properties and recipient information"
msgstr "Configure as propriedades do modelo e as informações do destinatário"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/_layout.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/app-nav-mobile.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
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
msgid "Settings"
msgstr "Configurações"
@@ -7254,17 +7480,14 @@ msgstr "Configurações"
msgid "Setup"
msgstr "Configurar"
-#: 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/tables/documents-table-action-dropdown.tsx
+#: packages/ui/components/document/document-share-button.tsx
msgid "Share"
msgstr "Compartilhar"
-#: packages/ui/components/document/document-share-button.tsx
-msgid "Share Signature Card"
-msgstr "Compartilhar Cartão de Assinatura"
-
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Share Signing Card"
msgstr "Compartilhar Cartão de Assinatura"
@@ -7281,8 +7504,8 @@ msgid "Show"
msgstr "Mostrar"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Show advanced settings"
msgstr "Mostrar configurações avançadas"
@@ -7290,26 +7513,26 @@ msgstr "Mostrar configurações avançadas"
msgid "Show templates in your public profile for your audience to sign and get started quickly"
msgstr "Mostrar modelos no seu perfil público para seu público assinar e começar rapidamente"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/components/tables/inbox-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/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-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
-#: apps/remix/app/components/general/document/document-page-view-button.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/user-profile-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Sign"
msgstr "Assinar"
@@ -7334,15 +7557,15 @@ msgstr "Assinar como<0>{0} <1>({1})1>0>"
msgid "Sign Checkbox Field"
msgstr "Assinar Campo de Caixa de Seleção"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign document"
msgstr "Assinar documento"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Sign Document"
msgstr "Assinar Documento"
@@ -7363,16 +7586,16 @@ msgstr "Assinar campo"
msgid "Sign Here"
msgstr "Assine Aqui"
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: packages/email/template-components/template-reset-password.tsx
msgid "Sign In"
msgstr "Entrar"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Sign in to your account"
msgstr "Entre na sua conta"
@@ -7388,9 +7611,9 @@ msgstr "Assinar Nome"
msgid "Sign Number Field"
msgstr "Assinar Campo Numérico"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Sign Out"
msgstr "Sair"
@@ -7402,8 +7625,8 @@ msgstr "Assinar Campo de Assinatura"
msgid "Sign Text Field"
msgstr "Assinar Campo de Texto"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign the document to complete the process."
msgstr "Assine o documento para concluir o processo."
@@ -7436,21 +7659,21 @@ msgstr "Assine seu nome completo no campo"
msgid "Sign your initials into the field"
msgstr "Assine suas iniciais no campo"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Signature"
msgstr "Assinatura"
@@ -7478,11 +7701,10 @@ msgstr "Tipos de assinatura"
msgid "Signatures Collected"
msgstr "Assinaturas Coletadas"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/ui/components/document/document-read-only-fields.tsx
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Signed"
msgstr "Assinado"
@@ -7491,6 +7713,11 @@ msgctxt "Recipient role actioned"
msgid "Signed"
msgstr "Assinado"
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+msgctxt "Signed document (adjective)"
+msgid "Signed"
+msgstr ""
+
#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Signer"
msgstr "Signatário"
@@ -7536,8 +7763,8 @@ msgstr "Assinando para"
msgid "Signing in..."
msgstr "Entrando..."
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Signing Links"
msgstr "Links de assinatura"
@@ -7546,21 +7773,16 @@ msgid "Signing links have been generated for this document."
msgstr "Links de assinatura foram gerados para este documento."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Signing order is enabled."
msgstr "Ordem de assinatura está habilitada."
-#: apps/remix/app/routes/_authenticated+/admin+/leaderboard.tsx
-#: apps/remix/app/components/tables/admin-leaderboard-table.tsx
-msgid "Signing Volume"
-msgstr "Volume de Assinaturas"
-
#: apps/remix/app/components/forms/signup.tsx
msgid "Signups are disabled."
msgstr "Cadastros estão desabilitados."
-#. placeholder {0}: DateTime.fromJSDate(publicProfile.badge.since).toFormat('LLL 'yy')
+#. placeholder {0}: DateTime.fromJSDate(publicProfile.badge.since).toFormat('LLL ‘yy')
#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Since {0}"
msgstr "Desde {0}"
@@ -7569,8 +7791,8 @@ msgstr "Desde {0}"
msgid "Site Banner"
msgstr "Banner do Site"
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "Site Settings"
msgstr "Configurações do Site"
@@ -7578,51 +7800,51 @@ msgstr "Configurações do Site"
msgid "Some signers have not been assigned a signature field. Please assign at least 1 signature field to each signer before proceeding."
msgstr "Alguns signatários não receberam um campo de assinatura. Por favor, atribua pelo menos 1 campo de assinatura a cada signatário antes de prosseguir."
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/general/template/template-drop-zone-wrapper.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.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-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/embed/embed-document-signing-page-v1.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-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/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-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
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-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-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-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-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
+#: apps/remix/app/components/general/document/document-audit-log-download-button.tsx
+#: apps/remix/app/components/general/document/document-certificate-download-button.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
#: packages/ui/components/document/document-share-button.tsx
msgid "Something went wrong"
msgstr "Algo deu errado"
@@ -7632,10 +7854,10 @@ msgstr "Algo deu errado"
msgid "Something went wrong while attempting to verify your email address for <0>{0}0>. Please try again later."
msgstr "Algo deu errado ao tentar verificar seu endereço de e-mail para <0>{0}0>. Por favor, tente novamente mais tarde."
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Something went wrong while loading the document."
msgstr "Algo deu errado ao carregar o documento."
@@ -7660,10 +7882,10 @@ msgstr "Algo deu errado ao atualizar a assinatura de cobrança da equipe, entre
msgid "Something went wrong while uploading this file"
msgstr "Algo deu errado ao enviar este arquivo"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
msgid "Something went wrong!"
msgstr "Algo deu errado!"
@@ -7675,8 +7897,8 @@ msgstr "Algo deu errado."
msgid "Something went wrong. Please try again later."
msgstr "Algo deu errado. Por favor, tente novamente mais tarde."
-#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Something went wrong. Please try again or contact support."
msgstr "Algo deu errado. Por favor, tente novamente ou entre em contato com o suporte."
@@ -7688,8 +7910,8 @@ msgstr "Desculpe, não foi possível baixar os registros de auditoria. Por favor
msgid "Sorry, we were unable to download the certificate. Please try again later."
msgstr "Desculpe, não foi possível baixar o certificado. Por favor, tente novamente mais tarde."
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Source"
msgstr "Origem"
@@ -7705,15 +7927,19 @@ msgstr "SSO"
msgid "Stats"
msgstr "Estatísticas"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Status"
msgstr "Status"
@@ -7740,14 +7966,14 @@ msgstr "Cliente Stripe criado com sucesso"
msgid "Stripe Customer ID"
msgstr "ID do Cliente Stripe"
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Subject"
msgstr "Assunto"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Subject <0>(Optional)0>"
msgstr "Assunto <0>(Opcional)0>"
@@ -7766,8 +7992,8 @@ msgstr "Enviado"
msgid "Subscribe"
msgstr "Assinar"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Subscription"
msgstr "Assinatura"
@@ -7791,59 +8017,65 @@ msgstr "Reivindicações de Assinatura"
msgid "Subscription invalid"
msgstr "Assinatura inválida"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/verify-email-banner.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/organisation-update-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Subscription Status"
+msgstr ""
+
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-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-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-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/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/verify-email-banner.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Success"
msgstr "Sucesso"
@@ -7859,8 +8091,14 @@ msgstr "Criado com sucesso: {successCount}"
msgid "Summary:"
msgstr "Resumo:"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+msgid "support"
+msgstr ""
+
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "Support"
msgstr "Suporte"
@@ -7881,11 +8119,11 @@ msgid "Sync failed, changes not saved"
msgstr "Sincronização falhou, alterações não salvas"
#: packages/lib/utils/document-audit-logs.ts
-msgctxt "Audit log format"
msgid "System auto inserted fields"
msgstr "Campos inseridos automaticamente pelo sistema"
#: packages/lib/utils/document-audit-logs.ts
+msgctxt "Audit log format"
msgid "System auto inserted fields"
msgstr "Campos inseridos automaticamente pelo sistema"
@@ -7897,9 +8135,10 @@ msgstr "Requisitos do Sistema"
msgid "System Theme"
msgstr "Tema do Sistema"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team"
msgstr "Equipe"
@@ -7916,8 +8155,8 @@ msgstr "Administrador da Equipe"
msgid "Team Assignments"
msgstr "Atribuições da Equipe"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Team Count"
msgstr "Contagem de Equipes"
@@ -7980,13 +8219,14 @@ msgstr "Membro da Equipe"
msgid "Team Members"
msgstr "Membros da Equipe"
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "Team members have been added."
msgstr "Membros da equipe foram adicionados."
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
msgid "Team Name"
msgstr "Nome da Equipe"
@@ -8003,9 +8243,9 @@ msgstr "Apenas Equipe"
msgid "Team only templates are not linked anywhere and are visible only to your team."
msgstr "Modelos apenas da equipe não estão vinculados em nenhum lugar e são visíveis apenas para sua equipe."
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team Role"
msgstr "Papel na Equipe"
@@ -8021,15 +8261,18 @@ msgstr "Configurações da Equipe"
msgid "Team url"
msgstr "URL da equipe"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Team URL"
msgstr "URL da Equipe"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
msgid "Teams"
msgstr "Equipes"
@@ -8041,16 +8284,21 @@ msgstr "Equipes ajudam você a organizar seu trabalho e colaborar com outros. Cr
msgid "Teams that this organisation group is currently assigned to"
msgstr "Equipes às quais este grupo da organização está atualmente atribuído"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/public-profile-template-manage-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.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/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
msgid "Template"
msgstr "Modelo"
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: packages/ui/primitives/document-upload-button.tsx
+msgid "Template (Legacy)"
+msgstr ""
+
#: apps/remix/app/routes/embed+/v1+/authoring_.completed.create.tsx
msgid "Template Created"
msgstr "Modelo Criado"
@@ -8079,6 +8327,10 @@ msgstr "Modelo foi removido do seu perfil público."
msgid "Template has been updated."
msgstr "Modelo foi atualizado."
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
+msgid "Template ID (Legacy)"
+msgstr ""
+
#: apps/remix/app/components/general/legacy-field-warning-popover.tsx
msgid "Template is using legacy field insertion"
msgstr "Modelo está usando inserção de campo legada"
@@ -8103,17 +8355,17 @@ msgstr "Título do modelo"
msgid "Template updated successfully"
msgstr "Modelo atualizado com sucesso"
-#: apps/remix/app/components/general/template/template-drop-zone-wrapper.tsx
-#: apps/remix/app/components/general/document/envelope-upload-button.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Template uploaded"
msgstr "Modelo enviado"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.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
msgid "Templates"
msgstr "Modelos"
@@ -8121,8 +8373,10 @@ msgstr "Modelos"
msgid "Templates allow you to quickly generate documents with pre-filled recipients and fields."
msgstr "Modelos permitem que você gere documentos rapidamente com destinatários e campos pré-preenchidos."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Test"
+msgstr ""
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Test Webhook"
msgstr "Testar Webhook"
@@ -8135,23 +8389,23 @@ msgstr "Teste de webhook falhou"
msgid "Test webhook sent"
msgstr "Webhook de teste enviado"
+#: 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/envelope-editor/envelope-editor-fields-drag-drop.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
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/types.ts
-#: packages/ui/primitives/document-flow/add-fields.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Text"
msgstr "Texto"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Text Align"
msgstr "Alinhamento de Texto"
@@ -8211,14 +8465,14 @@ msgstr "O conteúdo a ser exibido no banner, HTML é permitido"
msgid "The default email to use when sending emails to recipients"
msgstr "O e-mail padrão a ser usado ao enviar e-mails para destinatários"
-#: 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
+#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "The direct link has been copied to your clipboard"
msgstr "O link direto foi copiado para sua área de transferência"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "The display name for this email address"
msgstr "O nome de exibição para este endereço de e-mail"
@@ -8238,8 +8492,8 @@ msgstr "O documento está agora concluído, por favor, siga quaisquer instruçõ
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 "O proprietário do documento foi notificado desta rejeição. Nenhuma ação adicional é necessária de você no momento. O proprietário do documento pode entrar em contato com você com quaisquer perguntas sobre esta rejeição."
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "The document owner has been notified of your decision. They may contact you with further instructions if necessary."
msgstr "O proprietário do documento foi notificado de sua decisão. Eles podem entrar em contato com você com instruções adicionais, se necessário."
@@ -8259,14 +8513,10 @@ msgstr "O documento será enviado imediatamente para os destinatários se isso e
msgid "The document you are looking for could not be found."
msgstr "O documento que você está procurando não pôde ser encontrado."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-msgid ""
-"The document you are looking for may have been removed, renamed or may have never\n"
-" existed."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+msgid "The document you are looking for may have been removed, renamed or may have never existed."
msgstr ""
-"O documento que você está procurando pode ter sido removido, renomeado ou pode nunca ter\n"
-" existido."
#: packages/ui/components/document/document-send-email-message-helper.tsx
msgid "The document's name"
@@ -8277,19 +8527,15 @@ msgid "The email address which will show up in the \"Reply To\" field in emails"
msgstr "O endereço de e-mail que aparecerá no campo \"Responder Para\" nos e-mails"
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-msgid ""
-"The email domain you are looking for may have been removed, renamed or may have never\n"
-" existed."
+msgid "The email domain you are looking for may have been removed, renamed or may have never existed."
msgstr ""
-"O domínio de e-mail que você está procurando pode ter sido removido, renomeado ou pode nunca ter\n"
-" existido."
#: apps/remix/app/components/forms/signin.tsx
msgid "The email or password provided is incorrect"
msgstr "O e-mail ou senha fornecidos estão incorretos"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The events that will trigger a webhook to be sent to your URL."
msgstr "Os eventos que acionarão o envio de um webhook para sua URL."
@@ -8338,32 +8584,17 @@ msgid "The organisation email has been created successfully."
msgstr "O e-mail da organização foi criado com sucesso."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-msgid ""
-"The organisation group you are looking for may have been removed, renamed or may have never\n"
-" existed."
+msgid "The organisation group you are looking for may have been removed, renamed or may have never existed."
msgstr ""
-"O grupo da organização que você está procurando pode ter sido removido, renomeado ou pode nunca ter\n"
-" existido."
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "The organisation role that will be applied to all members in this group."
msgstr "O papel da organização que será aplicado a todos os membros deste grupo."
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-msgid ""
-"The organisation you are looking for may have been removed, renamed or may have never\n"
-" existed."
-msgstr ""
-"A organização que você está procurando pode ter sido removida, renomeada ou pode nunca ter\n"
-" existido."
-
#: apps/remix/app/routes/_authenticated+/_layout.tsx
-msgid ""
-"The organisation you are looking for may have been removed, renamed or may have never\n"
-" existed."
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+msgid "The organisation you are looking for may have been removed, renamed or may have never existed."
msgstr ""
-"A organização que você está procurando pode ter sido removida, renomeada ou pode nunca ter\n"
-" existido."
#: apps/remix/app/components/general/generic-error-layout.tsx
msgid "The page you are looking for was moved, removed, renamed or might never have existed."
@@ -8439,8 +8670,8 @@ msgid "The signer's name"
msgstr "O nome do signatário"
#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "The signing link has been copied to your clipboard."
msgstr "O link de assinatura foi copiado para sua área de transferência."
@@ -8454,20 +8685,9 @@ msgid "The team email <0>{teamEmail}0> has been removed from the following tea
msgstr "O e-mail da equipe <0>{teamEmail}0> foi removido da seguinte equipe"
#: apps/remix/app/routes/_authenticated+/_layout.tsx
-msgid ""
-"The team you are looking for may have been removed, renamed or may have never\n"
-" existed."
-msgstr ""
-"A equipe que você está procurando pode ter sido removida, renomeada ou pode nunca ter\n"
-" existido."
-
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/_layout.tsx
-msgid ""
-"The team you are looking for may have been removed, renamed or may have never\n"
-" existed."
+msgid "The team you are looking for may have been removed, renamed or may have never existed."
msgstr ""
-"A equipe que você está procurando pode ter sido removida, renomeada ou pode nunca ter\n"
-" existido."
#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "The template has been moved successfully."
@@ -8482,12 +8702,8 @@ msgid "The template you are looking for could not be found."
msgstr "O modelo que você está procurando não pôde ser encontrado."
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-msgid ""
-"The template you are looking for may have been removed, renamed or may have never\n"
-" existed."
+msgid "The template you are looking for may have been removed, renamed or may have never existed."
msgstr ""
-"O modelo que você está procurando pode ter sido removido, renomeado ou pode nunca ter\n"
-" existido."
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "The test webhook has been successfully sent to your endpoint."
@@ -8521,18 +8737,14 @@ msgstr "O tamanho da fonte da assinatura digitada"
msgid "The types of signatures that recipients are allowed to use when signing the document."
msgstr "Os tipos de assinaturas que os destinatários podem usar ao assinar o documento."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The URL for Documenso to send webhook events to."
msgstr "A URL para o Documenso enviar eventos de webhook."
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-msgid ""
-"The user you are looking for may have been removed, renamed or may have never\n"
-" existed."
+msgid "The user you are looking for may have been removed, renamed or may have never existed."
msgstr ""
-"O usuário que você está procurando pode ter sido removido, renomeado ou pode nunca ter\n"
-" existido."
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "The user's two factor authentication has been reset successfully."
@@ -8542,7 +8754,7 @@ msgstr "A autenticação de dois fatores do usuário foi redefinida com sucesso.
msgid "The webhook has been successfully deleted."
msgstr "O webhook foi excluído com sucesso."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The webhook has been updated successfully."
msgstr "O webhook foi atualizado com sucesso."
@@ -8550,13 +8762,9 @@ msgstr "O webhook foi atualizado com sucesso."
msgid "The webhook was successfully created."
msgstr "O webhook foi criado com sucesso."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid ""
-"The webhook you are looking for may have been removed, renamed or may have never\n"
-" existed."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "The webhook you are looking for may have been removed, renamed or may have never existed."
msgstr ""
-"O webhook que você está procurando pode ter sido removido, renomeado ou pode nunca ter\n"
-" existido."
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
msgid "There are no active drafts at the current moment. You can upload a document to start drafting."
@@ -8598,9 +8806,9 @@ msgstr "Esta conta não foi verificada. Por favor, verifique sua conta antes de
msgid "This action is irreversible. Please ensure you have informed the user before proceeding."
msgstr "Esta ação é irreversível. Por favor, certifique-se de ter informado o usuário antes de prosseguir."
-#: 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
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "This action is not reversible. Please be certain."
msgstr "Esta ação não é reversível. Por favor, tenha certeza."
@@ -8612,10 +8820,6 @@ msgstr "Esta ação é reversível, mas tenha cuidado, pois a conta pode ser afe
msgid "This claim is locked and cannot be deleted."
msgstr "Esta reivindicação está bloqueada e não pode ser excluída."
-#: packages/email/template-components/template-access-auth-2fa.tsx
-msgid "This code will expire in {expiresInMinutes} minutes."
-msgstr "Este código expirará em {expiresInMinutes} minutos."
-
#: 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 "Este documento não pode ser recuperado, se você quiser contestar o motivo para documentos futuros, entre em contato com o suporte."
@@ -8632,8 +8836,8 @@ msgstr "Este documento não pôde ser excluído no momento. Por favor, tente nov
msgid "This document could not be downloaded at this time. Please try again."
msgstr "Este documento não pôde ser baixado no momento. Por favor, tente novamente."
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
msgid "This document could not be duplicated at this time. Please try again."
msgstr "Este documento não pôde ser duplicado no momento. Por favor, tente novamente."
@@ -8641,6 +8845,7 @@ msgstr "Este documento não pôde ser duplicado no momento. Por favor, tente nov
msgid "This document could not be re-sent at this time. Please try again."
msgstr "Este documento não pôde ser reenviado no momento. Por favor, tente novamente."
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
msgid "This document has already been sent to this recipient. You can no longer edit this recipient."
msgstr "Este documento já foi enviado para este destinatário. Você não pode mais editar este destinatário."
@@ -8809,9 +9014,9 @@ msgstr "Este token é inválido ou expirou. Nenhuma ação é necessária."
msgid "This token is invalid or has expired. Please contact your team for a new invitation."
msgstr "Este token é inválido ou expirou. Por favor, entre em contato com sua equipe para um novo convite."
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "This URL is already in use."
msgstr "Esta URL já está em uso."
@@ -8851,20 +9056,21 @@ msgstr "Hora"
msgid "Time zone"
msgstr "Fuso horário"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Time Zone"
msgstr "Fuso Horário"
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Title"
msgstr "Título"
@@ -8873,6 +9079,19 @@ msgstr "Título"
msgid "Title cannot be empty"
msgstr "O título não pode estar vazio"
+#. placeholder {0}: actionVerb.toLowerCase()
+#. placeholder {1}: actionTarget.toLowerCase()
+#. placeholder {2}: recipient.email
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+msgid "To {0} this {1}, you need to be logged in as <0>{2}0>"
+msgstr ""
+
+#. placeholder {0}: actionVerb.toLowerCase()
+#. placeholder {1}: actionTarget.toLowerCase()
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+msgid "To {0} this {1}, you need to be logged in."
+msgstr ""
+
#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
msgid "To accept this invitation you must create an account."
msgstr "Para aceitar este convite, você deve criar uma conta."
@@ -8886,12 +9105,12 @@ msgid "To change the email you must remove and add a new email address."
msgstr "Para alterar o e-mail, você deve remover e adicionar um novo endereço de e-mail."
#. placeholder {0}: user.email
-#. placeholder {0}: userToEnable.email
#. placeholder {0}: userToDisable.email
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#. placeholder {0}: userToEnable.email
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "To confirm, please enter the accounts email address <0/>({0})."
msgstr "Para confirmar, por favor, insira o endereço de e-mail da conta <0/>({0})."
@@ -8903,8 +9122,8 @@ msgstr "Para confirmar, por favor, insira o motivo"
msgid "To enable two-factor authentication, scan the following QR code using your authenticator app."
msgstr "Para habilitar a autenticação de dois fatores, escaneie o seguinte código QR usando seu aplicativo autenticador."
-#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
msgid "To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox."
msgstr "Para obter acesso à sua conta, confirme seu endereço de e-mail clicando no link de confirmação da sua caixa de entrada."
@@ -8913,10 +9132,14 @@ msgstr "Para obter acesso à sua conta, confirme seu endereço de e-mail clicand
msgid "To mark this document as viewed, you need to be logged in as <0>{0}0>"
msgstr "Para marcar este documento como visualizado, você precisa estar logado como <0>{0}0>"
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+msgid "To mark this document as viewed, you need to be logged in."
+msgstr ""
+
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "To proceed further, please set at least one value for the {0} field."
msgstr "Para prosseguir, por favor, defina pelo menos um valor para o campo {0}."
@@ -8968,6 +9191,10 @@ msgstr "O token expirou. Por favor, tente novamente."
msgid "Token name"
msgstr "Nome do token"
+#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+msgid "Top"
+msgstr ""
+
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
msgid "Total Documents"
msgstr "Total de Documentos"
@@ -8988,8 +9215,8 @@ msgstr "Total de Signatários que se Cadastraram"
msgid "Total Users"
msgstr "Total de Usuários"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Triggers"
msgstr "Gatilhos"
@@ -9001,8 +9228,8 @@ msgstr "Autenticação de dois fatores"
msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app."
msgstr "Os códigos de recuperação de autenticação de dois fatores são usados para acessar sua conta caso você perca o acesso ao seu aplicativo autenticador."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Two-Factor Authentication"
msgstr "Autenticação de Dois Fatores"
@@ -9022,21 +9249,25 @@ msgstr "A autenticação de dois fatores foi desabilitada para sua conta. Você
msgid "Two-Factor Re-Authentication"
msgstr "Reautenticação de Dois Fatores"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Type"
msgstr "Tipo"
#: packages/lib/constants/document.ts
-msgctxt "Type signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Type signature"
msgid "Type"
-msgstr "Tipo"
+msgstr ""
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Type a command or search..."
msgstr "Digite um comando ou pesquise..."
+#: packages/ui/primitives/signature-pad/signature-pad-type.tsx
+msgid "Type your signature"
+msgstr ""
+
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
msgid "Typed signatures are not allowed. Please draw your signature."
msgstr "Assinaturas digitadas não são permitidas. Por favor, desenhe sua assinatura."
@@ -9123,11 +9354,11 @@ msgstr "Não foi possível configurar a autenticação de dois fatores"
msgid "Unable to sign in"
msgstr "Não foi possível fazer login"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Unauthorized"
msgstr "Não autorizado"
@@ -9135,20 +9366,19 @@ msgstr "Não autorizado"
msgid "Uncompleted"
msgstr "Não concluído"
-#: 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
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.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
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Unknown"
msgstr "Desconhecido"
-#: apps/remix/app/components/general/template/template-drop-zone-wrapper.tsx
-#: apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
msgid "Unknown error"
msgstr "Erro desconhecido"
@@ -9173,27 +9403,28 @@ msgstr "Desafixar"
msgid "Untitled Group"
msgstr "Grupo Sem Título"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: 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/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Update"
@@ -9203,8 +9434,8 @@ msgstr "Atualizar"
msgid "Update Banner"
msgstr "Atualizar Banner"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Update Billing"
msgstr "Atualizar Cobrança"
@@ -9228,9 +9459,9 @@ msgstr "Atualizar Campos"
msgid "Update organisation"
msgstr "Atualizar organização"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "Update organisation member"
msgstr "Atualizar membro da organização"
@@ -9246,16 +9477,16 @@ msgstr "Atualizar senha"
msgid "Update profile"
msgstr "Atualizar perfil"
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
msgid "Update Recipient"
msgstr "Atualizar Destinatário"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Update role"
msgstr "Atualizar papel"
@@ -9290,10 +9521,6 @@ msgstr "Atualize o papel e adicione campos conforme necessário para o destinat
msgid "Update user"
msgstr "Atualizar usuário"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "Update webhook"
-msgstr "Atualizar webhook"
-
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
msgid "Updated {organisationMemberName} to {roleLabel}."
msgstr "{organisationMemberName} atualizado para {roleLabel}."
@@ -9306,8 +9533,8 @@ msgstr "Atualizando senha..."
msgid "Updating Your Information"
msgstr "Atualizando Suas Informações"
-#: packages/ui/primitives/document-upload.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "Upgrade"
msgstr "Atualizar"
@@ -9316,19 +9543,19 @@ msgstr "Atualizar"
msgid "Upgrade <0>{0}0> to {planName}"
msgstr "Atualizar <0>{0}0> para {planName}"
-#: apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
msgid "Upgrade your plan to upload more documents"
msgstr "Atualize seu plano para enviar mais documentos"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
msgid "Upload"
msgstr "Enviar"
#: packages/lib/constants/document.ts
-msgctxt "Upload signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Upload signature"
msgid "Upload"
-msgstr "Enviar"
+msgstr ""
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
msgid "Upload a CSV file to create multiple documents from this template. Each row represents one document with its recipient details."
@@ -9358,9 +9585,9 @@ msgstr "Enviar documento personalizado"
msgid "Upload disabled"
msgstr "Envio desabilitado"
-#: apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
-#: packages/ui/primitives/document-upload.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "Upload Document"
msgstr "Enviar Documento"
@@ -9368,14 +9595,9 @@ msgstr "Enviar Documento"
msgid "Upload documents and add recipients"
msgstr "Envie documentos e adicione destinatários"
-#: packages/ui/primitives/document-upload.tsx
-msgid "Upload Envelope"
-msgstr "Enviar Envelope"
-
-#: apps/remix/app/components/general/template/template-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/document/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Upload failed"
msgstr "Envio falhou"
@@ -9383,11 +9605,11 @@ msgstr "Envio falhou"
msgid "Upload Signature"
msgstr "Enviar Assinatura"
-#: apps/remix/app/components/general/template/template-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "Upload Template"
msgstr "Enviar Modelo"
-#: packages/ui/primitives/document-upload.tsx
#: packages/ui/primitives/document-dropzone.tsx
msgid "Upload Template Document"
msgstr "Enviar Documento do Modelo"
@@ -9396,8 +9618,8 @@ msgstr "Enviar Documento do Modelo"
msgid "Upload your brand logo (max 5MB, JPG, PNG, or WebP)"
msgstr "Envie o logo da sua marca (máx. 5MB, JPG, PNG ou WebP)"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Uploaded by"
msgstr "Enviado por"
@@ -9414,17 +9636,10 @@ msgid "Uploaded file not an allowed file type"
msgstr "Arquivo enviado não é um tipo de arquivo permitido"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
msgid "Uploading"
msgstr "Enviando"
-#: apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx
-msgid "Uploading document..."
-msgstr "Enviando documento..."
-
-#: apps/remix/app/components/general/template/template-drop-zone-wrapper.tsx
-msgid "Uploading template..."
-msgstr "Enviando modelo..."
-
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "URL"
msgstr "URL"
@@ -9433,18 +9648,18 @@ msgstr "URL"
msgid "Use"
msgstr "Usar"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Authenticator"
msgstr "Usar Autenticador"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Backup Code"
msgstr "Usar Código de Backup"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
msgid "Use Template"
msgstr "Usar Modelo"
@@ -9456,8 +9671,8 @@ msgstr "Use seu aplicativo autenticador para gerar um código"
msgid "Use your passkey for authentication"
msgstr "Use sua chave de acesso para autenticação"
-#: apps/remix/app/components/tables/internal-audit-log-table.tsx
#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/internal-audit-log-table.tsx
msgid "User"
msgstr "Usuário"
@@ -9473,10 +9688,10 @@ msgstr "O usuário não tem senha."
msgid "User not found"
msgstr "Usuário não encontrado"
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "User not found."
msgstr "Usuário não encontrado."
@@ -9496,14 +9711,15 @@ msgstr "Configurações do usuário"
msgid "User with this email already exists. Please use a different email address."
msgstr "Um usuário com este e-mail já existe. Por favor, use um endereço de e-mail diferente."
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
msgid "Users"
msgstr "Usuários"
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Validation"
msgstr "Validação"
@@ -9511,14 +9727,18 @@ msgstr "Validação"
msgid "Validation failed"
msgstr "Validação falhou"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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 "Value"
msgstr "Valor"
+#: packages/lib/types/field-meta.ts
+msgid "Value must be a number"
+msgstr ""
+
#: packages/email/template-components/template-access-auth-2fa.tsx
msgid "Verification Code Required"
msgstr "Código de Verificação Necessário"
@@ -9551,8 +9771,8 @@ msgstr "Verifique seu endereço de e-mail"
msgid "Verify your email address to unlock all features."
msgstr "Verifique seu endereço de e-mail para desbloquear todos os recursos."
-#: apps/remix/app/components/general/document/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Verify your email to upload documents."
msgstr "Verifique seu e-mail para enviar documentos."
@@ -9560,21 +9780,25 @@ msgstr "Verifique seu e-mail para enviar documentos."
msgid "Verify your team email address"
msgstr "Verifique o endereço de e-mail da sua equipe"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Vertical"
msgstr "Vertical"
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/inbox-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
+#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+msgid "Vertical Align"
+msgstr ""
+
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.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/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
msgid "View"
msgstr "Visualizar"
@@ -9607,13 +9831,13 @@ msgstr "Ver todos os documentos relacionados"
msgid "View all security activity related to your account."
msgstr "Ver toda a atividade de segurança relacionada à sua conta."
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "View and manage all active sessions for your account."
msgstr "Ver e gerenciar todas as sessões ativas da sua conta."
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "View and manage all login methods linked to your account."
msgstr "Ver e gerenciar todos os métodos de login vinculados à sua conta."
@@ -9629,14 +9853,14 @@ msgstr "Ver Registros DNS"
msgid "View document"
msgstr "Ver documento"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.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
-#: packages/email/template-components/template-document-rejected.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: packages/email/template-components/template-document-invite.tsx
+#: packages/email/template-components/template-document-rejected.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
msgid "View Document"
msgstr "Ver Documento"
@@ -9656,6 +9880,10 @@ msgstr "Ver Documento para assinar"
msgid "View documents associated with this email"
msgstr "Ver documentos associados a este e-mail"
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+msgid "View insights"
+msgstr ""
+
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
msgid "View invites"
msgstr "Ver convites"
@@ -9689,9 +9917,9 @@ msgstr "Ver equipes"
msgid "View the DNS records for this email domain"
msgstr "Ver os registros DNS para este domínio de e-mail"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Viewed"
msgstr "Visualizado"
@@ -9739,8 +9967,8 @@ msgstr "Aguardando outros concluírem a assinatura."
msgid "Waiting for others to sign"
msgstr "Aguardando outros assinarem"
-#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
#: apps/remix/app/components/embed/embed-document-waiting-for-turn.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
msgid "Waiting for Your Turn"
msgstr "Aguardando Sua Vez"
@@ -9756,17 +9984,17 @@ msgstr "Quer seu próprio perfil público?"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
msgid "Warning: Assistant as last signer"
msgstr "Aviso: Assistente como último signatário"
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
msgstr "Não podemos prosseguir para o portal de cobrança no momento. Por favor, tente novamente ou entre em contato com o suporte."
@@ -9813,12 +10041,12 @@ msgstr "Encontramos um erro ao remover o link direto do modelo. Por favor, tente
msgid "We encountered an error while sending the test webhook. Please check your endpoint and try again."
msgstr "Encontramos um erro ao enviar o webhook de teste. Por favor, verifique seu endpoint e tente novamente."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "We encountered an error while updating the webhook. Please try again later."
msgstr "Encontramos um erro ao atualizar o webhook. Por favor, tente novamente mais tarde."
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "We encountered an unknown error while attempting to add team members. Please try again later."
msgstr "Encontramos um erro desconhecido ao tentar adicionar membros da equipe. Por favor, tente novamente mais tarde."
@@ -9834,8 +10062,8 @@ msgstr "Encontramos um erro desconhecido ao tentar adicionar seu domínio. Por f
msgid "We encountered an unknown error while attempting to create a group. Please try again later."
msgstr "Encontramos um erro desconhecido ao tentar criar um grupo. Por favor, tente novamente mais tarde."
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "We encountered an unknown error while attempting to create a organisation. Please try again later."
msgstr "Encontramos um erro desconhecido ao tentar criar uma organização. Por favor, tente novamente mais tarde."
@@ -9891,8 +10119,8 @@ msgstr "Encontramos um erro desconhecido ao tentar remover este e-mail. Por favo
msgid "We encountered an unknown error while attempting to remove this envelope item. Please try again later."
msgstr "Encontramos um erro desconhecido ao tentar remover este item do envelope. Por favor, tente novamente mais tarde."
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this group. Please try again later."
msgstr "Encontramos um erro desconhecido ao tentar remover este grupo. Por favor, tente novamente mais tarde."
@@ -9900,8 +10128,8 @@ msgstr "Encontramos um erro desconhecido ao tentar remover este grupo. Por favor
msgid "We encountered an unknown error while attempting to remove this template from your profile. Please try again later."
msgstr "Encontramos um erro desconhecido ao tentar remover este modelo do seu perfil. Por favor, tente novamente mais tarde."
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this user. Please try again later."
msgstr "Encontramos um erro desconhecido ao tentar remover este usuário. Por favor, tente novamente mais tarde."
@@ -9918,10 +10146,10 @@ msgstr "Encontramos um erro desconhecido ao tentar redefinir sua senha. Por favo
msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support."
msgstr "Encontramos um erro desconhecido ao tentar revogar o acesso. Por favor, tente novamente ou entre em contato com o suporte."
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
msgid "We encountered an unknown error while attempting to sign you In. Please try again later."
msgstr "Encontramos um erro desconhecido ao tentar fazer seu login. Por favor, tente novamente mais tarde."
@@ -9943,13 +10171,13 @@ msgstr "Encontramos um erro desconhecido ao tentar atualizar o envelope. Por fav
msgid "We encountered an unknown error while attempting to update the template. Please try again later."
msgstr "Encontramos um erro desconhecido ao tentar atualizar o modelo. Por favor, tente novamente mais tarde."
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this organisation member. Please try again later."
msgstr "Encontramos um erro desconhecido ao tentar atualizar este membro da organização. Por favor, tente novamente mais tarde."
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this team member. Please try again later."
msgstr "Encontramos um erro desconhecido ao tentar atualizar este membro da equipe. Por favor, tente novamente mais tarde."
@@ -9957,8 +10185,8 @@ msgstr "Encontramos um erro desconhecido ao tentar atualizar este membro da equi
msgid "We encountered an unknown error while attempting to update your organisation. Please try again later."
msgstr "Encontramos um erro desconhecido ao tentar atualizar sua organização. Por favor, tente novamente mais tarde."
-#: apps/remix/app/components/forms/password.tsx
#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
msgid "We encountered an unknown error while attempting to update your password. Please try again later."
msgstr "Encontramos um erro desconhecido ao tentar atualizar sua senha. Por favor, tente novamente mais tarde."
@@ -10002,9 +10230,9 @@ msgstr "Não foi possível criar sua conta. Por favor, revise as informações f
msgid "We were unable to disable two-factor authentication for your account. Please ensure that you have entered your password and backup code correctly and try again."
msgstr "Não foi possível desabilitar a autenticação de dois fatores para sua conta. Por favor, certifique-se de ter inserido sua senha e código de backup corretamente e tente novamente."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "We were unable to log you out at this time."
msgstr "Não foi possível fazer logout no momento."
@@ -10017,11 +10245,11 @@ msgstr "Não foi possível definir seu perfil público como público. Por favor,
msgid "We were unable to setup two-factor authentication for your account. Please ensure that you have entered your code correctly and try again."
msgstr "Não foi possível configurar a autenticação de dois fatores para sua conta. Por favor, certifique-se de ter inserido seu código corretamente e tente novamente."
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
msgid "We were unable to submit this document at this time. Please try again later."
msgstr "Não foi possível enviar este documento no momento. Por favor, tente novamente mais tarde."
@@ -10040,8 +10268,8 @@ msgstr "Não foi possível atualizar suas preferências de documento no momento,
msgid "We were unable to update your email preferences at this time, please try again later"
msgstr "Não foi possível atualizar suas preferências de e-mail no momento, por favor, tente novamente mais tarde"
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "We were unable to verify your details. Please try again or contact support"
msgstr "Não foi possível verificar seus detalhes. Por favor, tente novamente ou entre em contato com o suporte"
@@ -10053,14 +10281,14 @@ msgstr "Não foi possível verificar seu e-mail no momento."
msgid "We were unable to verify your email. If your email is not verified already, please try again."
msgstr "Não foi possível verificar seu e-mail. Se seu e-mail ainda não foi verificado, por favor, tente novamente."
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We will generate signing links for you, which you can send to the recipients through your method of choice."
msgstr "Geraremos links de assinatura para você, que você pode enviar aos destinatários através do método de sua escolha."
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We won't send anything to notify recipients."
msgstr "Não enviaremos nada para notificar os destinatários."
@@ -10073,8 +10301,8 @@ msgstr "Entraremos em contato o mais rápido possível por e-mail."
msgid "We'll send a 6-digit code to your email"
msgstr "Enviaremos um código de 6 dígitos para seu e-mail"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
msgid "We're all empty"
msgstr "Estamos todos vazios"
@@ -10094,6 +10322,11 @@ msgstr "Enviamos um código de verificação de 6 dígitos para seu e-mail. Por
msgid "We've sent a confirmation email to <0>{email}0>. Please check your inbox and click the link in the email to verify your account."
msgstr "Enviamos um e-mail de confirmação para <0>{email}0>. Por favor, verifique sua caixa de entrada e clique no link do e-mail para verificar sua conta."
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Webhook"
+msgstr ""
+
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
msgid "Webhook created"
msgstr "Webhook criado"
@@ -10102,23 +10335,31 @@ msgstr "Webhook criado"
msgid "Webhook deleted"
msgstr "Webhook excluído"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook Details"
+msgstr ""
+
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Webhook not found"
msgstr "Webhook não encontrado"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook successfully sent"
+msgstr ""
+
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Webhook updated"
msgstr "Webhook atualizado"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Webhook URL"
msgstr "URL do Webhook"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Webhooks"
msgstr "Webhooks"
@@ -10154,10 +10395,10 @@ msgstr "Você estava tentando editar este documento?"
msgid "What you can do with teams:"
msgstr "O que você pode fazer com equipes:"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "When enabled, signers can choose who should sign next in the sequence instead of following the predefined order."
msgstr "Quando habilitado, os signatários podem escolher quem deve assinar em seguida na sequência, em vez de seguir a ordem predefinida."
@@ -10197,20 +10438,20 @@ msgstr "Retirando Consentimento"
msgid "Write a description to display on your public profile"
msgstr "Escreva uma descrição para exibir em seu perfil público"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Yearly"
msgstr "Anual"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Yes"
msgstr "Sim"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: packages/lib/utils/document-audit-logs.ts
msgid "You"
msgstr "Você"
@@ -10278,10 +10519,10 @@ msgstr "Você está prestes a remover o seguinte documento e todos os campos ass
msgid "You are about to remove the following email from <0>{0}0>."
msgstr "Você está prestes a remover o seguinte e-mail de <0>{0}0>."
-#. placeholder {0}: team.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#. placeholder {0}: team.name
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "You are about to remove the following group from <0>{0}0>."
msgstr "Você está prestes a remover o seguinte grupo de <0>{0}0>."
@@ -10321,8 +10562,8 @@ msgstr "Você está atualmente atualizando <0>{0}0>"
msgid "You are currently updating <0>{memberName}.0>"
msgstr "Você está atualmente atualizando <0>{memberName}.0>"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "You are currently updating <0>{organisationMemberName}.0>"
msgstr "Você está atualmente atualizando <0>{organisationMemberName}.0>"
@@ -10405,8 +10646,8 @@ msgid "You can view the document and its status by clicking the button below."
msgstr "Você pode ver o documento e seu status clicando no botão abaixo."
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "You cannot add assistants when signing order is disabled."
msgstr "Você não pode adicionar assistentes quando a ordem de assinatura está desabilitada."
@@ -10418,10 +10659,6 @@ msgstr "Você não pode excluir um grupo que tem um papel superior ao seu."
msgid "You cannot delete this item because the document has been sent to recipients"
msgstr "Você não pode excluir este item porque o documento foi enviado aos destinatários"
-#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
-msgid "You cannot have more than {MAXIMUM_PASSKEYS} passkeys."
-msgstr "Você não pode ter mais de {MAXIMUM_PASSKEYS} chaves de acesso."
-
#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
msgid "You cannot modify a group which has a higher role than you."
msgstr "Você não pode modificar um grupo que tem um papel superior ao seu."
@@ -10438,20 +10675,21 @@ msgstr "Você não pode modificar um membro da equipe que tem um papel superior
msgid "You cannot remove members from this team if the inherit member feature is enabled."
msgstr "Você não pode remover membros desta equipe se o recurso de herdar membros estiver habilitado."
-#: packages/ui/primitives/document-upload.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "You cannot upload documents at this time."
msgstr "Você não pode enviar documentos no momento."
-#: apps/remix/app/components/general/document/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button.tsx
-#: apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload encrypted PDFs"
msgstr "Você não pode enviar PDFs criptografados"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/document/envelope-upload-button.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload more than {maximumEnvelopeItemCount} items per envelope."
msgstr "Você não pode enviar mais de {maximumEnvelopeItemCount} itens por envelope."
@@ -10467,6 +10705,10 @@ msgstr "Você atualmente não tem acesso a nenhuma equipe nesta organização. P
msgid "You do not have permission to create a token for this team"
msgstr "Você não tem permissão para criar um token para esta equipe"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "You don't manage billing for any organisations."
+msgstr ""
+
#: packages/email/template-components/template-document-cancel.tsx
msgid "You don't need to sign it anymore."
msgstr "Você não precisa mais assiná-lo."
@@ -10495,8 +10737,8 @@ msgstr "Você foi convidado para entrar em {0} no Documenso"
msgid "You have been invited to join the following organisation"
msgstr "Você foi convidado para entrar na seguinte organização"
-#: packages/lib/server-only/recipient/set-document-recipients.ts
#: packages/lib/server-only/recipient/delete-envelope-recipient.ts
+#: packages/lib/server-only/recipient/set-document-recipients.ts
msgid "You have been removed from a document"
msgstr "Você foi removido de um documento"
@@ -10510,8 +10752,8 @@ msgid "You have declined the invitation from <0>{0}0> to join their organisati
msgstr "Você recusou o convite de <0>{0}0> para entrar na organização deles."
#. placeholder {0}: `"${envelope.title}"`
-#: packages/lib/server-only/document/resend-document.ts
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
+#: packages/lib/server-only/document/resend-document.ts
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
msgstr "Você iniciou o documento {0} que requer que você {recipientActionVerb}."
@@ -10527,9 +10769,9 @@ msgstr "Você ainda não criou nenhum modelo. Para criar um modelo, por favor, e
msgid "You have not yet created or received any documents. To create a document please upload one."
msgstr "Você ainda não criou ou recebeu nenhum documento. Para criar um documento, por favor, envie um."
-#: apps/remix/app/components/general/document/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button.tsx
-#: apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached the limit of the number of files per envelope"
msgstr "Você atingiu o limite de número de arquivos por envelope"
@@ -10542,14 +10784,14 @@ msgstr "Você atingiu o limite máximo de {0} modelos diretos. <0>Atualize sua c
msgid "You have reached the maximum number of teams for your plan. Please contact sales at <0>{SUPPORT_EMAIL}0> if you would like to adjust your plan."
msgstr "Você atingiu o número máximo de equipes para seu plano. Por favor, entre em contato com vendas em <0>{SUPPORT_EMAIL}0> se desejar ajustar seu plano."
-#: apps/remix/app/components/general/document/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button.tsx
-#: apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached your document limit for this month. Please upgrade your plan."
msgstr "Você atingiu seu limite de documentos para este mês. Por favor, atualize seu plano."
-#: apps/remix/app/components/general/document/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
msgid "You have reached your document limit."
msgstr "Você atingiu seu limite de documentos."
@@ -10562,21 +10804,21 @@ msgstr "Você atingiu seu limite de documentos. <0>Atualize sua conta para conti
msgid "You have rejected the document '{documentName}'"
msgstr "Você rejeitou o documento '{documentName}'"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "You have rejected this document"
msgstr "Você rejeitou este documento"
#: packages/email/template-components/template-document-self-signed.tsx
-msgid "You have signed "{documentName}""
-msgstr "Você assinou "{documentName}""
+msgid "You have signed “{documentName}”"
+msgstr ""
#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
msgid "You have successfully left this organisation."
msgstr "Você saiu desta organização com sucesso."
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "You have successfully registered. Please verify your account by clicking on the link you received in the email."
msgstr "Você se registrou com sucesso. Por favor, verifique sua conta clicando no link que você recebeu no e-mail."
@@ -10633,10 +10875,10 @@ msgstr "Você atualizou o grupo da equipe."
msgid "You have verified your email address for <0>{0}0>."
msgstr "Você verificou seu endereço de e-mail para <0>{0}0>."
-#: 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
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "You must enter '{deleteMessage}' to proceed"
msgstr "Você deve inserir '{deleteMessage}' para prosseguir"
@@ -10644,8 +10886,8 @@ msgstr "Você deve inserir '{deleteMessage}' para prosseguir"
msgid "You must select at least one item"
msgstr "Você deve selecionar pelo menos um item"
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
msgid "You must type '{deleteMessage}' to confirm"
msgstr "Você deve digitar '{deleteMessage}' para confirmar"
@@ -10665,8 +10907,8 @@ msgstr "Você precisa ser um administrador para gerenciar tokens de API."
msgid "You need to be logged in as <0>{email}0> to view this page."
msgstr "Você precisa estar logado como <0>{email}0> para ver esta página."
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "You need to be logged in to view this page."
msgstr "Você precisa estar logado para ver esta página."
@@ -10683,8 +10925,8 @@ msgid "You will now be required to enter a code from your authenticator app when
msgstr "Agora será necessário inserir um código do seu aplicativo autenticador ao fazer login."
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "You will receive an Email copy of the signed document once everyone has signed."
-msgstr "Você receberá uma cópia por e-mail do documento assinado assim que todos assinarem."
+msgid "You will receive an email copy of the signed document once everyone has signed."
+msgstr ""
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Your Account"
@@ -10739,8 +10981,8 @@ msgstr "Seu plano atual está vencido."
msgid "Your direct signing templates"
msgstr "Seus modelos de assinatura direta"
-#: apps/remix/app/components/general/document/document-upload-button.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Your document failed to upload."
msgstr "Falha ao enviar seu documento."
@@ -10768,9 +11010,9 @@ msgstr "Seu documento foi enviado com sucesso."
msgid "Your document has been successfully duplicated."
msgstr "Seu documento foi duplicado com sucesso."
-#: apps/remix/app/components/general/document/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button.tsx
-#: apps/remix/app/components/general/document/document-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your document has been uploaded successfully."
msgstr "Seu documento foi enviado com sucesso."
@@ -10830,8 +11072,8 @@ msgstr "Seus tokens existentes"
msgid "Your Name"
msgstr "Seu Nome"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your new password cannot be the same as your old password."
msgstr "Sua nova senha não pode ser a mesma que sua senha antiga."
@@ -10847,8 +11089,8 @@ msgstr "Sua organização foi excluída com sucesso."
msgid "Your organisation has been successfully updated."
msgstr "Sua organização foi atualizada com sucesso."
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your password has been updated successfully."
msgstr "Sua senha foi atualizada com sucesso."
@@ -10888,8 +11130,8 @@ msgstr "Seu perfil público foi atualizado."
msgid "Your recovery code has been copied to your clipboard."
msgstr "Seu código de recuperação foi copiado para sua área de transferência."
-#: 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/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Your recovery codes are listed below. Please store them in a safe place."
msgstr "Seus códigos de recuperação estão listados abaixo. Por favor, armazene-os em um local seguro."
@@ -10921,14 +11163,11 @@ msgstr "Seu modelo foi duplicado com sucesso."
msgid "Your template has been successfully deleted."
msgstr "Seu modelo foi excluído com sucesso."
-#: apps/remix/app/components/general/document/envelope-upload-button.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your template has been uploaded successfully."
msgstr "Seu modelo foi enviado com sucesso."
-#: apps/remix/app/components/general/template/template-drop-zone-wrapper.tsx
-msgid "Your template has been uploaded successfully. You will be redirected to the template page."
-msgstr "Seu modelo foi enviado com sucesso. Você será redirecionado para a página do modelo."
-
#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
msgid "Your template will be duplicated."
msgstr "Seu modelo será duplicado."
diff --git a/packages/lib/translations/zh/web.po b/packages/lib/translations/zh/web.po
index 084d0012b..f372a0af7 100644
--- a/packages/lib/translations/zh/web.po
+++ b/packages/lib/translations/zh/web.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-11-17 02:33\n"
+"PO-Revision-Date: 2025-11-27 05:32\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -52,9 +52,9 @@ msgstr "“{placeholderEmail}”代表“Team Name”邀请您签署“example d
msgid "\"Team Name\" has invited you to sign \"example document\"."
msgstr "“Team Name”已邀请您签署“example document”。"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "(You)"
msgstr "(您)"
@@ -64,8 +64,8 @@ msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
msgstr "{0, plural, other {(# 个字符超出)}}"
#. placeholder {0}: Math.abs(remaningLength)
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{0, plural, one {# character over the limit} other {# characters over the limit}}"
msgstr "{0, plural, other {# 个字符超出限制}}"
@@ -79,6 +79,11 @@ msgstr "{0, plural, other {# 个剩余字符}}"
msgid "{0, plural, one {# document} other {# documents}}"
msgstr "{0, plural, other {# 个文档}}"
+#. placeholder {0}: row.original.eventTriggers.length
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "{0, plural, one {# Event} other {# Events}}"
+msgstr "{0, plural, other {# 个事件}}"
+
#. placeholder {0}: assistantFields.filter((field) => field.recipientId === r.id).length
#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "{0, plural, one {# field} other {# fields}}"
@@ -116,16 +121,16 @@ msgid "{0, plural, one {<0>You have <1>11> pending invitation0>} other {<2>Y
msgstr "{0, plural, other {<2>您有 <3>#3> 条待处理邀请2>}}"
#. placeholder {0}: recipientFieldsRemaining.length
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "{0, plural, one {1 Field Remaining} other {# Fields Remaining}}"
msgstr "{0, plural, other {# 个字段剩余}}"
#. placeholder {0}: fields.filter((field) => field.envelopeItemId === doc.id).length
#. placeholder {0}: remainingFields.filter((field) => field.envelopeItemId === doc.id).length
-#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-file-selector.tsx
msgid "{0, plural, one {1 Field} other {# Fields}}"
msgstr "{0, plural, other {# 个字段}}"
@@ -144,11 +149,11 @@ msgstr "{0, plural, other {# 位收件人}}"
msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}"
msgstr "{0, plural, other {正在等待 # 位收件人}}"
-#. placeholder {0}: route.label
#. placeholder {0}: _(FRIENDLY_FIELD_TYPE[fieldType as FieldType])
+#. placeholder {0}: route.label
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
msgid "{0}"
msgstr "{0}"
@@ -175,9 +180,9 @@ msgstr "{0} 邀请您 {recipientActionVerb} 一个文档"
#. placeholder {0}: remaining.documents
#. placeholder {1}: quota.documents
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "{0} of {1} documents remaining this month."
msgstr "本月还剩 {0}/{1} 份文档可用。"
@@ -405,8 +410,8 @@ msgstr "{recipientReference} 已签署“{documentName}”"
msgid "{recipientReference} has signed {documentName}"
msgstr "{recipientReference} 已签署 {documentName}"
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
msgid "{remaningLength, plural, one {# character remaining} other {# characters remaining}}"
msgstr "{remaningLength, plural, other {# 个字符剩余}}"
@@ -515,6 +520,10 @@ msgstr "<0>手绘0> - 使用鼠标或手写笔绘制的签名。"
msgid "<0>Email0> - The recipient will be emailed the document to sign, approve, etc."
msgstr "<0>电子邮件0> - 收件人将通过电子邮件接收文档以进行签署、审批等。"
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "<0>Events:0> All"
+msgstr "<0>事件:0>全部"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "<0>Full account access:0> View all your profile information, settings, and activity"
msgstr "<0>完整账户访问:0> 查看您的所有个人资料信息、设置和活动"
@@ -545,8 +554,8 @@ msgstr "<0>无0> - 我们将生成链接,您可以手动将其发送给收
msgid "<0>Note0> - If you use Links in combination with direct templates, you will need to manually send the links to the remaining recipients."
msgstr "<0>注意0> - 如果您将链接与直链模板组合使用,则需要手动将链接发送给剩余收件人。"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require 2FA0> - The recipient must have an account and 2FA enabled via their settings"
msgstr "<0>需要 2FA0> - 收件人必须拥有账户并在其设置中启用 2FA"
@@ -554,8 +563,8 @@ msgstr "<0>需要 2FA0> - 收件人必须拥有账户并在其设置中启用
msgid "<0>Require account0> - The recipient must be signed in to view the document"
msgstr "<0>需要账户0> - 收件人必须登录后才能查看文档"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "<0>Require passkey0> - The recipient must have an account and passkey configured via their settings"
msgstr "<0>需要通行密钥0> - 收件人必须拥有账户并在其设置中配置通行密钥"
@@ -624,9 +633,9 @@ msgstr "404 未找到邮箱域名"
msgid "404 not found"
msgstr "404 未找到"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "404 Not found"
msgstr "404 未找到"
@@ -660,7 +669,7 @@ msgstr "404 未找到模板"
msgid "404 User not found"
msgstr "404 找不到用户"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "404 Webhook not found"
msgstr "404 未找到 Webhook"
@@ -747,8 +756,8 @@ msgstr "有新成员已加入您的组织 {organisationName}"
msgid "A new token was created successfully."
msgstr "新令牌创建成功。"
-#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
msgstr "如果你拥有账号,重置密码邮件已发送,很快就会出现在你的收件箱中。"
@@ -784,7 +793,7 @@ msgstr "{0} 在 Documenso 上发起了一个使用您邮箱的请求"
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso"
msgstr "一个密钥将被发送到你的 URL,以便你验证该请求确实由 Documenso 发出"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso."
msgstr "一个密钥将被发送到你的 URL,以便你验证该请求确实由 Documenso 发出。"
@@ -809,8 +818,8 @@ msgstr "用于标识组织的唯一 URL"
msgid "A unique URL to identify your organisation"
msgstr "用于标识您组织的唯一 URL"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "A unique URL to identify your team"
msgstr "用于标识你团队的唯一 URL"
@@ -819,8 +828,8 @@ msgid "A verification email will be sent to the provided email."
msgstr "验证邮件将发送到所填写的邮箱。"
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: packages/email/templates/organisation-invite.tsx
#: packages/email/templates/confirm-team-email.tsx
+#: packages/email/templates/organisation-invite.tsx
msgid "Accept"
msgstr "接受"
@@ -848,9 +857,9 @@ msgstr "访问已禁用"
msgid "Access enabled"
msgstr "访问已启用"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Account"
msgstr "账户"
@@ -866,8 +875,8 @@ msgstr "账户创建请求"
msgid "Account Creation Request"
msgstr "账户创建请求"
-#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "Account deleted"
msgstr "账号已删除"
@@ -895,46 +904,50 @@ msgstr "账户已取消关联"
msgid "Acknowledgment"
msgstr "确认"
-#: 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/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
+#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Action"
msgstr "操作"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Actions"
msgstr "操作"
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
msgid "Active"
msgstr "启用"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Active sessions"
msgstr "活动会话"
@@ -942,8 +955,8 @@ msgstr "活动会话"
msgid "Active Subscriptions"
msgstr "有效订阅"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Add"
msgstr "添加"
@@ -960,15 +973,15 @@ msgstr "添加自定义域名,以代表您的组织发送电子邮件。我们
msgid "Add a document"
msgstr "添加文档"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Add a URL to redirect the user to once the document is signed"
msgstr "添加一个 URL,当文档签署完成后将用户重定向到该地址"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add all relevant fields for each recipient."
msgstr "为每位收件人添加所有相关字段。"
@@ -1001,8 +1014,8 @@ msgstr "添加并配置多个文档"
msgid "Add another option"
msgstr "添加另一个选项"
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
msgid "Add another value"
msgstr "添加另一个值"
@@ -1026,11 +1039,11 @@ msgstr "添加邮箱"
msgid "Add Email Domain"
msgstr "添加邮箱域名"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "Add Fields"
msgstr "添加字段"
@@ -1094,8 +1107,8 @@ msgstr "添加占位符"
msgid "Add Recipients"
msgstr "添加收件人"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
msgid "Add Signer"
msgstr "添加签署人"
@@ -1144,8 +1157,8 @@ msgstr "要显示在邮件底部的更多品牌信息"
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Admin"
msgstr "管理员"
@@ -1153,8 +1166,8 @@ msgstr "管理员"
msgid "Admin Actions"
msgstr "管理员操作"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Admin panel"
msgstr "管理面板"
@@ -1166,15 +1179,15 @@ msgstr "管理面板"
msgid "Admins only"
msgstr "仅限管理员"
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Advanced Options"
msgstr "高级选项"
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Advanced settings"
msgstr "高级设置"
@@ -1191,6 +1204,7 @@ msgid "After submission, a document will be automatically generated and added to
msgstr "提交后,将自动生成一个文档并添加到您的“文档”页面。您还会收到一封电子邮件通知。"
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "All"
msgstr "全部"
@@ -1214,8 +1228,8 @@ msgstr "与电子签署流程相关的所有文档都将通过我们的平台或
msgid "All email domains have been synced successfully"
msgstr "所有邮箱域名已成功同步"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "All Folders"
msgstr "所有文件夹"
@@ -1223,6 +1237,10 @@ msgstr "所有文件夹"
msgid "All inserted signatures will be voided"
msgstr "所有已插入的签名将被作废"
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
+msgid "All recipients have signed. The document is being processed and you will receive an email copy shortly."
+msgstr "所有收件人都已签署。文档正在处理中,您很快会收到一份通过电子邮件发送的副本。"
+
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "All recipients will be notified"
msgstr "所有收件人都会收到通知"
@@ -1239,8 +1257,8 @@ msgstr "所有签署链接已复制到剪贴板。"
msgid "All templates"
msgstr "所有模板"
-#: apps/remix/app/components/general/period-selector.tsx
#: apps/remix/app/components/filters/date-range-filter.tsx
+#: apps/remix/app/components/general/period-selector.tsx
msgid "All Time"
msgstr "全部时间"
@@ -1252,10 +1270,10 @@ msgstr "允许所有组织成员访问此团队"
msgid "Allow document recipients to reply directly to this email address"
msgstr "允许文档收件人直接回复到此邮箱地址"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Allow signers to dictate next signer"
msgstr "允许签署人指定下一位签署人"
@@ -1263,10 +1281,10 @@ msgstr "允许签署人指定下一位签署人"
msgid "Allowed Email Domains"
msgstr "允许的邮箱域名"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Allowed Signature Types"
msgstr "允许的签名类型"
@@ -1306,19 +1324,19 @@ msgstr "每位成员都会收到一封包含邀请的邮件。"
msgid "An email with this address already exists."
msgstr "已存在使用该地址的邮箱。"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/token.tsx
#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.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
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
msgid "An error occurred"
msgstr "发生错误"
@@ -1330,9 +1348,9 @@ msgstr "上传过程中发生错误。"
msgid "An error occurred while adding fields."
msgstr "添加字段时发生错误。"
+#: 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/template/template-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
msgid "An error occurred while adding signers."
msgstr "添加签署人时发生错误。"
@@ -1400,7 +1418,7 @@ msgstr "启用直接链接签署时发生错误。"
msgid "An error occurred while enabling the user."
msgstr "启用用户时发生错误。"
-#: packages/ui/primitives/pdf-viewer.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "An error occurred while loading the document."
msgstr "加载文档时发生错误。"
@@ -1412,14 +1430,14 @@ msgstr "移动文档时发生错误。"
msgid "An error occurred while moving the template."
msgstr "移动模板时发生错误。"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while removing the field."
msgstr "移除字段时发生错误。"
@@ -1443,29 +1461,29 @@ msgstr "发送文档时发生错误。"
msgid "An error occurred while sending your confirmation email"
msgstr "发送确认邮件时发生错误"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing as assistant."
msgstr "以助理身份签署时发生意外错误。"
-#: 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
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-checkbox-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-dropdown-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "An error occurred while signing the document."
msgstr "签署文档时发生错误。"
@@ -1478,8 +1496,8 @@ msgstr "签署字段时发生错误。"
msgid "An error occurred while trying to create a checkout session."
msgstr "创建结账会话时发生错误。"
-#: apps/remix/app/components/general/template/template-edit-form.tsx
#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
msgid "An error occurred while updating the document settings."
msgstr "更新文档设置时发生错误。"
@@ -1491,8 +1509,8 @@ msgstr "更新签名时发生错误。"
msgid "An error occurred while updating your profile."
msgstr "更新你的资料时发生错误。"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "An error occurred while uploading your document."
msgstr "上传文档时发生错误。"
@@ -1512,53 +1530,53 @@ msgstr "有组织希望关联您的账户。请查看以下详情。"
msgid "An unexpected error occurred."
msgstr "发生意外错误。"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/public-profile-form.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/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/general/app-command-menu.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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/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/signin.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/profile.tsx
-#: apps/remix/app/components/forms/organisation-update-form.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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/account-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "An unknown error occurred"
msgstr "发生未知错误"
@@ -1586,10 +1604,10 @@ msgstr "任意来源"
msgid "Any Status"
msgstr "任意状态"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "API Tokens"
msgstr "API 令牌"
@@ -1597,12 +1615,12 @@ msgstr "API 令牌"
msgid "App Version"
msgstr "应用版本"
-#: apps/remix/app/components/tables/inbox-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-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Approve"
msgstr "批准"
@@ -1611,9 +1629,9 @@ msgctxt "Recipient role action verb"
msgid "Approve"
msgstr "审批"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Approve Document"
msgstr "批准文档"
@@ -1666,8 +1684,8 @@ msgid "Are you sure you want to reject this document? This action cannot be undo
msgstr "您确定要拒签此文档吗?此操作无法撤销。"
#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
-msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey."
-msgstr "确定要移除通行密钥 <0>{passkeyName}0> 吗?"
+msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey?"
+msgstr "您确定要移除 <0>{passkeyName}0> 这把通行密钥吗?"
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
msgid "Are you sure you wish to delete this organisation?"
@@ -1677,23 +1695,23 @@ msgstr "您确定要删除此组织吗?"
msgid "Are you sure you wish to delete this team?"
msgstr "确定要删除此团队吗?"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/components/general/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Are you sure?"
msgstr "你确定吗?"
@@ -1706,9 +1724,9 @@ msgctxt "Recipient role action verb"
msgid "Assist"
msgstr "协助"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Assist Document"
msgstr "辅助文档"
@@ -1752,11 +1770,11 @@ msgctxt "Recipient role progressive verb"
msgid "Assisting"
msgstr "协助中"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
-#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/lib/types/document-meta.ts
+#: packages/ui/primitives/document-flow/add-settings.types.ts
+#: packages/ui/primitives/template-flow/add-template-settings.types.tsx
msgid "At least one signature type must be enabled"
msgstr "必须至少启用一种签名类型"
@@ -1768,9 +1786,9 @@ msgstr "附件添加成功。"
msgid "Attachment removed successfully."
msgstr "附件删除成功。"
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: apps/remix/app/components/general/document/document-attachments-popover.tsx
msgid "Attachments"
@@ -1796,8 +1814,8 @@ msgstr "验证级别"
msgid "Authentication Portal Not Found"
msgstr "未找到认证门户"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Authentication required"
msgstr "需要身份验证"
@@ -1817,12 +1835,12 @@ msgstr "头像已更新"
msgid "Awaiting email confirmation"
msgstr "正在等待邮箱确认"
-#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
msgid "Back"
msgstr "返回"
@@ -1838,8 +1856,8 @@ msgstr "背景颜色"
msgid "Background Jobs"
msgstr "后台任务"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Backup Code"
msgstr "备份代码"
@@ -1855,10 +1873,11 @@ msgstr "横幅已更新"
msgid "Before you get started, please confirm your email address by clicking the button below:"
msgstr "在开始之前,请点击下方按钮确认您的邮箱地址:"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.billing.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
msgid "Billing"
msgstr "账单"
@@ -1882,9 +1901,9 @@ msgstr "品牌详情"
msgid "Brand Website"
msgstr "品牌网站"
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
msgid "Branding"
msgstr "品牌"
@@ -1892,10 +1911,10 @@ msgstr "品牌"
msgid "Branding Logo"
msgstr "品牌 Logo"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Branding Preferences"
msgstr "品牌偏好设置"
@@ -1929,8 +1948,8 @@ msgstr "模板“{templateName}”的批量发送操作已完成"
msgid "Bulk Send Template via CSV"
msgstr "通过 CSV 批量发送模板"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Bulk Send via CSV"
msgstr "通过 CSV 批量发送"
@@ -1975,96 +1994,95 @@ msgstr "使用电子签名功能,即表示你同意以电子方式进行交易
msgid "Can prepare"
msgstr "可预填"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.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/teams/team-email-usage.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.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-password.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/general/document/document-attachments-popover.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-test-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-to-folder-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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-create-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-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/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-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/claim-update-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.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-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.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/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Cancel"
msgstr "取消"
@@ -2114,6 +2132,10 @@ msgstr "抄送人"
msgid "Center"
msgstr "居中"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Change Recipient"
+msgstr "更改收件人"
+
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
msgid "Character limit"
msgstr "字符限制"
@@ -2128,8 +2150,8 @@ msgid "Charts"
msgstr "图表"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Checkbox"
msgstr "复选框"
@@ -2142,9 +2164,9 @@ msgstr "复选框设置"
msgid "Checkbox values"
msgstr "复选框值"
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "Checkout"
msgstr "结账"
@@ -2196,9 +2218,9 @@ msgstr "清除签名"
msgid "Click here to get started"
msgstr "点击此处开始"
-#: 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/template/template-page-view-recent-activity.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "Click here to retry"
msgstr "点击此处重试"
@@ -2211,12 +2233,12 @@ msgstr "点击此处上传"
msgid "Click to copy signing link for sending to recipient"
msgstr "点击复制签署链接以发送给收件人"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.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/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
msgid "Click to insert field"
msgstr "点击以插入字段"
@@ -2236,23 +2258,25 @@ msgstr "客户端密钥"
msgid "Client secret is required"
msgstr "客户端密钥为必填项"
-#: apps/remix/app/components/general/billing-plans.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/support-ticket-form.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/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-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/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-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/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/missing-signature-field-dialog.tsx
msgid "Close"
msgstr "关闭"
@@ -2265,14 +2289,14 @@ msgstr "通信"
msgid "Compare all plans and features in detail"
msgstr "详细比较所有套餐和功能"
-#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Complete"
msgstr "完成"
@@ -2284,22 +2308,22 @@ msgstr "完成文档"
msgid "Complete the fields for the following signers."
msgstr "请为以下签署人完成字段。"
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: 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/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
-#: packages/lib/constants/document.ts
-#: packages/email/template-components/template-document-self-signed.tsx
-#: packages/email/template-components/template-document-recipient-signed.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
#: packages/email/template-components/template-document-completed.tsx
+#: packages/email/template-components/template-document-recipient-signed.tsx
+#: packages/email/template-components/template-document-self-signed.tsx
+#: packages/lib/constants/document.ts
msgid "Completed"
msgstr "已完成"
-#: packages/email/templates/document-self-signed.tsx
#: packages/email/templates/document-completed.tsx
+#: packages/email/templates/document-self-signed.tsx
msgid "Completed Document"
msgstr "已完成的文档"
@@ -2375,8 +2399,8 @@ msgstr "配置模板"
#. placeholder {0}: parseMessageDescriptor( _, FRIENDLY_FIELD_TYPE[currentField.type], )
#: apps/remix/app/components/embed/authoring/field-advanced-settings-drawer.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Configure the {0} field"
msgstr "配置 {0} 字段"
@@ -2393,20 +2417,20 @@ msgstr "配置每个组的团队角色"
msgid "Configure the team roles for each member"
msgstr "配置每个成员的团队角色"
-#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
msgid "Confirm"
msgstr "确认"
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
msgid "Confirm by typing <0>{deleteMessage}0>"
msgstr "通过输入 <0>{deleteMessage}0> 来确认"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "Confirm by typing: <0>{deleteMessage}0>"
msgstr "通过输入:<0>{deleteMessage}0> 来确认"
@@ -2419,8 +2443,8 @@ msgstr "确认删除"
msgid "Confirm email"
msgstr "确认邮箱"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Confirmation email sent"
msgstr "确认邮件已发送"
@@ -2444,17 +2468,17 @@ msgstr "联系我们"
msgid "Content"
msgstr "内容"
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$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+/organisation.invite.$token.tsx
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-view.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/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$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+/verify-email.$token.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Continue"
msgstr "继续"
@@ -2521,21 +2545,22 @@ msgstr "控制签署文档时允许使用哪些类型的签名。"
msgid "Copied"
msgstr "已复制"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: 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/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-records-dialog.tsx
-#: packages/ui/primitives/document-flow/add-subject.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/avatar-with-recipient.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.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/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/components/document/document-share-button.tsx
+#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Copied to clipboard"
msgstr "已复制到剪贴板"
@@ -2556,8 +2581,8 @@ msgstr "复制可共享链接"
msgid "Copy Shareable Link"
msgstr "复制可共享链接"
-#: 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/general/document/document-recipient-link-copy-dialog.tsx
msgid "Copy Signing Links"
msgstr "复制签署链接"
@@ -2565,12 +2590,12 @@ msgstr "复制签署链接"
msgid "Copy token"
msgstr "复制令牌"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Create"
msgstr "创建"
@@ -2681,17 +2706,17 @@ msgstr "立即创建"
msgid "Create one automatically"
msgstr "自动创建一个"
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
msgid "Create organisation"
msgstr "创建组织"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Create Organisation"
msgstr "创建组织"
@@ -2715,14 +2740,14 @@ msgstr "创建订阅"
msgid "Create Subscription Claim"
msgstr "创建订阅声明"
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-create-dialog.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-create-dialog.tsx
msgid "Create team"
msgstr "创建团队"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Create Team"
msgstr "创建团队"
@@ -2751,26 +2776,27 @@ msgstr "创建你的账号,开始使用最先进的文档签署功能。"
msgid "Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp."
msgstr "创建你的账号,开始使用最先进的文档签署功能。开放且优雅的签署体验触手可及。"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: 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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-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
+#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Created"
msgstr "已创建"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Created At"
msgstr "创建时间"
@@ -2782,9 +2808,7 @@ msgstr "创建者"
msgid "Created on"
msgstr "创建于"
-#. placeholder {0}: i18n.date(webhook.createdAt, DateTime.DATETIME_FULL)
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Created on {0}"
msgstr "创建于 {0}"
@@ -2842,13 +2866,13 @@ msgstr "深色模式"
msgid "Dashboard"
msgstr "控制台"
-#: apps/remix/app/components/tables/settings-security-activity-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/tables/settings-security-activity-table.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Date"
msgstr "日期"
@@ -2856,10 +2880,10 @@ msgstr "日期"
msgid "Date created"
msgstr "创建日期"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Date Format"
msgstr "日期格式"
@@ -2867,8 +2891,8 @@ msgstr "日期格式"
msgid "Date Settings"
msgstr "日期设置"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
#: packages/email/templates/organisation-invite.tsx
msgid "Decline"
msgstr "拒绝"
@@ -2918,46 +2942,47 @@ msgstr "默认值"
msgid "delete"
msgstr "delete"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/organisation-teams-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/folder/folder-card.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-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-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/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Delete"
msgstr "删除"
-#. placeholder {0}: webhook.webhookUrl
-#. placeholder {0}: token.name
+#. placeholder {0}: folder.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#. placeholder {0}: token.name
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "delete {0}"
msgstr "delete {0}"
@@ -2973,11 +2998,11 @@ msgstr "delete {teamName}"
msgid "Delete account"
msgstr "删除账号"
+#: 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
#: 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
msgid "Delete Account"
msgstr "删除账号"
@@ -2985,10 +3010,10 @@ msgstr "删除账号"
msgid "Delete document"
msgstr "删除文档"
+#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: 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
msgid "Delete Document"
msgstr "删除文档"
@@ -2996,8 +3021,8 @@ msgstr "删除文档"
msgid "Delete email"
msgstr "删除邮箱"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Delete email domain"
msgstr "删除邮箱域名"
@@ -3057,8 +3082,8 @@ msgstr "删除 Webhook"
msgid "Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution."
msgstr "删除你的账号及其所有内容,包括已完成的文档。此操作不可恢复,并会取消你的订阅,请谨慎进行。"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Deleted"
msgstr "已删除"
@@ -3066,13 +3091,22 @@ msgstr "已删除"
msgid "Deleting account..."
msgstr "正在删除账号..."
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Destination"
+msgstr "目标地址"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Details"
msgstr "详情"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+msgid "Developer Mode"
+msgstr "开发者模式"
+
#: apps/remix/app/components/tables/settings-security-activity-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Device"
msgstr "设备"
@@ -3080,19 +3114,19 @@ msgstr "设备"
msgid "Didn't request a password change? We are here to help you secure your account, just <0>contact us.0>"
msgstr "没有请求密码更改?我们可以帮助您保护账户安全,只需<0>联系我们。0>"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "direct link"
msgstr "直接链接"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Direct link"
msgstr "直接链接"
-#: 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/envelope-editor/envelope-editor.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
msgid "Direct Link"
msgstr "直接链接"
@@ -3130,14 +3164,14 @@ msgstr "直接模板链接已删除"
msgid "Direct template link usage exceeded ({0}/{1})"
msgstr "直接模板链接使用量已超出({0}/{1})"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Direction"
msgstr "方向"
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-disable-dialog.tsx
msgid "Disable"
msgstr "禁用"
@@ -3165,6 +3199,7 @@ msgid "Disable Two Factor Authentication before deleting your account."
msgstr "在删除账号之前,请先禁用双重验证。"
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Disabled"
msgstr "已禁用"
@@ -3180,8 +3215,8 @@ msgstr "禁用用户后,该用户将无法再使用账户。与其相关的所
msgid "Discord"
msgstr "Discord"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "Display Name"
msgstr "显示名称"
@@ -3217,11 +3252,11 @@ msgstr "要复制此模板吗?"
msgid "Documenso will delete <0>all of your documents0>, along with all of your completed documents, signatures, and all other resources belonging to your Account."
msgstr "Documenso 将删除<0>你所有的文档0>,包括所有已完成的文档、签名以及属于你账号的其他所有资源。"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Document"
msgstr "文档"
@@ -3250,9 +3285,9 @@ msgid "Document & Recipients"
msgstr "文档与收件人"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Document access"
msgstr "文档访问"
@@ -3271,8 +3306,8 @@ msgstr "文档已批准"
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: packages/lib/server-only/document/delete-document.ts
#: packages/lib/server-only/admin/admin-super-delete-document.ts
+#: packages/lib/server-only/document/delete-document.ts
msgid "Document Cancelled"
msgstr "文档已取消"
@@ -3313,8 +3348,8 @@ msgstr "文档已创建"
msgid "Document created by <0>{0}0>"
msgstr "文档由 <0>{0}0> 创建"
-#: packages/lib/server-only/template/create-document-from-direct-template.ts
#: packages/email/templates/document-created-from-direct-template.tsx
+#: packages/lib/server-only/template/create-document-from-direct-template.ts
msgid "Document created from direct template"
msgstr "通过直链模板创建的文档"
@@ -3326,9 +3361,9 @@ msgstr "文档通过<0>直接链接0>创建"
msgid "Document Creation"
msgstr "文档创建"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
msgid "Document deleted"
msgstr "文档已删除"
@@ -3427,9 +3462,9 @@ msgstr "文档待处理"
msgid "Document pending email"
msgstr "文档待处理邮件"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Document Preferences"
msgstr "文档偏好"
@@ -3446,8 +3481,8 @@ msgstr "文档已重新发送"
msgid "Document rejected"
msgstr "文档已被拒签"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: packages/email/template-components/template-document-rejected.tsx
msgid "Document Rejected"
msgstr "文档已被拒签"
@@ -3504,15 +3539,15 @@ msgstr "文档已更新"
msgid "Document updated successfully"
msgstr "文档更新成功"
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Document upload disabled due to unpaid invoices"
msgstr "由于有未支付账单,已禁用文档上传"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Document uploaded"
msgstr "文档已上传"
@@ -3546,20 +3581,20 @@ msgstr "文档将被永久删除"
msgid "Documentation"
msgstr "文档"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.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/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
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.legacy_editor.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Documents"
msgstr "文档"
@@ -3608,22 +3643,22 @@ msgstr "域名已被使用"
msgid "Domain Name"
msgstr "域名"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Don't have an account? <0>Sign up0>"
msgstr "还没有账号?<0>注册0>"
-#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-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/general/document/document-certificate-qr-view.tsx
-#: apps/remix/app/components/general/document/document-certificate-qr-view.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/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
#: packages/email/template-components/template-document-completed.tsx
msgid "Download"
msgstr "下载"
@@ -3640,9 +3675,9 @@ msgstr "下载证书"
msgid "Download Files"
msgstr "下载文件"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Download PDF"
msgstr "下载 PDF"
@@ -3650,9 +3685,9 @@ msgstr "下载 PDF"
msgid "Download Template CSV"
msgstr "下载模板 CSV"
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: packages/lib/constants/document.ts
msgid "Draft"
msgstr "草稿"
@@ -3677,12 +3712,9 @@ msgstr "拖放或点击以上传"
msgid "Drag and drop your PDF file here"
msgstr "将 PDF 文件拖放到此处"
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
-msgid "Draw"
-msgstr "绘制"
-
#: packages/lib/constants/document.ts
-msgctxt "Draw signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Draw signature"
msgid "Draw"
msgstr "绘制"
@@ -3691,8 +3723,8 @@ msgid "Drop your document here"
msgstr "将文档拖放到此处"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Dropdown"
msgstr "下拉列表"
@@ -3712,20 +3744,20 @@ msgstr "下拉列表设置"
msgid "Dropdown values"
msgstr "下拉列表值"
-#: 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/envelope-editor/envelope-editor-fields-page-renderer.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
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Duplicate"
msgstr "复制"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Document"
msgstr "复制文档"
@@ -3734,8 +3766,8 @@ msgstr "复制文档"
msgid "Duplicate on all pages"
msgstr "在所有页面上复制"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Duplicate Template"
msgstr "复制模板"
@@ -3743,14 +3775,23 @@ msgstr "复制模板"
msgid "Duplicate values are not allowed"
msgstr "不允许重复的值"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 0"
+msgstr "例如:0"
+
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+msgid "E.g. 100"
+msgstr "例如:100"
+
#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Edit"
msgstr "编辑"
@@ -3758,10 +3799,19 @@ msgstr "编辑"
msgid "Edit Template"
msgstr "编辑模板"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Edit webhook"
msgstr "编辑 Webhook"
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+msgid "eg. Legal"
+msgstr "例如:Legal"
+
+#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+msgid "eg. Mac"
+msgstr "例如:Mac"
+
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
msgid "Electronic Delivery of Documents"
msgstr "文档的电子交付"
@@ -3770,57 +3820,57 @@ msgstr "文档的电子交付"
msgid "Electronic Signature Disclosure"
msgstr "电子签名披露"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-insights-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/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
-#: 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-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.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
-#: 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/utils/fields.ts
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/forgot-password.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-configure-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
+#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Email"
msgstr "邮箱"
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/send-confirmation-email.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/forms/send-confirmation-email.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Email address"
msgstr "邮箱地址"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Email Address"
msgstr "邮箱地址"
@@ -3852,9 +3902,9 @@ msgstr "未找到邮箱域名"
msgid "Email Domain Settings"
msgstr "邮箱域名设置"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Email Domains"
msgstr "邮箱域名"
@@ -3870,9 +3920,9 @@ msgstr "邮箱为必填项"
msgid "Email Options"
msgstr "邮件选项"
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
msgid "Email Preferences"
msgstr "邮件偏好"
@@ -3885,10 +3935,10 @@ msgstr "邮件偏好已更新"
msgid "Email resent"
msgstr "邮件已重新发送"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Email Sender"
msgstr "邮件发件人"
@@ -3916,8 +3966,8 @@ msgstr "邮箱验证已移除"
msgid "Email verification has been resent"
msgstr "验证邮件已重新发送"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Emails"
msgstr "邮箱"
@@ -3976,10 +4026,10 @@ msgstr "启用直接链接签署"
msgid "Enable Direct Link Signing"
msgstr "启用直接链接签署"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Enable signing order"
msgstr "启用签署顺序"
@@ -3987,10 +4037,11 @@ msgstr "启用签署顺序"
msgid "Enable SSO portal"
msgstr "启用 SSO 门户"
-#: 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+/admin+/site-settings.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Enabled"
msgstr "已启用"
@@ -4014,10 +4065,12 @@ msgstr "输入声明名称"
msgid "Enter the domain you want to use for sending emails (without http:// or www)"
msgstr "输入您希望用于发送邮件的域名(不含 http:// 或 www)"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's email"
msgstr "输入下一位签署人的电子邮件"
+#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
msgid "Enter the next signer's name"
msgstr "输入下一位签署人的姓名"
@@ -4053,11 +4106,12 @@ msgid "Enter your number here"
msgstr "在此输入您的号码"
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Enter your password"
msgstr "输入您的密码"
-#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
msgid "Enter your text here"
msgstr "在此输入你的文本"
@@ -4077,8 +4131,8 @@ msgstr "信封已复制"
msgid "Envelope ID"
msgstr "信封 ID"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Envelope Item Count"
msgstr "信封条目数量"
@@ -4102,75 +4156,75 @@ msgstr "信封标题"
msgid "Envelope updated"
msgstr "信封已更新"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$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/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/envelope-signing/envelope-signer-page-renderer.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.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-button-legacy.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/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/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
+#: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.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-date-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-date-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-email-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-email-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-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-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-radio-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-radio-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-text-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.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/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/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-page-renderer.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.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/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/verify-email-banner.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Error"
msgstr "错误"
@@ -4178,11 +4232,17 @@ msgstr "错误"
msgid "Error uploading file"
msgstr "上传文件时出错"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Event"
+msgstr "事件"
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Event Type"
msgstr "事件类型"
#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: packages/ui/components/document/document-visibility-select.tsx
msgid "Everyone"
msgstr "所有人"
@@ -4195,8 +4255,8 @@ msgid "Everyone has signed"
msgstr "所有人都已签署"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "Everyone has signed! You will receive an Email copy of the signed document."
-msgstr "所有人都已签署!你将收到一份已签署文档的邮件副本。"
+msgid "Everyone has signed! You will receive an email copy of the signed document."
+msgstr "所有人都已签署!您将收到一份已签署文档的电子邮件副本。"
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
msgid "Exceeded timeout"
@@ -4217,11 +4277,16 @@ msgid "Expires on {0}"
msgstr "将于 {0} 到期"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "External ID"
msgstr "外部 ID"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Failed"
+msgstr "失败"
+
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
msgid "Failed to create folder"
msgstr "创建文件夹失败"
@@ -4286,7 +4351,7 @@ msgstr "更新订阅声明失败。"
msgid "Failed to update template"
msgstr "更新模板失败"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Failed to update webhook"
msgstr "更新 Webhook 失败"
@@ -4294,9 +4359,9 @@ msgstr "更新 Webhook 失败"
msgid "Failed: {failedCount}"
msgstr "失败:{failedCount}"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Feature Flags"
msgstr "功能开关"
@@ -4305,12 +4370,12 @@ msgid "Field character limit"
msgstr "字段字符限制"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field font size"
msgstr "字段字体大小"
@@ -4319,11 +4384,11 @@ msgstr "字段字体大小"
msgid "Field format"
msgstr "字段格式"
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Field label"
msgstr "字段标签"
@@ -4355,10 +4420,10 @@ msgstr "字段"
msgid "Fields updated"
msgstr "字段已更新"
+#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
msgid "File cannot be larger than {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
msgstr "文件大小不能超过 {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
@@ -4378,8 +4443,8 @@ msgstr "文件大小超过 {APP_DOCUMENT_UPLOAD_SIZE_LIMIT} MB 限制"
msgid "Fill in the details to create a new subscription claim."
msgstr "填写详细信息以创建新的订阅声明。"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Folder"
msgstr "文件夹"
@@ -4399,9 +4464,9 @@ msgstr "文件夹移动成功"
msgid "Folder Name"
msgstr "文件夹名称"
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
msgid "Folder not found"
msgstr "未找到文件夹"
@@ -4414,12 +4479,12 @@ msgid "Folder updated successfully"
msgstr "文件夹更新成功"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Font Size"
msgstr "字体大小"
@@ -4439,19 +4504,20 @@ msgstr "例如,如果声明中新加了一个标记“FLAG_1”并设为 true
msgid "Forgot Password?"
msgstr "忘记密码?"
-#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/forgot-password.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Forgot your password?"
msgstr "忘记密码?"
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Free"
msgstr "免费"
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Free Signature"
msgstr "自由签名"
@@ -4459,26 +4525,26 @@ msgstr "自由签名"
msgid "Free Signature Settings"
msgstr "免费签名设置"
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.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/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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
msgid "Full Name"
msgstr "全名"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/template/template-edit-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-edit-form.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/document/document-edit-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/template/template-edit-form.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.general.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "General"
msgstr "常规"
@@ -4495,24 +4561,24 @@ msgstr "生成链接"
msgid "Global recipient action authentication"
msgstr "全局收件人操作认证"
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
msgid "Go back"
msgstr "返回"
-#: apps/remix/app/routes/_recipient+/_layout.tsx
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
+#: apps/remix/app/routes/_recipient+/_layout.tsx
#: packages/ui/primitives/document-flow/document-flow-root.tsx
msgid "Go Back"
msgstr "返回"
@@ -4524,9 +4590,9 @@ msgstr "返回"
msgid "Go back home"
msgstr "返回首页"
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
-#: apps/remix/app/routes/_recipient+/sign.$token+/_index.tsx
msgid "Go Back Home"
msgstr "返回首页"
@@ -4555,10 +4621,10 @@ msgstr "前往你的<0>公开资料设置0>添加文档。"
msgid "Green"
msgstr "绿色"
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Group"
msgstr "组"
@@ -4570,15 +4636,15 @@ msgstr "组已创建。"
msgid "Group has been updated successfully"
msgstr "组已成功更新"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Group Name"
msgstr "组名"
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
msgid "Groups"
msgstr "组"
@@ -4601,12 +4667,12 @@ msgstr "已邀请您查看此文档"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
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."
msgstr "将助理设置为最后一位签署人意味着 TA 将无法执行任何操作,因为没有后续签署人可供协助。"
@@ -4678,25 +4744,25 @@ msgstr "您好 {userName},您需要输入验证码才能完成文档“{docume
msgid "Hi, {userName} <0>({userEmail})0>"
msgstr "您好,{userName} <0>({userEmail})0>"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Hide"
msgstr "隐藏"
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/folder/folder-grid.tsx
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-grid.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
msgid "Home"
msgstr "首页"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "Home (No Folder)"
msgstr "首页(无文件夹)"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Horizontal"
msgstr "水平"
@@ -4733,7 +4799,6 @@ msgstr "我是此文档的所有者"
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
msgstr "我理解我正在向此组织配置的第三方服务提供我的凭证"
-#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
msgid "I'm sure! Delete it"
msgstr "我确定!删除"
@@ -4770,6 +4835,10 @@ msgstr "如果你的验证器应用不支持二维码,你可以使用以下代
msgid "Important: What This Means"
msgstr "重要:这意味着什么"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Inactive"
+msgstr "未激活"
+
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
#: apps/remix/app/components/general/document/document-status.tsx
@@ -4788,8 +4857,8 @@ msgstr "在文档中包含审计日志"
msgid "Include the Signing Certificate in the Document"
msgstr "在文档中包含签署证书"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Information"
msgstr "信息"
@@ -4797,17 +4866,17 @@ msgstr "信息"
msgid "Inherit authentication method"
msgstr "继承认证方式"
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
msgid "Inherit from organisation"
msgstr "继承自组织"
@@ -4820,11 +4889,11 @@ msgstr "继承组织成员"
msgid "Inherited subscription claim"
msgstr "继承的订阅声明"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: packages/ui/primitives/document-flow/types.ts
+#: apps/remix/app/components/general/document-signing/document-signing-initials-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Initials"
msgstr "首字母缩写"
@@ -4869,8 +4938,8 @@ msgstr "邮箱无效"
msgid "Invalid link"
msgstr "链接无效"
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
msgid "Invalid token"
msgstr "令牌无效"
@@ -4890,8 +4959,8 @@ msgstr "邀请已接受"
msgid "Invitation accepted!"
msgstr "邀请已接受!"
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
msgid "Invitation declined"
msgstr "邀请已被拒绝"
@@ -4931,9 +5000,9 @@ msgstr "邀请时间"
msgid "Invoice"
msgstr "发票"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/tables/internal-audit-log-table.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "IP Address"
msgstr "IP 地址"
@@ -4987,23 +5056,23 @@ msgstr "加入时间"
msgid "Joined {0}"
msgstr "加入时间 {0}"
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Label"
msgstr "标签"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Language"
msgstr "语言"
@@ -5031,8 +5100,8 @@ msgstr "最近 90 天"
msgid "Last Active"
msgstr "上次活动"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Last modified"
msgstr "上次修改时间"
@@ -5060,15 +5129,15 @@ msgstr "上次使用"
msgid "Last Year"
msgstr "去年"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Leave"
msgstr "离开"
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
msgid "Leave blank to inherit from the organisation."
msgstr "留空以继承组织设置。"
@@ -5124,8 +5193,8 @@ msgstr "链接模板"
msgid "Link your Documenso account"
msgstr "关联您的 Documenso 账户"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "Linked Accounts"
msgstr "已关联账户"
@@ -5137,30 +5206,29 @@ msgstr "关联时间"
msgid "Links Generated"
msgstr "链接已生成"
-#. placeholder {0}: webhook.eventTriggers .map((trigger) => toFriendlyWebhookEventName(trigger)) .join(', ')
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-msgid "Listening to {0}"
-msgstr "正在监听 {0}"
+msgid "Listening to"
+msgstr "监听对象"
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
msgid "Load older activity"
msgstr "加载更早的活动记录"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Loading"
msgstr "正在加载"
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Loading document..."
msgstr "正在加载文档..."
-#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
msgid "Loading Document..."
msgstr "正在加载文档..."
@@ -5176,15 +5244,19 @@ msgstr "正在加载..."
msgid "Local timezone"
msgstr "本地时区"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "Login"
msgstr "登录"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+msgid "Logs"
+msgstr "日志"
+
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Manage"
msgstr "管理"
@@ -5214,9 +5286,14 @@ msgid "Manage billing"
msgstr "管理计费"
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
msgid "Manage Billing"
msgstr "管理计费"
+#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx
+msgid "Manage billing and subscriptions for organisations where you have billing management permissions."
+msgstr "为您拥有账单管理权限的组织管理计费和订阅。"
+
#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
msgid "Manage details for this public template"
msgstr "管理此公开模板的详细信息"
@@ -5233,6 +5310,7 @@ msgstr "管理文档"
msgid "Manage linked accounts"
msgstr "管理关联账户"
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights.$id.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Manage organisation"
msgstr "管理组织"
@@ -5318,8 +5396,8 @@ msgstr "在此管理站点设置"
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Manager"
msgstr "管理者"
@@ -5357,24 +5435,24 @@ msgstr "最大值"
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
msgstr "最大文件大小:4MB。每次上传最多 100 行。空值将使用模板默认值。"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Maximum number of uploaded files per envelope allowed"
msgstr "每个信封允许上传的最大文件数量"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: packages/lib/constants/teams-translations.ts
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: packages/lib/constants/organisations-translations.ts
+#: packages/lib/constants/teams-translations.ts
msgid "Member"
msgstr "成员"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Member Count"
msgstr "成员数量"
@@ -5382,25 +5460,25 @@ msgstr "成员数量"
msgid "Member Since"
msgstr "加入时间"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
msgid "Members"
msgstr "成员"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Message"
msgstr "消息"
@@ -5421,8 +5499,8 @@ msgstr "最小值"
msgid "Missing Recipients"
msgstr "缺少收件人"
-#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
msgid "Modify recipients"
msgstr "修改收件人"
@@ -5430,8 +5508,8 @@ msgstr "修改收件人"
msgid "Modify the details of the subscription claim."
msgstr "修改订阅声明的详细信息。"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Monthly"
msgstr "按月"
@@ -5443,10 +5521,10 @@ msgstr "月活跃用户:至少创建过一份文档的用户"
msgid "Monthly Active Users: Users that had at least one of their documents completed"
msgstr "月活跃用户:至少有一份文档被完成的用户"
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
msgid "Move"
msgstr "移动"
@@ -5466,8 +5544,8 @@ msgstr "移动文件夹"
msgid "Move Template to Folder"
msgstr "将模板移动到文件夹"
-#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/templates-table-action-dropdown.tsx
msgid "Move to Folder"
msgstr "移动到文件夹"
@@ -5483,43 +5561,43 @@ msgstr "我的文件夹"
msgid "N/A"
msgstr "N/A"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: 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/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
-#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
-#: apps/remix/app/components/forms/subscription-claim-form.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
-#: 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
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/forms/subscription-claim-form.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/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Name"
msgstr "姓名"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Name is required"
msgstr "名称为必填项"
@@ -5559,11 +5637,11 @@ msgstr "新密码"
msgid "New Template"
msgstr "新模板"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
-#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
-#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
#: packages/ui/primitives/signature-pad/signature-pad-dialog.tsx
msgid "Next"
msgstr "下一步"
@@ -5580,10 +5658,10 @@ msgstr "下一位收件人邮箱"
msgid "Next Recipient Name"
msgstr "下一位收件人姓名"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "No"
msgstr "否"
@@ -5591,24 +5669,24 @@ msgstr "否"
msgid "No active drafts"
msgstr "没有活动草稿"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "No documents found"
msgstr "未找到文档"
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
msgid "No folders found"
msgstr "未找到文件夹"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "No folders found matching \"{searchTerm}\""
msgstr "未找到与“{searchTerm}”匹配的文件夹"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "No further action is required from you at this time."
msgstr "目前您无需再执行任何操作。"
@@ -5628,25 +5706,27 @@ msgstr "暂无最近活动"
msgid "No recent documents"
msgstr "暂无最近文档"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipient matching this description was found."
msgstr "未找到符合条件的收件人。"
-#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "No recipients"
msgstr "无收件人"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "No recipients with this role"
msgstr "没有具有此角色的收件人"
-#: 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-action-select.tsx
msgid "No restrictions"
msgstr "无限制"
@@ -5687,8 +5767,8 @@ msgid "No valid recipients found"
msgstr "未找到有效的收件人"
#: apps/remix/app/components/general/multiselect-role-combobox.tsx
-#: packages/ui/primitives/multi-select-combobox.tsx
#: packages/ui/primitives/combobox.tsx
+#: packages/ui/primitives/multi-select-combobox.tsx
msgid "No value found."
msgstr "未找到值。"
@@ -5696,16 +5776,16 @@ msgstr "未找到值。"
msgid "No worries, it happens! Enter your email and we'll email you a special link to reset your password."
msgstr "别担心,这很常见!输入你的邮箱,我们会给你发送一个用于重置密码的特殊链接。"
-#: apps/remix/app/components/tables/admin-claims-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
#: packages/lib/constants/document.ts
msgid "None"
msgstr "无"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
msgid "Not found"
msgstr "未找到"
@@ -5718,12 +5798,12 @@ msgstr "不支持"
msgid "Nothing to do"
msgstr "暂无待处理事项"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: 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
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Number"
msgstr "数字"
@@ -5736,13 +5816,13 @@ msgstr "数字格式"
msgid "Number needs to be formatted as {numberFormat}"
msgstr "数字必须按 {numberFormat} 的格式输入"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of members allowed. 0 = Unlimited"
msgstr "允许的成员数量。0 = 不限"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Number of teams allowed. 0 = Unlimited"
msgstr "允许的团队数量。0 = 不限"
@@ -5782,10 +5862,6 @@ msgstr "在此页面,您可以创建和管理 API 令牌。更多信息请参
msgid "On this page, you can create new Webhooks and manage the existing ones."
msgstr "在此页面,你可以创建新的 Webhook 并管理现有的 Webhook。"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "On this page, you can edit the webhook and its settings."
-msgstr "在此页面,你可以编辑 Webhook 及其设置。"
-
#: apps/remix/app/components/dialogs/document-delete-dialog.tsx
msgid "Once confirmed, the following will occur:"
msgstr "一旦确认,将会发生以下情况:"
@@ -5826,11 +5902,11 @@ msgstr "一次只能上传一个文件"
msgid "Only PDF files are allowed"
msgstr "只允许上传 PDF 文件"
-#: apps/remix/app/routes/_profile+/_layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/components/general/generic-error-layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
-#: apps/remix/app/components/general/generic-error-layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._layout.tsx
+#: apps/remix/app/routes/_profile+/_layout.tsx
msgid "Oops! Something went wrong."
msgstr "噢!出错了。"
@@ -5846,8 +5922,8 @@ msgstr "选项值不能为空"
msgid "Options"
msgstr "选项"
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/forms/signup.tsx
msgid "Or"
msgstr "或者"
@@ -5859,9 +5935,10 @@ msgstr "或"
msgid "Or continue with"
msgstr "或者使用以下方式继续"
-#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Organisation"
msgstr "组织"
@@ -5890,8 +5967,8 @@ msgstr "组织组设置"
msgid "Organisation has been updated successfully"
msgstr "组织已成功更新"
-#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisation-insights._index.tsx
msgid "Organisation Insights"
msgstr "组织洞察"
@@ -5907,22 +5984,22 @@ msgstr "组织邀请已发送。"
msgid "Organisation Manager"
msgstr "组织管理者"
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
#: packages/lib/constants/organisations-translations.ts
msgid "Organisation Member"
msgstr "组织成员"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
msgid "Organisation Members"
msgstr "组织成员"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation Name"
msgstr "组织名称"
@@ -5935,8 +6012,8 @@ msgstr "未找到组织"
msgid "Organisation role"
msgstr "组织角色"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Organisation Role"
msgstr "组织角色"
@@ -5956,17 +6033,17 @@ msgstr "组织 SSO 门户"
msgid "Organisation Teams"
msgstr "组织团队"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Organisation URL"
msgstr "组织 URL"
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
#: apps/remix/app/routes/_authenticated+/settings+/organisations.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Organisations"
msgstr "组织"
@@ -6003,16 +6080,16 @@ msgstr "否则将把文档创建为草稿。"
msgid "Override organisation settings"
msgstr "覆盖组织设置"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Owner"
msgstr "所有者"
@@ -6027,8 +6104,8 @@ msgid "Page {0} of {1}"
msgstr "第 {0} 页,共 {1} 页"
#. placeholder {0}: i + 1
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Page {0} of {numPages}"
msgstr "第 {0} 页,共 {numPages} 页"
@@ -6036,8 +6113,8 @@ msgstr "第 {0} 页,共 {numPages} 页"
msgid "Paid"
msgstr "付费"
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
msgid "Passkey"
msgstr "通行密钥"
@@ -6065,8 +6142,8 @@ msgstr "通行密钥名称"
msgid "Passkey Re-Authentication"
msgstr "通行密钥重新验证"
-#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx
msgid "Passkeys"
msgstr "通行密钥"
@@ -6078,12 +6155,12 @@ msgstr "通行密钥允许你使用生物识别、密码管理器等方式登录
msgid "Passkeys are not supported on this browser"
msgstr "此浏览器不支持通行密钥"
-#: apps/remix/app/components/general/app-command-menu.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
-#: apps/remix/app/components/forms/signup.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "Password"
msgstr "密码"
@@ -6099,13 +6176,13 @@ msgstr "已请求重置密码"
msgid "Password Reset Successful"
msgstr "密码重置成功"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Password should not be common or based on personal information"
msgstr "密码不应为常见密码或基于个人信息设置"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Password updated"
msgstr "密码已更新"
@@ -6113,6 +6190,10 @@ msgstr "密码已更新"
msgid "Password updated!"
msgstr "密码已更新!"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Past Due"
+msgstr "逾期"
+
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
msgid "Payment overdue"
@@ -6122,15 +6203,15 @@ msgstr "付款逾期"
msgid "PDF Document"
msgstr "PDF 文档"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
-#: packages/ui/components/document/document-read-only-fields.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
#: packages/lib/constants/document.ts
+#: packages/ui/components/document/document-read-only-fields.tsx
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Pending"
msgstr "待处理"
@@ -6150,13 +6231,13 @@ msgstr "待处理文档数量"
msgid "Pending invitations"
msgstr "待处理邀请"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per month"
msgstr "每月"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "per year"
msgstr "每年"
@@ -6165,15 +6246,15 @@ msgctxt "Personal organisation (adjective)"
msgid "Personal"
msgstr "个人"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Personal Account"
msgstr "个人账号"
-#: apps/remix/app/routes/_authenticated+/inbox.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/inbox.tsx
msgid "Personal Inbox"
msgstr "个人收件箱"
@@ -6198,12 +6279,12 @@ msgstr "固定"
msgid "Place and configure form fields in the document"
msgstr "在文档中放置并配置表单字段"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-text-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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
#: 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 "占位符"
@@ -6250,8 +6331,8 @@ msgstr "请选择你的新密码"
msgid "Please complete the document once reviewed"
msgstr "请在审阅后完成此文档"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Please configure the document first"
msgstr "请先配置文档"
@@ -6275,9 +6356,9 @@ msgstr "请联系站点所有者以获取进一步帮助。"
msgid "Please enter a meaningful name for your token. This will help you identify it later."
msgstr "请输入一个有意义的令牌名称,以便日后识别。"
-#: apps/remix/app/components/general/claim-account.tsx
-#: apps/remix/app/components/forms/signup.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Please enter a valid name."
msgstr "请输入有效姓名。"
@@ -6329,6 +6410,10 @@ msgstr "请注意,你将失去与此团队相关的所有文档的访问权限
msgid "Please open your authenticator app and enter the 6-digit code for this document."
msgstr "请打开您的验证器应用,并输入此文档的 6 位代码。"
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
+msgid "Please provide a reason for rejecting this document"
+msgstr "请提供拒绝此文档的原因"
+
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
msgid "Please provide a token from the authenticator, or a backup code. If you do not have a backup code available, please contact support."
msgstr "请输入验证器生成的令牌或备份代码。如果你没有可用的备份代码,请联系支持。"
@@ -6365,10 +6450,10 @@ msgstr "请重试,并确保你输入了正确的邮箱地址。"
msgid "Please try again later."
msgstr "请稍后再试。"
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Please try again or contact our support."
msgstr "请重试或联系我们的支持团队。"
@@ -6382,8 +6467,8 @@ msgstr "请输入 {0} 以确认"
msgid "Please type <0>{0}0> to confirm."
msgstr "请输入 <0>{0}0> 以确认。"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Please upload a document to continue"
msgstr "请上传文档后继续"
@@ -6395,15 +6480,15 @@ msgstr "请上传一个 Logo"
msgid "Pre-formatted CSV template with example data."
msgstr "带示例数据的预格式化 CSV 模板。"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-desktop.tsx
-#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Preferences"
msgstr "偏好设置"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Preview"
msgstr "预览"
@@ -6425,8 +6510,8 @@ msgstr "在发送前预览文档"
msgid "Preview what the signed document will look like with placeholder data"
msgstr "使用占位数据预览签署后的文档效果"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Private"
msgstr "私有"
@@ -6442,10 +6527,14 @@ msgstr "私有模板只能由你查看和修改。"
msgid "Proceed"
msgstr "继续"
-#: 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/routes/_recipient+/sign.$token+/complete.tsx
+msgid "Processing document"
+msgstr "正在处理文档"
+
#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/profile.tsx
msgid "Profile"
msgstr "个人资料"
@@ -6457,8 +6546,8 @@ msgstr "当前资料<0>已隐藏0>。"
msgid "Profile is currently <0>visible0>."
msgstr "当前资料<0>可见0>。"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Profile updated"
msgstr "个人资料已更新"
@@ -6474,15 +6563,15 @@ msgstr "提供方"
msgid "Provider has been updated successfully"
msgstr "提供方已成功更新"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/general/template/template-type.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Public"
msgstr "公开"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
msgid "Public Profile"
msgstr "公开资料"
@@ -6503,8 +6592,8 @@ msgid "Quick Actions"
msgstr "快速操作"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
-#: packages/ui/primitives/document-flow/types.ts
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/types.ts
msgid "Radio"
msgstr "单选"
@@ -6517,11 +6606,11 @@ msgstr "单选按钮设置"
msgid "Radio values"
msgstr "单选值"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Read only"
msgstr "只读"
@@ -6570,8 +6659,8 @@ msgstr "签署此字段需要重新验证身份"
msgid "Receives copy"
msgstr "接收副本"
-#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
#: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Recent activity"
msgstr "最近活动"
@@ -6579,10 +6668,10 @@ msgstr "最近活动"
msgid "Recent documents"
msgstr "最近文档"
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: 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
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
#: packages/lib/utils/document-audit-logs.ts
@@ -6592,9 +6681,9 @@ msgid "Recipient"
msgstr "收件人"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: 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
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Recipient action authentication"
msgstr "收件人操作认证"
@@ -6614,11 +6703,11 @@ msgstr "收件人签署请求邮件"
msgid "Recipient updated"
msgstr "收件人已更新"
-#: 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
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Recipients"
msgstr "收件人"
@@ -6662,10 +6751,10 @@ msgstr "红色"
msgid "Redirect URI"
msgstr "重定向 URI"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Redirect URL"
msgstr "重定向 URL"
@@ -6673,8 +6762,8 @@ msgstr "重定向 URL"
msgid "Redirecting"
msgstr "正在重定向"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "Registration Successful"
msgstr "注册成功"
@@ -6682,19 +6771,19 @@ msgstr "注册成功"
msgid "Reject"
msgstr "拒绝"
-#: 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
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.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
+#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
msgid "Reject Document"
msgstr "拒签文档"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
-#: apps/remix/app/components/general/document/document-status.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/document/document-status.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/stack-avatars-with-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/constants/document.ts
msgid "Rejected"
msgstr "已拒签"
@@ -6707,8 +6796,8 @@ msgstr "拒签已确认"
msgid "Rejection reason: {reason}"
msgstr "拒签原因:{reason}"
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
msgid "Reload"
msgstr "重新加载"
@@ -6734,34 +6823,34 @@ msgstr "提醒:请 {recipientActionVerb} 此文档"
msgid "Reminder: Please {recipientActionVerb} your document"
msgstr "提醒:请 {recipientActionVerb} 您的文档"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/forms/avatar-image.tsx
-#: apps/remix/app/components/dialogs/template-use-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-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/team-email-delete-dialog.tsx
-#: packages/ui/primitives/document-flow/field-item.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-field-container.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/field-item.tsx
msgid "Remove"
msgstr "移除"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
msgid "Remove email domain"
msgstr "移除邮箱域名"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Remove organisation group"
msgstr "移除组织组"
@@ -6773,13 +6862,13 @@ msgstr "移除组织成员"
msgid "Remove team email"
msgstr "移除团队邮箱"
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Remove team member"
msgstr "移除团队成员"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Repeat Password"
msgstr "重复密码"
@@ -6787,22 +6876,26 @@ msgstr "重复密码"
msgid "Reply to email"
msgstr "回复邮箱"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Reply To Email"
msgstr "回复邮箱"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Request"
+msgstr "请求"
+
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Requesting Organisation"
msgstr "请求的组织"
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/radio-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Required field"
msgstr "必填字段"
@@ -6818,8 +6911,9 @@ msgstr "必需的作用域"
msgid "Reseal document"
msgstr "重新封存文档"
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Resend"
msgstr "重新发送"
@@ -6832,9 +6926,9 @@ msgstr "重新发送代码"
msgid "Resend Confirmation Email"
msgstr "重新发送确认邮件"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
msgid "Resend Document"
msgstr "重新发送文档"
@@ -6842,9 +6936,9 @@ msgstr "重新发送文档"
msgid "Resend verification"
msgstr "重新发送验证"
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Reset"
msgstr "重置"
@@ -6857,9 +6951,9 @@ msgstr "重置双重认证"
msgid "Reset email sent"
msgstr "重置邮件已发送"
-#: 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
+#: apps/remix/app/components/forms/reset-password.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password.$token.tsx
#: packages/email/template-components/template-forgot-password.tsx
msgid "Reset Password"
msgstr "重置密码"
@@ -6884,6 +6978,18 @@ msgstr "解决"
msgid "Resolve payment"
msgstr "解决付款问题"
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response"
+msgstr "响应"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Code"
+msgstr "响应代码"
+
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Response Headers"
+msgstr "响应头"
+
#: 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 "请放心,您的文档将被严格保密,绝不会被分享。只有您的签署体验会被展示。分享您的个性化签署卡片,展示您的签名!"
@@ -6904,11 +7010,11 @@ msgstr "已重试次数"
msgid "Retry"
msgstr "重试"
-#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.decline.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/organisation.invite.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/team.verify.email.$token.tsx
msgid "Return"
msgstr "返回"
@@ -6924,8 +7030,8 @@ msgstr "返回文档列表"
msgid "Return to Home"
msgstr "返回首页"
-#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
+#: apps/remix/app/routes/_unauthenticated+/reset-password._index.tsx
msgid "Return to sign in"
msgstr "返回登录"
@@ -6937,8 +7043,8 @@ msgstr "返回模板列表"
msgid "Review request"
msgstr "审查请求"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "Revoke"
msgstr "撤销"
@@ -6956,24 +7062,24 @@ msgstr "撤销所有会话"
msgid "Right"
msgstr "右对齐"
-#: apps/remix/app/components/tables/user-organisations-table.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-groups-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/embed/authoring/configure-document-recipients.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-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/organisation-groups-table.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/components/tables/user-organisations-table.tsx
msgid "Role"
msgstr "角色"
-#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
msgid "Roles"
msgstr "角色"
@@ -6981,11 +7087,11 @@ msgstr "角色"
msgid "Rows per page"
msgstr "每页行数"
-#: 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/embed/authoring/configure-fields-view.tsx
-#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/embed/authoring/configure-fields-view.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx
#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx
msgid "Save"
msgstr "保存"
@@ -7004,12 +7110,13 @@ msgstr "保存模板"
msgid "Sealing job started"
msgstr "封装作业已开始"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
-#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/tables/documents-table-sender-filter.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.groups.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Search"
msgstr "搜索"
@@ -7025,6 +7132,10 @@ msgstr "按声明 ID 或名称搜索"
msgid "Search by document title"
msgstr "按文档标题搜索"
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Search by ID"
+msgstr "按 ID 搜索"
+
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
msgid "Search by name or email"
msgstr "按姓名或邮箱搜索"
@@ -7041,11 +7152,11 @@ msgstr "按组织名称搜索"
msgid "Search documents..."
msgstr "搜索文档..."
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
-#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
#: apps/remix/app/components/dialogs/document-move-to-folder-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
+#: apps/remix/app/components/dialogs/template-move-to-folder-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.folders._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.folders._index.tsx
msgid "Search folders..."
msgstr "搜索文件夹…"
@@ -7057,10 +7168,10 @@ msgstr "搜索语言…"
msgid "Secret"
msgstr "密钥"
-#: 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
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
msgid "Security"
msgstr "安全"
@@ -7073,8 +7184,8 @@ msgid "See the background jobs tab for the status"
msgstr "状态请查看后台作业选项卡"
#: 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
+#: packages/ui/primitives/document-flow/types.ts
msgid "Select"
msgstr "选择"
@@ -7094,6 +7205,10 @@ msgstr "选择套餐"
msgid "Select a plan to continue"
msgstr "请选择套餐以继续"
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page-renderer.tsx
+msgid "Select a recipient"
+msgstr "选择一个收件人"
+
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
msgid "Select a team to view its dashboard"
msgstr "选择一个团队以查看其控制台"
@@ -7114,6 +7229,10 @@ msgstr "选择时区"
msgid "Select access methods"
msgstr "选择访问方式"
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
+msgid "Select an event type"
+msgstr "选择一个事件类型"
+
#: apps/remix/app/components/dialogs/sign-field-dropdown-dialog.tsx
#: packages/ui/primitives/combobox.tsx
msgid "Select an option"
@@ -7128,8 +7247,8 @@ msgstr "选择一个组织以查看团队"
msgid "Select at least"
msgstr "至少选择"
-#: packages/ui/components/recipient/recipient-action-auth-select.tsx
#: packages/ui/components/document/document-global-auth-action-select.tsx
+#: packages/ui/components/recipient/recipient-action-auth-select.tsx
msgid "Select authentication methods"
msgstr "选择认证方式"
@@ -7142,8 +7261,8 @@ msgstr "选择默认选项"
msgid "Select default role"
msgstr "选择默认角色"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Select direction"
msgstr "选择方向"
@@ -7160,9 +7279,9 @@ msgstr "选择要添加到团队的成员组。"
msgid "Select groups to add to this team"
msgstr "选择要添加到此团队的组"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Select members"
msgstr "选择成员"
@@ -7182,11 +7301,20 @@ msgstr "选择选项"
msgid "Select passkey"
msgstr "选择通行密钥"
+#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Select signature types"
msgstr "选择签名类型"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Select text align"
msgstr "选择文本对齐方式"
@@ -7207,6 +7335,10 @@ msgstr "选择要包含在此组中的成员"
msgid "Select triggers"
msgstr "选择触发器"
+#: packages/ui/primitives/multi-select-combobox.tsx
+msgid "Select values..."
+msgstr "选择值…"
+
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
msgid "Select vertical align"
msgstr "选择垂直对齐方式"
@@ -7215,20 +7347,20 @@ msgstr "选择垂直对齐方式"
msgid "Select visibility"
msgstr "选择可见性"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-page.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-preview-page.tsx
msgid "Selected Recipient"
msgstr "选定收件人"
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
-#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
+#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send"
msgstr "发送"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Send a test webhook with sample data to verify your integration is working correctly."
msgstr "发送带有示例数据的测试 Webhook,以验证集成是否正常工作。"
@@ -7241,9 +7373,9 @@ msgstr "发送确认邮件"
msgid "Send document"
msgstr "发送文档"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor.tsx
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx
msgid "Send Document"
msgstr "发送文档"
@@ -7288,8 +7420,8 @@ msgstr "发送收件人签署邮件"
msgid "Send recipient signing request email"
msgstr "发送收件人签署请求邮件"
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
msgid "Send reminder"
msgstr "发送提醒"
@@ -7297,12 +7429,8 @@ msgstr "发送提醒"
msgid "Send reminders to the following recipients"
msgstr "向以下收件人发送提醒"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
-msgid "Send Test Webhook"
-msgstr "发送测试 Webhook"
-
-#: apps/remix/app/components/tables/inbox-table.tsx
#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
msgid "Sender"
msgstr "发件人"
@@ -7314,8 +7442,10 @@ msgstr "正在发送重置邮件..."
msgid "Sending..."
msgstr "正在发送..."
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Sent"
msgstr "已发送"
@@ -7339,15 +7469,15 @@ msgstr "设置文档属性和收件人信息"
msgid "Set up your template properties and recipient information"
msgstr "设置模板属性和收件人信息"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/folder/folder-card.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
#: apps/remix/app/routes/_authenticated+/settings+/_layout.tsx
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/app-nav-mobile.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
-#: apps/remix/app/components/general/folder/folder-card.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
msgid "Settings"
msgstr "设置"
@@ -7355,17 +7485,14 @@ msgstr "设置"
msgid "Setup"
msgstr "设置"
-#: 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/tables/documents-table-action-dropdown.tsx
+#: packages/ui/components/document/document-share-button.tsx
msgid "Share"
msgstr "分享"
-#: packages/ui/components/document/document-share-button.tsx
-msgid "Share Signature Card"
-msgstr "分享签名卡片"
-
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Share Signing Card"
msgstr "分享签署卡片"
@@ -7382,8 +7509,8 @@ msgid "Show"
msgstr "显示"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Show advanced settings"
msgstr "显示高级设置"
@@ -7391,26 +7518,26 @@ msgstr "显示高级设置"
msgid "Show templates in your public profile for your audience to sign and get started quickly"
msgstr "在公开资料中展示模板,方便你的用户快速签署上手"
-#: apps/remix/app/routes/_profile+/p.$url.tsx
-#: apps/remix/app/components/tables/inbox-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/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-password.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
-#: apps/remix/app/components/general/document/document-page-view-button.tsx
-#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
-#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
#: apps/remix/app/components/dialogs/sign-field-checkbox-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-email-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-initials-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-signature-dialog.tsx
+#: apps/remix/app/components/dialogs/sign-field-text-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auto-sign.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.tsx
+#: apps/remix/app/components/general/user-profile-skeleton.tsx
+#: apps/remix/app/components/general/user-profile-timur.tsx
+#: apps/remix/app/components/tables/documents-table-action-button.tsx
+#: apps/remix/app/components/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/routes/_profile+/p.$url.tsx
msgid "Sign"
msgstr "签署"
@@ -7435,15 +7562,15 @@ msgstr "以<0>{0} <1>({1})1>0>的身份签署"
msgid "Sign Checkbox Field"
msgstr "签署复选框字段"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign document"
msgstr "签署文档"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
msgid "Sign Document"
msgstr "签署文档"
@@ -7464,16 +7591,16 @@ msgstr "签署字段"
msgid "Sign Here"
msgstr "在此签名"
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
#: packages/email/template-components/template-reset-password.tsx
msgid "Sign In"
msgstr "登录"
-#: apps/remix/app/routes/_unauthenticated+/signin.tsx
-#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-dialog.tsx
+#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/signin.tsx
msgid "Sign in to your account"
msgstr "登录到你的账号"
@@ -7489,9 +7616,9 @@ msgstr "签署姓名字段"
msgid "Sign Number Field"
msgstr "签署数字字段"
-#: apps/remix/app/components/general/org-menu-switcher.tsx
-#: apps/remix/app/components/general/menu-switcher.tsx
#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/components/general/menu-switcher.tsx
+#: apps/remix/app/components/general/org-menu-switcher.tsx
msgid "Sign Out"
msgstr "登出"
@@ -7503,8 +7630,8 @@ msgstr "签署签名字段"
msgid "Sign Text Field"
msgstr "签署文本字段"
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.tsx
msgid "Sign the document to complete the process."
msgstr "签署文档以完成流程。"
@@ -7537,21 +7664,21 @@ msgstr "在字段中填写您的全名"
msgid "Sign your initials into the field"
msgstr "在字段中填写您的姓名首字母缩写"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.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-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-signing-view.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
+#: apps/remix/app/components/forms/profile.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-form.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-fields-drag-drop.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signer-form.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Signature"
msgstr "签名"
@@ -7579,15 +7706,10 @@ msgstr "签名类型"
msgid "Signatures Collected"
msgstr "收集到的签名数量"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
-#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: packages/ui/components/document/document-read-only-fields.tsx
-msgid "Signed"
-msgstr "已签署"
-
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-msgctxt "Signed document (adjective)"
+#: packages/ui/components/document/envelope-recipient-field-tooltip.tsx
msgid "Signed"
msgstr "已签署"
@@ -7596,6 +7718,11 @@ msgctxt "Recipient role actioned"
msgid "Signed"
msgstr "已签署"
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+msgctxt "Signed document (adjective)"
+msgid "Signed"
+msgstr "已签署"
+
#: apps/remix/app/components/general/envelope-signing/envelope-signer-header.tsx
msgid "Signer"
msgstr "签署人"
@@ -7641,8 +7768,8 @@ msgstr "代签对象"
msgid "Signing in..."
msgstr "正在登录..."
-#: 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/tables/documents-table-action-dropdown.tsx
msgid "Signing Links"
msgstr "签署链接"
@@ -7651,8 +7778,8 @@ msgid "Signing links have been generated for this document."
msgstr "已为此文档生成签署链接。"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "Signing order is enabled."
msgstr "签署顺序已启用。"
@@ -7669,8 +7796,8 @@ msgstr "自 {0} 起"
msgid "Site Banner"
msgstr "站点横幅"
-#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx
msgid "Site Settings"
msgstr "站点设置"
@@ -7678,50 +7805,51 @@ msgstr "站点设置"
msgid "Some signers have not been assigned a signature field. Please assign at least 1 signature field to each signer before proceeding."
msgstr "部分签署人尚未被分配签名字段。请在继续前为每位签署人至少分配 1 个签名字段。"
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/billing-plans.tsx
-#: apps/remix/app/components/general/billing-plans.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
-#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.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-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/embed/embed-document-signing-page-v1.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-inherit-member-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/team-inherit-member-disable-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/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-distribute-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
+#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/document-resend-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-download-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-redistribute-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-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-inherit-member-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/template-create-dialog.tsx
+#: apps/remix/app/components/dialogs/template-delete-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-direct-link-dialog.tsx
+#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
+#: apps/remix/app/components/general/document/document-audit-log-download-button.tsx
+#: apps/remix/app/components/general/document/document-certificate-download-button.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
+#: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx
#: packages/ui/components/document/document-share-button.tsx
msgid "Something went wrong"
msgstr "出错了"
@@ -7731,10 +7859,10 @@ msgstr "出错了"
msgid "Something went wrong while attempting to verify your email address for <0>{0}0>. Please try again later."
msgstr "尝试验证你在 <0>{0}0> 的邮箱地址时出错。请稍后再试。"
-#: packages/ui/primitives/pdf-viewer.tsx
-#: packages/ui/primitives/pdf-viewer.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
#: packages/ui/components/pdf-viewer/pdf-viewer-konva.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
+#: packages/ui/primitives/pdf-viewer/base.tsx
msgid "Something went wrong while loading the document."
msgstr "加载文档时出现问题。"
@@ -7759,10 +7887,10 @@ msgstr "更新团队账单订阅时出错,请联系支持。"
msgid "Something went wrong while uploading this file"
msgstr "上传此文件时出现问题"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.document.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.document.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.email.tsx
msgid "Something went wrong!"
msgstr "出错了!"
@@ -7774,8 +7902,8 @@ msgstr "发生了一些错误。"
msgid "Something went wrong. Please try again later."
msgstr "出现了一些问题。请稍后重试。"
-#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Something went wrong. Please try again or contact support."
msgstr "出错了。请重试或联系支持。"
@@ -7787,8 +7915,8 @@ msgstr "抱歉,我们未能下载审计日志。请稍后再试。"
msgid "Sorry, we were unable to download the certificate. Please try again later."
msgstr "抱歉,我们未能下载证书。请稍后再试。"
-#: apps/remix/app/components/tables/team-members-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
msgid "Source"
msgstr "来源"
@@ -7804,16 +7932,19 @@ msgstr "SSO"
msgid "Stats"
msgstr "统计"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/tables/admin-organisations-table.tsx
-#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/admin-document-jobs-table.tsx
+#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
+#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
msgid "Status"
msgstr "状态"
@@ -7840,14 +7971,14 @@ msgstr "Stripe 客户创建成功"
msgid "Stripe Customer ID"
msgstr "Stripe 客户 ID"
-#: apps/remix/app/components/forms/support-ticket-form.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/forms/support-ticket-form.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Subject"
msgstr "主题"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Subject <0>(Optional)0>"
msgstr "主题 <0>(可选)0>"
@@ -7866,8 +7997,8 @@ msgstr "已提交"
msgid "Subscribe"
msgstr "订阅"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/tables/admin-organisations-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Subscription"
msgstr "订阅"
@@ -7891,59 +8022,65 @@ msgstr "订阅声明"
msgid "Subscription invalid"
msgstr "订阅无效"
-#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
-#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.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/organisation-member-invites-table.tsx
-#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
-#: apps/remix/app/components/general/verify-email-banner.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/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/general/document/document-attachments-popover.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/organisation-update-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-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-create-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
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
-#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "Subscription Status"
+msgstr "订阅状态"
+
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-item-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-leave-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-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/team-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-add-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-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/template-bulk-send-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/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/document/document-attachments-popover.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
+#: apps/remix/app/components/general/teams/team-email-dropdown.tsx
+#: apps/remix/app/components/general/teams/team-email-usage.tsx
+#: apps/remix/app/components/general/verify-email-banner.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+#: apps/remix/app/components/tables/organisation-member-invites-table.tsx
+#: apps/remix/app/components/tables/organisation-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/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/document.edit.$id.tsx
+#: apps/remix/app/routes/embed+/v1+/authoring+/template.edit.$id.tsx
msgid "Success"
msgstr "成功"
@@ -7959,8 +8096,14 @@ msgstr "创建成功:{successCount}"
msgid "Summary:"
msgstr "摘要:"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+msgid "support"
+msgstr "支持"
+
+#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.support.tsx
msgid "Support"
msgstr "支持"
@@ -7981,11 +8124,11 @@ msgid "Sync failed, changes not saved"
msgstr "同步失败,更改未保存"
#: packages/lib/utils/document-audit-logs.ts
-msgctxt "Audit log format"
msgid "System auto inserted fields"
msgstr "系统自动插入了字段"
#: packages/lib/utils/document-audit-logs.ts
+msgctxt "Audit log format"
msgid "System auto inserted fields"
msgstr "系统自动插入了字段"
@@ -7997,10 +8140,10 @@ msgstr "系统要求"
msgid "System Theme"
msgstr "系统主题"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/organisation-teams-table.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-teams-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team"
msgstr "团队"
@@ -8017,8 +8160,8 @@ msgstr "团队管理员"
msgid "Team Assignments"
msgstr "团队分配"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
#: apps/remix/app/components/forms/subscription-claim-form.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Team Count"
msgstr "团队数量"
@@ -8081,14 +8224,14 @@ msgstr "团队成员"
msgid "Team Members"
msgstr "团队成员"
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "Team members have been added."
msgstr "团队成员已添加。"
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
msgid "Team Name"
msgstr "团队名称"
@@ -8105,9 +8248,9 @@ msgstr "仅团队"
msgid "Team only templates are not linked anywhere and are visible only to your team."
msgstr "仅团队可见的模板不会在其他地方被链接,只对你的团队可见。"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
msgid "Team Role"
msgstr "团队角色"
@@ -8123,18 +8266,18 @@ msgstr "团队设置"
msgid "Team url"
msgstr "团队 URL"
-#: apps/remix/app/components/forms/team-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "Team URL"
msgstr "团队 URL"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/dashboard.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
#: apps/remix/app/components/general/org-menu-switcher.tsx
+#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/dashboard.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
msgid "Teams"
msgstr "团队"
@@ -8146,13 +8289,13 @@ msgstr "团队帮助您组织工作并与他人协作。创建您的第一个团
msgid "Teams that this organisation group is currently assigned to"
msgstr "当前已将此组织组分配给以下团队"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/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/public-profile-template-manage-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-invite-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.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/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.legacy_editor.tsx
msgid "Template"
msgstr "模板"
@@ -8217,17 +8360,17 @@ msgstr "模板标题"
msgid "Template updated successfully"
msgstr "模板更新成功"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Template uploaded"
msgstr "模板已上传"
+#: apps/remix/app/components/general/app-command-menu.tsx
+#: apps/remix/app/components/general/app-nav-desktop.tsx
+#: apps/remix/app/components/general/app-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.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
msgid "Templates"
msgstr "模板"
@@ -8235,8 +8378,10 @@ msgstr "模板"
msgid "Templates allow you to quickly generate documents with pre-filled recipients and fields."
msgstr "模板可帮助你快速生成包含预填收件人和字段的文档。"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Test"
+msgstr "测试"
+
#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Test Webhook"
msgstr "测试 Webhook"
@@ -8249,23 +8394,23 @@ msgstr "测试 Webhook 失败"
msgid "Test webhook sent"
msgstr "测试 Webhook 已发送"
+#: 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/envelope-editor/envelope-editor-fields-drag-drop.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
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
-#: packages/ui/primitives/document-flow/types.ts
-#: packages/ui/primitives/document-flow/add-fields.tsx
#: packages/lib/utils/fields.ts
+#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/document-flow/types.ts
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "Text"
msgstr "文本"
#: apps/remix/app/components/forms/editor/editor-field-generic-field-forms.tsx
-#: 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
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/name-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/text-field.tsx
msgid "Text Align"
msgstr "文本对齐"
@@ -8325,14 +8470,14 @@ msgstr "横幅中要显示的内容,允许使用 HTML"
msgid "The default email to use when sending emails to recipients"
msgstr "向收件人发送邮件时使用的默认邮箱"
-#: 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
+#: apps/remix/app/components/general/template/template-direct-link-badge.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
msgid "The direct link has been copied to your clipboard"
msgstr "直接链接已复制到剪贴板"
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
msgid "The display name for this email address"
msgstr "此邮箱地址的显示名称"
@@ -8352,8 +8497,8 @@ msgstr "文档现已完成,请按照宿主应用中的后续说明进行操作
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 "文档所有者已收到此次拒签的通知。当前您无需再进行任何操作。如对本次拒签有任何疑问,文档所有者可能会联系您。"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "The document owner has been notified of your decision. They may contact you with further instructions if necessary."
msgstr "文档所有者已收到您的决定通知。如有需要,他们可能会联系您并提供进一步说明。"
@@ -8373,8 +8518,8 @@ msgstr "如果勾选,将立即把文档发送给收件人。"
msgid "The document you are looking for could not be found."
msgstr "找不到您要查找的文档。"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx
msgid "The document you are looking for may have been removed, renamed or may have never existed."
msgstr "您要查找的文档可能已被删除、重命名,或从未存在。"
@@ -8394,8 +8539,8 @@ msgstr "您要查找的邮箱域名可能已被删除、重命名,或从未存
msgid "The email or password provided is incorrect"
msgstr "邮箱或密码不正确"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The events that will trigger a webhook to be sent to your URL."
msgstr "将触发 Webhook 发送到你的 URL 的事件。"
@@ -8530,8 +8675,8 @@ msgid "The signer's name"
msgstr "签署人的姓名"
#: 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
+#: apps/remix/app/components/general/document/document-recipient-link-copy-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "The signing link has been copied to your clipboard."
msgstr "签署链接已复制到剪贴板。"
@@ -8597,8 +8742,8 @@ msgstr "键入签名的字体大小"
msgid "The types of signatures that recipients are allowed to use when signing the document."
msgstr "收件人在签署文档时允许使用的签名类型。"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The URL for Documenso to send webhook events to."
msgstr "Documenso 向其发送 Webhook 事件的 URL。"
@@ -8614,7 +8759,7 @@ msgstr "该用户的双重身份验证已成功重置。"
msgid "The webhook has been successfully deleted."
msgstr "Webhook 已成功删除。"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "The webhook has been updated successfully."
msgstr "Webhook 已成功更新。"
@@ -8622,7 +8767,7 @@ msgstr "Webhook 已成功更新。"
msgid "The webhook was successfully created."
msgstr "Webhook 已创建成功。"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "The webhook you are looking for may have been removed, renamed or may have never existed."
msgstr "您要查找的 Webhook 可能已被删除、重命名,或从未存在。"
@@ -8666,9 +8811,9 @@ msgstr "此账户尚未验证。请先验证账户然后再登录。"
msgid "This action is irreversible. Please ensure you have informed the user before proceeding."
msgstr "此操作不可撤销。请在继续之前确保您已告知该用户。"
-#: 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
+#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
msgid "This action is not reversible. Please be certain."
msgstr "此操作不可逆。请务必确认。"
@@ -8696,8 +8841,8 @@ msgstr "当前无法删除此文档。请重试。"
msgid "This document could not be downloaded at this time. Please try again."
msgstr "当前无法下载此文档。请重试。"
-#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
#: apps/remix/app/components/dialogs/document-duplicate-dialog.tsx
+#: apps/remix/app/components/dialogs/envelope-duplicate-dialog.tsx
msgid "This document could not be duplicated at this time. Please try again."
msgstr "当前无法复制此文档。请重试。"
@@ -8705,6 +8850,7 @@ msgstr "当前无法复制此文档。请重试。"
msgid "This document could not be re-sent at this time. Please try again."
msgstr "当前无法重新发送此文档。请重试。"
+#: apps/remix/app/components/general/envelope-editor/envelope-recipient-selector.tsx
#: packages/ui/primitives/recipient-selector.tsx
msgid "This document has already been sent to this recipient. You can no longer edit this recipient."
msgstr "此文档已发送给该收件人,您不再能编辑该收件人。"
@@ -8873,9 +9019,9 @@ msgstr "此令牌无效或已过期。无需进行任何操作。"
msgid "This token is invalid or has expired. Please contact your team for a new invitation."
msgstr "此令牌无效或已过期。请联系你的团队获取新的邀请。"
-#: apps/remix/app/components/forms/team-update-form.tsx
-#: apps/remix/app/components/forms/organisation-update-form.tsx
#: apps/remix/app/components/dialogs/team-create-dialog.tsx
+#: apps/remix/app/components/forms/organisation-update-form.tsx
+#: apps/remix/app/components/forms/team-update-form.tsx
msgid "This URL is already in use."
msgstr "该 URL 已被使用。"
@@ -8915,21 +9061,21 @@ msgstr "时间"
msgid "Time zone"
msgstr "时区"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
#: apps/remix/app/components/embed/authoring/configure-document-advanced-settings.tsx
-#: packages/ui/primitives/template-flow/add-template-settings.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
+#: packages/ui/primitives/template-flow/add-template-settings.tsx
msgid "Time Zone"
msgstr "时区"
-#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
-#: apps/remix/app/components/tables/templates-table.tsx
-#: apps/remix/app/components/tables/organisation-insights-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/documents-table.tsx
-#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
#: apps/remix/app/components/embed/authoring/configure-document-view.tsx
+#: apps/remix/app/components/general/template/template-page-view-documents-table.tsx
+#: apps/remix/app/components/tables/documents-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/documents._index.tsx
#: packages/ui/primitives/document-flow/add-settings.tsx
msgid "Title"
msgstr "标题"
@@ -8964,12 +9110,12 @@ msgid "To change the email you must remove and add a new email address."
msgstr "要更改邮箱,你必须先移除,再添加一个新邮箱地址。"
#. placeholder {0}: user.email
-#. placeholder {0}: userToEnable.email
#. placeholder {0}: userToDisable.email
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
-#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#. placeholder {0}: userToEnable.email
#: apps/remix/app/components/dialogs/admin-user-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "To confirm, please enter the accounts email address <0/>({0})."
msgstr "如需确认,请输入该账号的邮箱地址 <0/>({0})。"
@@ -8981,8 +9127,8 @@ msgstr "为确认,请输入原因"
msgid "To enable two-factor authentication, scan the following QR code using your authenticator app."
msgstr "要启用双重验证,请使用验证器应用扫描以下二维码。"
-#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
+#: apps/remix/app/routes/_unauthenticated+/unverified-account.tsx
msgid "To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox."
msgstr "要访问你的账号,请点击收件箱中的确认链接以验证邮箱地址。"
@@ -8997,8 +9143,8 @@ msgstr "要将此文档标记为已查看,您需要先登录。"
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
#. placeholder {0}: emptyCheckboxFields.length > 0 ? 'Checkbox' : emptyRadioFields.length > 0 ? 'Radio' : 'Select'
-#: packages/ui/primitives/template-flow/add-template-fields.tsx
#: packages/ui/primitives/document-flow/add-fields.tsx
+#: packages/ui/primitives/template-flow/add-template-fields.tsx
msgid "To proceed further, please set at least one value for the {0} field."
msgstr "若要继续,请至少为 {0} 字段设置一个值。"
@@ -9074,8 +9220,8 @@ msgstr "注册为 Documenso 用户的签署人总数"
msgid "Total Users"
msgstr "用户总数"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Triggers"
msgstr "触发条件"
@@ -9087,8 +9233,8 @@ msgstr "双重验证"
msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app."
msgstr "双重验证恢复代码用于在你无法访问验证器应用时登录账号。"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Two-Factor Authentication"
msgstr "双重验证"
@@ -9108,21 +9254,25 @@ msgstr "你的账号已禁用双重验证。登录时将不再需要输入验证
msgid "Two-Factor Re-Authentication"
msgstr "双重验证重新验证"
-#: apps/remix/app/components/tables/templates-table.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
+#: apps/remix/app/components/tables/templates-table.tsx
msgid "Type"
msgstr "类型"
#: packages/lib/constants/document.ts
-msgctxt "Type signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Type signature"
msgid "Type"
-msgstr "类型"
+msgstr "键入"
#: apps/remix/app/components/general/app-command-menu.tsx
msgid "Type a command or search..."
msgstr "输入命令或搜索..."
+#: packages/ui/primitives/signature-pad/signature-pad-type.tsx
+msgid "Type your signature"
+msgstr "输入您的签名"
+
#: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx
msgid "Typed signatures are not allowed. Please draw your signature."
msgstr "不允许键入签名。请手绘您的签名。"
@@ -9209,11 +9359,11 @@ msgstr "无法设置双重验证"
msgid "Unable to sign in"
msgstr "无法登录"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
msgid "Unauthorized"
msgstr "未授权"
@@ -9221,15 +9371,15 @@ msgstr "未授权"
msgid "Uncompleted"
msgstr "未完成"
-#: 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
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.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
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Unknown"
msgstr "未知"
@@ -9258,27 +9408,28 @@ msgstr "取消固定"
msgid "Untitled Group"
msgstr "未命名组"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: 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/tables/admin-claims-table.tsx
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
-#: apps/remix/app/components/forms/public-profile-form.tsx
-#: apps/remix/app/components/forms/email-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/branding-preferences-form.tsx
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
-#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
-#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/folder-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx
+#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
+#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/email-preferences-form.tsx
+#: apps/remix/app/components/forms/public-profile-form.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
+#: apps/remix/app/components/tables/admin-claims-table.tsx
+#: apps/remix/app/components/tables/settings-public-profile-templates-table.tsx
+#: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "Update"
@@ -9288,8 +9439,8 @@ msgstr "更新"
msgid "Update Banner"
msgstr "更新横幅"
-#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.branding.tsx
+#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains._index.tsx
msgid "Update Billing"
msgstr "更新计费"
@@ -9313,9 +9464,9 @@ msgstr "更新字段"
msgid "Update organisation"
msgstr "更新组织"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "Update organisation member"
msgstr "更新组织成员"
@@ -9331,16 +9482,16 @@ msgstr "更新密码"
msgid "Update profile"
msgstr "更新资料"
-#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
+#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
msgid "Update Recipient"
msgstr "更新收件人"
-#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
-#: apps/remix/app/components/tables/team-members-table.tsx
-#: apps/remix/app/components/tables/team-groups-table.tsx
-#: apps/remix/app/components/tables/organisation-members-table.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/tables/organisation-members-table.tsx
+#: apps/remix/app/components/tables/team-groups-table.tsx
+#: apps/remix/app/components/tables/team-members-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
msgid "Update role"
msgstr "更新角色"
@@ -9375,10 +9526,6 @@ msgstr "根据需要更新直链收件人的角色并添加字段。使用直链
msgid "Update user"
msgstr "更新用户"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
-msgid "Update webhook"
-msgstr "更新 Webhook"
-
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
msgid "Updated {organisationMemberName} to {roleLabel}."
msgstr "已将 {organisationMemberName} 更新为 {roleLabel}。"
@@ -9391,8 +9538,8 @@ msgstr "正在更新密码..."
msgid "Updating Your Information"
msgstr "更新你的信息"
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "Upgrade"
msgstr "升级"
@@ -9406,12 +9553,12 @@ msgid "Upgrade your plan to upload more documents"
msgstr "升级您的套餐以上传更多文档"
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
-#: packages/ui/primitives/signature-pad/signature-pad.tsx
msgid "Upload"
msgstr "上传"
#: packages/lib/constants/document.ts
-msgctxt "Upload signatute type"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx
+msgctxt "Upload signature"
msgid "Upload"
msgstr "上传"
@@ -9443,8 +9590,8 @@ msgstr "上传自定义文档"
msgid "Upload disabled"
msgstr "上传已禁用"
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: packages/ui/primitives/document-upload-button.tsx
msgid "Upload Document"
msgstr "上传文档"
@@ -9454,8 +9601,8 @@ msgid "Upload documents and add recipients"
msgstr "上传文档并添加收件人"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Upload failed"
msgstr "上传失败"
@@ -9476,8 +9623,8 @@ msgstr "上传模板文档"
msgid "Upload your brand logo (max 5MB, JPG, PNG, or WebP)"
msgstr "上传你的品牌 Logo(最大 5MB,JPG、PNG 或 WebP)"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
msgid "Uploaded by"
msgstr "上传者"
@@ -9506,18 +9653,18 @@ msgstr "URL"
msgid "Use"
msgstr "使用"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Authenticator"
msgstr "使用验证器"
-#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
+#: apps/remix/app/components/forms/signin.tsx
msgid "Use Backup Code"
msgstr "使用备份代码"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-header.tsx
msgid "Use Template"
msgstr "使用模板"
@@ -9529,8 +9676,8 @@ msgstr "使用您的验证器应用生成验证码"
msgid "Use your passkey for authentication"
msgstr "使用您的通行密钥进行认证"
-#: apps/remix/app/components/tables/internal-audit-log-table.tsx
#: apps/remix/app/components/tables/document-logs-table.tsx
+#: apps/remix/app/components/tables/internal-audit-log-table.tsx
msgid "User"
msgstr "用户"
@@ -9546,10 +9693,10 @@ msgstr "用户没有密码。"
msgid "User not found"
msgstr "用户未找到"
-#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-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
+#: apps/remix/app/components/dialogs/admin-user-disable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-enable-dialog.tsx
+#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
msgid "User not found."
msgstr "未找到用户。"
@@ -9569,15 +9716,15 @@ msgstr "用户设置"
msgid "User with this email already exists. Please use a different email address."
msgstr "使用该邮箱的用户已存在。请使用其他邮箱地址。"
-#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
#: apps/remix/app/components/tables/organisation-insights-table.tsx
+#: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx
msgid "Users"
msgstr "用户"
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
-#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
+#: packages/ui/primitives/document-flow/field-items-advanced-settings/number-field.tsx
msgid "Validation"
msgstr "校验"
@@ -9585,9 +9732,9 @@ msgstr "校验"
msgid "Validation failed"
msgstr "验证失败"
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.tsx
-#: apps/remix/app/components/forms/editor/editor-field-number-form.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 "Value"
@@ -9629,8 +9776,8 @@ msgstr "验证你的邮箱地址"
msgid "Verify your email address to unlock all features."
msgstr "验证邮箱地址以解锁全部功能。"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Verify your email to upload documents."
msgstr "验证邮箱后即可上传文档。"
@@ -9638,8 +9785,8 @@ msgstr "验证邮箱后即可上传文档。"
msgid "Verify your team email address"
msgstr "验证您的团队邮箱地址"
-#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: apps/remix/app/components/forms/editor/editor-field-checkbox-form.tsx
+#: apps/remix/app/components/forms/editor/editor-field-radio-form.tsx
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx
msgid "Vertical"
msgstr "垂直"
@@ -9648,15 +9795,15 @@ msgstr "垂直"
msgid "Vertical Align"
msgstr "垂直对齐"
-#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
-#: apps/remix/app/components/tables/inbox-table.tsx
-#: apps/remix/app/components/tables/inbox-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
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
+#: apps/remix/app/components/general/document/document-page-view-button.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/tables/documents-table-action-dropdown.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/inbox-table.tsx
+#: apps/remix/app/components/tables/organisation-billing-invoices-table.tsx
msgid "View"
msgstr "查看"
@@ -9689,13 +9836,13 @@ msgstr "查看所有相关文档"
msgid "View all security activity related to your account."
msgstr "查看与你账号相关的所有安全活动。"
-#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
msgid "View and manage all active sessions for your account."
msgstr "查看并管理您账户的所有活动会话。"
-#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
#: apps/remix/app/routes/_authenticated+/settings+/security._index.tsx
+#: apps/remix/app/routes/_authenticated+/settings+/security.linked-accounts.tsx
msgid "View and manage all login methods linked to your account."
msgstr "查看并管理与您账户关联的所有登录方式。"
@@ -9711,14 +9858,14 @@ msgstr "查看 DNS 记录"
msgid "View document"
msgstr "查看文档"
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
-#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
#: apps/remix/app/components/general/document-signing/document-signing-mobile-widget.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
-#: packages/email/template-components/template-document-rejected.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v1.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-page-view-v2.tsx
#: packages/email/template-components/template-document-invite.tsx
+#: packages/email/template-components/template-document-rejected.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
msgid "View Document"
msgstr "查看文档"
@@ -9738,6 +9885,10 @@ msgstr "查看文档以签署"
msgid "View documents associated with this email"
msgstr "查看与此邮箱相关的文档"
+#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
+msgid "View insights"
+msgstr "查看洞察"
+
#: apps/remix/app/components/general/organisations/organisation-invitations.tsx
msgid "View invites"
msgstr "查看邀请"
@@ -9771,9 +9922,9 @@ msgstr "查看团队"
msgid "View the DNS records for this email domain"
msgstr "查看此邮箱域名的 DNS 记录"
-#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
-#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
#: apps/remix/app/components/embed/multisign/multi-sign-document-list.tsx
+#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
+#: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx
msgid "Viewed"
msgstr "已查看"
@@ -9821,8 +9972,8 @@ msgstr "正在等待其他人完成签署。"
msgid "Waiting for others to sign"
msgstr "正在等待其他人签署"
-#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
#: apps/remix/app/components/embed/embed-document-waiting-for-turn.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/waiting.tsx
msgid "Waiting for Your Turn"
msgstr "正在等待你的顺序"
@@ -9838,17 +9989,17 @@ msgstr "想拥有自己的公开资料吗?"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: 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
+#: 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
msgid "Warning: Assistant as last signer"
msgstr "警告:助理为最后一位签署人"
-#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
#: apps/remix/app/components/general/organisations/organisation-billing-banner.tsx
+#: apps/remix/app/components/general/organisations/organisation-billing-portal-button.tsx
msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
msgstr "目前无法进入账单门户。请重试或联系支持。"
@@ -9895,12 +10046,12 @@ msgstr "移除直接模板链接时出错。请稍后再试。"
msgid "We encountered an error while sending the test webhook. Please check your endpoint and try again."
msgstr "发送测试 Webhook 时遇到错误。请检查您的端点并重试。"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "We encountered an error while updating the webhook. Please try again later."
msgstr "更新 Webhook 时出错。请稍后再试。"
-#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-create-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
msgid "We encountered an unknown error while attempting to add team members. Please try again later."
msgstr "在尝试添加团队成员时遇到未知错误。请稍后重试。"
@@ -9916,8 +10067,8 @@ msgstr "在尝试添加域名时遇到未知错误。请稍后重试。"
msgid "We encountered an unknown error while attempting to create a group. Please try again later."
msgstr "在尝试创建组时遇到未知错误。请稍后重试。"
-#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-create-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
msgid "We encountered an unknown error while attempting to create a organisation. Please try again later."
msgstr "在尝试创建组织时遇到未知错误。请稍后重试。"
@@ -9973,8 +10124,8 @@ msgstr "在尝试移除此邮箱时遇到未知错误。请稍后重试。"
msgid "We encountered an unknown error while attempting to remove this envelope item. Please try again later."
msgstr "在尝试移除此信封条目时遇到未知错误。请稍后重试。"
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this group. Please try again later."
msgstr "在尝试移除此组时遇到未知错误。请稍后重试。"
@@ -9982,8 +10133,8 @@ msgstr "在尝试移除此组时遇到未知错误。请稍后重试。"
msgid "We encountered an unknown error while attempting to remove this template from your profile. Please try again later."
msgstr "尝试将此模板从资料中移除时出现未知错误。请稍后再试。"
-#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
#: apps/remix/app/components/dialogs/organisation-member-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx
msgid "We encountered an unknown error while attempting to remove this user. Please try again later."
msgstr "尝试移除此用户时出现未知错误。请稍后再试。"
@@ -10000,10 +10151,10 @@ msgstr "尝试重置密码时出现未知错误。请稍后再试。"
msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support."
msgstr "尝试撤销访问权限时出现未知错误。请重试或联系支持。"
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
+#: apps/remix/app/components/forms/signin.tsx
#: apps/remix/app/routes/_unauthenticated+/o.$orgUrl.signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
-#: apps/remix/app/components/forms/signin.tsx
msgid "We encountered an unknown error while attempting to sign you In. Please try again later."
msgstr "尝试为你登录时出现未知错误。请稍后再试。"
@@ -10025,13 +10176,13 @@ msgstr "在尝试更新此信封时遇到未知错误。请稍后重试。"
msgid "We encountered an unknown error while attempting to update the template. Please try again later."
msgstr "尝试更新模板时出现未知错误。请稍后再试。"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this organisation member. Please try again later."
msgstr "在尝试更新此组织成员时遇到未知错误。请稍后重试。"
-#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/team-group-update-dialog.tsx
+#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
msgid "We encountered an unknown error while attempting to update this team member. Please try again later."
msgstr "尝试更新此团队成员时出现未知错误。请稍后再试。"
@@ -10039,8 +10190,8 @@ msgstr "尝试更新此团队成员时出现未知错误。请稍后再试。"
msgid "We encountered an unknown error while attempting to update your organisation. Please try again later."
msgstr "在尝试更新您的组织时遇到未知错误。请稍后重试。"
-#: apps/remix/app/components/forms/password.tsx
#: apps/remix/app/components/forms/avatar-image.tsx
+#: apps/remix/app/components/forms/password.tsx
msgid "We encountered an unknown error while attempting to update your password. Please try again later."
msgstr "尝试更新密码时出现未知错误。请稍后再试。"
@@ -10084,9 +10235,9 @@ msgstr "我们未能创建您的账户。请检查您提供的信息后重试。
msgid "We were unable to disable two-factor authentication for your account. Please ensure that you have entered your password and backup code correctly and try again."
msgstr "我们未能为你的账号禁用双重验证。请确保你正确输入了密码和备份代码后再试。"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-account.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "We were unable to log you out at this time."
msgstr "目前无法将你登出。"
@@ -10099,11 +10250,11 @@ msgstr "我们未能将你的公开资料设置为公开。请重试。"
msgid "We were unable to setup two-factor authentication for your account. Please ensure that you have entered your code correctly and try again."
msgstr "我们未能为你的账号设置双重验证。请确保你正确输入验证码后再试。"
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
-#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
-#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
#: apps/remix/app/components/embed/embed-direct-template-client-page.tsx
+#: apps/remix/app/components/embed/embed-document-signing-page-v1.tsx
+#: apps/remix/app/components/general/direct-template/direct-template-page.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
+#: apps/remix/app/components/general/envelope-signing/envelope-signing-complete-dialog.tsx
msgid "We were unable to submit this document at this time. Please try again later."
msgstr "目前无法提交此文档。请稍后再试。"
@@ -10122,8 +10273,8 @@ msgstr "目前无法更新你的文档偏好设置,请稍后再试"
msgid "We were unable to update your email preferences at this time, please try again later"
msgstr "我们目前无法更新您的邮件偏好设置,请稍后重试"
-#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
#: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx
+#: apps/remix/app/components/general/document-signing/document-signing-auth-password.tsx
msgid "We were unable to verify your details. Please try again or contact support"
msgstr "我们未能验证你的信息。请重试或联系支持"
@@ -10135,14 +10286,14 @@ msgstr "我们目前无法验证您的邮箱。"
msgid "We were unable to verify your email. If your email is not verified already, please try again."
msgstr "我们未能验证你的邮箱。如果你的邮箱尚未验证,请重试。"
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We will generate signing links for you, which you can send to the recipients through your method of choice."
msgstr "我们将为你生成签署链接,你可以使用任意方式将这些链接发送给收件人。"
-#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: apps/remix/app/components/dialogs/envelope-distribute-dialog.tsx
+#: apps/remix/app/components/dialogs/template-use-dialog.tsx
#: packages/ui/primitives/document-flow/add-subject.tsx
msgid "We won't send anything to notify recipients."
msgstr "我们不会发送任何通知给收件人。"
@@ -10155,8 +10306,8 @@ msgstr "我们会尽快通过电子邮件回复您。"
msgid "We'll send a 6-digit code to your email"
msgstr "我们会向您的邮箱发送一个 6 位数验证码"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
#: apps/remix/app/components/tables/documents-table-empty-state.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx
msgid "We're all empty"
msgstr "这里空空如也"
@@ -10176,6 +10327,11 @@ msgstr "我们已向您的邮箱发送了一个 6 位数验证码。请在下方
msgid "We've sent a confirmation email to <0>{email}0>. Please check your inbox and click the link in the email to verify your account."
msgstr "我们已向 <0>{email}0> 发送确认邮件。请检查收件箱并点击邮件中的链接以验证账号。"
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
+msgid "Webhook"
+msgstr "Webhook"
+
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
msgid "Webhook created"
msgstr "Webhook 已创建"
@@ -10184,23 +10340,31 @@ msgstr "Webhook 已创建"
msgid "Webhook deleted"
msgstr "Webhook 已删除"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook Details"
+msgstr "Webhook 详情"
+
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id._index.tsx
msgid "Webhook not found"
msgstr "未找到 Webhook"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx
+#: apps/remix/app/components/general/webhook-logs-sheet.tsx
+msgid "Webhook successfully sent"
+msgstr "Webhook 发送成功"
+
+#: apps/remix/app/components/dialogs/webhook-edit-dialog.tsx
msgid "Webhook updated"
msgstr "Webhook 已更新"
-#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-test-dialog.tsx
msgid "Webhook URL"
msgstr "Webhook URL"
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
-#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
-#: apps/remix/app/components/general/settings-nav-mobile.tsx
#: apps/remix/app/components/general/settings-nav-desktop.tsx
+#: apps/remix/app/components/general/settings-nav-mobile.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx
+#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
msgid "Webhooks"
msgstr "Webhooks"
@@ -10236,10 +10400,10 @@ msgstr "你是想编辑这份文档吗?"
msgid "What you can do with teams:"
msgstr "通过团队您可以完成以下工作:"
-#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
+#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "When enabled, signers can choose who should sign next in the sequence instead of following the predefined order."
msgstr "启用后,签署人可以选择下一位签署人,而不是遵循预定义顺序。"
@@ -10279,20 +10443,20 @@ msgstr "撤回同意"
msgid "Write a description to display on your public profile"
msgstr "撰写将在您的公共主页上展示的简介"
-#: apps/remix/app/components/general/billing-plans.tsx
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
+#: apps/remix/app/components/general/billing-plans.tsx
msgid "Yearly"
msgstr "按年"
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
-#: apps/remix/app/components/forms/document-preferences-form.tsx
#: apps/remix/app/components/forms/branding-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
+#: apps/remix/app/components/forms/document-preferences-form.tsx
msgid "Yes"
msgstr "是"
-#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: apps/remix/app/components/general/document/document-page-view-information.tsx
+#: apps/remix/app/components/general/template/template-page-view-information.tsx
#: packages/lib/utils/document-audit-logs.ts
msgid "You"
msgstr "你"
@@ -10360,10 +10524,10 @@ msgstr "您即将移除以下文档及其所有关联字段"
msgid "You are about to remove the following email from <0>{0}0>."
msgstr "您即将从 <0>{0}0> 中移除以下邮箱。"
-#. placeholder {0}: team.name
#. placeholder {0}: organisation.name
-#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
+#. placeholder {0}: team.name
#: apps/remix/app/components/dialogs/organisation-group-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
msgid "You are about to remove the following group from <0>{0}0>."
msgstr "您即将从 <0>{0}0> 中移除以下组。"
@@ -10403,8 +10567,8 @@ msgstr "您当前正在更新 <0>{0}0>"
msgid "You are currently updating <0>{memberName}.0>"
msgstr "您当前正在更新 <0>{memberName}0>。"
-#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
#: apps/remix/app/components/dialogs/admin-organisation-member-update-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-member-update-dialog.tsx
msgid "You are currently updating <0>{organisationMemberName}.0>"
msgstr "您当前正在更新 <0>{organisationMemberName}0>。"
@@ -10487,8 +10651,8 @@ msgid "You can view the document and its status by clicking the button below."
msgstr "您可以点击下方按钮查看文档及其状态。"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-recipient-form.tsx
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
#: packages/ui/primitives/document-flow/add-signers.tsx
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx
msgid "You cannot add assistants when signing order is disabled."
msgstr "签署顺序被禁用时,无法添加助理。"
@@ -10516,21 +10680,21 @@ msgstr "你不能修改角色高于你的团队成员。"
msgid "You cannot remove members from this team if the inherit member feature is enabled."
msgstr "如果启用继承成员功能,您不能从该团队移除成员。"
-#: packages/ui/primitives/document-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
+#: packages/ui/primitives/document-upload-button.tsx
msgid "You cannot upload documents at this time."
msgstr "您目前无法上传文档。"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload encrypted PDFs"
msgstr "你不能上传加密的 PDF"
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You cannot upload more than {maximumEnvelopeItemCount} items per envelope."
msgstr "每个信封最多只能上传 {maximumEnvelopeItemCount} 个条目。"
@@ -10546,6 +10710,10 @@ msgstr "您当前对该组织内的任何团队都没有访问权限。请联系
msgid "You do not have permission to create a token for this team"
msgstr "您没有权限为此团队创建令牌"
+#: apps/remix/app/components/tables/user-billing-organisations-table.tsx
+msgid "You don't manage billing for any organisations."
+msgstr "您目前未为任何组织管理计费。"
+
#: packages/email/template-components/template-document-cancel.tsx
msgid "You don't need to sign it anymore."
msgstr "您不再需要签署该文档。"
@@ -10574,8 +10742,8 @@ msgstr "您已被邀请加入 Documenso 上的 {0}"
msgid "You have been invited to join the following organisation"
msgstr "您已被邀请加入以下组织"
-#: packages/lib/server-only/recipient/set-document-recipients.ts
#: packages/lib/server-only/recipient/delete-envelope-recipient.ts
+#: packages/lib/server-only/recipient/set-document-recipients.ts
msgid "You have been removed from a document"
msgstr "您已被从某个文档中移除"
@@ -10589,8 +10757,8 @@ msgid "You have declined the invitation from <0>{0}0> to join their organisati
msgstr "您已拒绝来自 <0>{0}0> 的加入其组织的邀请。"
#. placeholder {0}: `"${envelope.title}"`
-#: packages/lib/server-only/document/resend-document.ts
#: packages/lib/jobs/definitions/emails/send-signing-email.handler.ts
+#: packages/lib/server-only/document/resend-document.ts
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
msgstr "您已发起文档 {0},需要您对其进行 {recipientActionVerb}。"
@@ -10606,9 +10774,9 @@ msgstr "你还没有创建任何模板。要创建模板,请先上传一个文
msgid "You have not yet created or received any documents. To create a document please upload one."
msgstr "你还没有创建或接收任何文档。要创建文档,请先上传一个。"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached the limit of the number of files per envelope"
msgstr "您已达到每个信封可上传文件数量的上限"
@@ -10621,14 +10789,14 @@ msgstr "你已达到 {0} 个直接模板的最大限制。<0>升级账号以继
msgid "You have reached the maximum number of teams for your plan. Please contact sales at <0>{SUPPORT_EMAIL}0> if you would like to adjust your plan."
msgstr "您的团队数量已达到当前套餐上限。如需调整套餐,请通过 <0>{SUPPORT_EMAIL}0> 联系销售。"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "You have reached your document limit for this month. Please upgrade your plan."
msgstr "您本月的文档数量已达到上限。请升级您的套餐。"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: packages/ui/primitives/document-dropzone.tsx
msgid "You have reached your document limit."
msgstr "你已达到文档数量上限。"
@@ -10641,8 +10809,8 @@ msgstr "你已达到文档数量上限。<0>升级账号以继续!0>"
msgid "You have rejected the document '{documentName}'"
msgstr "您已拒签文档“{documentName}”"
-#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
#: apps/remix/app/components/embed/embed-document-rejected.tsx
+#: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx
msgid "You have rejected this document"
msgstr "您已拒签此文档"
@@ -10654,8 +10822,8 @@ msgstr "您已签署“{documentName}”"
msgid "You have successfully left this organisation."
msgstr "您已成功离开该组织。"
-#: apps/remix/app/components/general/claim-account.tsx
#: apps/remix/app/components/forms/signup.tsx
+#: apps/remix/app/components/general/claim-account.tsx
msgid "You have successfully registered. Please verify your account by clicking on the link you received in the email."
msgstr "你已成功注册。请点击邮件中的链接验证账号。"
@@ -10712,10 +10880,10 @@ msgstr "您已更新该团队组。"
msgid "You have verified your email address for <0>{0}0>."
msgstr "你已验证在 <0>{0}0> 的邮箱地址。"
-#: 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
#: apps/remix/app/components/dialogs/organisation-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
msgid "You must enter '{deleteMessage}' to proceed"
msgstr "你必须输入“{deleteMessage}”才能继续"
@@ -10723,8 +10891,8 @@ msgstr "你必须输入“{deleteMessage}”才能继续"
msgid "You must select at least one item"
msgstr "您必须至少选择一项"
-#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
#: apps/remix/app/components/dialogs/folder-delete-dialog.tsx
+#: apps/remix/app/components/dialogs/organisation-email-domain-delete-dialog.tsx
msgid "You must type '{deleteMessage}' to confirm"
msgstr "您必须输入“{deleteMessage}”以确认"
@@ -10744,8 +10912,8 @@ msgstr "您需要具有管理员权限才能管理 API 令牌。"
msgid "You need to be logged in as <0>{email}0> to view this page."
msgstr "你需要以 <0>{email}0> 的身份登录才能查看此页面。"
-#: 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
+#: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx
msgid "You need to be logged in to view this page."
msgstr "你需要登录才能查看此页面。"
@@ -10762,8 +10930,8 @@ msgid "You will now be required to enter a code from your authenticator app when
msgstr "今后登录时,你需要输入验证器应用中的验证码。"
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
-msgid "You will receive an Email copy of the signed document once everyone has signed."
-msgstr "当所有人签署完成后,你将收到一份已签署文档的邮件副本。"
+msgid "You will receive an email copy of the signed document once everyone has signed."
+msgstr "当所有人签署完成后,您将收到一份已签署文档的电子邮件副本。"
#: apps/remix/app/routes/_unauthenticated+/organisation.sso.confirmation.$token.tsx
msgid "Your Account"
@@ -10818,8 +10986,8 @@ msgstr "您当前的套餐已逾期。"
msgid "Your direct signing templates"
msgstr "你的直接签署模板"
-#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
#: apps/remix/app/components/embed/authoring/configure-document-upload.tsx
+#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
msgid "Your document failed to upload."
msgstr "你的文档上传失败。"
@@ -10847,9 +11015,9 @@ msgstr "你的文档已成功发送。"
msgid "Your document has been successfully duplicated."
msgstr "你的文档已成功复制。"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
-#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
#: apps/remix/app/components/general/document/document-upload-button-legacy.tsx
+#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your document has been uploaded successfully."
msgstr "你的文档已成功上传。"
@@ -10909,8 +11077,8 @@ msgstr "你现有的令牌"
msgid "Your Name"
msgstr "您的姓名"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your new password cannot be the same as your old password."
msgstr "新密码不能与旧密码相同。"
@@ -10926,8 +11094,8 @@ msgstr "您的组织已成功删除。"
msgid "Your organisation has been successfully updated."
msgstr "您的组织已成功更新。"
-#: apps/remix/app/components/forms/reset-password.tsx
#: apps/remix/app/components/forms/password.tsx
+#: apps/remix/app/components/forms/reset-password.tsx
msgid "Your password has been updated successfully."
msgstr "你的密码已成功更新。"
@@ -10967,8 +11135,8 @@ msgstr "你的公开资料已更新。"
msgid "Your recovery code has been copied to your clipboard."
msgstr "你的恢复代码已复制到剪贴板。"
-#: 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/forms/2fa/view-recovery-codes-dialog.tsx
msgid "Your recovery codes are listed below. Please store them in a safe place."
msgstr "你的恢复代码列在下方。请妥善保存。"
@@ -11000,8 +11168,8 @@ msgstr "你的模板已成功复制。"
msgid "Your template has been successfully deleted."
msgstr "你的模板已成功删除。"
-#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
#: apps/remix/app/components/general/envelope/envelope-drop-zone-wrapper.tsx
+#: apps/remix/app/components/general/envelope/envelope-upload-button.tsx
msgid "Your template has been uploaded successfully."
msgstr "您的模板已成功上传。"