- Signer Events
- Signature
- Details
+ {_(msg`Signer Events`)}
+ {_(msg`Signature`)}
+ {_(msg`Details`)}
{/* Security */}
@@ -173,11 +191,11 @@ export default async function SigningCertificate({ searchParams }: SigningCertif
{recipient.name}
{recipient.email}
- {RECIPIENT_ROLES_DESCRIPTION_ENG[recipient.role].roleName}
+ {_(RECIPIENT_ROLES_DESCRIPTION[recipient.role].roleName)}
- Authentication Level:{' '}
+ {_(msg`Authentication Level`)}:{' '}
{getAuthenticationLevel(recipient.id)}
@@ -199,21 +217,21 @@ export default async function SigningCertificate({ searchParams }: SigningCertif
- Signature ID:{' '}
+ {_(msg`Signature ID`)}:{' '}
{signature.secondaryId}
- IP Address:{' '}
+ {_(msg`IP Address`)}:{' '}
- {logs.DOCUMENT_RECIPIENT_COMPLETED[0]?.ipAddress ?? 'Unknown'}
+ {logs.DOCUMENT_RECIPIENT_COMPLETED[0]?.ipAddress ?? _(msg`Unknown`)}
- Device:{' '}
+ {_(msg`Device`)}:{' '}
{getDevice(logs.DOCUMENT_RECIPIENT_COMPLETED[0]?.userAgent)}
@@ -227,44 +245,46 @@ export default async function SigningCertificate({ searchParams }: SigningCertif
- Sent:{' '}
+ {_(msg`Sent`)}:{' '}
{logs.EMAIL_SENT[0]
? DateTime.fromJSDate(logs.EMAIL_SENT[0].createdAt)
.setLocale(APP_I18N_OPTIONS.defaultLocale)
.toFormat('yyyy-MM-dd hh:mm:ss a (ZZZZ)')
- : 'Unknown'}
+ : _(msg`Unknown`)}
- Viewed:{' '}
+ {_(msg`Viewed`)}:{' '}
{logs.DOCUMENT_OPENED[0]
? DateTime.fromJSDate(logs.DOCUMENT_OPENED[0].createdAt)
.setLocale(APP_I18N_OPTIONS.defaultLocale)
.toFormat('yyyy-MM-dd hh:mm:ss a (ZZZZ)')
- : 'Unknown'}
+ : _(msg`Unknown`)}
- Signed:{' '}
+ {_(msg`Signed`)}:{' '}
{logs.DOCUMENT_RECIPIENT_COMPLETED[0]
? DateTime.fromJSDate(logs.DOCUMENT_RECIPIENT_COMPLETED[0].createdAt)
.setLocale(APP_I18N_OPTIONS.defaultLocale)
.toFormat('yyyy-MM-dd hh:mm:ss a (ZZZZ)')
- : 'Unknown'}
+ : _(msg`Unknown`)}
- Reason:{' '}
+ {_(msg`Reason`)}:{' '}
- {isOwner(recipient.email)
- ? FRIENDLY_SIGNING_REASONS['__OWNER__']
- : FRIENDLY_SIGNING_REASONS[recipient.role]}
+ {_(
+ isOwner(recipient.email)
+ ? FRIENDLY_SIGNING_REASONS['__OWNER__']
+ : FRIENDLY_SIGNING_REASONS[recipient.role],
+ )}
@@ -280,7 +300,7 @@ export default async function SigningCertificate({ searchParams }: SigningCertif
- Signing certificate provided by:
+ {_(msg`Signing certificate provided by`)}:
diff --git a/apps/web/src/components/document/document-history-sheet.tsx b/apps/web/src/components/document/document-history-sheet.tsx
index 8ca8fa2ff..92f4a4cf1 100644
--- a/apps/web/src/components/document/document-history-sheet.tsx
+++ b/apps/web/src/components/document/document-history-sheet.tsx
@@ -12,7 +12,7 @@ import { UAParser } from 'ua-parser-js';
import { DOCUMENT_AUDIT_LOG_EMAIL_FORMAT } from '@documenso/lib/constants/document-audit-logs';
import { DOCUMENT_AUTH_TYPES } from '@documenso/lib/constants/document-auth';
import { DOCUMENT_AUDIT_LOG_TYPE } from '@documenso/lib/types/document-audit-logs';
-import { formatDocumentAuditLogActionString } from '@documenso/lib/utils/document-audit-logs';
+import { formatDocumentAuditLogAction } from '@documenso/lib/utils/document-audit-logs';
import { trpc } from '@documenso/trpc/react';
import { cn } from '@documenso/ui/lib/utils';
import { Avatar, AvatarFallback } from '@documenso/ui/primitives/avatar';
@@ -37,7 +37,7 @@ export const DocumentHistorySheet = ({
onMenuOpenChange,
children,
}: DocumentHistorySheetProps) => {
- const { i18n } = useLingui();
+ const { _, i18n } = useLingui();
const [isUserDetailsVisible, setIsUserDetailsVisible] = useState(false);
@@ -152,7 +152,7 @@ export const DocumentHistorySheet = ({
- {formatDocumentAuditLogActionString(auditLog, userId)}
+ {formatDocumentAuditLogAction(_, auditLog, userId).description}
{DateTime.fromJSDate(auditLog.createdAt)
diff --git a/packages/lib/constants/document.ts b/packages/lib/constants/document.ts
new file mode 100644
index 000000000..69bd62093
--- /dev/null
+++ b/packages/lib/constants/document.ts
@@ -0,0 +1,18 @@
+import type { MessageDescriptor } from '@lingui/core';
+import { msg } from '@lingui/macro';
+
+import { DocumentStatus } from '@documenso/prisma/client';
+
+export const DOCUMENT_STATUS: {
+ [status in DocumentStatus]: { description: MessageDescriptor };
+} = {
+ [DocumentStatus.COMPLETED]: {
+ description: msg`Completed`,
+ },
+ [DocumentStatus.DRAFT]: {
+ description: msg`Draft`,
+ },
+ [DocumentStatus.PENDING]: {
+ description: msg`Pending`,
+ },
+};
diff --git a/packages/lib/constants/recipient-roles.ts b/packages/lib/constants/recipient-roles.ts
index 9a3eefe1c..51b890268 100644
--- a/packages/lib/constants/recipient-roles.ts
+++ b/packages/lib/constants/recipient-roles.ts
@@ -78,13 +78,3 @@ export const RECIPIENT_ROLE_SIGNING_REASONS = {
[RecipientRole.CC]: msg`I am required to receive a copy of this document`,
[RecipientRole.VIEWER]: msg`I am a viewer of this document`,
} satisfies Record;
-
-/**
- * Raw english descriptions for certificates.
- */
-export const RECIPIENT_ROLE_SIGNING_REASONS_ENG = {
- [RecipientRole.SIGNER]: `I am a signer of this document`,
- [RecipientRole.APPROVER]: `I am an approver of this document`,
- [RecipientRole.CC]: `I am required to receive a copy of this document`,
- [RecipientRole.VIEWER]: `I am a viewer of this document`,
-} satisfies Record;
diff --git a/packages/lib/utils/document-audit-logs.ts b/packages/lib/utils/document-audit-logs.ts
index 7ae9483d4..09d5548ff 100644
--- a/packages/lib/utils/document-audit-logs.ts
+++ b/packages/lib/utils/document-audit-logs.ts
@@ -1,14 +1,10 @@
+import type { I18n } from '@lingui/core';
+import { msg } from '@lingui/macro';
import { match } from 'ts-pattern';
-import type {
- DocumentAuditLog,
- DocumentMeta,
- Field,
- Recipient,
- RecipientRole,
-} from '@documenso/prisma/client';
+import type { DocumentAuditLog, DocumentMeta, Field, Recipient } from '@documenso/prisma/client';
+import { RecipientRole } from '@documenso/prisma/client';
-import { RECIPIENT_ROLES_DESCRIPTION_ENG } from '../constants/recipient-roles';
import type {
TDocumentAuditLog,
TDocumentAuditLogDocumentMetaDiffSchema,
@@ -254,129 +250,119 @@ export const diffDocumentMetaChanges = (
*
* Provide a userId to prefix the action with the user, example 'X did Y'.
*/
-export const formatDocumentAuditLogActionString = (
+export const formatDocumentAuditLogAction = (
+ _: I18n['_'],
auditLog: TDocumentAuditLog,
userId?: number,
) => {
- const { prefix, description } = formatDocumentAuditLogAction(auditLog, userId);
-
- return prefix ? `${prefix} ${description}` : description;
-};
-
-/**
- * Formats the audit log into a description of the action.
- *
- * Provide a userId to prefix the action with the user, example 'X did Y'.
- */
-// Todo: Translations.
-export const formatDocumentAuditLogAction = (auditLog: TDocumentAuditLog, userId?: number) => {
- let prefix = userId === auditLog.userId ? 'You' : auditLog.name || auditLog.email || '';
+ const prefix = userId === auditLog.userId ? _(msg`You`) : auditLog.name || auditLog.email || '';
const description = match(auditLog)
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.FIELD_CREATED }, () => ({
- anonymous: 'A field was added',
- identified: 'added a field',
+ anonymous: msg`A field was added`,
+ identified: msg`${prefix} added a field`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.FIELD_DELETED }, () => ({
- anonymous: 'A field was removed',
- identified: 'removed a field',
+ anonymous: msg`A field was removed`,
+ identified: msg`${prefix} removed a field`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.FIELD_UPDATED }, () => ({
- anonymous: 'A field was updated',
- identified: 'updated a field',
+ anonymous: msg`A field was updated`,
+ identified: msg`${prefix} updated a field`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.RECIPIENT_CREATED }, () => ({
- anonymous: 'A recipient was added',
- identified: 'added a recipient',
+ anonymous: msg`A recipient was added`,
+ identified: msg`${prefix} added a recipient`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.RECIPIENT_DELETED }, () => ({
- anonymous: 'A recipient was removed',
- identified: 'removed a recipient',
+ anonymous: msg`A recipient was removed`,
+ identified: msg`${prefix} removed a recipient`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.RECIPIENT_UPDATED }, () => ({
- anonymous: 'A recipient was updated',
- identified: 'updated a recipient',
+ anonymous: msg`A recipient was updated`,
+ identified: msg`${prefix} updated a recipient`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.DOCUMENT_CREATED }, () => ({
- anonymous: 'Document created',
- identified: 'created the document',
+ anonymous: msg`Document created`,
+ identified: msg`${prefix} created the document`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.DOCUMENT_DELETED }, () => ({
- anonymous: 'Document deleted',
- identified: 'deleted the document',
+ anonymous: msg`Document deleted`,
+ identified: msg`${prefix} deleted the document`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.DOCUMENT_FIELD_INSERTED }, () => ({
- anonymous: 'Field signed',
- identified: 'signed a field',
+ anonymous: msg`Field signed`,
+ identified: msg`${prefix} signed a field`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.DOCUMENT_FIELD_UNINSERTED }, () => ({
- anonymous: 'Field unsigned',
- identified: 'unsigned a field',
+ anonymous: msg`Field unsigned`,
+ identified: msg`${prefix} unsigned a field`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.DOCUMENT_VISIBILITY_UPDATED }, () => ({
- anonymous: 'Document visibility updated',
- identified: 'updated the document visibility',
+ anonymous: msg`Document visibility updated`,
+ identified: msg`${prefix} updated the document visibility`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.DOCUMENT_GLOBAL_AUTH_ACCESS_UPDATED }, () => ({
- anonymous: 'Document access auth updated',
- identified: 'updated the document access auth requirements',
+ anonymous: msg`Document access auth updated`,
+ identified: msg`${prefix} updated the document access auth requirements`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.DOCUMENT_GLOBAL_AUTH_ACTION_UPDATED }, () => ({
- anonymous: 'Document signing auth updated',
- identified: 'updated the document signing auth requirements',
+ anonymous: msg`Document signing auth updated`,
+ identified: msg`${prefix} updated the document signing auth requirements`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.DOCUMENT_META_UPDATED }, () => ({
- anonymous: 'Document updated',
- identified: 'updated the document',
+ anonymous: msg`Document updated`,
+ identified: msg`${prefix} updated the document`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.DOCUMENT_OPENED }, () => ({
- anonymous: 'Document opened',
- identified: 'opened the document',
+ anonymous: msg`Document opened`,
+ identified: msg`${prefix} opened the document`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.DOCUMENT_TITLE_UPDATED }, () => ({
- anonymous: 'Document title updated',
- identified: 'updated the document title',
+ anonymous: msg`Document title updated`,
+ identified: msg`${prefix} updated the document title`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.DOCUMENT_EXTERNAL_ID_UPDATED }, () => ({
- anonymous: 'Document external ID updated',
- identified: 'updated the document external ID',
+ anonymous: msg`Document external ID updated`,
+ identified: msg`${prefix} updated the document external ID`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.DOCUMENT_SENT }, () => ({
- anonymous: 'Document sent',
- identified: 'sent the document',
+ anonymous: msg`Document sent`,
+ identified: msg`${prefix} sent the document`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.DOCUMENT_MOVED_TO_TEAM }, () => ({
- anonymous: 'Document moved to team',
- identified: 'moved the document to team',
+ anonymous: msg`Document moved to team`,
+ identified: msg`${prefix} moved the document to team`,
}))
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.DOCUMENT_RECIPIENT_COMPLETED }, ({ data }) => {
- // eslint-disable-next-line @typescript-eslint/consistent-type-assertions
- const action = RECIPIENT_ROLES_DESCRIPTION_ENG[data.recipientRole as RecipientRole]?.actioned;
+ const userName = prefix || _(msg`Recipient`);
- const value = action ? `${action.toLowerCase()} the document` : 'completed their task';
+ const result = match(data.recipientRole)
+ .with(RecipientRole.SIGNER, () => msg`${userName} signed the document`)
+ .with(RecipientRole.VIEWER, () => msg`${userName} viewed the document`)
+ .with(RecipientRole.APPROVER, () => msg`${userName} approved the document`)
+ .with(RecipientRole.CC, () => msg`${userName} CC'd the document`)
+ .otherwise(() => msg`${userName} completed their task`);
return {
- anonymous: `Recipient ${value}`,
- identified: value,
+ anonymous: result,
+ identified: result,
};
})
.with({ type: DOCUMENT_AUDIT_LOG_TYPE.EMAIL_SENT }, ({ data }) => ({
- anonymous: `Email ${data.isResending ? 'resent' : 'sent'}`,
- identified: `${data.isResending ? 'resent' : 'sent'} an email to ${data.recipientEmail}`,
+ anonymous: data.isResending ? msg`Email resent` : msg`Email sent`,
+ identified: data.isResending
+ ? msg`${prefix} resent an email to ${data.recipientEmail}`
+ : msg`${prefix} sent an email to ${data.recipientEmail}`,
+ }))
+ .with({ type: DOCUMENT_AUDIT_LOG_TYPE.DOCUMENT_COMPLETED }, () => ({
+ anonymous: msg`Document completed`,
+ identified: msg`Document completed`,
}))
- .with({ type: DOCUMENT_AUDIT_LOG_TYPE.DOCUMENT_COMPLETED }, () => {
- // Clear the prefix since this should be considered an 'anonymous' event.
- prefix = '';
-
- return {
- anonymous: 'Document completed',
- identified: 'Document completed',
- };
- })
.exhaustive();
return {
prefix,
- description: prefix ? description.identified : description.anonymous,
+ description: _(prefix ? description.identified : description.anonymous),
};
};
From a50c758b0770f3128f466f7b8cb4a70c339a1f09 Mon Sep 17 00:00:00 2001
From: David Nguyen
Date: Tue, 5 Nov 2024 18:26:09 +0900
Subject: [PATCH 07/16] chore: extract translations
---
packages/lib/translations/de/common.po | 210 +++++++++++++++++++++++++
packages/lib/translations/de/web.po | 99 +++++++++++-
packages/lib/translations/en/common.po | 210 +++++++++++++++++++++++++
packages/lib/translations/en/web.po | 99 +++++++++++-
packages/lib/translations/es/common.po | 210 +++++++++++++++++++++++++
packages/lib/translations/es/web.po | 99 +++++++++++-
packages/lib/translations/fr/common.po | 210 +++++++++++++++++++++++++
packages/lib/translations/fr/web.po | 99 +++++++++++-
8 files changed, 1224 insertions(+), 12 deletions(-)
diff --git a/packages/lib/translations/de/common.po b/packages/lib/translations/de/common.po
index a84d16da9..2110200da 100644
--- a/packages/lib/translations/de/common.po
+++ b/packages/lib/translations/de/common.po
@@ -96,6 +96,90 @@ msgstr "{memberEmail} ist dem folgenden Team beigetreten"
msgid "{memberEmail} left the following team"
msgstr "{memberEmail} hat das folgende Team verlassen"
+#: packages/lib/utils/document-audit-logs.ts:263
+msgid "{prefix} added a field"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:275
+msgid "{prefix} added a recipient"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:287
+msgid "{prefix} created the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:291
+msgid "{prefix} deleted the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:335
+msgid "{prefix} moved the document to team"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:319
+msgid "{prefix} opened the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:267
+msgid "{prefix} removed a field"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:279
+msgid "{prefix} removed a recipient"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:355
+msgid "{prefix} resent an email to {0}"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:356
+msgid "{prefix} sent an email to {0}"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:331
+msgid "{prefix} sent the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:295
+msgid "{prefix} signed a field"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:299
+msgid "{prefix} unsigned a field"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:271
+msgid "{prefix} updated a field"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:283
+msgid "{prefix} updated a recipient"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:315
+msgid "{prefix} updated the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:307
+msgid "{prefix} updated the document access auth requirements"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:327
+msgid "{prefix} updated the document external ID"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:311
+msgid "{prefix} updated the document signing auth requirements"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:323
+msgid "{prefix} updated the document title"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:303
+msgid "{prefix} updated the document visibility"
+msgstr ""
+
#: packages/email/templates/document-created-from-direct-template.tsx:55
msgid "{recipientName} {action} a document by using one of your direct links"
msgstr "{recipientName} {action} ein Dokument, indem Sie einen Ihrer direkten Links verwenden"
@@ -104,6 +188,26 @@ msgstr "{recipientName} {action} ein Dokument, indem Sie einen Ihrer direkten Li
msgid "{teamName} ownership transfer request"
msgstr "Anfrage zur Übertragung des Eigentums von {teamName}"
+#: packages/lib/utils/document-audit-logs.ts:343
+msgid "{userName} approved the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:344
+msgid "{userName} CC'd the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:345
+msgid "{userName} completed their task"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:341
+msgid "{userName} signed the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:342
+msgid "{userName} viewed the document"
+msgstr ""
+
#: packages/ui/primitives/data-table-pagination.tsx:41
msgid "{visibleRows, plural, one {Showing # result.} other {Showing # results.}}"
msgstr "{visibleRows, plural, one {Eine # Ergebnis wird angezeigt.} other {# Ergebnisse werden angezeigt.}}"
@@ -150,10 +254,34 @@ msgstr "<0>Passkey erforderlich0> - Der Empfänger muss ein Konto haben und de
msgid "A document was created by your direct template that requires you to {recipientActionVerb} it."
msgstr "Ein Dokument wurde von deiner direkten Vorlage erstellt, das erfordert, dass du {recipientActionVerb}."
+#: packages/lib/utils/document-audit-logs.ts:262
+msgid "A field was added"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:266
+msgid "A field was removed"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:270
+msgid "A field was updated"
+msgstr ""
+
#: packages/lib/jobs/definitions/emails/send-team-member-joined-email.ts:90
msgid "A new member has joined your team"
msgstr "Ein neues Mitglied ist deinem Team beigetreten"
+#: packages/lib/utils/document-audit-logs.ts:274
+msgid "A recipient was added"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:278
+msgid "A recipient was removed"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:282
+msgid "A recipient was updated"
+msgstr ""
+
#: packages/lib/server-only/team/create-team-email-verification.ts:142
msgid "A request to use your email has been initiated by {teamName} on Documenso"
msgstr "Eine Anfrage zur Verwendung deiner E-Mail wurde von {teamName} auf Documenso initiiert"
@@ -368,6 +496,7 @@ msgstr "Schließen"
#: packages/email/template-components/template-document-completed.tsx:35
#: packages/email/template-components/template-document-self-signed.tsx:36
+#: packages/lib/constants/document.ts:10
msgid "Completed"
msgstr "Abgeschlossen"
@@ -450,11 +579,24 @@ msgstr "Empfänger des direkten Links"
msgid "Document access"
msgstr "Dokumentenzugriff"
+#: packages/lib/utils/document-audit-logs.ts:306
+msgid "Document access auth updated"
+msgstr ""
+
#: packages/lib/server-only/document/delete-document.ts:213
#: packages/lib/server-only/document/super-delete-document.ts:75
msgid "Document Cancelled"
msgstr "Dokument storniert"
+#: packages/lib/utils/document-audit-logs.ts:359
+#: packages/lib/utils/document-audit-logs.ts:360
+msgid "Document completed"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:286
+msgid "Document created"
+msgstr ""
+
#: packages/email/templates/document-created-from-direct-template.tsx:30
#: packages/lib/server-only/template/create-document-from-direct-template.ts:554
msgid "Document created from direct template"
@@ -464,15 +606,55 @@ msgstr "Dokument erstellt aus direkter Vorlage"
msgid "Document Creation"
msgstr "Dokumenterstellung"
+#: packages/lib/utils/document-audit-logs.ts:290
+msgid "Document deleted"
+msgstr ""
+
#: packages/lib/server-only/document/send-delete-email.ts:58
msgid "Document Deleted!"
msgstr "Dokument gelöscht!"
+#: packages/lib/utils/document-audit-logs.ts:326
+msgid "Document external ID updated"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:334
+msgid "Document moved to team"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:318
+msgid "Document opened"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:330
+msgid "Document sent"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:310
+msgid "Document signing auth updated"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:322
+msgid "Document title updated"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:314
+msgid "Document updated"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:302
+msgid "Document visibility updated"
+msgstr ""
+
#: packages/email/template-components/template-document-completed.tsx:64
#: packages/ui/components/document/document-download-button.tsx:68
msgid "Download"
msgstr "Herunterladen"
+#: packages/lib/constants/document.ts:13
+msgid "Draft"
+msgstr ""
+
#: packages/ui/primitives/document-dropzone.tsx:162
msgid "Drag & drop your PDF here."
msgstr "Ziehen Sie Ihr PDF hierher."
@@ -505,6 +687,14 @@ msgstr "E-Mail ist erforderlich"
msgid "Email Options"
msgstr "E-Mail-Optionen"
+#: packages/lib/utils/document-audit-logs.ts:353
+msgid "Email resent"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:353
+msgid "Email sent"
+msgstr ""
+
#: packages/ui/primitives/document-flow/add-fields.tsx:1123
msgid "Empty field"
msgstr "Leeres Feld"
@@ -565,6 +755,14 @@ msgstr "Feldbeschriftung"
msgid "Field placeholder"
msgstr "Feldplatzhalter"
+#: packages/lib/utils/document-audit-logs.ts:294
+msgid "Field signed"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:298
+msgid "Field unsigned"
+msgstr ""
+
#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx:56
#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx:38
#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx:38
@@ -775,6 +973,10 @@ msgstr "Passwort erfolgreich zurückgesetzt"
msgid "Password updated!"
msgstr "Passwort aktualisiert!"
+#: packages/lib/constants/document.ts:16
+msgid "Pending"
+msgstr ""
+
#: packages/email/templates/document-pending.tsx:17
msgid "Pending Document"
msgstr "Ausstehendes Dokument"
@@ -842,6 +1044,10 @@ msgstr "Nur lesen"
msgid "Receives copy"
msgstr "Erhält Kopie"
+#: packages/lib/utils/document-audit-logs.ts:338
+msgid "Recipient"
+msgstr ""
+
#: packages/ui/components/recipient/recipient-action-auth-select.tsx:39
#: packages/ui/primitives/document-flow/add-settings.tsx:257
#: packages/ui/primitives/template-flow/add-template-settings.tsx:208
@@ -1249,6 +1455,10 @@ msgstr "Wir haben dein Passwort wie gewünscht geändert. Du kannst dich jetzt m
msgid "Welcome to Documenso!"
msgstr "Willkommen bei Documenso!"
+#: packages/lib/utils/document-audit-logs.ts:258
+msgid "You"
+msgstr ""
+
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx:44
msgid "You are about to send this document to the recipients. Are you sure you want to continue?"
msgstr "Sie sind dabei, dieses Dokument an die Empfänger zu senden. Sind Sie sicher, dass Sie fortfahren möchten?"
diff --git a/packages/lib/translations/de/web.po b/packages/lib/translations/de/web.po
index a2763d52f..38606615e 100644
--- a/packages/lib/translations/de/web.po
+++ b/packages/lib/translations/de/web.po
@@ -220,20 +220,29 @@ msgstr "Zustimmung und Einverständnis"
msgid "Accepted team invitation"
msgstr "Team-Einladung akzeptiert"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:128
+msgid "Account Authentication"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/admin/users/[id]/delete-user-dialog.tsx:51
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:48
msgid "Account deleted"
msgstr "Konto gelöscht"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:119
+msgid "Account Re-Authentication"
+msgstr ""
+
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:139
msgid "Acknowledgment"
msgstr "Bestätigung"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-dropdown.tsx:105
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:104
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:100
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:121
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:164
#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:118
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:46
msgid "Action"
msgstr "Aktion"
@@ -639,6 +648,10 @@ msgstr "Versuche, das Dokument erneut zu versiegeln, nützlich nach einer Codeä
msgid "Audit Log"
msgstr "Audit-Protokoll"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:198
+msgid "Authentication Level"
+msgstr ""
+
#: apps/web/src/app/(recipient)/d/[token]/signing-auth-page.tsx:41
#: apps/web/src/app/(signing)/sign/[token]/signing-auth-page.tsx:52
msgid "Authentication required"
@@ -697,6 +710,7 @@ msgid "Billing"
msgstr "Abrechnung"
#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:99
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:48
msgid "Browser"
msgstr "Browser"
@@ -1058,6 +1072,7 @@ msgid "Created"
msgstr "Erstellt"
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:35
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:111
msgid "Created At"
msgstr "Erstellt am"
@@ -1193,6 +1208,7 @@ msgid "Delete your account and all its contents, including completed documents.
msgstr "Löschen Sie Ihr Konto und alle Inhalte, einschließlich abgeschlossener Dokumente. Diese Aktion ist irreversibel und führt zur Kündigung Ihres Abonnements, seien Sie also vorsichtig."
#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:41
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:97
msgid "Deleted"
msgstr "Gelöscht"
@@ -1200,7 +1216,12 @@ msgstr "Gelöscht"
msgid "Deleting account..."
msgstr "Konto wird gelöscht..."
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:178
+msgid "Details"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:75
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:234
msgid "Device"
msgstr "Gerät"
@@ -1343,6 +1364,7 @@ msgid "Document history"
msgstr "Dokumentverlauf"
#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:71
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:81
msgid "Document ID"
msgstr "Dokument-ID"
@@ -1525,6 +1547,8 @@ msgstr "Offenlegung der elektronischen Unterschrift"
#: apps/web/src/app/(dashboard)/admin/users/data-table-users.tsx:71
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:254
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:261
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:122
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:129
#: apps/web/src/app/(recipient)/d/[token]/configure-direct-template.tsx:118
#: apps/web/src/app/(signing)/sign/[token]/email-field.tsx:126
#: apps/web/src/app/embed/direct/[[...url]]/client.tsx:377
@@ -1594,6 +1618,10 @@ msgstr "Direktlinksignierung aktivieren"
msgid "Enabled"
msgstr "Aktiviert"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:87
+msgid "Enclosed Document"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:38
msgid "Ends On"
msgstr "Endet am"
@@ -1778,6 +1806,10 @@ msgstr "Ausblenden"
msgid "Hide additional information"
msgstr "Zusätzliche Informationen ausblenden"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:43
+msgid "I am the owner of this document"
+msgstr ""
+
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:186
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:173
msgid "I'm sure! Delete it"
@@ -1882,6 +1914,11 @@ msgstr "Eingeladen am"
msgid "Invoice"
msgstr "Rechnung"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:47
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:227
+msgid "IP Address"
+msgstr ""
+
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:118
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 "Es ist entscheidend, dass Sie Ihre Kontaktinformationen, insbesondere Ihre E-Mail-Adresse, aktuell halten. Bitte informieren Sie uns sofort über Änderungen, damit Sie weiterhin alle notwendigen Mitteilungen erhalten."
@@ -1931,6 +1968,10 @@ msgstr "Zuletzt geändert"
msgid "Last updated"
msgstr "Zuletzt aktualisiert"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:121
+msgid "Last Updated"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:52
msgid "Last updated at"
msgstr "Zuletzt aktualisiert am"
@@ -2304,6 +2345,7 @@ msgid "Otherwise, the document will be created as a draft."
msgstr "Andernfalls wird das Dokument als Entwurf erstellt."
#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:86
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:103
#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:81
#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:86
#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:109
@@ -2338,6 +2380,10 @@ msgstr "Die Passkey wurde aktualisiert"
msgid "Passkey name"
msgstr "Passkey-Name"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:121
+msgid "Passkey Re-Authentication"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:106
#: apps/web/src/app/(dashboard)/settings/security/passkeys/page.tsx:32
msgid "Passkeys"
@@ -2573,6 +2619,10 @@ msgstr "Lesen Sie die vollständige <0>Offenlegung der Unterschrift0>."
msgid "Ready"
msgstr "Bereit"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:281
+msgid "Reason"
+msgstr ""
+
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-dialog.tsx:62
msgid "Reauthentication is required to sign this field"
msgstr "Eine erneute Authentifizierung ist erforderlich, um dieses Feld zu unterschreiben"
@@ -2599,6 +2649,7 @@ msgstr "Empfänger aktualisiert"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:66
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:34
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recipients.tsx:30
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:139
msgid "Recipients"
msgstr "Empfänger"
@@ -2846,6 +2897,7 @@ msgid "Sending..."
msgstr "Senden..."
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:85
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:248
msgid "Sent"
msgstr "Gesendet"
@@ -2968,6 +3020,7 @@ msgid "Sign Up with OIDC"
msgstr "Registrieren mit OIDC"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:88
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:177
#: apps/web/src/app/(recipient)/d/[token]/sign-direct-template.tsx:338
#: apps/web/src/app/(signing)/sign/[token]/form.tsx:192
#: apps/web/src/app/(signing)/sign/[token]/signature-field.tsx:195
@@ -2978,6 +3031,10 @@ msgstr "Registrieren mit OIDC"
msgid "Signature"
msgstr "Unterschrift"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:220
+msgid "Signature ID"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:123
msgid "Signatures Collected"
msgstr "Gesammelte Unterschriften"
@@ -2987,10 +3044,23 @@ msgid "Signatures will appear once the document has been completed"
msgstr "Unterschriften erscheinen, sobald das Dokument abgeschlossen ist"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:98
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:270
#: apps/web/src/components/document/document-read-only-fields.tsx:84
msgid "Signed"
msgstr "Unterzeichnet"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:176
+msgid "Signer Events"
+msgstr ""
+
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:168
+msgid "Signing Certificate"
+msgstr ""
+
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:303
+msgid "Signing certificate provided by"
+msgstr ""
+
#: apps/web/src/components/forms/signin.tsx:383
#: apps/web/src/components/forms/signin.tsx:510
msgid "Signing in..."
@@ -3100,6 +3170,7 @@ msgstr "Statistiken"
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:32
#: apps/web/src/app/(dashboard)/documents/data-table.tsx:79
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:130
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:93
#: apps/web/src/components/(teams)/tables/team-billing-invoices-data-table.tsx:73
msgid "Status"
msgstr "Status"
@@ -3587,7 +3658,8 @@ msgstr "Dieser Benutzername ist bereits vergeben"
msgid "This username is already taken"
msgstr "Dieser Benutzername ist bereits vergeben"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:77
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:73
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:44
msgid "Time"
msgstr "Zeit"
@@ -3595,6 +3667,10 @@ msgstr "Zeit"
msgid "Time zone"
msgstr "Zeitzone"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:131
+msgid "Time Zone"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:67
#: apps/web/src/app/(dashboard)/documents/data-table.tsx:60
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:115
@@ -3743,6 +3819,10 @@ msgstr "Zwei-Faktor-Authentifizierung aktiviert"
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 "Die Zwei-Faktor-Authentifizierung wurde für Ihr Konto deaktiviert. Sie müssen beim Anmelden keinen Code aus Ihrer Authentifizierungs-App mehr eingeben."
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:120
+msgid "Two-Factor Re-Authentication"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:73
#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:67
msgid "Type"
@@ -3848,6 +3928,13 @@ msgstr "Nicht autorisiert"
msgid "Uncompleted"
msgstr "Unvollendet"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:229
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:254
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:265
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:276
+msgid "Unknown"
+msgstr ""
+
#: apps/web/src/app/(teams)/t/[teamUrl]/error.tsx:23
msgid "Unknown error"
msgstr "Unbekannter Fehler"
@@ -3963,7 +4050,8 @@ msgstr "Backup-Code verwenden"
msgid "Use Template"
msgstr "Vorlage verwenden"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:82
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:78
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:45
msgid "User"
msgstr "Benutzer"
@@ -4011,6 +4099,10 @@ msgstr "Überprüfen Sie Ihre E-Mail-Adresse, um alle Funktionen freizuschalten.
msgid "Verify your email to upload documents."
msgstr "Überprüfen Sie Ihre E-Mail, um Dokumente hochzuladen."
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:75
+msgid "Version History"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-button.tsx:95
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:126
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:135
@@ -4074,6 +4166,7 @@ msgid "View teams"
msgstr "Teams ansehen"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:104
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:259
msgid "Viewed"
msgstr "Angesehen"
diff --git a/packages/lib/translations/en/common.po b/packages/lib/translations/en/common.po
index b14c1c2d2..a88421223 100644
--- a/packages/lib/translations/en/common.po
+++ b/packages/lib/translations/en/common.po
@@ -91,6 +91,90 @@ msgstr "{memberEmail} joined the following team"
msgid "{memberEmail} left the following team"
msgstr "{memberEmail} left the following team"
+#: packages/lib/utils/document-audit-logs.ts:263
+msgid "{prefix} added a field"
+msgstr "{prefix} added a field"
+
+#: packages/lib/utils/document-audit-logs.ts:275
+msgid "{prefix} added a recipient"
+msgstr "{prefix} added a recipient"
+
+#: packages/lib/utils/document-audit-logs.ts:287
+msgid "{prefix} created the document"
+msgstr "{prefix} created the document"
+
+#: packages/lib/utils/document-audit-logs.ts:291
+msgid "{prefix} deleted the document"
+msgstr "{prefix} deleted the document"
+
+#: packages/lib/utils/document-audit-logs.ts:335
+msgid "{prefix} moved the document to team"
+msgstr "{prefix} moved the document to team"
+
+#: packages/lib/utils/document-audit-logs.ts:319
+msgid "{prefix} opened the document"
+msgstr "{prefix} opened the document"
+
+#: packages/lib/utils/document-audit-logs.ts:267
+msgid "{prefix} removed a field"
+msgstr "{prefix} removed a field"
+
+#: packages/lib/utils/document-audit-logs.ts:279
+msgid "{prefix} removed a recipient"
+msgstr "{prefix} removed a recipient"
+
+#: packages/lib/utils/document-audit-logs.ts:355
+msgid "{prefix} resent an email to {0}"
+msgstr "{prefix} resent an email to {0}"
+
+#: packages/lib/utils/document-audit-logs.ts:356
+msgid "{prefix} sent an email to {0}"
+msgstr "{prefix} sent an email to {0}"
+
+#: packages/lib/utils/document-audit-logs.ts:331
+msgid "{prefix} sent the document"
+msgstr "{prefix} sent the document"
+
+#: packages/lib/utils/document-audit-logs.ts:295
+msgid "{prefix} signed a field"
+msgstr "{prefix} signed a field"
+
+#: packages/lib/utils/document-audit-logs.ts:299
+msgid "{prefix} unsigned a field"
+msgstr "{prefix} unsigned a field"
+
+#: packages/lib/utils/document-audit-logs.ts:271
+msgid "{prefix} updated a field"
+msgstr "{prefix} updated a field"
+
+#: packages/lib/utils/document-audit-logs.ts:283
+msgid "{prefix} updated a recipient"
+msgstr "{prefix} updated a recipient"
+
+#: packages/lib/utils/document-audit-logs.ts:315
+msgid "{prefix} updated the document"
+msgstr "{prefix} updated the document"
+
+#: packages/lib/utils/document-audit-logs.ts:307
+msgid "{prefix} updated the document access auth requirements"
+msgstr "{prefix} updated the document access auth requirements"
+
+#: packages/lib/utils/document-audit-logs.ts:327
+msgid "{prefix} updated the document external ID"
+msgstr "{prefix} updated the document external ID"
+
+#: packages/lib/utils/document-audit-logs.ts:311
+msgid "{prefix} updated the document signing auth requirements"
+msgstr "{prefix} updated the document signing auth requirements"
+
+#: packages/lib/utils/document-audit-logs.ts:323
+msgid "{prefix} updated the document title"
+msgstr "{prefix} updated the document title"
+
+#: packages/lib/utils/document-audit-logs.ts:303
+msgid "{prefix} updated the document visibility"
+msgstr "{prefix} updated the document visibility"
+
#: packages/email/templates/document-created-from-direct-template.tsx:55
msgid "{recipientName} {action} a document by using one of your direct links"
msgstr "{recipientName} {action} a document by using one of your direct links"
@@ -99,6 +183,26 @@ msgstr "{recipientName} {action} a document by using one of your direct links"
msgid "{teamName} ownership transfer request"
msgstr "{teamName} ownership transfer request"
+#: packages/lib/utils/document-audit-logs.ts:343
+msgid "{userName} approved the document"
+msgstr "{userName} approved the document"
+
+#: packages/lib/utils/document-audit-logs.ts:344
+msgid "{userName} CC'd the document"
+msgstr "{userName} CC'd the document"
+
+#: packages/lib/utils/document-audit-logs.ts:345
+msgid "{userName} completed their task"
+msgstr "{userName} completed their task"
+
+#: packages/lib/utils/document-audit-logs.ts:341
+msgid "{userName} signed the document"
+msgstr "{userName} signed the document"
+
+#: packages/lib/utils/document-audit-logs.ts:342
+msgid "{userName} viewed the document"
+msgstr "{userName} viewed the document"
+
#: packages/ui/primitives/data-table-pagination.tsx:41
msgid "{visibleRows, plural, one {Showing # result.} other {Showing # results.}}"
msgstr "{visibleRows, plural, one {Showing # result.} other {Showing # results.}}"
@@ -145,10 +249,34 @@ msgstr "<0>Require passkey0> - The recipient must have an account and passkey
msgid "A document was created by your direct template that requires you to {recipientActionVerb} it."
msgstr "A document was created by your direct template that requires you to {recipientActionVerb} it."
+#: packages/lib/utils/document-audit-logs.ts:262
+msgid "A field was added"
+msgstr "A field was added"
+
+#: packages/lib/utils/document-audit-logs.ts:266
+msgid "A field was removed"
+msgstr "A field was removed"
+
+#: packages/lib/utils/document-audit-logs.ts:270
+msgid "A field was updated"
+msgstr "A field was updated"
+
#: packages/lib/jobs/definitions/emails/send-team-member-joined-email.ts:90
msgid "A new member has joined your team"
msgstr "A new member has joined your team"
+#: packages/lib/utils/document-audit-logs.ts:274
+msgid "A recipient was added"
+msgstr "A recipient was added"
+
+#: packages/lib/utils/document-audit-logs.ts:278
+msgid "A recipient was removed"
+msgstr "A recipient was removed"
+
+#: packages/lib/utils/document-audit-logs.ts:282
+msgid "A recipient was updated"
+msgstr "A recipient was updated"
+
#: packages/lib/server-only/team/create-team-email-verification.ts:142
msgid "A request to use your email has been initiated by {teamName} on Documenso"
msgstr "A request to use your email has been initiated by {teamName} on Documenso"
@@ -363,6 +491,7 @@ msgstr "Close"
#: packages/email/template-components/template-document-completed.tsx:35
#: packages/email/template-components/template-document-self-signed.tsx:36
+#: packages/lib/constants/document.ts:10
msgid "Completed"
msgstr "Completed"
@@ -445,11 +574,24 @@ msgstr "Direct link receiver"
msgid "Document access"
msgstr "Document access"
+#: packages/lib/utils/document-audit-logs.ts:306
+msgid "Document access auth updated"
+msgstr "Document access auth updated"
+
#: packages/lib/server-only/document/delete-document.ts:213
#: packages/lib/server-only/document/super-delete-document.ts:75
msgid "Document Cancelled"
msgstr "Document Cancelled"
+#: packages/lib/utils/document-audit-logs.ts:359
+#: packages/lib/utils/document-audit-logs.ts:360
+msgid "Document completed"
+msgstr "Document completed"
+
+#: packages/lib/utils/document-audit-logs.ts:286
+msgid "Document created"
+msgstr "Document created"
+
#: packages/email/templates/document-created-from-direct-template.tsx:30
#: packages/lib/server-only/template/create-document-from-direct-template.ts:554
msgid "Document created from direct template"
@@ -459,15 +601,55 @@ msgstr "Document created from direct template"
msgid "Document Creation"
msgstr "Document Creation"
+#: packages/lib/utils/document-audit-logs.ts:290
+msgid "Document deleted"
+msgstr "Document deleted"
+
#: packages/lib/server-only/document/send-delete-email.ts:58
msgid "Document Deleted!"
msgstr "Document Deleted!"
+#: packages/lib/utils/document-audit-logs.ts:326
+msgid "Document external ID updated"
+msgstr "Document external ID updated"
+
+#: packages/lib/utils/document-audit-logs.ts:334
+msgid "Document moved to team"
+msgstr "Document moved to team"
+
+#: packages/lib/utils/document-audit-logs.ts:318
+msgid "Document opened"
+msgstr "Document opened"
+
+#: packages/lib/utils/document-audit-logs.ts:330
+msgid "Document sent"
+msgstr "Document sent"
+
+#: packages/lib/utils/document-audit-logs.ts:310
+msgid "Document signing auth updated"
+msgstr "Document signing auth updated"
+
+#: packages/lib/utils/document-audit-logs.ts:322
+msgid "Document title updated"
+msgstr "Document title updated"
+
+#: packages/lib/utils/document-audit-logs.ts:314
+msgid "Document updated"
+msgstr "Document updated"
+
+#: packages/lib/utils/document-audit-logs.ts:302
+msgid "Document visibility updated"
+msgstr "Document visibility updated"
+
#: packages/email/template-components/template-document-completed.tsx:64
#: packages/ui/components/document/document-download-button.tsx:68
msgid "Download"
msgstr "Download"
+#: packages/lib/constants/document.ts:13
+msgid "Draft"
+msgstr "Draft"
+
#: packages/ui/primitives/document-dropzone.tsx:162
msgid "Drag & drop your PDF here."
msgstr "Drag & drop your PDF here."
@@ -500,6 +682,14 @@ msgstr "Email is required"
msgid "Email Options"
msgstr "Email Options"
+#: packages/lib/utils/document-audit-logs.ts:353
+msgid "Email resent"
+msgstr "Email resent"
+
+#: packages/lib/utils/document-audit-logs.ts:353
+msgid "Email sent"
+msgstr "Email sent"
+
#: packages/ui/primitives/document-flow/add-fields.tsx:1123
msgid "Empty field"
msgstr "Empty field"
@@ -560,6 +750,14 @@ msgstr "Field label"
msgid "Field placeholder"
msgstr "Field placeholder"
+#: packages/lib/utils/document-audit-logs.ts:294
+msgid "Field signed"
+msgstr "Field signed"
+
+#: packages/lib/utils/document-audit-logs.ts:298
+msgid "Field unsigned"
+msgstr "Field unsigned"
+
#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx:56
#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx:38
#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx:38
@@ -770,6 +968,10 @@ msgstr "Password Reset Successful"
msgid "Password updated!"
msgstr "Password updated!"
+#: packages/lib/constants/document.ts:16
+msgid "Pending"
+msgstr "Pending"
+
#: packages/email/templates/document-pending.tsx:17
msgid "Pending Document"
msgstr "Pending Document"
@@ -837,6 +1039,10 @@ msgstr "Read only"
msgid "Receives copy"
msgstr "Receives copy"
+#: packages/lib/utils/document-audit-logs.ts:338
+msgid "Recipient"
+msgstr "Recipient"
+
#: packages/ui/components/recipient/recipient-action-auth-select.tsx:39
#: packages/ui/primitives/document-flow/add-settings.tsx:257
#: packages/ui/primitives/template-flow/add-template-settings.tsx:208
@@ -1244,6 +1450,10 @@ msgstr "We've changed your password as you asked. You can now sign in with your
msgid "Welcome to Documenso!"
msgstr "Welcome to Documenso!"
+#: packages/lib/utils/document-audit-logs.ts:258
+msgid "You"
+msgstr "You"
+
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx:44
msgid "You are about to send this document to the recipients. Are you sure you want to continue?"
msgstr "You are about to send this document to the recipients. Are you sure you want to continue?"
diff --git a/packages/lib/translations/en/web.po b/packages/lib/translations/en/web.po
index 6b0c48e5c..6788b0c92 100644
--- a/packages/lib/translations/en/web.po
+++ b/packages/lib/translations/en/web.po
@@ -215,20 +215,29 @@ msgstr "Acceptance and Consent"
msgid "Accepted team invitation"
msgstr "Accepted team invitation"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:128
+msgid "Account Authentication"
+msgstr "Account Authentication"
+
#: apps/web/src/app/(dashboard)/admin/users/[id]/delete-user-dialog.tsx:51
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:48
msgid "Account deleted"
msgstr "Account deleted"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:119
+msgid "Account Re-Authentication"
+msgstr "Account Re-Authentication"
+
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:139
msgid "Acknowledgment"
msgstr "Acknowledgment"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-dropdown.tsx:105
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:104
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:100
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:121
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:164
#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:118
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:46
msgid "Action"
msgstr "Action"
@@ -634,6 +643,10 @@ msgstr "Attempts sealing the document again, useful for after a code change has
msgid "Audit Log"
msgstr "Audit Log"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:198
+msgid "Authentication Level"
+msgstr "Authentication Level"
+
#: apps/web/src/app/(recipient)/d/[token]/signing-auth-page.tsx:41
#: apps/web/src/app/(signing)/sign/[token]/signing-auth-page.tsx:52
msgid "Authentication required"
@@ -692,6 +705,7 @@ msgid "Billing"
msgstr "Billing"
#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:99
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:48
msgid "Browser"
msgstr "Browser"
@@ -1053,6 +1067,7 @@ msgid "Created"
msgstr "Created"
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:35
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:111
msgid "Created At"
msgstr "Created At"
@@ -1188,6 +1203,7 @@ msgid "Delete your account and all its contents, including completed documents.
msgstr "Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution."
#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:41
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:97
msgid "Deleted"
msgstr "Deleted"
@@ -1195,7 +1211,12 @@ msgstr "Deleted"
msgid "Deleting account..."
msgstr "Deleting account..."
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:178
+msgid "Details"
+msgstr "Details"
+
#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:75
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:234
msgid "Device"
msgstr "Device"
@@ -1338,6 +1359,7 @@ msgid "Document history"
msgstr "Document history"
#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:71
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:81
msgid "Document ID"
msgstr "Document ID"
@@ -1520,6 +1542,8 @@ msgstr "Electronic Signature Disclosure"
#: apps/web/src/app/(dashboard)/admin/users/data-table-users.tsx:71
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:254
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:261
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:122
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:129
#: apps/web/src/app/(recipient)/d/[token]/configure-direct-template.tsx:118
#: apps/web/src/app/(signing)/sign/[token]/email-field.tsx:126
#: apps/web/src/app/embed/direct/[[...url]]/client.tsx:377
@@ -1589,6 +1613,10 @@ msgstr "Enable Direct Link Signing"
msgid "Enabled"
msgstr "Enabled"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:87
+msgid "Enclosed Document"
+msgstr "Enclosed Document"
+
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:38
msgid "Ends On"
msgstr "Ends On"
@@ -1773,6 +1801,10 @@ msgstr "Hide"
msgid "Hide additional information"
msgstr "Hide additional information"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:43
+msgid "I am the owner of this document"
+msgstr "I am the owner of this document"
+
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:186
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:173
msgid "I'm sure! Delete it"
@@ -1877,6 +1909,11 @@ msgstr "Invited At"
msgid "Invoice"
msgstr "Invoice"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:47
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:227
+msgid "IP Address"
+msgstr "IP Address"
+
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:118
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 "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."
@@ -1926,6 +1963,10 @@ msgstr "Last modified"
msgid "Last updated"
msgstr "Last updated"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:121
+msgid "Last Updated"
+msgstr "Last Updated"
+
#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:52
msgid "Last updated at"
msgstr "Last updated at"
@@ -2299,6 +2340,7 @@ msgid "Otherwise, the document will be created as a draft."
msgstr "Otherwise, the document will be created as a draft."
#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:86
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:103
#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:81
#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:86
#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:109
@@ -2333,6 +2375,10 @@ msgstr "Passkey has been updated"
msgid "Passkey name"
msgstr "Passkey name"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:121
+msgid "Passkey Re-Authentication"
+msgstr "Passkey Re-Authentication"
+
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:106
#: apps/web/src/app/(dashboard)/settings/security/passkeys/page.tsx:32
msgid "Passkeys"
@@ -2568,6 +2614,10 @@ msgstr "Read the full <0>signature disclosure0>."
msgid "Ready"
msgstr "Ready"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:281
+msgid "Reason"
+msgstr "Reason"
+
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-dialog.tsx:62
msgid "Reauthentication is required to sign this field"
msgstr "Reauthentication is required to sign this field"
@@ -2594,6 +2644,7 @@ msgstr "Recipient updated"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:66
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:34
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recipients.tsx:30
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:139
msgid "Recipients"
msgstr "Recipients"
@@ -2841,6 +2892,7 @@ msgid "Sending..."
msgstr "Sending..."
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:85
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:248
msgid "Sent"
msgstr "Sent"
@@ -2963,6 +3015,7 @@ msgid "Sign Up with OIDC"
msgstr "Sign Up with OIDC"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:88
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:177
#: apps/web/src/app/(recipient)/d/[token]/sign-direct-template.tsx:338
#: apps/web/src/app/(signing)/sign/[token]/form.tsx:192
#: apps/web/src/app/(signing)/sign/[token]/signature-field.tsx:195
@@ -2973,6 +3026,10 @@ msgstr "Sign Up with OIDC"
msgid "Signature"
msgstr "Signature"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:220
+msgid "Signature ID"
+msgstr "Signature ID"
+
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:123
msgid "Signatures Collected"
msgstr "Signatures Collected"
@@ -2982,10 +3039,23 @@ msgid "Signatures will appear once the document has been completed"
msgstr "Signatures will appear once the document has been completed"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:98
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:270
#: apps/web/src/components/document/document-read-only-fields.tsx:84
msgid "Signed"
msgstr "Signed"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:176
+msgid "Signer Events"
+msgstr "Signer Events"
+
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:168
+msgid "Signing Certificate"
+msgstr "Signing Certificate"
+
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:303
+msgid "Signing certificate provided by"
+msgstr "Signing certificate provided by"
+
#: apps/web/src/components/forms/signin.tsx:383
#: apps/web/src/components/forms/signin.tsx:510
msgid "Signing in..."
@@ -3095,6 +3165,7 @@ msgstr "Stats"
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:32
#: apps/web/src/app/(dashboard)/documents/data-table.tsx:79
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:130
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:93
#: apps/web/src/components/(teams)/tables/team-billing-invoices-data-table.tsx:73
msgid "Status"
msgstr "Status"
@@ -3582,7 +3653,8 @@ msgstr "This username has already been taken"
msgid "This username is already taken"
msgstr "This username is already taken"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:77
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:73
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:44
msgid "Time"
msgstr "Time"
@@ -3590,6 +3662,10 @@ msgstr "Time"
msgid "Time zone"
msgstr "Time zone"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:131
+msgid "Time Zone"
+msgstr "Time Zone"
+
#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:67
#: apps/web/src/app/(dashboard)/documents/data-table.tsx:60
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:115
@@ -3738,6 +3814,10 @@ msgstr "Two-factor authentication enabled"
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 "Two-factor authentication has been disabled for your account. You will no longer be required to enter a code from your authenticator app when signing in."
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:120
+msgid "Two-Factor Re-Authentication"
+msgstr "Two-Factor Re-Authentication"
+
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:73
#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:67
msgid "Type"
@@ -3843,6 +3923,13 @@ msgstr "Unauthorized"
msgid "Uncompleted"
msgstr "Uncompleted"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:229
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:254
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:265
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:276
+msgid "Unknown"
+msgstr "Unknown"
+
#: apps/web/src/app/(teams)/t/[teamUrl]/error.tsx:23
msgid "Unknown error"
msgstr "Unknown error"
@@ -3958,7 +4045,8 @@ msgstr "Use Backup Code"
msgid "Use Template"
msgstr "Use Template"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:82
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:78
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:45
msgid "User"
msgstr "User"
@@ -4006,6 +4094,10 @@ msgstr "Verify your email address to unlock all features."
msgid "Verify your email to upload documents."
msgstr "Verify your email to upload documents."
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:75
+msgid "Version History"
+msgstr "Version History"
+
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-button.tsx:95
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:126
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:135
@@ -4069,6 +4161,7 @@ msgid "View teams"
msgstr "View teams"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:104
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:259
msgid "Viewed"
msgstr "Viewed"
diff --git a/packages/lib/translations/es/common.po b/packages/lib/translations/es/common.po
index 93fd930b9..8bd53f2fe 100644
--- a/packages/lib/translations/es/common.po
+++ b/packages/lib/translations/es/common.po
@@ -96,6 +96,90 @@ msgstr "{memberEmail} se unió al siguiente equipo"
msgid "{memberEmail} left the following team"
msgstr "{memberEmail} dejó el siguiente equipo"
+#: packages/lib/utils/document-audit-logs.ts:263
+msgid "{prefix} added a field"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:275
+msgid "{prefix} added a recipient"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:287
+msgid "{prefix} created the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:291
+msgid "{prefix} deleted the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:335
+msgid "{prefix} moved the document to team"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:319
+msgid "{prefix} opened the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:267
+msgid "{prefix} removed a field"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:279
+msgid "{prefix} removed a recipient"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:355
+msgid "{prefix} resent an email to {0}"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:356
+msgid "{prefix} sent an email to {0}"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:331
+msgid "{prefix} sent the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:295
+msgid "{prefix} signed a field"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:299
+msgid "{prefix} unsigned a field"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:271
+msgid "{prefix} updated a field"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:283
+msgid "{prefix} updated a recipient"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:315
+msgid "{prefix} updated the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:307
+msgid "{prefix} updated the document access auth requirements"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:327
+msgid "{prefix} updated the document external ID"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:311
+msgid "{prefix} updated the document signing auth requirements"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:323
+msgid "{prefix} updated the document title"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:303
+msgid "{prefix} updated the document visibility"
+msgstr ""
+
#: packages/email/templates/document-created-from-direct-template.tsx:55
msgid "{recipientName} {action} a document by using one of your direct links"
msgstr "{recipientName} {action} un documento utilizando uno de tus enlaces directos"
@@ -104,6 +188,26 @@ msgstr "{recipientName} {action} un documento utilizando uno de tus enlaces dire
msgid "{teamName} ownership transfer request"
msgstr "solicitud de transferencia de propiedad de {teamName}"
+#: packages/lib/utils/document-audit-logs.ts:343
+msgid "{userName} approved the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:344
+msgid "{userName} CC'd the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:345
+msgid "{userName} completed their task"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:341
+msgid "{userName} signed the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:342
+msgid "{userName} viewed the document"
+msgstr ""
+
#: packages/ui/primitives/data-table-pagination.tsx:41
msgid "{visibleRows, plural, one {Showing # result.} other {Showing # results.}}"
msgstr "{visibleRows, plural, one {Mostrando # resultado.} other {Mostrando # resultados.}}"
@@ -150,10 +254,34 @@ msgstr "<0>Requerir clave de acceso0> - El destinatario debe tener una cuenta
msgid "A document was created by your direct template that requires you to {recipientActionVerb} it."
msgstr "Se creó un documento a partir de tu plantilla directa que requiere que {recipientActionVerb}."
+#: packages/lib/utils/document-audit-logs.ts:262
+msgid "A field was added"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:266
+msgid "A field was removed"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:270
+msgid "A field was updated"
+msgstr ""
+
#: packages/lib/jobs/definitions/emails/send-team-member-joined-email.ts:90
msgid "A new member has joined your team"
msgstr "Un nuevo miembro se ha unido a tu equipo"
+#: packages/lib/utils/document-audit-logs.ts:274
+msgid "A recipient was added"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:278
+msgid "A recipient was removed"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:282
+msgid "A recipient was updated"
+msgstr ""
+
#: packages/lib/server-only/team/create-team-email-verification.ts:142
msgid "A request to use your email has been initiated by {teamName} on Documenso"
msgstr "Se ha iniciado una solicitud para utilizar tu correo electrónico por {teamName} en Documenso"
@@ -368,6 +496,7 @@ msgstr "Cerrar"
#: packages/email/template-components/template-document-completed.tsx:35
#: packages/email/template-components/template-document-self-signed.tsx:36
+#: packages/lib/constants/document.ts:10
msgid "Completed"
msgstr "Completado"
@@ -450,11 +579,24 @@ msgstr "Receptor de enlace directo"
msgid "Document access"
msgstr "Acceso al documento"
+#: packages/lib/utils/document-audit-logs.ts:306
+msgid "Document access auth updated"
+msgstr ""
+
#: packages/lib/server-only/document/delete-document.ts:213
#: packages/lib/server-only/document/super-delete-document.ts:75
msgid "Document Cancelled"
msgstr "Documento cancelado"
+#: packages/lib/utils/document-audit-logs.ts:359
+#: packages/lib/utils/document-audit-logs.ts:360
+msgid "Document completed"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:286
+msgid "Document created"
+msgstr ""
+
#: packages/email/templates/document-created-from-direct-template.tsx:30
#: packages/lib/server-only/template/create-document-from-direct-template.ts:554
msgid "Document created from direct template"
@@ -464,15 +606,55 @@ msgstr "Documento creado a partir de plantilla directa"
msgid "Document Creation"
msgstr "Creación de documento"
+#: packages/lib/utils/document-audit-logs.ts:290
+msgid "Document deleted"
+msgstr ""
+
#: packages/lib/server-only/document/send-delete-email.ts:58
msgid "Document Deleted!"
msgstr "¡Documento eliminado!"
+#: packages/lib/utils/document-audit-logs.ts:326
+msgid "Document external ID updated"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:334
+msgid "Document moved to team"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:318
+msgid "Document opened"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:330
+msgid "Document sent"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:310
+msgid "Document signing auth updated"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:322
+msgid "Document title updated"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:314
+msgid "Document updated"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:302
+msgid "Document visibility updated"
+msgstr ""
+
#: packages/email/template-components/template-document-completed.tsx:64
#: packages/ui/components/document/document-download-button.tsx:68
msgid "Download"
msgstr "Descargar"
+#: packages/lib/constants/document.ts:13
+msgid "Draft"
+msgstr ""
+
#: packages/ui/primitives/document-dropzone.tsx:162
msgid "Drag & drop your PDF here."
msgstr "Arrastre y suelte su PDF aquí."
@@ -505,6 +687,14 @@ msgstr "Se requiere email"
msgid "Email Options"
msgstr "Opciones de correo electrónico"
+#: packages/lib/utils/document-audit-logs.ts:353
+msgid "Email resent"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:353
+msgid "Email sent"
+msgstr ""
+
#: packages/ui/primitives/document-flow/add-fields.tsx:1123
msgid "Empty field"
msgstr "Campo vacío"
@@ -565,6 +755,14 @@ msgstr "Etiqueta de campo"
msgid "Field placeholder"
msgstr "Marcador de posición de campo"
+#: packages/lib/utils/document-audit-logs.ts:294
+msgid "Field signed"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:298
+msgid "Field unsigned"
+msgstr ""
+
#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx:56
#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx:38
#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx:38
@@ -775,6 +973,10 @@ msgstr "Restablecimiento de contraseña exitoso"
msgid "Password updated!"
msgstr "¡Contraseña actualizada!"
+#: packages/lib/constants/document.ts:16
+msgid "Pending"
+msgstr ""
+
#: packages/email/templates/document-pending.tsx:17
msgid "Pending Document"
msgstr "Documento pendiente"
@@ -842,6 +1044,10 @@ msgstr "Solo lectura"
msgid "Receives copy"
msgstr "Recibe copia"
+#: packages/lib/utils/document-audit-logs.ts:338
+msgid "Recipient"
+msgstr ""
+
#: packages/ui/components/recipient/recipient-action-auth-select.tsx:39
#: packages/ui/primitives/document-flow/add-settings.tsx:257
#: packages/ui/primitives/template-flow/add-template-settings.tsx:208
@@ -1249,6 +1455,10 @@ msgstr "Hemos cambiado tu contraseña como solicitaste. Ahora puedes iniciar ses
msgid "Welcome to Documenso!"
msgstr "¡Bienvenido a Documenso!"
+#: packages/lib/utils/document-audit-logs.ts:258
+msgid "You"
+msgstr ""
+
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx:44
msgid "You are about to send this document to the recipients. Are you sure you want to continue?"
msgstr "Está a punto de enviar este documento a los destinatarios. ¿Está seguro de que desea continuar?"
diff --git a/packages/lib/translations/es/web.po b/packages/lib/translations/es/web.po
index 8e630bc89..508fcc9b9 100644
--- a/packages/lib/translations/es/web.po
+++ b/packages/lib/translations/es/web.po
@@ -220,20 +220,29 @@ msgstr "Aceptación y Consentimiento"
msgid "Accepted team invitation"
msgstr "Invitación de equipo aceptada"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:128
+msgid "Account Authentication"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/admin/users/[id]/delete-user-dialog.tsx:51
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:48
msgid "Account deleted"
msgstr "Cuenta eliminada"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:119
+msgid "Account Re-Authentication"
+msgstr ""
+
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:139
msgid "Acknowledgment"
msgstr "Reconocimiento"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-dropdown.tsx:105
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:104
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:100
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:121
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:164
#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:118
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:46
msgid "Action"
msgstr "Acción"
@@ -639,6 +648,10 @@ msgstr "Intenta sellar el documento de nuevo, útil después de que se haya prod
msgid "Audit Log"
msgstr "Registro de Auditoría"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:198
+msgid "Authentication Level"
+msgstr ""
+
#: apps/web/src/app/(recipient)/d/[token]/signing-auth-page.tsx:41
#: apps/web/src/app/(signing)/sign/[token]/signing-auth-page.tsx:52
msgid "Authentication required"
@@ -697,6 +710,7 @@ msgid "Billing"
msgstr "Facturación"
#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:99
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:48
msgid "Browser"
msgstr "Navegador"
@@ -1058,6 +1072,7 @@ msgid "Created"
msgstr "Creado"
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:35
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:111
msgid "Created At"
msgstr "Creado En"
@@ -1193,6 +1208,7 @@ msgid "Delete your account and all its contents, including completed documents.
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/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:41
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:97
msgid "Deleted"
msgstr "Eliminado"
@@ -1200,7 +1216,12 @@ msgstr "Eliminado"
msgid "Deleting account..."
msgstr "Eliminando cuenta..."
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:178
+msgid "Details"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:75
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:234
msgid "Device"
msgstr "Dispositivo"
@@ -1343,6 +1364,7 @@ msgid "Document history"
msgstr "Historial de documentos"
#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:71
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:81
msgid "Document ID"
msgstr "ID del documento"
@@ -1525,6 +1547,8 @@ msgstr "Divulgación de Firma Electrónica"
#: apps/web/src/app/(dashboard)/admin/users/data-table-users.tsx:71
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:254
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:261
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:122
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:129
#: apps/web/src/app/(recipient)/d/[token]/configure-direct-template.tsx:118
#: apps/web/src/app/(signing)/sign/[token]/email-field.tsx:126
#: apps/web/src/app/embed/direct/[[...url]]/client.tsx:377
@@ -1594,6 +1618,10 @@ msgstr "Habilitar firma de enlace directo"
msgid "Enabled"
msgstr "Habilitado"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:87
+msgid "Enclosed Document"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:38
msgid "Ends On"
msgstr "Termina en"
@@ -1778,6 +1806,10 @@ msgstr "Ocultar"
msgid "Hide additional information"
msgstr "Ocultar información adicional"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:43
+msgid "I am the owner of this document"
+msgstr ""
+
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:186
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:173
msgid "I'm sure! Delete it"
@@ -1882,6 +1914,11 @@ msgstr "Invitado el"
msgid "Invoice"
msgstr "Factura"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:47
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:227
+msgid "IP Address"
+msgstr ""
+
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:118
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 "Es crucial mantener su información de contacto, especialmente su dirección de correo electrónico, actual con nosotros. Por favor, notifíquenos inmediatamente sobre cualquier cambio para asegurarse de seguir recibiendo todas las comunicaciones necesarias."
@@ -1931,6 +1968,10 @@ msgstr "Última modificación"
msgid "Last updated"
msgstr "Última actualización"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:121
+msgid "Last Updated"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:52
msgid "Last updated at"
msgstr "Última actualización el"
@@ -2304,6 +2345,7 @@ msgid "Otherwise, the document will be created as a draft."
msgstr "De lo contrario, el documento se creará como un borrador."
#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:86
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:103
#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:81
#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:86
#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:109
@@ -2338,6 +2380,10 @@ msgstr "La clave de acceso ha sido actualizada"
msgid "Passkey name"
msgstr "Nombre de clave de acceso"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:121
+msgid "Passkey Re-Authentication"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:106
#: apps/web/src/app/(dashboard)/settings/security/passkeys/page.tsx:32
msgid "Passkeys"
@@ -2573,6 +2619,10 @@ msgstr "Lea la <0>divulgación de firma0> completa."
msgid "Ready"
msgstr "Listo"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:281
+msgid "Reason"
+msgstr ""
+
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-dialog.tsx:62
msgid "Reauthentication is required to sign this field"
msgstr "Se requiere reautenticación para firmar este campo"
@@ -2599,6 +2649,7 @@ msgstr "Destinatario actualizado"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:66
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:34
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recipients.tsx:30
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:139
msgid "Recipients"
msgstr "Destinatarios"
@@ -2846,6 +2897,7 @@ msgid "Sending..."
msgstr "Enviando..."
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:85
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:248
msgid "Sent"
msgstr "Enviado"
@@ -2968,6 +3020,7 @@ msgid "Sign Up with OIDC"
msgstr "Regístrate con OIDC"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:88
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:177
#: apps/web/src/app/(recipient)/d/[token]/sign-direct-template.tsx:338
#: apps/web/src/app/(signing)/sign/[token]/form.tsx:192
#: apps/web/src/app/(signing)/sign/[token]/signature-field.tsx:195
@@ -2978,6 +3031,10 @@ msgstr "Regístrate con OIDC"
msgid "Signature"
msgstr "Firma"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:220
+msgid "Signature ID"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:123
msgid "Signatures Collected"
msgstr "Firmas recolectadas"
@@ -2987,10 +3044,23 @@ msgid "Signatures will appear once the document has been completed"
msgstr "Las firmas aparecerán una vez que el documento se haya completado"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:98
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:270
#: apps/web/src/components/document/document-read-only-fields.tsx:84
msgid "Signed"
msgstr "Firmado"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:176
+msgid "Signer Events"
+msgstr ""
+
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:168
+msgid "Signing Certificate"
+msgstr ""
+
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:303
+msgid "Signing certificate provided by"
+msgstr ""
+
#: apps/web/src/components/forms/signin.tsx:383
#: apps/web/src/components/forms/signin.tsx:510
msgid "Signing in..."
@@ -3100,6 +3170,7 @@ msgstr "Estadísticas"
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:32
#: apps/web/src/app/(dashboard)/documents/data-table.tsx:79
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:130
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:93
#: apps/web/src/components/(teams)/tables/team-billing-invoices-data-table.tsx:73
msgid "Status"
msgstr "Estado"
@@ -3587,7 +3658,8 @@ msgstr "Este nombre de usuario ya ha sido tomado"
msgid "This username is already taken"
msgstr "Este nombre de usuario ya está tomado"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:77
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:73
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:44
msgid "Time"
msgstr "Hora"
@@ -3595,6 +3667,10 @@ msgstr "Hora"
msgid "Time zone"
msgstr "Zona horaria"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:131
+msgid "Time Zone"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:67
#: apps/web/src/app/(dashboard)/documents/data-table.tsx:60
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:115
@@ -3743,6 +3819,10 @@ msgstr "Autenticación de dos factores habilitada"
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 "La autenticación de dos factores ha sido desactivada para tu cuenta. Ya no se te pedirá ingresar un código de tu aplicación de autenticador al iniciar sesión."
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:120
+msgid "Two-Factor Re-Authentication"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:73
#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:67
msgid "Type"
@@ -3848,6 +3928,13 @@ msgstr "No autorizado"
msgid "Uncompleted"
msgstr "Incompleto"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:229
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:254
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:265
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:276
+msgid "Unknown"
+msgstr ""
+
#: apps/web/src/app/(teams)/t/[teamUrl]/error.tsx:23
msgid "Unknown error"
msgstr "Error desconocido"
@@ -3963,7 +4050,8 @@ msgstr "Usar Código de Respaldo"
msgid "Use Template"
msgstr "Usar Plantilla"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:82
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:78
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:45
msgid "User"
msgstr "Usuario"
@@ -4011,6 +4099,10 @@ msgstr "Verifica tu dirección de correo electrónico para desbloquear todas las
msgid "Verify your email to upload documents."
msgstr "Verifica tu correo electrónico para subir documentos."
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:75
+msgid "Version History"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-button.tsx:95
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:126
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:135
@@ -4074,6 +4166,7 @@ msgid "View teams"
msgstr "Ver equipos"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:104
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:259
msgid "Viewed"
msgstr "Visto"
diff --git a/packages/lib/translations/fr/common.po b/packages/lib/translations/fr/common.po
index cd9cd0c30..fc7bea9a6 100644
--- a/packages/lib/translations/fr/common.po
+++ b/packages/lib/translations/fr/common.po
@@ -96,6 +96,90 @@ msgstr "{memberEmail} a rejoint l'équipe suivante"
msgid "{memberEmail} left the following team"
msgstr "{memberEmail} a quitté l'équipe suivante"
+#: packages/lib/utils/document-audit-logs.ts:263
+msgid "{prefix} added a field"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:275
+msgid "{prefix} added a recipient"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:287
+msgid "{prefix} created the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:291
+msgid "{prefix} deleted the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:335
+msgid "{prefix} moved the document to team"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:319
+msgid "{prefix} opened the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:267
+msgid "{prefix} removed a field"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:279
+msgid "{prefix} removed a recipient"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:355
+msgid "{prefix} resent an email to {0}"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:356
+msgid "{prefix} sent an email to {0}"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:331
+msgid "{prefix} sent the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:295
+msgid "{prefix} signed a field"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:299
+msgid "{prefix} unsigned a field"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:271
+msgid "{prefix} updated a field"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:283
+msgid "{prefix} updated a recipient"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:315
+msgid "{prefix} updated the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:307
+msgid "{prefix} updated the document access auth requirements"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:327
+msgid "{prefix} updated the document external ID"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:311
+msgid "{prefix} updated the document signing auth requirements"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:323
+msgid "{prefix} updated the document title"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:303
+msgid "{prefix} updated the document visibility"
+msgstr ""
+
#: packages/email/templates/document-created-from-direct-template.tsx:55
msgid "{recipientName} {action} a document by using one of your direct links"
msgstr "{recipientName} {action} un document en utilisant l'un de vos liens directs"
@@ -104,6 +188,26 @@ msgstr "{recipientName} {action} un document en utilisant l'un de vos liens dire
msgid "{teamName} ownership transfer request"
msgstr "Demande de transfert de propriété de {teamName}"
+#: packages/lib/utils/document-audit-logs.ts:343
+msgid "{userName} approved the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:344
+msgid "{userName} CC'd the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:345
+msgid "{userName} completed their task"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:341
+msgid "{userName} signed the document"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:342
+msgid "{userName} viewed the document"
+msgstr ""
+
#: packages/ui/primitives/data-table-pagination.tsx:41
msgid "{visibleRows, plural, one {Showing # result.} other {Showing # results.}}"
msgstr "{visibleRows, plural, one {Affichage de # résultat.} other {Affichage de # résultats.}}"
@@ -150,10 +254,34 @@ msgstr "<0>Exiger une clé d'accès0> - Le destinataire doit avoir un compte e
msgid "A document was created by your direct template that requires you to {recipientActionVerb} it."
msgstr "Un document a été créé par votre modèle direct qui nécessite que vous {recipientActionVerb} celui-ci."
+#: packages/lib/utils/document-audit-logs.ts:262
+msgid "A field was added"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:266
+msgid "A field was removed"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:270
+msgid "A field was updated"
+msgstr ""
+
#: packages/lib/jobs/definitions/emails/send-team-member-joined-email.ts:90
msgid "A new member has joined your team"
msgstr "Un nouveau membre a rejoint votre équipe"
+#: packages/lib/utils/document-audit-logs.ts:274
+msgid "A recipient was added"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:278
+msgid "A recipient was removed"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:282
+msgid "A recipient was updated"
+msgstr ""
+
#: packages/lib/server-only/team/create-team-email-verification.ts:142
msgid "A request to use your email has been initiated by {teamName} on Documenso"
msgstr "Une demande d'utilisation de votre email a été initiée par {teamName} sur Documenso"
@@ -368,6 +496,7 @@ msgstr "Fermer"
#: packages/email/template-components/template-document-completed.tsx:35
#: packages/email/template-components/template-document-self-signed.tsx:36
+#: packages/lib/constants/document.ts:10
msgid "Completed"
msgstr "Terminé"
@@ -450,11 +579,24 @@ msgstr "Receveur de lien direct"
msgid "Document access"
msgstr "Accès au document"
+#: packages/lib/utils/document-audit-logs.ts:306
+msgid "Document access auth updated"
+msgstr ""
+
#: packages/lib/server-only/document/delete-document.ts:213
#: packages/lib/server-only/document/super-delete-document.ts:75
msgid "Document Cancelled"
msgstr "Document Annulé"
+#: packages/lib/utils/document-audit-logs.ts:359
+#: packages/lib/utils/document-audit-logs.ts:360
+msgid "Document completed"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:286
+msgid "Document created"
+msgstr ""
+
#: packages/email/templates/document-created-from-direct-template.tsx:30
#: packages/lib/server-only/template/create-document-from-direct-template.ts:554
msgid "Document created from direct template"
@@ -464,15 +606,55 @@ msgstr "Document créé à partir d'un modèle direct"
msgid "Document Creation"
msgstr "Création de document"
+#: packages/lib/utils/document-audit-logs.ts:290
+msgid "Document deleted"
+msgstr ""
+
#: packages/lib/server-only/document/send-delete-email.ts:58
msgid "Document Deleted!"
msgstr "Document Supprimé !"
+#: packages/lib/utils/document-audit-logs.ts:326
+msgid "Document external ID updated"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:334
+msgid "Document moved to team"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:318
+msgid "Document opened"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:330
+msgid "Document sent"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:310
+msgid "Document signing auth updated"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:322
+msgid "Document title updated"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:314
+msgid "Document updated"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:302
+msgid "Document visibility updated"
+msgstr ""
+
#: packages/email/template-components/template-document-completed.tsx:64
#: packages/ui/components/document/document-download-button.tsx:68
msgid "Download"
msgstr "Télécharger"
+#: packages/lib/constants/document.ts:13
+msgid "Draft"
+msgstr ""
+
#: packages/ui/primitives/document-dropzone.tsx:162
msgid "Drag & drop your PDF here."
msgstr "Faites glisser et déposez votre PDF ici."
@@ -505,6 +687,14 @@ msgstr "L'email est requis"
msgid "Email Options"
msgstr "Options d'email"
+#: packages/lib/utils/document-audit-logs.ts:353
+msgid "Email resent"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:353
+msgid "Email sent"
+msgstr ""
+
#: packages/ui/primitives/document-flow/add-fields.tsx:1123
msgid "Empty field"
msgstr "Champ vide"
@@ -565,6 +755,14 @@ msgstr "Étiquette du champ"
msgid "Field placeholder"
msgstr "Espace réservé du champ"
+#: packages/lib/utils/document-audit-logs.ts:294
+msgid "Field signed"
+msgstr ""
+
+#: packages/lib/utils/document-audit-logs.ts:298
+msgid "Field unsigned"
+msgstr ""
+
#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx:56
#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx:38
#: packages/ui/primitives/document-flow/field-items-advanced-settings/initials-field.tsx:38
@@ -775,6 +973,10 @@ msgstr "Réinitialisation du mot de passe réussie"
msgid "Password updated!"
msgstr "Mot de passe mis à jour !"
+#: packages/lib/constants/document.ts:16
+msgid "Pending"
+msgstr ""
+
#: packages/email/templates/document-pending.tsx:17
msgid "Pending Document"
msgstr "Document En Attente"
@@ -842,6 +1044,10 @@ msgstr "Lecture seule"
msgid "Receives copy"
msgstr "Recevoir une copie"
+#: packages/lib/utils/document-audit-logs.ts:338
+msgid "Recipient"
+msgstr ""
+
#: packages/ui/components/recipient/recipient-action-auth-select.tsx:39
#: packages/ui/primitives/document-flow/add-settings.tsx:257
#: packages/ui/primitives/template-flow/add-template-settings.tsx:208
@@ -1249,6 +1455,10 @@ msgstr "Nous avons changé votre mot de passe comme demandé. Vous pouvez mainte
msgid "Welcome to Documenso!"
msgstr "Bienvenue sur Documenso !"
+#: packages/lib/utils/document-audit-logs.ts:258
+msgid "You"
+msgstr ""
+
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx:44
msgid "You are about to send this document to the recipients. Are you sure you want to continue?"
msgstr "Vous êtes sur le point d'envoyer ce document aux destinataires. Êtes-vous sûr de vouloir continuer ?"
diff --git a/packages/lib/translations/fr/web.po b/packages/lib/translations/fr/web.po
index 44b8c692b..3bfc275dd 100644
--- a/packages/lib/translations/fr/web.po
+++ b/packages/lib/translations/fr/web.po
@@ -220,20 +220,29 @@ msgstr "Acceptation et consentement"
msgid "Accepted team invitation"
msgstr "Invitation d'équipe acceptée"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:128
+msgid "Account Authentication"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/admin/users/[id]/delete-user-dialog.tsx:51
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:48
msgid "Account deleted"
msgstr "Compte supprimé"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:119
+msgid "Account Re-Authentication"
+msgstr ""
+
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:139
msgid "Acknowledgment"
msgstr "Reconnaissance"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-dropdown.tsx:105
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:104
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:100
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:121
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:164
#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:118
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:46
msgid "Action"
msgstr "Action"
@@ -639,6 +648,10 @@ msgstr "Essaye de sceller le document à nouveau, utile après qu'un changement
msgid "Audit Log"
msgstr "Journal d'audit"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:198
+msgid "Authentication Level"
+msgstr ""
+
#: apps/web/src/app/(recipient)/d/[token]/signing-auth-page.tsx:41
#: apps/web/src/app/(signing)/sign/[token]/signing-auth-page.tsx:52
msgid "Authentication required"
@@ -697,6 +710,7 @@ msgid "Billing"
msgstr "Facturation"
#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:99
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:48
msgid "Browser"
msgstr "Navigateur"
@@ -1058,6 +1072,7 @@ msgid "Created"
msgstr "Créé"
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:35
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:111
msgid "Created At"
msgstr "Créé le"
@@ -1193,6 +1208,7 @@ msgid "Delete your account and all its contents, including completed documents.
msgstr "Supprimez votre compte et tout son contenu, y compris les documents complétés. Cette action est irréversible et annulera votre abonnement, alors procédez avec prudence."
#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:41
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:97
msgid "Deleted"
msgstr "Supprimé"
@@ -1200,7 +1216,12 @@ msgstr "Supprimé"
msgid "Deleting account..."
msgstr "Suppression du compte..."
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:178
+msgid "Details"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:75
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:234
msgid "Device"
msgstr "Appareil"
@@ -1343,6 +1364,7 @@ msgid "Document history"
msgstr "Historique du document"
#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:71
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:81
msgid "Document ID"
msgstr "ID du document"
@@ -1525,6 +1547,8 @@ msgstr "Divulgation de signature électronique"
#: apps/web/src/app/(dashboard)/admin/users/data-table-users.tsx:71
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:254
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:261
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:122
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:129
#: apps/web/src/app/(recipient)/d/[token]/configure-direct-template.tsx:118
#: apps/web/src/app/(signing)/sign/[token]/email-field.tsx:126
#: apps/web/src/app/embed/direct/[[...url]]/client.tsx:377
@@ -1594,6 +1618,10 @@ msgstr "Activer la signature par lien direct"
msgid "Enabled"
msgstr "Activé"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:87
+msgid "Enclosed Document"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:38
msgid "Ends On"
msgstr "Se termine le"
@@ -1778,6 +1806,10 @@ msgstr "Cacher"
msgid "Hide additional information"
msgstr "Cacher des informations supplémentaires"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:43
+msgid "I am the owner of this document"
+msgstr ""
+
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:186
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:173
msgid "I'm sure! Delete it"
@@ -1882,6 +1914,11 @@ msgstr "Invité à"
msgid "Invoice"
msgstr "Facture"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:47
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:227
+msgid "IP Address"
+msgstr ""
+
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:118
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 "Il est crucial de maintenir vos coordonnées, en particulier votre adresse e-mail, à jour avec nous. Veuillez nous informer immédiatement de tout changement pour vous assurer que vous continuez à recevoir toutes les communications nécessaires."
@@ -1931,6 +1968,10 @@ msgstr "Dernière modification"
msgid "Last updated"
msgstr "Dernière mise à jour"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:121
+msgid "Last Updated"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:52
msgid "Last updated at"
msgstr "Dernière mise à jour à"
@@ -2304,6 +2345,7 @@ msgid "Otherwise, the document will be created as a draft."
msgstr "Sinon, le document sera créé sous forme de brouillon."
#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:86
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:103
#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:81
#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:86
#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:109
@@ -2338,6 +2380,10 @@ msgstr "La clé d'accès a été mise à jour"
msgid "Passkey name"
msgstr "Nom de la clé d'accès"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:121
+msgid "Passkey Re-Authentication"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:106
#: apps/web/src/app/(dashboard)/settings/security/passkeys/page.tsx:32
msgid "Passkeys"
@@ -2573,6 +2619,10 @@ msgstr "Lisez l'intégralité de la <0>divulgation de signature0>."
msgid "Ready"
msgstr "Prêt"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:281
+msgid "Reason"
+msgstr ""
+
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-dialog.tsx:62
msgid "Reauthentication is required to sign this field"
msgstr "Une nouvelle authentification est requise pour signer ce champ"
@@ -2599,6 +2649,7 @@ msgstr "Destinataire mis à jour"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:66
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:34
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recipients.tsx:30
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:139
msgid "Recipients"
msgstr "Destinataires"
@@ -2846,6 +2897,7 @@ msgid "Sending..."
msgstr "Envoi..."
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:85
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:248
msgid "Sent"
msgstr "Envoyé"
@@ -2968,6 +3020,7 @@ msgid "Sign Up with OIDC"
msgstr "S'inscrire avec OIDC"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:88
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:177
#: apps/web/src/app/(recipient)/d/[token]/sign-direct-template.tsx:338
#: apps/web/src/app/(signing)/sign/[token]/form.tsx:192
#: apps/web/src/app/(signing)/sign/[token]/signature-field.tsx:195
@@ -2978,6 +3031,10 @@ msgstr "S'inscrire avec OIDC"
msgid "Signature"
msgstr "Signature"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:220
+msgid "Signature ID"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:123
msgid "Signatures Collected"
msgstr "Signatures collectées"
@@ -2987,10 +3044,23 @@ msgid "Signatures will appear once the document has been completed"
msgstr "Les signatures apparaîtront une fois le document complété"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:98
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:270
#: apps/web/src/components/document/document-read-only-fields.tsx:84
msgid "Signed"
msgstr "Signé"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:176
+msgid "Signer Events"
+msgstr ""
+
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:168
+msgid "Signing Certificate"
+msgstr ""
+
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:303
+msgid "Signing certificate provided by"
+msgstr ""
+
#: apps/web/src/components/forms/signin.tsx:383
#: apps/web/src/components/forms/signin.tsx:510
msgid "Signing in..."
@@ -3100,6 +3170,7 @@ msgstr "Statistiques"
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:32
#: apps/web/src/app/(dashboard)/documents/data-table.tsx:79
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:130
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:93
#: apps/web/src/components/(teams)/tables/team-billing-invoices-data-table.tsx:73
msgid "Status"
msgstr "Statut"
@@ -3587,7 +3658,8 @@ msgstr "Ce nom d'utilisateur a déjà été pris"
msgid "This username is already taken"
msgstr "Ce nom d'utilisateur est déjà pris"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:77
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:73
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:44
msgid "Time"
msgstr "Temps"
@@ -3595,6 +3667,10 @@ msgstr "Temps"
msgid "Time zone"
msgstr "Fuseau horaire"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:131
+msgid "Time Zone"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:67
#: apps/web/src/app/(dashboard)/documents/data-table.tsx:60
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:115
@@ -3743,6 +3819,10 @@ msgstr "Authentification à deux facteurs activée"
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 "L'authentification à deux facteurs a été désactivée pour votre compte. Vous ne serez plus tenu d'entrer un code de votre application d'authentification lors de la connexion."
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:120
+msgid "Two-Factor Re-Authentication"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:73
#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:67
msgid "Type"
@@ -3848,6 +3928,13 @@ msgstr "Non autorisé"
msgid "Uncompleted"
msgstr "Non complet"
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:229
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:254
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:265
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:276
+msgid "Unknown"
+msgstr ""
+
#: apps/web/src/app/(teams)/t/[teamUrl]/error.tsx:23
msgid "Unknown error"
msgstr "Erreur inconnue"
@@ -3963,7 +4050,8 @@ msgstr "Utiliser le code de secours"
msgid "Use Template"
msgstr "Utiliser le modèle"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:82
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:78
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:45
msgid "User"
msgstr "Utilisateur"
@@ -4011,6 +4099,10 @@ msgstr "Vérifiez votre adresse e-mail pour débloquer toutes les fonctionnalit
msgid "Verify your email to upload documents."
msgstr "Vérifiez votre e-mail pour télécharger des documents."
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:75
+msgid "Version History"
+msgstr ""
+
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-button.tsx:95
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:126
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:135
@@ -4074,6 +4166,7 @@ msgid "View teams"
msgstr "Voir les équipes"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:104
+#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:259
msgid "Viewed"
msgstr "Vu"
From 927a24249c03d3f63d7e4e76a92fc888e32eabd9 Mon Sep 17 00:00:00 2001
From: Lucas Smith
Date: Tue, 5 Nov 2024 20:53:33 +1100
Subject: [PATCH 08/16] chore: add translations (#1444)
---
packages/lib/translations/de/common.po | 107 +++++++++++-----------
packages/lib/translations/de/marketing.po | 3 +-
packages/lib/translations/de/web.po | 73 +++++++--------
packages/lib/translations/es/common.po | 107 +++++++++++-----------
packages/lib/translations/es/marketing.po | 3 +-
packages/lib/translations/es/web.po | 73 +++++++--------
packages/lib/translations/fr/common.po | 107 +++++++++++-----------
packages/lib/translations/fr/marketing.po | 3 +-
packages/lib/translations/fr/web.po | 73 +++++++--------
9 files changed, 279 insertions(+), 270 deletions(-)
diff --git a/packages/lib/translations/de/common.po b/packages/lib/translations/de/common.po
index 2110200da..5b42f4da5 100644
--- a/packages/lib/translations/de/common.po
+++ b/packages/lib/translations/de/common.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: de\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2024-11-05 02:04\n"
+"PO-Revision-Date: 2024-11-05 09:34\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -98,87 +98,87 @@ msgstr "{memberEmail} hat das folgende Team verlassen"
#: packages/lib/utils/document-audit-logs.ts:263
msgid "{prefix} added a field"
-msgstr ""
+msgstr "{prefix} hat ein Feld hinzugefügt"
#: packages/lib/utils/document-audit-logs.ts:275
msgid "{prefix} added a recipient"
-msgstr ""
+msgstr "{prefix} hat einen Empfänger hinzugefügt"
#: packages/lib/utils/document-audit-logs.ts:287
msgid "{prefix} created the document"
-msgstr ""
+msgstr "{prefix} hat das Dokument erstellt"
#: packages/lib/utils/document-audit-logs.ts:291
msgid "{prefix} deleted the document"
-msgstr ""
+msgstr "{prefix} hat das Dokument gelöscht"
#: packages/lib/utils/document-audit-logs.ts:335
msgid "{prefix} moved the document to team"
-msgstr ""
+msgstr "{prefix} hat das Dokument ins Team verschoben"
#: packages/lib/utils/document-audit-logs.ts:319
msgid "{prefix} opened the document"
-msgstr ""
+msgstr "{prefix} hat das Dokument geöffnet"
#: packages/lib/utils/document-audit-logs.ts:267
msgid "{prefix} removed a field"
-msgstr ""
+msgstr "{prefix} hat ein Feld entfernt"
#: packages/lib/utils/document-audit-logs.ts:279
msgid "{prefix} removed a recipient"
-msgstr ""
+msgstr "{prefix} hat einen Empfänger entfernt"
#: packages/lib/utils/document-audit-logs.ts:355
msgid "{prefix} resent an email to {0}"
-msgstr ""
+msgstr "{prefix} hat eine E-Mail an {0} erneut gesendet"
#: packages/lib/utils/document-audit-logs.ts:356
msgid "{prefix} sent an email to {0}"
-msgstr ""
+msgstr "{prefix} hat eine E-Mail an {0} gesendet"
#: packages/lib/utils/document-audit-logs.ts:331
msgid "{prefix} sent the document"
-msgstr ""
+msgstr "{prefix} hat das Dokument gesendet"
#: packages/lib/utils/document-audit-logs.ts:295
msgid "{prefix} signed a field"
-msgstr ""
+msgstr "{prefix} hat ein Feld unterschrieben"
#: packages/lib/utils/document-audit-logs.ts:299
msgid "{prefix} unsigned a field"
-msgstr ""
+msgstr "{prefix} hat ein Feld ungültig gemacht"
#: packages/lib/utils/document-audit-logs.ts:271
msgid "{prefix} updated a field"
-msgstr ""
+msgstr "{prefix} hat ein Feld aktualisiert"
#: packages/lib/utils/document-audit-logs.ts:283
msgid "{prefix} updated a recipient"
-msgstr ""
+msgstr "{prefix} hat einen Empfänger aktualisiert"
#: packages/lib/utils/document-audit-logs.ts:315
msgid "{prefix} updated the document"
-msgstr ""
+msgstr "{prefix} hat das Dokument aktualisiert"
#: packages/lib/utils/document-audit-logs.ts:307
msgid "{prefix} updated the document access auth requirements"
-msgstr ""
+msgstr "{prefix} hat die Anforderungen an die Dokumentenzugriffsautorisierung aktualisiert"
#: packages/lib/utils/document-audit-logs.ts:327
msgid "{prefix} updated the document external ID"
-msgstr ""
+msgstr "{prefix} hat die externe ID des Dokuments aktualisiert"
#: packages/lib/utils/document-audit-logs.ts:311
msgid "{prefix} updated the document signing auth requirements"
-msgstr ""
+msgstr "{prefix} hat die Authentifizierungsanforderungen für die Dokumentenunterzeichnung aktualisiert"
#: packages/lib/utils/document-audit-logs.ts:323
msgid "{prefix} updated the document title"
-msgstr ""
+msgstr "{prefix} hat den Titel des Dokuments aktualisiert"
#: packages/lib/utils/document-audit-logs.ts:303
msgid "{prefix} updated the document visibility"
-msgstr ""
+msgstr "{prefix} hat die Sichtbarkeit des Dokuments aktualisiert"
#: packages/email/templates/document-created-from-direct-template.tsx:55
msgid "{recipientName} {action} a document by using one of your direct links"
@@ -190,23 +190,23 @@ msgstr "Anfrage zur Übertragung des Eigentums von {teamName}"
#: packages/lib/utils/document-audit-logs.ts:343
msgid "{userName} approved the document"
-msgstr ""
+msgstr "{userName} hat das Dokument genehmigt"
#: packages/lib/utils/document-audit-logs.ts:344
msgid "{userName} CC'd the document"
-msgstr ""
+msgstr "{userName} hat das Dokument in CC gesetzt"
#: packages/lib/utils/document-audit-logs.ts:345
msgid "{userName} completed their task"
-msgstr ""
+msgstr "{userName} hat ihre Aufgabe abgeschlossen"
#: packages/lib/utils/document-audit-logs.ts:341
msgid "{userName} signed the document"
-msgstr ""
+msgstr "{userName} hat das Dokument unterschrieben"
#: packages/lib/utils/document-audit-logs.ts:342
msgid "{userName} viewed the document"
-msgstr ""
+msgstr "{userName} hat das Dokument angesehen"
#: packages/ui/primitives/data-table-pagination.tsx:41
msgid "{visibleRows, plural, one {Showing # result.} other {Showing # results.}}"
@@ -256,15 +256,15 @@ msgstr "Ein Dokument wurde von deiner direkten Vorlage erstellt, das erfordert,
#: packages/lib/utils/document-audit-logs.ts:262
msgid "A field was added"
-msgstr ""
+msgstr "Ein Feld wurde hinzugefügt"
#: packages/lib/utils/document-audit-logs.ts:266
msgid "A field was removed"
-msgstr ""
+msgstr "Ein Feld wurde entfernt"
#: packages/lib/utils/document-audit-logs.ts:270
msgid "A field was updated"
-msgstr ""
+msgstr "Ein Feld wurde aktualisiert"
#: packages/lib/jobs/definitions/emails/send-team-member-joined-email.ts:90
msgid "A new member has joined your team"
@@ -272,15 +272,15 @@ msgstr "Ein neues Mitglied ist deinem Team beigetreten"
#: packages/lib/utils/document-audit-logs.ts:274
msgid "A recipient was added"
-msgstr ""
+msgstr "Ein Empfänger wurde hinzugefügt"
#: packages/lib/utils/document-audit-logs.ts:278
msgid "A recipient was removed"
-msgstr ""
+msgstr "Ein Empfänger wurde entfernt"
#: packages/lib/utils/document-audit-logs.ts:282
msgid "A recipient was updated"
-msgstr ""
+msgstr "Ein Empfänger wurde aktualisiert"
#: packages/lib/server-only/team/create-team-email-verification.ts:142
msgid "A request to use your email has been initiated by {teamName} on Documenso"
@@ -581,7 +581,7 @@ msgstr "Dokumentenzugriff"
#: packages/lib/utils/document-audit-logs.ts:306
msgid "Document access auth updated"
-msgstr ""
+msgstr "Die Authentifizierung für den Dokumentenzugriff wurde aktualisiert"
#: packages/lib/server-only/document/delete-document.ts:213
#: packages/lib/server-only/document/super-delete-document.ts:75
@@ -591,11 +591,11 @@ msgstr "Dokument storniert"
#: packages/lib/utils/document-audit-logs.ts:359
#: packages/lib/utils/document-audit-logs.ts:360
msgid "Document completed"
-msgstr ""
+msgstr "Dokument abgeschlossen"
#: packages/lib/utils/document-audit-logs.ts:286
msgid "Document created"
-msgstr ""
+msgstr "Dokument erstellt"
#: packages/email/templates/document-created-from-direct-template.tsx:30
#: packages/lib/server-only/template/create-document-from-direct-template.ts:554
@@ -608,7 +608,7 @@ msgstr "Dokumenterstellung"
#: packages/lib/utils/document-audit-logs.ts:290
msgid "Document deleted"
-msgstr ""
+msgstr "Dokument gelöscht"
#: packages/lib/server-only/document/send-delete-email.ts:58
msgid "Document Deleted!"
@@ -616,35 +616,35 @@ msgstr "Dokument gelöscht!"
#: packages/lib/utils/document-audit-logs.ts:326
msgid "Document external ID updated"
-msgstr ""
+msgstr "Externe ID des Dokuments aktualisiert"
#: packages/lib/utils/document-audit-logs.ts:334
msgid "Document moved to team"
-msgstr ""
+msgstr "Dokument ins Team verschoben"
#: packages/lib/utils/document-audit-logs.ts:318
msgid "Document opened"
-msgstr ""
+msgstr "Dokument geöffnet"
#: packages/lib/utils/document-audit-logs.ts:330
msgid "Document sent"
-msgstr ""
+msgstr "Dokument gesendet"
#: packages/lib/utils/document-audit-logs.ts:310
msgid "Document signing auth updated"
-msgstr ""
+msgstr "Dokument unterzeichnen Authentifizierung aktualisiert"
#: packages/lib/utils/document-audit-logs.ts:322
msgid "Document title updated"
-msgstr ""
+msgstr "Dokumenttitel aktualisiert"
#: packages/lib/utils/document-audit-logs.ts:314
msgid "Document updated"
-msgstr ""
+msgstr "Dokument aktualisiert"
#: packages/lib/utils/document-audit-logs.ts:302
msgid "Document visibility updated"
-msgstr ""
+msgstr "Sichtbarkeit des Dokuments aktualisiert"
#: packages/email/template-components/template-document-completed.tsx:64
#: packages/ui/components/document/document-download-button.tsx:68
@@ -653,7 +653,7 @@ msgstr "Herunterladen"
#: packages/lib/constants/document.ts:13
msgid "Draft"
-msgstr ""
+msgstr "Entwurf"
#: packages/ui/primitives/document-dropzone.tsx:162
msgid "Drag & drop your PDF here."
@@ -689,11 +689,11 @@ msgstr "E-Mail-Optionen"
#: packages/lib/utils/document-audit-logs.ts:353
msgid "Email resent"
-msgstr ""
+msgstr "E-Mail erneut gesendet"
#: packages/lib/utils/document-audit-logs.ts:353
msgid "Email sent"
-msgstr ""
+msgstr "E-Mail gesendet"
#: packages/ui/primitives/document-flow/add-fields.tsx:1123
msgid "Empty field"
@@ -757,11 +757,11 @@ msgstr "Feldplatzhalter"
#: packages/lib/utils/document-audit-logs.ts:294
msgid "Field signed"
-msgstr ""
+msgstr "Feld unterschrieben"
#: packages/lib/utils/document-audit-logs.ts:298
msgid "Field unsigned"
-msgstr ""
+msgstr "Feld nicht unterschrieben"
#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx:56
#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx:38
@@ -975,7 +975,7 @@ msgstr "Passwort aktualisiert!"
#: packages/lib/constants/document.ts:16
msgid "Pending"
-msgstr ""
+msgstr "Ausstehend"
#: packages/email/templates/document-pending.tsx:17
msgid "Pending Document"
@@ -1046,7 +1046,7 @@ msgstr "Erhält Kopie"
#: packages/lib/utils/document-audit-logs.ts:338
msgid "Recipient"
-msgstr ""
+msgstr "Empfänger"
#: packages/ui/components/recipient/recipient-action-auth-select.tsx:39
#: packages/ui/primitives/document-flow/add-settings.tsx:257
@@ -1457,7 +1457,7 @@ msgstr "Willkommen bei Documenso!"
#: packages/lib/utils/document-audit-logs.ts:258
msgid "You"
-msgstr ""
+msgstr "Du"
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx:44
msgid "You are about to send this document to the recipients. Are you sure you want to continue?"
@@ -1520,3 +1520,4 @@ msgstr "Dein Passwort wurde aktualisiert."
#: packages/email/templates/team-delete.tsx:30
msgid "Your team has been deleted"
msgstr "Dein Team wurde gelöscht"
+
diff --git a/packages/lib/translations/de/marketing.po b/packages/lib/translations/de/marketing.po
index 1519ee16f..10a413829 100644
--- a/packages/lib/translations/de/marketing.po
+++ b/packages/lib/translations/de/marketing.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: de\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2024-11-05 02:04\n"
+"PO-Revision-Date: 2024-11-05 09:34\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -602,3 +602,4 @@ msgstr "Sie können Documenso kostenlos selbst hosten oder unsere sofort einsatz
#: apps/marketing/src/components/(marketing)/carousel.tsx:272
msgid "Your browser does not support the video tag."
msgstr "Ihr Browser unterstützt das Video-Tag nicht."
+
diff --git a/packages/lib/translations/de/web.po b/packages/lib/translations/de/web.po
index 38606615e..18fc7a2be 100644
--- a/packages/lib/translations/de/web.po
+++ b/packages/lib/translations/de/web.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: de\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2024-11-05 02:04\n"
+"PO-Revision-Date: 2024-11-05 09:34\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -222,7 +222,7 @@ msgstr "Team-Einladung akzeptiert"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:128
msgid "Account Authentication"
-msgstr ""
+msgstr "Kontowauthentifizierung"
#: apps/web/src/app/(dashboard)/admin/users/[id]/delete-user-dialog.tsx:51
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:48
@@ -231,7 +231,7 @@ msgstr "Konto gelöscht"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:119
msgid "Account Re-Authentication"
-msgstr ""
+msgstr "Kontowiederauthentifizierung"
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:139
msgid "Acknowledgment"
@@ -583,11 +583,11 @@ msgstr "Alle Zahlungsmethoden, die mit diesem Team verbunden sind, bleiben diese
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:225
msgid "Any Source"
-msgstr ""
+msgstr "Jede Quelle"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:205
msgid "Any Status"
-msgstr ""
+msgstr "Jeder Status"
#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:22
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:42
@@ -650,7 +650,7 @@ msgstr "Audit-Protokoll"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:198
msgid "Authentication Level"
-msgstr ""
+msgstr "Authentifizierungsstufe"
#: apps/web/src/app/(recipient)/d/[token]/signing-auth-page.tsx:41
#: apps/web/src/app/(signing)/sign/[token]/signing-auth-page.tsx:52
@@ -1218,7 +1218,7 @@ msgstr "Konto wird gelöscht..."
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:178
msgid "Details"
-msgstr ""
+msgstr "Einzelheiten"
#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:75
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:234
@@ -1238,7 +1238,7 @@ msgstr "Direkter Link"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:160
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:231
msgid "Direct Link"
-msgstr ""
+msgstr "Direkter Link"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-badge.tsx:46
msgid "direct link disabled"
@@ -1338,11 +1338,11 @@ msgstr "Dokument erstellt"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:129
msgid "Document created by <0>{0}0>"
-msgstr ""
+msgstr "Dokument erstellt von <0>{0}0>"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:134
msgid "Document created using a <0>direct link0>"
-msgstr ""
+msgstr "Dokument erstellt mit einem <0>direkten Link0>"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/super-delete-document-dialog.tsx:51
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view.tsx:173
@@ -1454,7 +1454,7 @@ msgstr "Dokumente"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view.tsx:195
msgid "Documents created from template"
-msgstr ""
+msgstr "Dokumente erstellt aus Vorlage"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:113
msgid "Documents Received"
@@ -1527,7 +1527,7 @@ msgstr "Bearbeiten"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view.tsx:115
msgid "Edit Template"
-msgstr ""
+msgstr "Vorlage bearbeiten"
#: apps/web/src/app/(dashboard)/settings/webhooks/[id]/page.tsx:94
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/[id]/page.tsx:100
@@ -1620,7 +1620,7 @@ msgstr "Aktiviert"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:87
msgid "Enclosed Document"
-msgstr ""
+msgstr "Beigefügte Dokument"
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:38
msgid "Ends On"
@@ -1808,7 +1808,7 @@ msgstr "Zusätzliche Informationen ausblenden"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:43
msgid "I am the owner of this document"
-msgstr ""
+msgstr "Ich bin der Besitzer dieses Dokuments"
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:186
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:173
@@ -1917,7 +1917,7 @@ msgstr "Rechnung"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:47
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:227
msgid "IP Address"
-msgstr ""
+msgstr "IP-Adresse"
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:118
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."
@@ -1970,7 +1970,7 @@ msgstr "Zuletzt aktualisiert"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:121
msgid "Last Updated"
-msgstr ""
+msgstr "Zuletzt aktualisiert"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:52
msgid "Last updated at"
@@ -2053,7 +2053,7 @@ msgstr "Verwalten Sie alle Teams, mit denen Sie derzeit verbunden sind."
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view.tsx:159
msgid "Manage and view template"
-msgstr ""
+msgstr "Vorlage verwalten und anzeigen"
#: apps/web/src/components/templates/manage-public-template-dialog.tsx:341
msgid "Manage details for this public template"
@@ -2242,7 +2242,7 @@ msgstr "Keine aktuellen Aktivitäten"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:103
msgid "No recent documents"
-msgstr ""
+msgstr "Keine aktuellen Dokumente"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:55
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recipients.tsx:49
@@ -2382,7 +2382,7 @@ msgstr "Passkey-Name"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:121
msgid "Passkey Re-Authentication"
-msgstr ""
+msgstr "Passwortwiederauthentifizierung"
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:106
#: apps/web/src/app/(dashboard)/settings/security/passkeys/page.tsx:32
@@ -2621,7 +2621,7 @@ msgstr "Bereit"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:281
msgid "Reason"
-msgstr ""
+msgstr "Grund"
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-dialog.tsx:62
msgid "Reauthentication is required to sign this field"
@@ -2634,7 +2634,7 @@ msgstr "Aktuelle Aktivitäten"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:47
msgid "Recent documents"
-msgstr ""
+msgstr "Neueste Dokumente"
#: apps/web/src/app/(dashboard)/documents/data-table.tsx:69
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:120
@@ -3033,7 +3033,7 @@ msgstr "Unterschrift"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:220
msgid "Signature ID"
-msgstr ""
+msgstr "Signatur-ID"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:123
msgid "Signatures Collected"
@@ -3051,15 +3051,15 @@ msgstr "Unterzeichnet"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:176
msgid "Signer Events"
-msgstr ""
+msgstr "Signer-Ereignisse"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:168
msgid "Signing Certificate"
-msgstr ""
+msgstr "Unterzeichnungszertifikat"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:303
msgid "Signing certificate provided by"
-msgstr ""
+msgstr "Unterzeichnungszertifikat bereitgestellt von"
#: apps/web/src/components/forms/signin.tsx:383
#: apps/web/src/components/forms/signin.tsx:510
@@ -3160,7 +3160,7 @@ msgstr "Entschuldigung, wir konnten das Zertifikat nicht herunterladen. Bitte ve
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:138
msgid "Source"
-msgstr ""
+msgstr "Quelle"
#: apps/web/src/app/(dashboard)/admin/nav.tsx:37
msgid "Stats"
@@ -3595,11 +3595,11 @@ msgstr "Dieses Dokument ist momentan ein Entwurf und wurde nicht gesendet"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:152
msgid "This document was created by you or a team member using the template above."
-msgstr ""
+msgstr "Dieses Dokument wurde von Ihnen oder einem Teammitglied unter Verwendung der oben genannten Vorlage erstellt."
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:164
msgid "This document was created using a direct link."
-msgstr ""
+msgstr "Dieses Dokument wurde mit einem direkten Link erstellt."
#: apps/web/src/components/(teams)/dialogs/add-team-email-dialog.tsx:93
msgid "This email is already being used by another team."
@@ -3669,7 +3669,7 @@ msgstr "Zeitzone"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:131
msgid "Time Zone"
-msgstr ""
+msgstr "Zeitzone"
#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:67
#: apps/web/src/app/(dashboard)/documents/data-table.tsx:60
@@ -3821,7 +3821,7 @@ msgstr "Die Zwei-Faktor-Authentifizierung wurde für Ihr Konto deaktiviert. Sie
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:120
msgid "Two-Factor Re-Authentication"
-msgstr ""
+msgstr "Zwei-Faktor-Wiederauthentifizierung"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:73
#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:67
@@ -3883,7 +3883,7 @@ msgstr "Kann den Dokumentverlauf nicht laden"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:62
msgid "Unable to load documents"
-msgstr ""
+msgstr "Dokumente können nicht geladen werden"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:111
msgid "Unable to load your public profile templates at this time"
@@ -3933,7 +3933,7 @@ msgstr "Unvollendet"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:265
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:276
msgid "Unknown"
-msgstr ""
+msgstr "Unbekannt"
#: apps/web/src/app/(teams)/t/[teamUrl]/error.tsx:23
msgid "Unknown error"
@@ -4034,7 +4034,7 @@ msgstr "Die hochgeladene Datei ist kein zulässiger Dateityp"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view.tsx:170
msgid "Use"
-msgstr ""
+msgstr "Verwenden"
#: apps/web/src/components/forms/2fa/disable-authenticator-app-dialog.tsx:187
#: apps/web/src/components/forms/signin.tsx:505
@@ -4101,7 +4101,7 @@ msgstr "Überprüfen Sie Ihre E-Mail, um Dokumente hochzuladen."
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:75
msgid "Version History"
-msgstr ""
+msgstr "Versionsverlauf"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-button.tsx:95
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:126
@@ -4126,7 +4126,7 @@ msgstr "Sehen Sie sich alle aktuellen Sicherheitsaktivitäten in Ihrem Konto an.
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:157
msgid "View all related documents"
-msgstr ""
+msgstr "Alle verwandten Dokumente anzeigen"
#: apps/web/src/app/(dashboard)/settings/security/activity/page.tsx:26
msgid "View all security activity related to your account."
@@ -4150,7 +4150,7 @@ msgstr "Einladungen ansehen"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:95
msgid "View more"
-msgstr ""
+msgstr "Mehr anzeigen"
#: apps/web/src/app/(signing)/sign/[token]/complete/document-preview-button.tsx:34
msgid "View Original Document"
@@ -4816,3 +4816,4 @@ msgstr "Ihr Token wurde erfolgreich erstellt! Stellen Sie sicher, dass Sie es ko
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:86
msgid "Your tokens will be shown here once you create them."
msgstr "Ihre Tokens werden hier angezeigt, sobald Sie sie erstellt haben."
+
diff --git a/packages/lib/translations/es/common.po b/packages/lib/translations/es/common.po
index 8bd53f2fe..626268e89 100644
--- a/packages/lib/translations/es/common.po
+++ b/packages/lib/translations/es/common.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: es\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2024-11-05 02:04\n"
+"PO-Revision-Date: 2024-11-05 09:34\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -98,87 +98,87 @@ msgstr "{memberEmail} dejó el siguiente equipo"
#: packages/lib/utils/document-audit-logs.ts:263
msgid "{prefix} added a field"
-msgstr ""
+msgstr "{prefix} agregó un campo"
#: packages/lib/utils/document-audit-logs.ts:275
msgid "{prefix} added a recipient"
-msgstr ""
+msgstr "{prefix} agregó un destinatario"
#: packages/lib/utils/document-audit-logs.ts:287
msgid "{prefix} created the document"
-msgstr ""
+msgstr "{prefix} creó el documento"
#: packages/lib/utils/document-audit-logs.ts:291
msgid "{prefix} deleted the document"
-msgstr ""
+msgstr "{prefix} eliminó el documento"
#: packages/lib/utils/document-audit-logs.ts:335
msgid "{prefix} moved the document to team"
-msgstr ""
+msgstr "{prefix} movió el documento al equipo"
#: packages/lib/utils/document-audit-logs.ts:319
msgid "{prefix} opened the document"
-msgstr ""
+msgstr "{prefix} abrió el documento"
#: packages/lib/utils/document-audit-logs.ts:267
msgid "{prefix} removed a field"
-msgstr ""
+msgstr "{prefix} eliminó un campo"
#: packages/lib/utils/document-audit-logs.ts:279
msgid "{prefix} removed a recipient"
-msgstr ""
+msgstr "{prefix} eliminó un destinatario"
#: packages/lib/utils/document-audit-logs.ts:355
msgid "{prefix} resent an email to {0}"
-msgstr ""
+msgstr "{prefix} reenviaron un correo electrónico a {0}"
#: packages/lib/utils/document-audit-logs.ts:356
msgid "{prefix} sent an email to {0}"
-msgstr ""
+msgstr "{prefix} envió un correo electrónico a {0}"
#: packages/lib/utils/document-audit-logs.ts:331
msgid "{prefix} sent the document"
-msgstr ""
+msgstr "{prefix} envió el documento"
#: packages/lib/utils/document-audit-logs.ts:295
msgid "{prefix} signed a field"
-msgstr ""
+msgstr "{prefix} firmó un campo"
#: packages/lib/utils/document-audit-logs.ts:299
msgid "{prefix} unsigned a field"
-msgstr ""
+msgstr "{prefix} no firmó un campo"
#: packages/lib/utils/document-audit-logs.ts:271
msgid "{prefix} updated a field"
-msgstr ""
+msgstr "{prefix} actualizó un campo"
#: packages/lib/utils/document-audit-logs.ts:283
msgid "{prefix} updated a recipient"
-msgstr ""
+msgstr "{prefix} actualizó un destinatario"
#: packages/lib/utils/document-audit-logs.ts:315
msgid "{prefix} updated the document"
-msgstr ""
+msgstr "{prefix} actualizó el documento"
#: packages/lib/utils/document-audit-logs.ts:307
msgid "{prefix} updated the document access auth requirements"
-msgstr ""
+msgstr "{prefix} actualizó los requisitos de autorización de acceso al documento"
#: packages/lib/utils/document-audit-logs.ts:327
msgid "{prefix} updated the document external ID"
-msgstr ""
+msgstr "{prefix} actualizó el ID externo del documento"
#: packages/lib/utils/document-audit-logs.ts:311
msgid "{prefix} updated the document signing auth requirements"
-msgstr ""
+msgstr "{prefix} actualizó los requisitos de autenticación para la firma del documento"
#: packages/lib/utils/document-audit-logs.ts:323
msgid "{prefix} updated the document title"
-msgstr ""
+msgstr "{prefix} actualizó el título del documento"
#: packages/lib/utils/document-audit-logs.ts:303
msgid "{prefix} updated the document visibility"
-msgstr ""
+msgstr "{prefix} actualizó la visibilidad del documento"
#: packages/email/templates/document-created-from-direct-template.tsx:55
msgid "{recipientName} {action} a document by using one of your direct links"
@@ -190,23 +190,23 @@ msgstr "solicitud de transferencia de propiedad de {teamName}"
#: packages/lib/utils/document-audit-logs.ts:343
msgid "{userName} approved the document"
-msgstr ""
+msgstr "{userName} aprobó el documento"
#: packages/lib/utils/document-audit-logs.ts:344
msgid "{userName} CC'd the document"
-msgstr ""
+msgstr "{userName} envió una copia del documento"
#: packages/lib/utils/document-audit-logs.ts:345
msgid "{userName} completed their task"
-msgstr ""
+msgstr "{userName} completó su tarea"
#: packages/lib/utils/document-audit-logs.ts:341
msgid "{userName} signed the document"
-msgstr ""
+msgstr "{userName} firmó el documento"
#: packages/lib/utils/document-audit-logs.ts:342
msgid "{userName} viewed the document"
-msgstr ""
+msgstr "{userName} vio el documento"
#: packages/ui/primitives/data-table-pagination.tsx:41
msgid "{visibleRows, plural, one {Showing # result.} other {Showing # results.}}"
@@ -256,15 +256,15 @@ msgstr "Se creó un documento a partir de tu plantilla directa que requiere que
#: packages/lib/utils/document-audit-logs.ts:262
msgid "A field was added"
-msgstr ""
+msgstr "Se añadió un campo"
#: packages/lib/utils/document-audit-logs.ts:266
msgid "A field was removed"
-msgstr ""
+msgstr "Se eliminó un campo"
#: packages/lib/utils/document-audit-logs.ts:270
msgid "A field was updated"
-msgstr ""
+msgstr "Se actualizó un campo"
#: packages/lib/jobs/definitions/emails/send-team-member-joined-email.ts:90
msgid "A new member has joined your team"
@@ -272,15 +272,15 @@ msgstr "Un nuevo miembro se ha unido a tu equipo"
#: packages/lib/utils/document-audit-logs.ts:274
msgid "A recipient was added"
-msgstr ""
+msgstr "Se añadió un destinatario"
#: packages/lib/utils/document-audit-logs.ts:278
msgid "A recipient was removed"
-msgstr ""
+msgstr "Se eliminó un destinatario"
#: packages/lib/utils/document-audit-logs.ts:282
msgid "A recipient was updated"
-msgstr ""
+msgstr "Se actualizó un destinatario"
#: packages/lib/server-only/team/create-team-email-verification.ts:142
msgid "A request to use your email has been initiated by {teamName} on Documenso"
@@ -581,7 +581,7 @@ msgstr "Acceso al documento"
#: packages/lib/utils/document-audit-logs.ts:306
msgid "Document access auth updated"
-msgstr ""
+msgstr "Se actualizó la autenticación de acceso al documento"
#: packages/lib/server-only/document/delete-document.ts:213
#: packages/lib/server-only/document/super-delete-document.ts:75
@@ -591,11 +591,11 @@ msgstr "Documento cancelado"
#: packages/lib/utils/document-audit-logs.ts:359
#: packages/lib/utils/document-audit-logs.ts:360
msgid "Document completed"
-msgstr ""
+msgstr "Documento completado"
#: packages/lib/utils/document-audit-logs.ts:286
msgid "Document created"
-msgstr ""
+msgstr "Documento creado"
#: packages/email/templates/document-created-from-direct-template.tsx:30
#: packages/lib/server-only/template/create-document-from-direct-template.ts:554
@@ -608,7 +608,7 @@ msgstr "Creación de documento"
#: packages/lib/utils/document-audit-logs.ts:290
msgid "Document deleted"
-msgstr ""
+msgstr "Documento eliminado"
#: packages/lib/server-only/document/send-delete-email.ts:58
msgid "Document Deleted!"
@@ -616,35 +616,35 @@ msgstr "¡Documento eliminado!"
#: packages/lib/utils/document-audit-logs.ts:326
msgid "Document external ID updated"
-msgstr ""
+msgstr "ID externo del documento actualizado"
#: packages/lib/utils/document-audit-logs.ts:334
msgid "Document moved to team"
-msgstr ""
+msgstr "Documento movido al equipo"
#: packages/lib/utils/document-audit-logs.ts:318
msgid "Document opened"
-msgstr ""
+msgstr "Documento abierto"
#: packages/lib/utils/document-audit-logs.ts:330
msgid "Document sent"
-msgstr ""
+msgstr "Documento enviado"
#: packages/lib/utils/document-audit-logs.ts:310
msgid "Document signing auth updated"
-msgstr ""
+msgstr "Se actualizó la autenticación de firma del documento"
#: packages/lib/utils/document-audit-logs.ts:322
msgid "Document title updated"
-msgstr ""
+msgstr "Título del documento actualizado"
#: packages/lib/utils/document-audit-logs.ts:314
msgid "Document updated"
-msgstr ""
+msgstr "Documento actualizado"
#: packages/lib/utils/document-audit-logs.ts:302
msgid "Document visibility updated"
-msgstr ""
+msgstr "Visibilidad del documento actualizada"
#: packages/email/template-components/template-document-completed.tsx:64
#: packages/ui/components/document/document-download-button.tsx:68
@@ -653,7 +653,7 @@ msgstr "Descargar"
#: packages/lib/constants/document.ts:13
msgid "Draft"
-msgstr ""
+msgstr "Borrador"
#: packages/ui/primitives/document-dropzone.tsx:162
msgid "Drag & drop your PDF here."
@@ -689,11 +689,11 @@ msgstr "Opciones de correo electrónico"
#: packages/lib/utils/document-audit-logs.ts:353
msgid "Email resent"
-msgstr ""
+msgstr "Correo electrónico reeenviado"
#: packages/lib/utils/document-audit-logs.ts:353
msgid "Email sent"
-msgstr ""
+msgstr "Correo electrónico enviado"
#: packages/ui/primitives/document-flow/add-fields.tsx:1123
msgid "Empty field"
@@ -757,11 +757,11 @@ msgstr "Marcador de posición de campo"
#: packages/lib/utils/document-audit-logs.ts:294
msgid "Field signed"
-msgstr ""
+msgstr "Campo firmado"
#: packages/lib/utils/document-audit-logs.ts:298
msgid "Field unsigned"
-msgstr ""
+msgstr "Campo no firmado"
#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx:56
#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx:38
@@ -975,7 +975,7 @@ msgstr "¡Contraseña actualizada!"
#: packages/lib/constants/document.ts:16
msgid "Pending"
-msgstr ""
+msgstr "Pendiente"
#: packages/email/templates/document-pending.tsx:17
msgid "Pending Document"
@@ -1046,7 +1046,7 @@ msgstr "Recibe copia"
#: packages/lib/utils/document-audit-logs.ts:338
msgid "Recipient"
-msgstr ""
+msgstr "Destinatario"
#: packages/ui/components/recipient/recipient-action-auth-select.tsx:39
#: packages/ui/primitives/document-flow/add-settings.tsx:257
@@ -1457,7 +1457,7 @@ msgstr "¡Bienvenido a Documenso!"
#: packages/lib/utils/document-audit-logs.ts:258
msgid "You"
-msgstr ""
+msgstr "Tú"
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx:44
msgid "You are about to send this document to the recipients. Are you sure you want to continue?"
@@ -1520,3 +1520,4 @@ msgstr "Tu contraseña ha sido actualizada."
#: packages/email/templates/team-delete.tsx:30
msgid "Your team has been deleted"
msgstr "Tu equipo ha sido eliminado"
+
diff --git a/packages/lib/translations/es/marketing.po b/packages/lib/translations/es/marketing.po
index b27c1e894..802162709 100644
--- a/packages/lib/translations/es/marketing.po
+++ b/packages/lib/translations/es/marketing.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: es\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2024-11-05 02:04\n"
+"PO-Revision-Date: 2024-11-05 09:34\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -602,3 +602,4 @@ msgstr "Puedes autoalojar Documenso de forma gratuita o usar nuestra versión al
#: apps/marketing/src/components/(marketing)/carousel.tsx:272
msgid "Your browser does not support the video tag."
msgstr "Tu navegador no soporta la etiqueta de video."
+
diff --git a/packages/lib/translations/es/web.po b/packages/lib/translations/es/web.po
index 508fcc9b9..997ed36fe 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: 2024-11-05 02:04\n"
+"PO-Revision-Date: 2024-11-05 09:34\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -222,7 +222,7 @@ msgstr "Invitación de equipo aceptada"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:128
msgid "Account Authentication"
-msgstr ""
+msgstr "Autenticación de Cuenta"
#: apps/web/src/app/(dashboard)/admin/users/[id]/delete-user-dialog.tsx:51
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:48
@@ -231,7 +231,7 @@ msgstr "Cuenta eliminada"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:119
msgid "Account Re-Authentication"
-msgstr ""
+msgstr "Re-autenticación de Cuenta"
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:139
msgid "Acknowledgment"
@@ -583,11 +583,11 @@ msgstr "Cualquier método de pago adjunto a este equipo permanecerá adjunto a e
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:225
msgid "Any Source"
-msgstr ""
+msgstr "Cualquier fuente"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:205
msgid "Any Status"
-msgstr ""
+msgstr "Cualquier estado"
#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:22
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:42
@@ -650,7 +650,7 @@ msgstr "Registro de Auditoría"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:198
msgid "Authentication Level"
-msgstr ""
+msgstr "Nivel de Autenticación"
#: apps/web/src/app/(recipient)/d/[token]/signing-auth-page.tsx:41
#: apps/web/src/app/(signing)/sign/[token]/signing-auth-page.tsx:52
@@ -1218,7 +1218,7 @@ msgstr "Eliminando cuenta..."
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:178
msgid "Details"
-msgstr ""
+msgstr "Detalles"
#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:75
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:234
@@ -1238,7 +1238,7 @@ msgstr "Enlace directo"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:160
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:231
msgid "Direct Link"
-msgstr ""
+msgstr "Enlace directo"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-badge.tsx:46
msgid "direct link disabled"
@@ -1338,11 +1338,11 @@ msgstr "Documento creado"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:129
msgid "Document created by <0>{0}0>"
-msgstr ""
+msgstr "Documento creado por <0>{0}0>"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:134
msgid "Document created using a <0>direct link0>"
-msgstr ""
+msgstr "Documento creado usando un <0>enlace directo0>"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/super-delete-document-dialog.tsx:51
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view.tsx:173
@@ -1454,7 +1454,7 @@ msgstr "Documentos"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view.tsx:195
msgid "Documents created from template"
-msgstr ""
+msgstr "Documentos creados a partir de la plantilla"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:113
msgid "Documents Received"
@@ -1527,7 +1527,7 @@ msgstr "Editar"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view.tsx:115
msgid "Edit Template"
-msgstr ""
+msgstr "Editar plantilla"
#: apps/web/src/app/(dashboard)/settings/webhooks/[id]/page.tsx:94
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/[id]/page.tsx:100
@@ -1620,7 +1620,7 @@ msgstr "Habilitado"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:87
msgid "Enclosed Document"
-msgstr ""
+msgstr "Documento Adjunto"
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:38
msgid "Ends On"
@@ -1808,7 +1808,7 @@ msgstr "Ocultar información adicional"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:43
msgid "I am the owner of this document"
-msgstr ""
+msgstr "Soy el propietario de este documento"
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:186
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:173
@@ -1917,7 +1917,7 @@ msgstr "Factura"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:47
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:227
msgid "IP Address"
-msgstr ""
+msgstr "Dirección IP"
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:118
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."
@@ -1970,7 +1970,7 @@ msgstr "Última actualización"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:121
msgid "Last Updated"
-msgstr ""
+msgstr "Última Actualización"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:52
msgid "Last updated at"
@@ -2053,7 +2053,7 @@ msgstr "Gestionar todos los equipos con los que estás asociado actualmente."
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view.tsx:159
msgid "Manage and view template"
-msgstr ""
+msgstr "Gestionar y ver plantilla"
#: apps/web/src/components/templates/manage-public-template-dialog.tsx:341
msgid "Manage details for this public template"
@@ -2242,7 +2242,7 @@ msgstr "No hay actividad reciente"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:103
msgid "No recent documents"
-msgstr ""
+msgstr "No hay documentos recientes"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:55
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recipients.tsx:49
@@ -2382,7 +2382,7 @@ msgstr "Nombre de clave de acceso"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:121
msgid "Passkey Re-Authentication"
-msgstr ""
+msgstr "Re-autenticación de Passkey"
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:106
#: apps/web/src/app/(dashboard)/settings/security/passkeys/page.tsx:32
@@ -2621,7 +2621,7 @@ msgstr "Listo"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:281
msgid "Reason"
-msgstr ""
+msgstr "Razón"
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-dialog.tsx:62
msgid "Reauthentication is required to sign this field"
@@ -2634,7 +2634,7 @@ msgstr "Actividad reciente"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:47
msgid "Recent documents"
-msgstr ""
+msgstr "Documentos recientes"
#: apps/web/src/app/(dashboard)/documents/data-table.tsx:69
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:120
@@ -3033,7 +3033,7 @@ msgstr "Firma"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:220
msgid "Signature ID"
-msgstr ""
+msgstr "ID de Firma"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:123
msgid "Signatures Collected"
@@ -3051,15 +3051,15 @@ msgstr "Firmado"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:176
msgid "Signer Events"
-msgstr ""
+msgstr "Eventos del Firmante"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:168
msgid "Signing Certificate"
-msgstr ""
+msgstr "Certificado de Firma"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:303
msgid "Signing certificate provided by"
-msgstr ""
+msgstr "Certificado de firma proporcionado por"
#: apps/web/src/components/forms/signin.tsx:383
#: apps/web/src/components/forms/signin.tsx:510
@@ -3160,7 +3160,7 @@ msgstr "Lo sentimos, no pudimos descargar el certificado. Por favor, intenta de
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:138
msgid "Source"
-msgstr ""
+msgstr "Fuente"
#: apps/web/src/app/(dashboard)/admin/nav.tsx:37
msgid "Stats"
@@ -3595,11 +3595,11 @@ msgstr "Este documento es actualmente un borrador y no ha sido enviado"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:152
msgid "This document was created by you or a team member using the template above."
-msgstr ""
+msgstr "Este documento fue creado por ti o un miembro del equipo usando la plantilla anterior."
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:164
msgid "This document was created using a direct link."
-msgstr ""
+msgstr "Este documento fue creado usando un enlace directo."
#: apps/web/src/components/(teams)/dialogs/add-team-email-dialog.tsx:93
msgid "This email is already being used by another team."
@@ -3669,7 +3669,7 @@ msgstr "Zona horaria"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:131
msgid "Time Zone"
-msgstr ""
+msgstr "Zona Horaria"
#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:67
#: apps/web/src/app/(dashboard)/documents/data-table.tsx:60
@@ -3821,7 +3821,7 @@ msgstr "La autenticación de dos factores ha sido desactivada para tu cuenta. Ya
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:120
msgid "Two-Factor Re-Authentication"
-msgstr ""
+msgstr "Re-autenticación de Doble Factor"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:73
#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:67
@@ -3883,7 +3883,7 @@ msgstr "No se pudo cargar el historial del documento"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:62
msgid "Unable to load documents"
-msgstr ""
+msgstr "No se pueden cargar documentos"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:111
msgid "Unable to load your public profile templates at this time"
@@ -3933,7 +3933,7 @@ msgstr "Incompleto"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:265
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:276
msgid "Unknown"
-msgstr ""
+msgstr "Desconocido"
#: apps/web/src/app/(teams)/t/[teamUrl]/error.tsx:23
msgid "Unknown error"
@@ -4034,7 +4034,7 @@ msgstr "El archivo subido no es un tipo de archivo permitido"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view.tsx:170
msgid "Use"
-msgstr ""
+msgstr "Usar"
#: apps/web/src/components/forms/2fa/disable-authenticator-app-dialog.tsx:187
#: apps/web/src/components/forms/signin.tsx:505
@@ -4101,7 +4101,7 @@ msgstr "Verifica tu correo electrónico para subir documentos."
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:75
msgid "Version History"
-msgstr ""
+msgstr "Historial de Versiones"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-button.tsx:95
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:126
@@ -4126,7 +4126,7 @@ msgstr "Ver toda la actividad de seguridad reciente relacionada con tu cuenta."
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:157
msgid "View all related documents"
-msgstr ""
+msgstr "Ver todos los documentos relacionados"
#: apps/web/src/app/(dashboard)/settings/security/activity/page.tsx:26
msgid "View all security activity related to your account."
@@ -4150,7 +4150,7 @@ msgstr "Ver invitaciones"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:95
msgid "View more"
-msgstr ""
+msgstr "Ver más"
#: apps/web/src/app/(signing)/sign/[token]/complete/document-preview-button.tsx:34
msgid "View Original Document"
@@ -4816,3 +4816,4 @@ msgstr "¡Tu token se creó con éxito! ¡Asegúrate de copiarlo porque no podr
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:86
msgid "Your tokens will be shown here once you create them."
msgstr "Tus tokens se mostrarán aquí una vez que los crees."
+
diff --git a/packages/lib/translations/fr/common.po b/packages/lib/translations/fr/common.po
index fc7bea9a6..63de23cc8 100644
--- a/packages/lib/translations/fr/common.po
+++ b/packages/lib/translations/fr/common.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: fr\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2024-11-05 02:04\n"
+"PO-Revision-Date: 2024-11-05 09:34\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -98,87 +98,87 @@ msgstr "{memberEmail} a quitté l'équipe suivante"
#: packages/lib/utils/document-audit-logs.ts:263
msgid "{prefix} added a field"
-msgstr ""
+msgstr "{prefix} a ajouté un champ"
#: packages/lib/utils/document-audit-logs.ts:275
msgid "{prefix} added a recipient"
-msgstr ""
+msgstr "{prefix} a ajouté un destinataire"
#: packages/lib/utils/document-audit-logs.ts:287
msgid "{prefix} created the document"
-msgstr ""
+msgstr "{prefix} a créé le document"
#: packages/lib/utils/document-audit-logs.ts:291
msgid "{prefix} deleted the document"
-msgstr ""
+msgstr "{prefix} a supprimé le document"
#: packages/lib/utils/document-audit-logs.ts:335
msgid "{prefix} moved the document to team"
-msgstr ""
+msgstr "{prefix} a déplacé le document vers l'équipe"
#: packages/lib/utils/document-audit-logs.ts:319
msgid "{prefix} opened the document"
-msgstr ""
+msgstr "{prefix} a ouvert le document"
#: packages/lib/utils/document-audit-logs.ts:267
msgid "{prefix} removed a field"
-msgstr ""
+msgstr "{prefix} a supprimé un champ"
#: packages/lib/utils/document-audit-logs.ts:279
msgid "{prefix} removed a recipient"
-msgstr ""
+msgstr "{prefix} a supprimé un destinataire"
#: packages/lib/utils/document-audit-logs.ts:355
msgid "{prefix} resent an email to {0}"
-msgstr ""
+msgstr "{prefix} a renvoyé un e-mail à {0}"
#: packages/lib/utils/document-audit-logs.ts:356
msgid "{prefix} sent an email to {0}"
-msgstr ""
+msgstr "{prefix} a envoyé un email à {0}"
#: packages/lib/utils/document-audit-logs.ts:331
msgid "{prefix} sent the document"
-msgstr ""
+msgstr "{prefix} a envoyé le document"
#: packages/lib/utils/document-audit-logs.ts:295
msgid "{prefix} signed a field"
-msgstr ""
+msgstr "{prefix} a signé un champ"
#: packages/lib/utils/document-audit-logs.ts:299
msgid "{prefix} unsigned a field"
-msgstr ""
+msgstr "{prefix} n'a pas signé un champ"
#: packages/lib/utils/document-audit-logs.ts:271
msgid "{prefix} updated a field"
-msgstr ""
+msgstr "{prefix} a mis à jour un champ"
#: packages/lib/utils/document-audit-logs.ts:283
msgid "{prefix} updated a recipient"
-msgstr ""
+msgstr "{prefix} a mis à jour un destinataire"
#: packages/lib/utils/document-audit-logs.ts:315
msgid "{prefix} updated the document"
-msgstr ""
+msgstr "{prefix} a mis à jour le document"
#: packages/lib/utils/document-audit-logs.ts:307
msgid "{prefix} updated the document access auth requirements"
-msgstr ""
+msgstr "{prefix} a mis à jour les exigences d'authentification d'accès au document"
#: packages/lib/utils/document-audit-logs.ts:327
msgid "{prefix} updated the document external ID"
-msgstr ""
+msgstr "{prefix} a mis à jour l'ID externe du document"
#: packages/lib/utils/document-audit-logs.ts:311
msgid "{prefix} updated the document signing auth requirements"
-msgstr ""
+msgstr "{prefix} a mis à jour les exigences d'authentification pour la signature du document"
#: packages/lib/utils/document-audit-logs.ts:323
msgid "{prefix} updated the document title"
-msgstr ""
+msgstr "{prefix} a mis à jour le titre du document"
#: packages/lib/utils/document-audit-logs.ts:303
msgid "{prefix} updated the document visibility"
-msgstr ""
+msgstr "{prefix} a mis à jour la visibilité du document"
#: packages/email/templates/document-created-from-direct-template.tsx:55
msgid "{recipientName} {action} a document by using one of your direct links"
@@ -190,23 +190,23 @@ msgstr "Demande de transfert de propriété de {teamName}"
#: packages/lib/utils/document-audit-logs.ts:343
msgid "{userName} approved the document"
-msgstr ""
+msgstr "{userName} a approuvé le document"
#: packages/lib/utils/document-audit-logs.ts:344
msgid "{userName} CC'd the document"
-msgstr ""
+msgstr "{userName} a mis en copie le document"
#: packages/lib/utils/document-audit-logs.ts:345
msgid "{userName} completed their task"
-msgstr ""
+msgstr "{userName} a complété sa tâche"
#: packages/lib/utils/document-audit-logs.ts:341
msgid "{userName} signed the document"
-msgstr ""
+msgstr "{userName} a signé le document"
#: packages/lib/utils/document-audit-logs.ts:342
msgid "{userName} viewed the document"
-msgstr ""
+msgstr "{userName} a consulté le document"
#: packages/ui/primitives/data-table-pagination.tsx:41
msgid "{visibleRows, plural, one {Showing # result.} other {Showing # results.}}"
@@ -256,15 +256,15 @@ msgstr "Un document a été créé par votre modèle direct qui nécessite que v
#: packages/lib/utils/document-audit-logs.ts:262
msgid "A field was added"
-msgstr ""
+msgstr "Un champ a été ajouté"
#: packages/lib/utils/document-audit-logs.ts:266
msgid "A field was removed"
-msgstr ""
+msgstr "Un champ a été supprimé"
#: packages/lib/utils/document-audit-logs.ts:270
msgid "A field was updated"
-msgstr ""
+msgstr "Un champ a été mis à jour"
#: packages/lib/jobs/definitions/emails/send-team-member-joined-email.ts:90
msgid "A new member has joined your team"
@@ -272,15 +272,15 @@ msgstr "Un nouveau membre a rejoint votre équipe"
#: packages/lib/utils/document-audit-logs.ts:274
msgid "A recipient was added"
-msgstr ""
+msgstr "Un destinataire a été ajouté"
#: packages/lib/utils/document-audit-logs.ts:278
msgid "A recipient was removed"
-msgstr ""
+msgstr "Un destinataire a été supprimé"
#: packages/lib/utils/document-audit-logs.ts:282
msgid "A recipient was updated"
-msgstr ""
+msgstr "Un destinataire a été mis à jour"
#: packages/lib/server-only/team/create-team-email-verification.ts:142
msgid "A request to use your email has been initiated by {teamName} on Documenso"
@@ -581,7 +581,7 @@ msgstr "Accès au document"
#: packages/lib/utils/document-audit-logs.ts:306
msgid "Document access auth updated"
-msgstr ""
+msgstr "L'authentification d'accès au document a été mise à jour"
#: packages/lib/server-only/document/delete-document.ts:213
#: packages/lib/server-only/document/super-delete-document.ts:75
@@ -591,11 +591,11 @@ msgstr "Document Annulé"
#: packages/lib/utils/document-audit-logs.ts:359
#: packages/lib/utils/document-audit-logs.ts:360
msgid "Document completed"
-msgstr ""
+msgstr "Document terminé"
#: packages/lib/utils/document-audit-logs.ts:286
msgid "Document created"
-msgstr ""
+msgstr "Document créé"
#: packages/email/templates/document-created-from-direct-template.tsx:30
#: packages/lib/server-only/template/create-document-from-direct-template.ts:554
@@ -608,7 +608,7 @@ msgstr "Création de document"
#: packages/lib/utils/document-audit-logs.ts:290
msgid "Document deleted"
-msgstr ""
+msgstr "Document supprimé"
#: packages/lib/server-only/document/send-delete-email.ts:58
msgid "Document Deleted!"
@@ -616,35 +616,35 @@ msgstr "Document Supprimé !"
#: packages/lib/utils/document-audit-logs.ts:326
msgid "Document external ID updated"
-msgstr ""
+msgstr "ID externe du document mis à jour"
#: packages/lib/utils/document-audit-logs.ts:334
msgid "Document moved to team"
-msgstr ""
+msgstr "Document déplacé vers l'équipe"
#: packages/lib/utils/document-audit-logs.ts:318
msgid "Document opened"
-msgstr ""
+msgstr "Document ouvert"
#: packages/lib/utils/document-audit-logs.ts:330
msgid "Document sent"
-msgstr ""
+msgstr "Document envoyé"
#: packages/lib/utils/document-audit-logs.ts:310
msgid "Document signing auth updated"
-msgstr ""
+msgstr "Authentification de signature de document mise à jour"
#: packages/lib/utils/document-audit-logs.ts:322
msgid "Document title updated"
-msgstr ""
+msgstr "Titre du document mis à jour"
#: packages/lib/utils/document-audit-logs.ts:314
msgid "Document updated"
-msgstr ""
+msgstr "Document mis à jour"
#: packages/lib/utils/document-audit-logs.ts:302
msgid "Document visibility updated"
-msgstr ""
+msgstr "Visibilité du document mise à jour"
#: packages/email/template-components/template-document-completed.tsx:64
#: packages/ui/components/document/document-download-button.tsx:68
@@ -653,7 +653,7 @@ msgstr "Télécharger"
#: packages/lib/constants/document.ts:13
msgid "Draft"
-msgstr ""
+msgstr "Brouillon"
#: packages/ui/primitives/document-dropzone.tsx:162
msgid "Drag & drop your PDF here."
@@ -689,11 +689,11 @@ msgstr "Options d'email"
#: packages/lib/utils/document-audit-logs.ts:353
msgid "Email resent"
-msgstr ""
+msgstr "Email renvoyé"
#: packages/lib/utils/document-audit-logs.ts:353
msgid "Email sent"
-msgstr ""
+msgstr "Email envoyé"
#: packages/ui/primitives/document-flow/add-fields.tsx:1123
msgid "Empty field"
@@ -757,11 +757,11 @@ msgstr "Espace réservé du champ"
#: packages/lib/utils/document-audit-logs.ts:294
msgid "Field signed"
-msgstr ""
+msgstr "Champ signé"
#: packages/lib/utils/document-audit-logs.ts:298
msgid "Field unsigned"
-msgstr ""
+msgstr "Champ non signé"
#: packages/ui/primitives/document-flow/field-items-advanced-settings/date-field.tsx:56
#: packages/ui/primitives/document-flow/field-items-advanced-settings/email-field.tsx:38
@@ -975,7 +975,7 @@ msgstr "Mot de passe mis à jour !"
#: packages/lib/constants/document.ts:16
msgid "Pending"
-msgstr ""
+msgstr "En attente"
#: packages/email/templates/document-pending.tsx:17
msgid "Pending Document"
@@ -1046,7 +1046,7 @@ msgstr "Recevoir une copie"
#: packages/lib/utils/document-audit-logs.ts:338
msgid "Recipient"
-msgstr ""
+msgstr "Destinataire"
#: packages/ui/components/recipient/recipient-action-auth-select.tsx:39
#: packages/ui/primitives/document-flow/add-settings.tsx:257
@@ -1457,7 +1457,7 @@ msgstr "Bienvenue sur Documenso !"
#: packages/lib/utils/document-audit-logs.ts:258
msgid "You"
-msgstr ""
+msgstr "Vous"
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx:44
msgid "You are about to send this document to the recipients. Are you sure you want to continue?"
@@ -1520,3 +1520,4 @@ msgstr "Votre mot de passe a été mis à jour."
#: packages/email/templates/team-delete.tsx:30
msgid "Your team has been deleted"
msgstr "Votre équipe a été supprimée"
+
diff --git a/packages/lib/translations/fr/marketing.po b/packages/lib/translations/fr/marketing.po
index 7ca6b7a59..7878bcafc 100644
--- a/packages/lib/translations/fr/marketing.po
+++ b/packages/lib/translations/fr/marketing.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: fr\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2024-11-05 02:04\n"
+"PO-Revision-Date: 2024-11-05 09:34\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -602,3 +602,4 @@ msgstr "Vous pouvez auto-héberger Documenso gratuitement ou utiliser notre vers
#: apps/marketing/src/components/(marketing)/carousel.tsx:272
msgid "Your browser does not support the video tag."
msgstr "Votre navigateur ne prend pas en charge la balise vidéo."
+
diff --git a/packages/lib/translations/fr/web.po b/packages/lib/translations/fr/web.po
index 3bfc275dd..b676e7d6d 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: 2024-11-05 02:04\n"
+"PO-Revision-Date: 2024-11-05 09:34\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -222,7 +222,7 @@ msgstr "Invitation d'équipe acceptée"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:128
msgid "Account Authentication"
-msgstr ""
+msgstr "Authentification de compte"
#: apps/web/src/app/(dashboard)/admin/users/[id]/delete-user-dialog.tsx:51
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:48
@@ -231,7 +231,7 @@ msgstr "Compte supprimé"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:119
msgid "Account Re-Authentication"
-msgstr ""
+msgstr "Ré-authentification de compte"
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:139
msgid "Acknowledgment"
@@ -583,11 +583,11 @@ msgstr "Tous les moyens de paiement associés à cette équipe resteront associ
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:225
msgid "Any Source"
-msgstr ""
+msgstr "Toute source"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:205
msgid "Any Status"
-msgstr ""
+msgstr "Tout statut"
#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:22
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:42
@@ -650,7 +650,7 @@ msgstr "Journal d'audit"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:198
msgid "Authentication Level"
-msgstr ""
+msgstr "Niveau d'authentification"
#: apps/web/src/app/(recipient)/d/[token]/signing-auth-page.tsx:41
#: apps/web/src/app/(signing)/sign/[token]/signing-auth-page.tsx:52
@@ -1218,7 +1218,7 @@ msgstr "Suppression du compte..."
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:178
msgid "Details"
-msgstr ""
+msgstr "Détails"
#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:75
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:234
@@ -1238,7 +1238,7 @@ msgstr "Lien direct"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:160
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:231
msgid "Direct Link"
-msgstr ""
+msgstr "Lien direct"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-badge.tsx:46
msgid "direct link disabled"
@@ -1338,11 +1338,11 @@ msgstr "Document créé"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:129
msgid "Document created by <0>{0}0>"
-msgstr ""
+msgstr "Document créé par <0>{0}0>"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:134
msgid "Document created using a <0>direct link0>"
-msgstr ""
+msgstr "Document créé en utilisant un <0>lien direct0>"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/super-delete-document-dialog.tsx:51
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view.tsx:173
@@ -1454,7 +1454,7 @@ msgstr "Documents"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view.tsx:195
msgid "Documents created from template"
-msgstr ""
+msgstr "Documents créés à partir du modèle"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:113
msgid "Documents Received"
@@ -1527,7 +1527,7 @@ msgstr "Modifier"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view.tsx:115
msgid "Edit Template"
-msgstr ""
+msgstr "Modifier le modèle"
#: apps/web/src/app/(dashboard)/settings/webhooks/[id]/page.tsx:94
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/[id]/page.tsx:100
@@ -1620,7 +1620,7 @@ msgstr "Activé"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:87
msgid "Enclosed Document"
-msgstr ""
+msgstr "Document joint"
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:38
msgid "Ends On"
@@ -1808,7 +1808,7 @@ msgstr "Cacher des informations supplémentaires"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:43
msgid "I am the owner of this document"
-msgstr ""
+msgstr "Je suis le propriétaire de ce document"
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:186
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:173
@@ -1917,7 +1917,7 @@ msgstr "Facture"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx:47
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:227
msgid "IP Address"
-msgstr ""
+msgstr "Adresse IP"
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:118
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."
@@ -1970,7 +1970,7 @@ msgstr "Dernière mise à jour"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:121
msgid "Last Updated"
-msgstr ""
+msgstr "Dernière mise à jour"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:52
msgid "Last updated at"
@@ -2053,7 +2053,7 @@ msgstr "Gérer toutes les équipes avec lesquelles vous êtes actuellement assoc
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view.tsx:159
msgid "Manage and view template"
-msgstr ""
+msgstr "Gérer et afficher le modèle"
#: apps/web/src/components/templates/manage-public-template-dialog.tsx:341
msgid "Manage details for this public template"
@@ -2242,7 +2242,7 @@ msgstr "Aucune activité récente"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:103
msgid "No recent documents"
-msgstr ""
+msgstr "Aucun document récent"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:55
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recipients.tsx:49
@@ -2382,7 +2382,7 @@ msgstr "Nom de la clé d'accès"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:121
msgid "Passkey Re-Authentication"
-msgstr ""
+msgstr "Ré-authentification par clé d'accès"
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:106
#: apps/web/src/app/(dashboard)/settings/security/passkeys/page.tsx:32
@@ -2621,7 +2621,7 @@ msgstr "Prêt"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:281
msgid "Reason"
-msgstr ""
+msgstr "Raison"
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-dialog.tsx:62
msgid "Reauthentication is required to sign this field"
@@ -2634,7 +2634,7 @@ msgstr "Activité récente"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:47
msgid "Recent documents"
-msgstr ""
+msgstr "Documents récents"
#: apps/web/src/app/(dashboard)/documents/data-table.tsx:69
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:120
@@ -3033,7 +3033,7 @@ msgstr "Signature"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:220
msgid "Signature ID"
-msgstr ""
+msgstr "ID de signature"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:123
msgid "Signatures Collected"
@@ -3051,15 +3051,15 @@ msgstr "Signé"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:176
msgid "Signer Events"
-msgstr ""
+msgstr "Événements de signataire"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:168
msgid "Signing Certificate"
-msgstr ""
+msgstr "Certificat de signature"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:303
msgid "Signing certificate provided by"
-msgstr ""
+msgstr "Certificat de signature fourni par"
#: apps/web/src/components/forms/signin.tsx:383
#: apps/web/src/components/forms/signin.tsx:510
@@ -3160,7 +3160,7 @@ msgstr "Désolé, nous n'avons pas pu télécharger le certificat. Veuillez rée
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:138
msgid "Source"
-msgstr ""
+msgstr "Source"
#: apps/web/src/app/(dashboard)/admin/nav.tsx:37
msgid "Stats"
@@ -3595,11 +3595,11 @@ msgstr "Ce document est actuellement un brouillon et n'a pas été envoyé"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:152
msgid "This document was created by you or a team member using the template above."
-msgstr ""
+msgstr "Ce document a été créé par vous ou un membre de l'équipe en utilisant le modèle ci-dessus."
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-documents-table.tsx:164
msgid "This document was created using a direct link."
-msgstr ""
+msgstr "Ce document a été créé en utilisant un lien direct."
#: apps/web/src/components/(teams)/dialogs/add-team-email-dialog.tsx:93
msgid "This email is already being used by another team."
@@ -3669,7 +3669,7 @@ msgstr "Fuseau horaire"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:131
msgid "Time Zone"
-msgstr ""
+msgstr "Fuseau horaire"
#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:67
#: apps/web/src/app/(dashboard)/documents/data-table.tsx:60
@@ -3821,7 +3821,7 @@ msgstr "L'authentification à deux facteurs a été désactivée pour votre comp
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:120
msgid "Two-Factor Re-Authentication"
-msgstr ""
+msgstr "Ré-authentification à deux facteurs"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:73
#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:67
@@ -3883,7 +3883,7 @@ msgstr "Impossible de charger l'historique des documents"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:62
msgid "Unable to load documents"
-msgstr ""
+msgstr "Impossible de charger les documents"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:111
msgid "Unable to load your public profile templates at this time"
@@ -3933,7 +3933,7 @@ msgstr "Non complet"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:265
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:276
msgid "Unknown"
-msgstr ""
+msgstr "Inconnu"
#: apps/web/src/app/(teams)/t/[teamUrl]/error.tsx:23
msgid "Unknown error"
@@ -4034,7 +4034,7 @@ msgstr "Le fichier téléchargé n'est pas un type de fichier autorisé"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view.tsx:170
msgid "Use"
-msgstr ""
+msgstr "Utiliser"
#: apps/web/src/components/forms/2fa/disable-authenticator-app-dialog.tsx:187
#: apps/web/src/components/forms/signin.tsx:505
@@ -4101,7 +4101,7 @@ msgstr "Vérifiez votre e-mail pour télécharger des documents."
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx:75
msgid "Version History"
-msgstr ""
+msgstr "Historique des versions"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-button.tsx:95
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:126
@@ -4126,7 +4126,7 @@ msgstr "Voir toute l'activité de sécurité récente liée à votre compte."
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:157
msgid "View all related documents"
-msgstr ""
+msgstr "Voir tous les documents associés"
#: apps/web/src/app/(dashboard)/settings/security/activity/page.tsx:26
msgid "View all security activity related to your account."
@@ -4150,7 +4150,7 @@ msgstr "Voir les invitations"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:95
msgid "View more"
-msgstr ""
+msgstr "Voir plus"
#: apps/web/src/app/(signing)/sign/[token]/complete/document-preview-button.tsx:34
msgid "View Original Document"
@@ -4816,3 +4816,4 @@ msgstr "Votre jeton a été créé avec succès ! Assurez-vous de le copier car
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:86
msgid "Your tokens will be shown here once you create them."
msgstr "Vos jetons seront affichés ici une fois que vous les aurez créés."
+
From 54c0c6be14cf26e6c1a60864957580b256b92105 Mon Sep 17 00:00:00 2001
From: David Nguyen
Date: Tue, 5 Nov 2024 19:36:36 +0900
Subject: [PATCH 09/16] fix: open page
---
apps/marketing/src/app/(marketing)/open/page.tsx | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/apps/marketing/src/app/(marketing)/open/page.tsx b/apps/marketing/src/app/(marketing)/open/page.tsx
index 035b4de38..367afcd5a 100644
--- a/apps/marketing/src/app/(marketing)/open/page.tsx
+++ b/apps/marketing/src/app/(marketing)/open/page.tsx
@@ -1,6 +1,7 @@
import type { Metadata } from 'next';
import { Trans, msg } from '@lingui/macro';
+import { useLingui } from '@lingui/react';
import { z } from 'zod';
import { setupI18nSSR } from '@documenso/lib/client-only/providers/i18n.server';
@@ -130,9 +131,9 @@ const fetchEarlyAdopters = async () => {
};
export default async function OpenPage() {
- const { i18n } = await setupI18nSSR();
+ await setupI18nSSR();
- const { _ } = i18n;
+ const { _ } = useLingui();
const [
{ forks_count: forksCount, stargazers_count: stargazersCount },
From 51585849554b1445211a29b00e76b133ac891ce9 Mon Sep 17 00:00:00 2001
From: David Nguyen
Date: Tue, 5 Nov 2024 20:10:10 +0900
Subject: [PATCH 10/16] fix: checkout loading button (#1445)
---
.../app/(dashboard)/settings/billing/billing-plans.tsx | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/apps/web/src/app/(dashboard)/settings/billing/billing-plans.tsx b/apps/web/src/app/(dashboard)/settings/billing/billing-plans.tsx
index 6d4b350dd..537a0c97b 100644
--- a/apps/web/src/app/(dashboard)/settings/billing/billing-plans.tsx
+++ b/apps/web/src/app/(dashboard)/settings/billing/billing-plans.tsx
@@ -44,11 +44,11 @@ export const BillingPlans = ({ prices }: BillingPlansProps) => {
const isMounted = useIsMounted();
const [interval, setInterval] = useState('month');
- const [isFetchingCheckoutSession, setIsFetchingCheckoutSession] = useState(false);
+ const [checkoutSessionPriceId, setCheckoutSessionPriceId] = useState(null);
const onSubscribeClick = async (priceId: string) => {
try {
- setIsFetchingCheckoutSession(true);
+ setCheckoutSessionPriceId(priceId);
const url = await createCheckout({ priceId });
@@ -64,7 +64,7 @@ export const BillingPlans = ({ prices }: BillingPlansProps) => {
variant: 'destructive',
});
} finally {
- setIsFetchingCheckoutSession(false);
+ setCheckoutSessionPriceId(null);
}
};
@@ -122,7 +122,8 @@ export const BillingPlans = ({ prices }: BillingPlansProps) => {