diff --git a/apps/marketing/content/changelog.mdx b/apps/marketing/content/changelog.mdx
index 3ca892eff..ec128df6d 100644
--- a/apps/marketing/content/changelog.mdx
+++ b/apps/marketing/content/changelog.mdx
@@ -8,6 +8,59 @@ Check out what's new in the latest version and read our thoughts on it. For more
---
+# Documenso v1.8.0: Team Preferences, Signature Rejection, and Document Distribution
+
+We're excited to announce the release of Documenso v1.8.0! This update brings powerful new features to enhance your document signing process. Here's what's new:
+
+## 馃専 Key New Features
+
+### 1. Team Preferences
+
+Introducing **Team Preferences**, allowing administrators to configure settings and preferences that apply to documents across the entire team. This feature ensures consistency and simplifies management by letting you set default options, permissions, and preferences that automatically apply to all team members.
+
+
+
+### 2. Signature Rejection
+
+Recipients now have the option to **reject signatures**. This feature enhances communication by allowing recipients to decline signing, providing feedback or requesting changes before the document is finalized.
+
+
+
+### 3. Document Distribution Settings
+
+With the new **Document Distribution Settings**, you have greater control over how your documents are shared. Distribute communications via our automated emails and templates or take full control using our API and your own notifications infrastructure.
+
+## 馃敡 Other Improvements
+
+- **Support for Gmail SMTP Service**: Adds support for using Gmail as your SMTP service provider.
+- **Certificate and Email Translations**: Added support for multiple languages in document certificates and emails, enhancing the experience for international users.
+- **Field Movement Fixes**: Resolved issues related to moving fields within documents, improving the document preparation experience.
+- **Docker Environment Update**: Improved Docker setup for smoother deployments and better environment consistency.
+- **Billing Access Improvements**: Users now have uninterrupted access to billing information, simplifying account management.
+- **Support Time Windows for 2FA Tokens**: Enhanced two-factor authentication by supporting time windows in 2FA tokens, improving flexibility.
+
+## 馃挕 Recent Features
+
+Don't forget to take advantage of these powerful features from our recent releases:
+
+- **Signing Order**: Define the sequence in which recipients sign your documents for a structured signing process.
+- **Document Visibility Controls**: Manage who can view your documents and at what stages, offering greater privacy and control.
+- **Embedded Signing Experience**: Integrate the signing process directly into your own applications for a seamless user experience.
+
+**馃憦 Thank You**
+
+As always, we're grateful for the community's contributions and feedback. Your support helps us improve Documenso and deliver a top-notch open-source document signing solution.
+
+We hope you enjoy the new features in Documenso v1.8.0. Happy signing!
+
+---
+
# Documenso v1.7.1: Signing order and document visibility
We're excited to introduce Documenso v1.7.1, bringing you improved control over your document signing process. Here are the key updates:
diff --git a/apps/marketing/package.json b/apps/marketing/package.json
index 127b57a71..b289be59d 100644
--- a/apps/marketing/package.json
+++ b/apps/marketing/package.json
@@ -1,6 +1,6 @@
{
"name": "@documenso/marketing",
- "version": "1.8.0-rc.3",
+ "version": "1.8.1-rc.0",
"private": true,
"license": "AGPL-3.0",
"scripts": {
diff --git a/apps/marketing/public/changelog/v1_8_0/reject-document.mp4 b/apps/marketing/public/changelog/v1_8_0/reject-document.mp4
new file mode 100644
index 000000000..2ebeedc89
Binary files /dev/null and b/apps/marketing/public/changelog/v1_8_0/reject-document.mp4 differ
diff --git a/apps/marketing/public/changelog/v1_8_0/team-global-settings.jpeg b/apps/marketing/public/changelog/v1_8_0/team-global-settings.jpeg
new file mode 100644
index 000000000..ff7d645c4
Binary files /dev/null and b/apps/marketing/public/changelog/v1_8_0/team-global-settings.jpeg differ
diff --git a/apps/web/package.json b/apps/web/package.json
index a53ecc72b..541cf9c0b 100644
--- a/apps/web/package.json
+++ b/apps/web/package.json
@@ -1,6 +1,6 @@
{
"name": "@documenso/web",
- "version": "1.8.0-rc.3",
+ "version": "1.8.1-rc.0",
"private": true,
"license": "AGPL-3.0",
"scripts": {
diff --git a/apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx b/apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx
new file mode 100644
index 000000000..d404d0d6b
--- /dev/null
+++ b/apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx
@@ -0,0 +1,237 @@
+'use client';
+
+import { useState, useTransition } from 'react';
+
+import { useRouter } from 'next/navigation';
+
+import { Plural, Trans, msg } from '@lingui/macro';
+import { useLingui } from '@lingui/react';
+import { useForm } from 'react-hook-form';
+import { P, match } from 'ts-pattern';
+
+import { unsafe_useEffectOnce } from '@documenso/lib/client-only/hooks/use-effect-once';
+import { DocumentAuth } from '@documenso/lib/types/document-auth';
+import { extractInitials } from '@documenso/lib/utils/recipient-formatter';
+import type { Field, Recipient } from '@documenso/prisma/client';
+import { FieldType } from '@documenso/prisma/client';
+import { trpc } from '@documenso/trpc/react';
+import { Button } from '@documenso/ui/primitives/button';
+import {
+ Dialog,
+ DialogContent,
+ DialogFooter,
+ DialogHeader,
+ DialogTitle,
+} from '@documenso/ui/primitives/dialog';
+import { FRIENDLY_FIELD_TYPE } from '@documenso/ui/primitives/document-flow/types';
+import { Form } from '@documenso/ui/primitives/form/form';
+import { useToast } from '@documenso/ui/primitives/use-toast';
+
+import { SigningDisclosure } from '~/components/general/signing-disclosure';
+
+import { useRequiredDocumentAuthContext } from './document-auth-provider';
+import { useRequiredSigningContext } from './provider';
+
+const AUTO_SIGNABLE_FIELD_TYPES: string[] = [
+ FieldType.NAME,
+ FieldType.INITIALS,
+ FieldType.EMAIL,
+ FieldType.DATE,
+];
+
+// The action auth types that are not allowed to be auto signed
+//
+// Reasoning: If the action auth is a passkey or 2FA, it's likely that the owner of the document
+// intends on having the user manually sign due to the additional security measures employed for
+// other field types.
+const NON_AUTO_SIGNABLE_ACTION_AUTH_TYPES: string[] = [
+ DocumentAuth.PASSKEY,
+ DocumentAuth.TWO_FACTOR_AUTH,
+];
+
+// The threshold for the number of fields that could be autosigned before displaying the dialog
+//
+// Reasoning: If there aren't that many fields, it's likely going to be easier to manually sign each one
+// while for larger documents with many fields it will be beneficial to sign away the boilerplate fields.
+const AUTO_SIGN_THRESHOLD = 5;
+
+export type AutoSignProps = {
+ recipient: Pick
+
+
{localDateString}
+
+
{field.customText}
+
+
{field.customText.length < 20
? field.customText
: field.customText.substring(0, 15) + '...'}
diff --git a/apps/web/src/components/(dashboard)/avatar/stack-avatar.tsx b/apps/web/src/components/(dashboard)/avatar/stack-avatar.tsx
index abf6d6074..94f3e5a68 100644
--- a/apps/web/src/components/(dashboard)/avatar/stack-avatar.tsx
+++ b/apps/web/src/components/(dashboard)/avatar/stack-avatar.tsx
@@ -25,8 +25,6 @@ export const StackAvatar = ({ first, zIndex, fallbackText = '', type }: StackAva
zIndexClass = ZIndexes[zIndex] ?? '';
}
- console.log({ type, fallbackText });
-
switch (type) {
case RecipientStatusType.UNSIGNED:
classes = 'bg-dawn-200 text-dawn-900';
diff --git a/package-lock.json b/package-lock.json
index c484c2ebc..fd2842078 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "@documenso/root",
- "version": "1.8.0-rc.3",
+ "version": "1.8.1-rc.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@documenso/root",
- "version": "1.8.0-rc.3",
+ "version": "1.8.1-rc.0",
"workspaces": [
"apps/*",
"packages/*"
@@ -80,7 +80,7 @@
},
"apps/marketing": {
"name": "@documenso/marketing",
- "version": "1.8.0-rc.3",
+ "version": "1.8.1-rc.0",
"license": "AGPL-3.0",
"dependencies": {
"@documenso/assets": "*",
@@ -441,7 +441,7 @@
},
"apps/web": {
"name": "@documenso/web",
- "version": "1.8.0-rc.3",
+ "version": "1.8.1-rc.0",
"license": "AGPL-3.0",
"dependencies": {
"@documenso/api": "*",
@@ -10044,11 +10044,19 @@
"node": ">=10"
}
},
+ "node_modules/@tailwindcss/container-queries": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/container-queries/-/container-queries-0.1.1.tgz",
+ "integrity": "sha512-p18dswChx6WnTSaJCSGx6lTmrGzNNvm2FtXmiO6AuA1V4U5REyoqwmT6kgAsIMdjo07QdAfYXHJ4hnMtfHzWgA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "tailwindcss": ">=3.2.0"
+ }
+ },
"node_modules/@tailwindcss/typography": {
"version": "0.5.10",
"resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.10.tgz",
"integrity": "sha512-Pe8BuPJQJd3FfRnm6H0ulKIGoMEQS+Vq01R6M5aCrFB/ccR/shT+0kXLjouGC1gFLm9hopTFN+DMP0pfwRWzPw==",
- "dev": true,
"dependencies": {
"lodash.castarray": "^4.4.0",
"lodash.isplainobject": "^4.0.6",
@@ -21883,8 +21891,7 @@
"node_modules/lodash.castarray": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/lodash.castarray/-/lodash.castarray-4.4.0.tgz",
- "integrity": "sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==",
- "dev": true
+ "integrity": "sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q=="
},
"node_modules/lodash.clonedeep": {
"version": "4.5.0",
@@ -21929,8 +21936,7 @@
"node_modules/lodash.isplainobject": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
- "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==",
- "dev": true
+ "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA=="
},
"node_modules/lodash.kebabcase": {
"version": "4.1.1",
@@ -27014,7 +27020,6 @@
"version": "6.0.10",
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz",
"integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==",
- "dev": true,
"dependencies": {
"cssesc": "^3.0.0",
"util-deprecate": "^1.0.2"
@@ -36916,14 +36921,14 @@
"version": "0.0.0",
"license": "MIT",
"dependencies": {
+ "@tailwindcss/container-queries": "^0.1.1",
+ "@tailwindcss/typography": "^0.5.9",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.32",
"tailwindcss": "3.3.2",
"tailwindcss-animate": "^1.0.5"
},
- "devDependencies": {
- "@tailwindcss/typography": "^0.5.9"
- }
+ "devDependencies": {}
},
"packages/tailwind-config/node_modules/postcss": {
"version": "8.4.32",
diff --git a/package.json b/package.json
index 56b8b5fdb..29f0fb6bd 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"private": true,
- "version": "1.8.0-rc.3",
+ "version": "1.8.1-rc.0",
"scripts": {
"build": "turbo run build",
"build:web": "turbo run build --filter=@documenso/web",
diff --git a/packages/lib/translations/de/common.po b/packages/lib/translations/de/common.po
index f77359d51..29150abf1 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-14 12:05\n"
+"PO-Revision-Date: 2024-11-20 11:56\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -248,16 +248,8 @@ msgid "{userName} completed their task"
msgstr "{userName} hat ihre Aufgabe abgeschlossen"
#: packages/lib/utils/document-audit-logs.ts:355
-<<<<<<< HEAD
-#~ msgid "{userName} rejected the document"
-#~ msgstr ""
-||||||| f15f9ecdd
-msgid "{userName} rejected the document"
-msgstr ""
-=======
msgid "{userName} rejected the document"
msgstr "{userName} hat das Dokument abgelehnt"
->>>>>>> main
#: packages/lib/utils/document-audit-logs.ts:341
msgid "{userName} signed the document"
@@ -430,11 +422,11 @@ msgstr "Weiteren Wert hinzuf眉gen"
msgid "Add myself"
msgstr "Mich selbst hinzuf眉gen"
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:637
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:645
msgid "Add Myself"
msgstr "Mich hinzuf眉gen"
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:623
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:631
msgid "Add Placeholder Recipient"
msgstr "Platzhalterempf盲nger hinzuf眉gen"
@@ -566,6 +558,10 @@ msgstr "Ccers"
msgid "Character Limit"
msgstr "Zeichenbeschr盲nkung"
+#: packages/ui/primitives/document-flow/types.ts:58
+msgid "Checkbox"
+msgstr "Checkbox"
+
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx:197
msgid "Checkbox values"
msgstr "Checkbox-Werte"
@@ -665,7 +661,7 @@ msgstr "Benutzerdefinierter Text"
#: packages/ui/primitives/document-flow/add-fields.tsx:933
#: packages/ui/primitives/document-flow/types.ts:53
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:690
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:697
msgid "Date"
msgstr "Datum"
@@ -682,7 +678,7 @@ msgstr "Ablehnen"
msgid "Didn't request a password change? We are here to help you secure your account, just <0>contact us.0>"
msgstr "Hast du keinen Passwortwechsel angefordert? Wir helfen dir, dein Konto abzusichern, kontaktiere uns einfach <0>hier.0>"
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:570
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:578
msgid "Direct link receiver"
msgstr "Empf盲nger des direkten Links"
@@ -823,9 +819,9 @@ msgstr "Dropdown-Optionen"
#: packages/ui/primitives/document-flow/add-signers.tsx:512
#: packages/ui/primitives/document-flow/add-signers.tsx:519
#: packages/ui/primitives/document-flow/types.ts:54
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:638
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:463
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:470
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:645
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:471
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:478
msgid "Email"
msgstr "E-Mail"
@@ -854,7 +850,7 @@ msgid "Enable Direct Link Signing"
msgstr "Direktlink-Signierung aktivieren"
#: packages/ui/primitives/document-flow/add-signers.tsx:401
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:362
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:370
msgid "Enable signing order"
msgstr "Aktiviere die Signaturreihenfolge"
@@ -1041,9 +1037,9 @@ msgstr "Min"
#: packages/ui/primitives/document-flow/add-signers.tsx:550
#: packages/ui/primitives/document-flow/add-signers.tsx:556
#: packages/ui/primitives/document-flow/types.ts:55
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:664
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:498
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:504
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:671
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:506
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:512
msgid "Name"
msgstr "Name"
@@ -1099,7 +1095,7 @@ msgstr "Keine"
#: packages/ui/primitives/document-flow/add-fields.tsx:985
#: packages/ui/primitives/document-flow/types.ts:56
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:742
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:749
msgid "Number"
msgstr "Nummer"
@@ -1190,7 +1186,8 @@ msgstr "Bitte best盲tige deine E-Mail-Adresse"
msgid "Please try again or contact our support."
msgstr "Bitte versuchen Sie es erneut oder kontaktieren Sie unseren Support."
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:768
+#: packages/ui/primitives/document-flow/types.ts:57
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:775
msgid "Radio"
msgstr "Radio"
@@ -1301,7 +1298,7 @@ msgstr "Zeilen pro Seite"
msgid "Save"
msgstr "Speichern"
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:854
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:861
msgid "Save Template"
msgstr "Vorlage speichern"
@@ -1310,6 +1307,7 @@ msgid "Search languages..."
msgstr "Sprachen suchen..."
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx:115
+#: packages/ui/primitives/document-flow/types.ts:59
msgid "Select"
msgstr "Ausw盲hlen"
@@ -1377,7 +1375,7 @@ msgid "Share your signing experience!"
msgstr "Teilen Sie Ihre Unterzeichnungserfahrung!"
#: packages/ui/primitives/document-flow/add-signers.tsx:709
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:655
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:663
msgid "Show advanced settings"
msgstr "Erweiterte Einstellungen anzeigen"
@@ -1398,7 +1396,7 @@ msgstr "Anmelden"
#: packages/ui/primitives/document-flow/add-signature.tsx:323
#: packages/ui/primitives/document-flow/field-icon.tsx:52
#: packages/ui/primitives/document-flow/types.ts:49
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:586
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:593
msgid "Signature"
msgstr "Unterschrift"
@@ -1483,7 +1481,7 @@ msgstr "Vorlagentitel"
#: packages/ui/primitives/document-flow/add-fields.tsx:959
#: packages/ui/primitives/document-flow/types.ts:52
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:716
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:723
msgid "Text"
msgstr "Text"
@@ -1578,7 +1576,7 @@ msgstr "Dies kann 眉berschrieben werden, indem die Authentifizierungsanforderung
msgid "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
msgstr "Dieses Dokument kann nicht wiederhergestellt werden. Wenn du den Grund f眉r zuk眉nftige Dokumente anfechten m枚chtest, kontaktiere bitte den Support."
-#: packages/ui/primitives/document-flow/add-fields.tsx:763
+#: packages/ui/primitives/document-flow/add-fields.tsx:764
msgid "This document has already been sent to this recipient. You can no longer edit this recipient."
msgstr "Dieses Dokument wurde bereits an diesen Empf盲nger gesendet. Sie k枚nnen diesen Empf盲nger nicht mehr bearbeiten."
@@ -1609,7 +1607,7 @@ msgstr "Diese E-Mail wird an den Empf盲nger gesendet und fordert ihn auf, das Do
msgid "This email will be sent to the recipient who has just signed the document, if there are still other recipients who have not signed yet."
msgstr "Diese E-Mail wird an den Empf盲nger gesendet, der das Dokument gerade unterschrieben hat, wenn es noch andere Empf盲nger gibt, die noch nicht unterschrieben haben."
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:573
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:581
msgid "This field cannot be modified or deleted. When you share this template's direct link or add it to your public profile, anyone who accesses it can input their name and email, and fill in the fields assigned to them."
msgstr "Dieses Feld kann nicht ge盲ndert oder gel枚scht werden. Wenn Sie den direkten Link dieser Vorlage teilen oder zu Ihrem 枚ffentlichen Profil hinzuf眉gen, kann jeder, der darauf zugreift, seinen Namen und seine E-Mail-Adresse eingeben und die ihm zugewiesenen Felder ausf眉llen."
@@ -1617,7 +1615,7 @@ msgstr "Dieses Feld kann nicht ge盲ndert oder gel枚scht werden. Wenn Sie den dir
msgid "This is how the document will reach the recipients once the document is ready for signing."
msgstr "So wird das Dokument die Empf盲nger erreichen, sobald es zum Unterschreiben bereit ist."
-#: packages/ui/primitives/document-flow/add-fields.tsx:1096
+#: packages/ui/primitives/document-flow/add-fields.tsx:1097
msgid "This recipient can no longer be modified as they have signed a field, or completed the document."
msgstr "Dieser Empf盲nger kann nicht mehr bearbeitet werden, da er ein Feld unterschrieben oder das Dokument abgeschlossen hat."
@@ -1646,8 +1644,8 @@ msgstr "Zeitzone"
msgid "Title"
msgstr "Titel"
-#: packages/ui/primitives/document-flow/add-fields.tsx:1079
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:834
+#: packages/ui/primitives/document-flow/add-fields.tsx:1080
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:841
msgid "To proceed further, please set at least one value for the {0} field."
msgstr "Um fortzufahren, legen Sie bitte mindestens einen Wert f眉r das Feld {0} fest."
diff --git a/packages/lib/translations/de/marketing.po b/packages/lib/translations/de/marketing.po
index be5e125a9..d52a3a10c 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-14 12:05\n"
+"PO-Revision-Date: 2024-11-20 11:56\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
diff --git a/packages/lib/translations/de/web.po b/packages/lib/translations/de/web.po
index ddd06d467..c9bb0726d 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-14 12:05\n"
+"PO-Revision-Date: 2024-11-20 11:56\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -50,19 +50,19 @@ msgstr "\"{placeholderEmail}\" im Namen von \"{0}\" hat Sie eingeladen, \"Beispi
msgid "\"{teamUrl}\" has invited you to sign \"example document\"."
msgstr "\"{teamUrl}\" hat Sie eingeladen, \"Beispieldokument\" zu unterschreiben."
-#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:79
+#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:80
msgid "({0}) has invited you to approve this document"
msgstr "({0}) hat dich eingeladen, dieses Dokument zu genehmigen"
-#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:76
+#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:77
msgid "({0}) has invited you to sign this document"
msgstr "({0}) hat dich eingeladen, dieses Dokument zu unterzeichnen"
-#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:73
+#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:74
msgid "({0}) has invited you to view this document"
msgstr "({0}) hat dich eingeladen, dieses Dokument zu betrachten"
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:311
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:313
msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
msgstr "{0, plural, one {(1 Zeichen 眉ber dem Limit)} other {(# Zeichen 眉ber dem Limit)}}"
@@ -84,6 +84,10 @@ msgstr "{0, plural, one {# Sitz} other {# Sitze}}"
msgid "{0, plural, one {<0>You have <1>11> pending team invitation0>} other {<2>You have <3>#3> pending team invitations2>}}"
msgstr "{0, plural, one {<0>Du hast <1>11> ausstehende Team-Einladung0>} other {<2>Du hast <3>#3> ausstehende Team-Einladungen2>}}"
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:196
+msgid "{0, plural, one {1 matching field} other {# matching fields}}"
+msgstr "{0, plural, one {1 passendes Feld} other {# passende Felder}}"
+
#: apps/web/src/app/(dashboard)/documents/[id]/edit/document-edit-page-view.tsx:129
msgid "{0, plural, one {1 Recipient} other {# Recipients}}"
msgstr "{0, plural, one {1 Empf盲nger} other {# Empf盲nger}}"
@@ -96,6 +100,10 @@ msgstr "{0, plural, one {Warte auf 1 Empf盲nger} other {Warte auf # Empf盲nger}}
msgid "{0, plural, zero {Select values} other {# selected...}}"
msgstr "{0, plural, zero {Werte ausw盲hlen} other {# ausgew盲hlt...}}"
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:193
+msgid "{0}"
+msgstr "{0}"
+
#: apps/web/src/components/templates/manage-public-template-dialog.tsx:249
msgid "{0} direct signing templates"
msgstr "{0} direkte Signaturvorlagen"
@@ -116,7 +124,7 @@ msgstr "{0} Empf盲nger(in)"
#~ msgid "{0} the document to complete the process."
#~ msgstr "{0} the document to complete the process."
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:292
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:294
msgid "{charactersRemaining, plural, one {1 character remaining} other {{charactersRemaining} characters remaining}}"
msgstr "{charactersRemaining, plural, one {1 Zeichen verbleibend} other {{charactersRemaining} Zeichen verbleibend}}"
@@ -474,6 +482,10 @@ msgstr "Ein Fehler ist aufgetreten, w盲hrend Unterzeichner hinzugef眉gt wurden."
msgid "An error occurred while adding the fields."
msgstr "Ein Fehler ist aufgetreten, w盲hrend die Felder hinzugef眉gt wurden."
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:154
+msgid "An error occurred while auto-signing the document, some fields may not be signed. Please review and manually sign any remaining fields."
+msgstr "Beim automatischen Signieren des Dokuments ist ein Fehler aufgetreten, einige Felder wurden m枚glicherweise nicht signiert. Bitte 眉berpr眉fen Sie und signieren Sie alle verbleibenden Felder manuell."
+
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:176
msgid "An error occurred while creating document from template."
msgstr "Ein Fehler ist aufgetreten, w盲hrend das Dokument aus der Vorlage erstellt wurde."
@@ -748,7 +760,7 @@ msgstr "Banner aktualisiert"
msgid "Basic details"
msgstr "Basisdetails"
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:72
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:74
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/billing/page.tsx:61
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:117
#: apps/web/src/components/(dashboard)/settings/layout/mobile-nav.tsx:120
@@ -810,6 +822,7 @@ msgstr "Durch die Verwendung der elektronischen Unterschriftsfunktion stimmen Si
#: apps/web/src/app/(dashboard)/templates/duplicate-template-dialog.tsx:78
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:119
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:472
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:220
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-2fa.tsx:178
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-account.tsx:71
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-passkey.tsx:164
@@ -817,11 +830,11 @@ msgstr "Durch die Verwendung der elektronischen Unterschriftsfunktion stimmen Si
#: apps/web/src/app/(signing)/sign/[token]/form.tsx:151
#: apps/web/src/app/(signing)/sign/[token]/form.tsx:220
#: apps/web/src/app/(signing)/sign/[token]/name-field.tsx:215
-#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:327
+#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:328
#: apps/web/src/app/(signing)/sign/[token]/reject-document-dialog.tsx:153
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:113
#: apps/web/src/app/(signing)/sign/[token]/signature-field.tsx:248
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:333
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:335
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-transfer-status.tsx:121
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:176
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:242
@@ -1780,7 +1793,7 @@ msgstr "Geben Sie Ihre E-Mail-Adresse ein, um das abgeschlossene Dokument zu erh
msgid "Enter your name"
msgstr "Geben Sie Ihren Namen ein"
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:278
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:280
msgid "Enter your text here"
msgstr "Geben Sie hier Ihren Text ein"
@@ -1799,6 +1812,7 @@ msgstr "Geben Sie hier Ihren Text ein"
#: apps/web/src/app/(dashboard)/templates/duplicate-template-dialog.tsx:51
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:56
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:175
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:152
#: apps/web/src/app/(signing)/sign/[token]/checkbox-field.tsx:122
#: apps/web/src/app/(signing)/sign/[token]/checkbox-field.tsx:151
#: apps/web/src/app/(signing)/sign/[token]/checkbox-field.tsx:212
@@ -2230,6 +2244,10 @@ msgstr "Verwalten Sie alle Teams, mit denen Sie derzeit verbunden sind."
msgid "Manage and view template"
msgstr "Vorlage verwalten und anzeigen"
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:136
+msgid "Manage billing"
+msgstr "Rechnungsmanagement"
+
#: apps/web/src/components/templates/manage-public-template-dialog.tsx:341
msgid "Manage details for this public template"
msgstr "Details f眉r diese 枚ffentliche Vorlage verwalten"
@@ -2250,7 +2268,7 @@ msgstr "Passkeys verwalten"
msgid "Manage subscription"
msgstr "Abonnement verwalten"
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:66
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:67
msgid "Manage Subscription"
msgstr "Abonnement verwalten"
@@ -2463,7 +2481,7 @@ msgstr "Nicht unterst眉tzt"
msgid "Nothing to do"
msgstr "Nichts zu tun"
-#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:270
+#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:271
msgid "Number"
msgstr "Nummer"
@@ -3026,8 +3044,8 @@ msgid "Roles"
msgstr "Rollen"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:446
-#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:336
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:342
+#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:337
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:344
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/preferences/branding-preferences.tsx:312
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/preferences/document-preferences.tsx:232
msgid "Save"
@@ -3175,6 +3193,7 @@ msgstr "Vorlagen in Ihrem Team-脰ffentliches Profil anzeigen, damit Ihre Zielgru
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:114
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:139
#: apps/web/src/app/(profile)/p/[url]/page.tsx:192
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:229
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-2fa.tsx:182
#: apps/web/src/app/(signing)/sign/[token]/name-field.tsx:224
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:124
@@ -3331,7 +3350,7 @@ msgstr "Website Einstellungen"
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:80
#: apps/web/src/app/(dashboard)/documents/duplicate-document-dialog.tsx:72
#: apps/web/src/app/(dashboard)/settings/billing/billing-plans.tsx:62
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:50
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:51
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:124
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:73
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:93
@@ -3646,8 +3665,8 @@ msgstr "Vorlagen"
msgid "Templates allow you to quickly generate documents with pre-filled recipients and fields."
msgstr "Vorlagen erlauben dir das schnelle Erstlelen von Dokumenten mit vorausgef眉llten Empf盲ngern und Feldern."
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:256
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:272
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:257
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:274
msgid "Text"
msgstr "Text"
@@ -4451,7 +4470,7 @@ msgstr "M枚chten Sie auff盲llige Signatur-Links wie diesen senden? <0>脺berpr眉f
msgid "Want your own public profile?"
msgstr "M枚chten Sie Ihr eigenes 枚ffentliches Profil haben?"
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:40
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:41
#: apps/web/src/app/(teams)/t/[teamUrl]/layout-billing-banner.tsx:55
#: apps/web/src/components/(teams)/team-billing-portal-button.tsx:31
msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
@@ -4715,6 +4734,10 @@ msgstr "Hast du stattdessen versucht, dieses Dokument zu bearbeiten?"
msgid "When you click continue, you will be prompted to add the first available authenticator on your system."
msgstr "Wenn Sie auf Fortfahren klicken, werden Sie aufgefordert, den ersten verf眉gbaren Authenticator auf Ihrem System hinzuzuf眉gen."
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:183
+msgid "When you sign a document, we can automatically fill in and sign the following fields using information that has already been provided. You can also manually sign or remove any automatically signed fields afterwards if you desire."
+msgstr "Wenn Sie ein Dokument unterschreiben, k枚nnen wir die folgenden Felder automatisch ausf眉llen und signieren, indem wir bereits bereitgestellte Informationen verwenden. Sie k枚nnen auch nachtr盲glich manuell unterschreiben oder automatisch signierte Felder entfernen, wenn Sie m枚chten."
+
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:36
msgid "When you use our platform to affix your electronic signature to documents, you are consenting to do so under the Electronic Signatures in Global and National Commerce Act (E-Sign Act) and other applicable laws. This action indicates your agreement to use electronic means to sign documents and receive notifications."
msgstr "Wenn Sie unsere Plattform nutzen, um Ihre elektronische Unterschrift auf Dokumente anzubringen, stimmen Sie zu, dies unter dem Gesetz 眉ber elektronische Unterschriften im globalen und nationalen Handel (E-Sign-Gesetz) und anderen anwendbaren Gesetzen zu tun. Diese Handlung zeigt Ihre Zustimmung zur Verwendung elektronischer Mittel zum Unterzeichnen von Dokumenten und zum Empfang von Benachrichtigungen an."
@@ -4784,7 +4807,7 @@ msgstr "Sie stehen kurz davor, den folgenden Benutzer aus <0>{teamName}0> zu e
msgid "You are about to revoke access for team <0>{0}0> ({1}) to use your email."
msgstr "Sie stehen kurz davor, den Zugriff f眉r das Team <0>{0}0> ({1}) zu widerrufen."
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:78
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:80
msgid "You are currently on the <0>Free Plan0>."
msgstr "Sie befinden sich derzeit im <0>kostenlosen Plan0>."
@@ -4836,7 +4859,7 @@ msgstr "Sie k枚nnen ein Teammitglied, das eine h枚here Rolle als Sie hat, nicht
msgid "You cannot upload encrypted PDFs"
msgstr "Sie k枚nnen keine verschl眉sselten PDFs hochladen"
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:45
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:46
msgid "You do not currently have a customer record, this should not happen. Please contact support for assistance."
msgstr "Sie haben derzeit keinen Kundenrecord, das sollte nicht passieren. Bitte kontaktieren Sie den Support um Hilfe."
@@ -4982,7 +5005,7 @@ msgstr "Ihre Marken-Website-URL"
msgid "Your branding preferences have been updated"
msgstr "Ihre Markenpr盲ferenzen wurden aktualisiert"
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:119
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:125
msgid "Your current plan is past due. Please update your payment information."
msgstr "Ihr aktueller Plan ist 眉berf盲llig. Bitte aktualisieren Sie Ihre Zahlungsinformationen."
diff --git a/packages/lib/translations/en/common.po b/packages/lib/translations/en/common.po
index a9f4e4171..d338a795f 100644
--- a/packages/lib/translations/en/common.po
+++ b/packages/lib/translations/en/common.po
@@ -417,11 +417,11 @@ msgstr "Add another value"
msgid "Add myself"
msgstr "Add myself"
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:637
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:645
msgid "Add Myself"
msgstr "Add Myself"
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:623
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:631
msgid "Add Placeholder Recipient"
msgstr "Add Placeholder Recipient"
@@ -446,8 +446,8 @@ msgstr "Admin"
msgid "Advanced Options"
msgstr "Advanced Options"
-#: packages/ui/primitives/document-flow/add-fields.tsx:579
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:406
+#: packages/ui/primitives/document-flow/add-fields.tsx:576
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:409
msgid "Advanced settings"
msgstr "Advanced settings"
@@ -553,6 +553,10 @@ msgstr "Ccers"
msgid "Character Limit"
msgstr "Character Limit"
+#: packages/ui/primitives/document-flow/types.ts:58
+msgid "Checkbox"
+msgstr "Checkbox"
+
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx:197
msgid "Checkbox values"
msgstr "Checkbox values"
@@ -588,8 +592,8 @@ msgstr "Completed Document"
msgid "Configure Direct Recipient"
msgstr "Configure Direct Recipient"
-#: packages/ui/primitives/document-flow/add-fields.tsx:580
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:407
+#: packages/ui/primitives/document-flow/add-fields.tsx:577
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:410
msgid "Configure the {0} field"
msgstr "Configure the {0} field"
@@ -650,9 +654,9 @@ msgstr "Create account"
msgid "Custom Text"
msgstr "Custom Text"
-#: packages/ui/primitives/document-flow/add-fields.tsx:933
+#: packages/ui/primitives/document-flow/add-fields.tsx:934
#: packages/ui/primitives/document-flow/types.ts:53
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:690
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:697
msgid "Date"
msgstr "Date"
@@ -669,7 +673,7 @@ msgstr "Decline"
msgid "Didn't request a password change? We are here to help you secure your account, just <0>contact us.0>"
msgstr "Didn't request a password change? We are here to help you secure your account, just <0>contact us.0>"
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:570
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:578
msgid "Direct link receiver"
msgstr "Direct link receiver"
@@ -795,8 +799,8 @@ msgstr "Draft"
msgid "Drag & drop your PDF here."
msgstr "Drag & drop your PDF here."
-#: packages/ui/primitives/document-flow/add-fields.tsx:1064
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:820
+#: packages/ui/primitives/document-flow/add-fields.tsx:1065
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:827
msgid "Dropdown"
msgstr "Dropdown"
@@ -805,14 +809,14 @@ msgid "Dropdown options"
msgstr "Dropdown options"
#: packages/lib/constants/document.ts:28
-#: packages/ui/primitives/document-flow/add-fields.tsx:881
+#: packages/ui/primitives/document-flow/add-fields.tsx:882
#: packages/ui/primitives/document-flow/add-signature.tsx:272
#: packages/ui/primitives/document-flow/add-signers.tsx:512
#: packages/ui/primitives/document-flow/add-signers.tsx:519
#: packages/ui/primitives/document-flow/types.ts:54
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:638
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:463
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:470
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:645
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:471
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:478
msgid "Email"
msgstr "Email"
@@ -841,11 +845,11 @@ msgid "Enable Direct Link Signing"
msgstr "Enable Direct Link Signing"
#: packages/ui/primitives/document-flow/add-signers.tsx:401
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:362
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:370
msgid "Enable signing order"
msgstr "Enable signing order"
-#: packages/ui/primitives/document-flow/add-fields.tsx:801
+#: packages/ui/primitives/document-flow/add-fields.tsx:802
msgid "Enable Typed Signatures"
msgstr "Enable Typed Signatures"
@@ -1023,14 +1027,14 @@ msgstr "Message <0>(Optional)0>"
msgid "Min"
msgstr "Min"
-#: packages/ui/primitives/document-flow/add-fields.tsx:907
+#: packages/ui/primitives/document-flow/add-fields.tsx:908
#: packages/ui/primitives/document-flow/add-signature.tsx:298
#: packages/ui/primitives/document-flow/add-signers.tsx:550
#: packages/ui/primitives/document-flow/add-signers.tsx:556
#: packages/ui/primitives/document-flow/types.ts:55
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:664
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:498
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:504
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:671
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:506
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:512
msgid "Name"
msgstr "Name"
@@ -1046,8 +1050,8 @@ msgstr "Needs to sign"
msgid "Needs to view"
msgstr "Needs to view"
-#: packages/ui/primitives/document-flow/add-fields.tsx:692
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:504
+#: packages/ui/primitives/document-flow/add-fields.tsx:693
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:511
msgid "No recipient matching this description was found."
msgstr "No recipient matching this description was found."
@@ -1055,8 +1059,8 @@ msgstr "No recipient matching this description was found."
msgid "No recipients"
msgstr "No recipients"
-#: packages/ui/primitives/document-flow/add-fields.tsx:707
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:519
+#: packages/ui/primitives/document-flow/add-fields.tsx:708
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:526
msgid "No recipients with this role"
msgstr "No recipients with this role"
@@ -1084,9 +1088,9 @@ msgstr "No value found."
msgid "None"
msgstr "None"
-#: packages/ui/primitives/document-flow/add-fields.tsx:985
+#: packages/ui/primitives/document-flow/add-fields.tsx:986
#: packages/ui/primitives/document-flow/types.ts:56
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:742
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:749
msgid "Number"
msgstr "Number"
@@ -1177,7 +1181,8 @@ msgstr "Please confirm your email address"
msgid "Please try again or contact our support."
msgstr "Please try again or contact our support."
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:768
+#: packages/ui/primitives/document-flow/types.ts:57
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:775
msgid "Radio"
msgstr "Radio"
@@ -1256,7 +1261,7 @@ msgstr "Reminder: Please {recipientActionVerb} this document"
msgid "Reminder: Please {recipientActionVerb} your document"
msgstr "Reminder: Please {recipientActionVerb} your document"
-#: packages/ui/primitives/document-flow/add-fields.tsx:1116
+#: packages/ui/primitives/document-flow/add-fields.tsx:1117
msgid "Remove"
msgstr "Remove"
@@ -1288,7 +1293,7 @@ msgstr "Rows per page"
msgid "Save"
msgstr "Save"
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:854
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:861
msgid "Save Template"
msgstr "Save Template"
@@ -1297,6 +1302,7 @@ msgid "Search languages..."
msgstr "Search languages..."
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx:115
+#: packages/ui/primitives/document-flow/types.ts:59
msgid "Select"
msgstr "Select"
@@ -1364,7 +1370,7 @@ msgid "Share your signing experience!"
msgstr "Share your signing experience!"
#: packages/ui/primitives/document-flow/add-signers.tsx:709
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:655
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:663
msgid "Show advanced settings"
msgstr "Show advanced settings"
@@ -1381,11 +1387,11 @@ msgstr "Sign Document"
msgid "Sign In"
msgstr "Sign In"
-#: packages/ui/primitives/document-flow/add-fields.tsx:829
+#: packages/ui/primitives/document-flow/add-fields.tsx:830
#: packages/ui/primitives/document-flow/add-signature.tsx:323
#: packages/ui/primitives/document-flow/field-icon.tsx:52
#: packages/ui/primitives/document-flow/types.ts:49
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:586
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:593
msgid "Signature"
msgstr "Signature"
@@ -1468,9 +1474,9 @@ msgstr "Team email removed for {teamName} on Documenso"
msgid "Template title"
msgstr "Template title"
-#: packages/ui/primitives/document-flow/add-fields.tsx:959
+#: packages/ui/primitives/document-flow/add-fields.tsx:960
#: packages/ui/primitives/document-flow/types.ts:52
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:716
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:723
msgid "Text"
msgstr "Text"
@@ -1565,7 +1571,7 @@ msgstr "This can be overriden by setting the authentication requirements directl
msgid "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
msgstr "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
-#: packages/ui/primitives/document-flow/add-fields.tsx:763
+#: packages/ui/primitives/document-flow/add-fields.tsx:764
msgid "This document has already been sent to this recipient. You can no longer edit this recipient."
msgstr "This document has already been sent to this recipient. You can no longer edit this recipient."
@@ -1596,7 +1602,7 @@ msgstr "This email is sent to the recipient requesting them to sign the document
msgid "This email will be sent to the recipient who has just signed the document, if there are still other recipients who have not signed yet."
msgstr "This email will be sent to the recipient who has just signed the document, if there are still other recipients who have not signed yet."
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:573
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:581
msgid "This field cannot be modified or deleted. When you share this template's direct link or add it to your public profile, anyone who accesses it can input their name and email, and fill in the fields assigned to them."
msgstr "This field cannot be modified or deleted. When you share this template's direct link or add it to your public profile, anyone who accesses it can input their name and email, and fill in the fields assigned to them."
@@ -1604,7 +1610,7 @@ msgstr "This field cannot be modified or deleted. When you share this template's
msgid "This is how the document will reach the recipients once the document is ready for signing."
msgstr "This is how the document will reach the recipients once the document is ready for signing."
-#: packages/ui/primitives/document-flow/add-fields.tsx:1096
+#: packages/ui/primitives/document-flow/add-fields.tsx:1097
msgid "This recipient can no longer be modified as they have signed a field, or completed the document."
msgstr "This recipient can no longer be modified as they have signed a field, or completed the document."
@@ -1633,8 +1639,8 @@ msgstr "Time Zone"
msgid "Title"
msgstr "Title"
-#: packages/ui/primitives/document-flow/add-fields.tsx:1079
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:834
+#: packages/ui/primitives/document-flow/add-fields.tsx:1080
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:841
msgid "To proceed further, please set at least one value for the {0} field."
msgstr "To proceed further, please set at least one value for the {0} field."
diff --git a/packages/lib/translations/en/web.po b/packages/lib/translations/en/web.po
index a01544221..ae55ee9fe 100644
--- a/packages/lib/translations/en/web.po
+++ b/packages/lib/translations/en/web.po
@@ -45,19 +45,19 @@ msgstr "\"{placeholderEmail}\" on behalf of \"{0}\" has invited you to sign \"ex
msgid "\"{teamUrl}\" has invited you to sign \"example document\"."
msgstr "\"{teamUrl}\" has invited you to sign \"example document\"."
-#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:79
+#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:80
msgid "({0}) has invited you to approve this document"
msgstr "({0}) has invited you to approve this document"
-#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:76
+#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:77
msgid "({0}) has invited you to sign this document"
msgstr "({0}) has invited you to sign this document"
-#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:73
+#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:74
msgid "({0}) has invited you to view this document"
msgstr "({0}) has invited you to view this document"
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:311
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:313
msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
msgstr "{0, plural, one {(1 character over)} other {(# characters over)}}"
@@ -79,6 +79,10 @@ msgstr "{0, plural, one {# Seat} other {# Seats}}"
msgid "{0, plural, one {<0>You have <1>11> pending team invitation0>} other {<2>You have <3>#3> pending team invitations2>}}"
msgstr "{0, plural, one {<0>You have <1>11> pending team invitation0>} other {<2>You have <3>#3> pending team invitations2>}}"
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:196
+msgid "{0, plural, one {1 matching field} other {# matching fields}}"
+msgstr "{0, plural, one {1 matching field} other {# matching fields}}"
+
#: apps/web/src/app/(dashboard)/documents/[id]/edit/document-edit-page-view.tsx:129
msgid "{0, plural, one {1 Recipient} other {# Recipients}}"
msgstr "{0, plural, one {1 Recipient} other {# Recipients}}"
@@ -91,6 +95,10 @@ msgstr "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}
msgid "{0, plural, zero {Select values} other {# selected...}}"
msgstr "{0, plural, zero {Select values} other {# selected...}}"
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:193
+msgid "{0}"
+msgstr "{0}"
+
#: apps/web/src/components/templates/manage-public-template-dialog.tsx:249
msgid "{0} direct signing templates"
msgstr "{0} direct signing templates"
@@ -111,7 +119,7 @@ msgstr "{0} Recipient(s)"
#~ msgid "{0} the document to complete the process."
#~ msgstr "{0} the document to complete the process."
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:292
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:294
msgid "{charactersRemaining, plural, one {1 character remaining} other {{charactersRemaining} characters remaining}}"
msgstr "{charactersRemaining, plural, one {1 character remaining} other {{charactersRemaining} characters remaining}}"
@@ -469,6 +477,10 @@ msgstr "An error occurred while adding signers."
msgid "An error occurred while adding the fields."
msgstr "An error occurred while adding the fields."
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:154
+msgid "An error occurred while auto-signing the document, some fields may not be signed. Please review and manually sign any remaining fields."
+msgstr "An error occurred while auto-signing the document, some fields may not be signed. Please review and manually sign any remaining fields."
+
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:176
msgid "An error occurred while creating document from template."
msgstr "An error occurred while creating document from template."
@@ -743,7 +755,7 @@ msgstr "Banner Updated"
msgid "Basic details"
msgstr "Basic details"
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:72
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:74
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/billing/page.tsx:61
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:117
#: apps/web/src/components/(dashboard)/settings/layout/mobile-nav.tsx:120
@@ -805,6 +817,7 @@ msgstr "By using the electronic signature feature, you are consenting to conduct
#: apps/web/src/app/(dashboard)/templates/duplicate-template-dialog.tsx:78
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:119
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:472
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:220
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-2fa.tsx:178
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-account.tsx:71
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-passkey.tsx:164
@@ -812,11 +825,11 @@ msgstr "By using the electronic signature feature, you are consenting to conduct
#: apps/web/src/app/(signing)/sign/[token]/form.tsx:151
#: apps/web/src/app/(signing)/sign/[token]/form.tsx:220
#: apps/web/src/app/(signing)/sign/[token]/name-field.tsx:215
-#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:327
+#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:328
#: apps/web/src/app/(signing)/sign/[token]/reject-document-dialog.tsx:153
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:113
#: apps/web/src/app/(signing)/sign/[token]/signature-field.tsx:248
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:333
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:335
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-transfer-status.tsx:121
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:176
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:242
@@ -1775,7 +1788,7 @@ msgstr "Enter your email address to receive the completed document."
msgid "Enter your name"
msgstr "Enter your name"
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:278
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:280
msgid "Enter your text here"
msgstr "Enter your text here"
@@ -1794,6 +1807,7 @@ msgstr "Enter your text here"
#: apps/web/src/app/(dashboard)/templates/duplicate-template-dialog.tsx:51
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:56
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:175
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:152
#: apps/web/src/app/(signing)/sign/[token]/checkbox-field.tsx:122
#: apps/web/src/app/(signing)/sign/[token]/checkbox-field.tsx:151
#: apps/web/src/app/(signing)/sign/[token]/checkbox-field.tsx:212
@@ -2225,6 +2239,10 @@ msgstr "Manage all teams you are currently associated with."
msgid "Manage and view template"
msgstr "Manage and view template"
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:136
+msgid "Manage billing"
+msgstr "Manage billing"
+
#: apps/web/src/components/templates/manage-public-template-dialog.tsx:341
msgid "Manage details for this public template"
msgstr "Manage details for this public template"
@@ -2245,7 +2263,7 @@ msgstr "Manage passkeys"
msgid "Manage subscription"
msgstr "Manage subscription"
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:66
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:67
msgid "Manage Subscription"
msgstr "Manage Subscription"
@@ -2458,7 +2476,7 @@ msgstr "Not supported"
msgid "Nothing to do"
msgstr "Nothing to do"
-#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:270
+#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:271
msgid "Number"
msgstr "Number"
@@ -3021,8 +3039,8 @@ msgid "Roles"
msgstr "Roles"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:446
-#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:336
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:342
+#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:337
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:344
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/preferences/branding-preferences.tsx:312
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/preferences/document-preferences.tsx:232
msgid "Save"
@@ -3170,6 +3188,7 @@ msgstr "Show templates in your team public profile for your audience to sign and
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:114
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:139
#: apps/web/src/app/(profile)/p/[url]/page.tsx:192
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:229
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-2fa.tsx:182
#: apps/web/src/app/(signing)/sign/[token]/name-field.tsx:224
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:124
@@ -3326,7 +3345,7 @@ msgstr "Site Settings"
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:80
#: apps/web/src/app/(dashboard)/documents/duplicate-document-dialog.tsx:72
#: apps/web/src/app/(dashboard)/settings/billing/billing-plans.tsx:62
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:50
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:51
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:124
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:73
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:93
@@ -3641,8 +3660,8 @@ msgstr "Templates"
msgid "Templates allow you to quickly generate documents with pre-filled recipients and fields."
msgstr "Templates allow you to quickly generate documents with pre-filled recipients and fields."
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:256
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:272
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:257
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:274
msgid "Text"
msgstr "Text"
@@ -4446,7 +4465,7 @@ msgstr "Want to send slick signing links like this one? <0>Check out Documenso.<
msgid "Want your own public profile?"
msgstr "Want your own public profile?"
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:40
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:41
#: apps/web/src/app/(teams)/t/[teamUrl]/layout-billing-banner.tsx:55
#: apps/web/src/components/(teams)/team-billing-portal-button.tsx:31
msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
@@ -4710,6 +4729,10 @@ msgstr "Were you trying to edit this document instead?"
msgid "When you click continue, you will be prompted to add the first available authenticator on your system."
msgstr "When you click continue, you will be prompted to add the first available authenticator on your system."
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:183
+msgid "When you sign a document, we can automatically fill in and sign the following fields using information that has already been provided. You can also manually sign or remove any automatically signed fields afterwards if you desire."
+msgstr "When you sign a document, we can automatically fill in and sign the following fields using information that has already been provided. You can also manually sign or remove any automatically signed fields afterwards if you desire."
+
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:36
msgid "When you use our platform to affix your electronic signature to documents, you are consenting to do so under the Electronic Signatures in Global and National Commerce Act (E-Sign Act) and other applicable laws. This action indicates your agreement to use electronic means to sign documents and receive notifications."
msgstr "When you use our platform to affix your electronic signature to documents, you are consenting to do so under the Electronic Signatures in Global and National Commerce Act (E-Sign Act) and other applicable laws. This action indicates your agreement to use electronic means to sign documents and receive notifications."
@@ -4779,7 +4802,7 @@ msgstr "You are about to remove the following user from <0>{teamName}0>."
msgid "You are about to revoke access for team <0>{0}0> ({1}) to use your email."
msgstr "You are about to revoke access for team <0>{0}0> ({1}) to use your email."
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:78
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:80
msgid "You are currently on the <0>Free Plan0>."
msgstr "You are currently on the <0>Free Plan0>."
@@ -4831,7 +4854,7 @@ msgstr "You cannot modify a team member who has a higher role than you."
msgid "You cannot upload encrypted PDFs"
msgstr "You cannot upload encrypted PDFs"
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:45
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:46
msgid "You do not currently have a customer record, this should not happen. Please contact support for assistance."
msgstr "You do not currently have a customer record, this should not happen. Please contact support for assistance."
@@ -4977,7 +5000,7 @@ msgstr "Your brand website URL"
msgid "Your branding preferences have been updated"
msgstr "Your branding preferences have been updated"
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:119
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:125
msgid "Your current plan is past due. Please update your payment information."
msgstr "Your current plan is past due. Please update your payment information."
diff --git a/packages/lib/translations/es/common.po b/packages/lib/translations/es/common.po
index a41b119f7..c852179f2 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-14 12:05\n"
+"PO-Revision-Date: 2024-11-20 11:56\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -248,16 +248,8 @@ msgid "{userName} completed their task"
msgstr "{userName} complet贸 su tarea"
#: packages/lib/utils/document-audit-logs.ts:355
-<<<<<<< HEAD
-#~ msgid "{userName} rejected the document"
-#~ msgstr ""
-||||||| f15f9ecdd
-msgid "{userName} rejected the document"
-msgstr ""
-=======
msgid "{userName} rejected the document"
msgstr "{userName} rechaz贸 el documento"
->>>>>>> main
#: packages/lib/utils/document-audit-logs.ts:341
msgid "{userName} signed the document"
@@ -430,11 +422,11 @@ msgstr "Agregar otro valor"
msgid "Add myself"
msgstr "Agregame"
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:637
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:645
msgid "Add Myself"
msgstr "Agregame"
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:623
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:631
msgid "Add Placeholder Recipient"
msgstr "Agregar destinatario de marcador de posici贸n"
@@ -459,8 +451,8 @@ msgstr "Admin"
msgid "Advanced Options"
msgstr "Opciones avanzadas"
-#: packages/ui/primitives/document-flow/add-fields.tsx:579
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:406
+#: packages/ui/primitives/document-flow/add-fields.tsx:576
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:409
msgid "Advanced settings"
msgstr "Configuraciones avanzadas"
@@ -566,6 +558,10 @@ msgstr "Ccers"
msgid "Character Limit"
msgstr "L铆mite de caracteres"
+#: packages/ui/primitives/document-flow/types.ts:58
+msgid "Checkbox"
+msgstr "Checkbox"
+
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx:197
msgid "Checkbox values"
msgstr "Valores de Checkbox"
@@ -601,8 +597,8 @@ msgstr "Documento completado"
msgid "Configure Direct Recipient"
msgstr "Configurar destinatario directo"
-#: packages/ui/primitives/document-flow/add-fields.tsx:580
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:407
+#: packages/ui/primitives/document-flow/add-fields.tsx:577
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:410
msgid "Configure the {0} field"
msgstr "Configurar el campo {0}"
@@ -663,9 +659,9 @@ msgstr "Crear cuenta"
msgid "Custom Text"
msgstr "Texto personalizado"
-#: packages/ui/primitives/document-flow/add-fields.tsx:933
+#: packages/ui/primitives/document-flow/add-fields.tsx:934
#: packages/ui/primitives/document-flow/types.ts:53
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:690
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:697
msgid "Date"
msgstr "Fecha"
@@ -682,7 +678,7 @@ msgstr "Rechazar"
msgid "Didn't request a password change? We are here to help you secure your account, just <0>contact us.0>"
msgstr "驴No solicitaste un cambio de contrase帽a? Estamos aqu铆 para ayudarte a asegurar tu cuenta, solo <0>cont谩ctanos.0>"
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:570
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:578
msgid "Direct link receiver"
msgstr "Receptor de enlace directo"
@@ -808,8 +804,8 @@ msgstr "Borrador"
msgid "Drag & drop your PDF here."
msgstr "Arrastre y suelte su PDF aqu铆."
-#: packages/ui/primitives/document-flow/add-fields.tsx:1064
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:820
+#: packages/ui/primitives/document-flow/add-fields.tsx:1065
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:827
msgid "Dropdown"
msgstr "Men煤 desplegable"
@@ -818,14 +814,14 @@ msgid "Dropdown options"
msgstr "Opciones de men煤 desplegable"
#: packages/lib/constants/document.ts:28
-#: packages/ui/primitives/document-flow/add-fields.tsx:881
+#: packages/ui/primitives/document-flow/add-fields.tsx:882
#: packages/ui/primitives/document-flow/add-signature.tsx:272
#: packages/ui/primitives/document-flow/add-signers.tsx:512
#: packages/ui/primitives/document-flow/add-signers.tsx:519
#: packages/ui/primitives/document-flow/types.ts:54
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:638
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:463
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:470
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:645
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:471
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:478
msgid "Email"
msgstr "Correo electr贸nico"
@@ -854,11 +850,11 @@ msgid "Enable Direct Link Signing"
msgstr "Habilitar firma de enlace directo"
#: packages/ui/primitives/document-flow/add-signers.tsx:401
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:362
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:370
msgid "Enable signing order"
msgstr "Habilitar orden de firma"
-#: packages/ui/primitives/document-flow/add-fields.tsx:801
+#: packages/ui/primitives/document-flow/add-fields.tsx:802
msgid "Enable Typed Signatures"
msgstr "Habilitar firmas escritas"
@@ -1036,14 +1032,14 @@ msgstr "Mensaje <0>(Opcional)0>"
msgid "Min"
msgstr "M铆n"
-#: packages/ui/primitives/document-flow/add-fields.tsx:907
+#: packages/ui/primitives/document-flow/add-fields.tsx:908
#: packages/ui/primitives/document-flow/add-signature.tsx:298
#: packages/ui/primitives/document-flow/add-signers.tsx:550
#: packages/ui/primitives/document-flow/add-signers.tsx:556
#: packages/ui/primitives/document-flow/types.ts:55
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:664
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:498
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:504
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:671
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:506
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:512
msgid "Name"
msgstr "Nombre"
@@ -1059,8 +1055,8 @@ msgstr "Necesita firmar"
msgid "Needs to view"
msgstr "Necesita ver"
-#: packages/ui/primitives/document-flow/add-fields.tsx:692
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:504
+#: packages/ui/primitives/document-flow/add-fields.tsx:693
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:511
msgid "No recipient matching this description was found."
msgstr "No se encontr贸 ning煤n destinatario que coincidiera con esta descripci贸n."
@@ -1068,8 +1064,8 @@ msgstr "No se encontr贸 ning煤n destinatario que coincidiera con esta descripci
msgid "No recipients"
msgstr "Sin destinatarios"
-#: packages/ui/primitives/document-flow/add-fields.tsx:707
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:519
+#: packages/ui/primitives/document-flow/add-fields.tsx:708
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:526
msgid "No recipients with this role"
msgstr "No hay destinatarios con este rol"
@@ -1097,9 +1093,9 @@ msgstr "No se encontr贸 valor."
msgid "None"
msgstr "Ninguno"
-#: packages/ui/primitives/document-flow/add-fields.tsx:985
+#: packages/ui/primitives/document-flow/add-fields.tsx:986
#: packages/ui/primitives/document-flow/types.ts:56
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:742
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:749
msgid "Number"
msgstr "N煤mero"
@@ -1190,7 +1186,8 @@ msgstr "Por favor confirma tu direcci贸n de correo electr贸nico"
msgid "Please try again or contact our support."
msgstr "Por favor, int茅ntalo de nuevo o contacta a nuestro soporte."
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:768
+#: packages/ui/primitives/document-flow/types.ts:57
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:775
msgid "Radio"
msgstr "Radio"
@@ -1269,7 +1266,7 @@ msgstr "Recordatorio: Por favor {recipientActionVerb} este documento"
msgid "Reminder: Please {recipientActionVerb} your document"
msgstr "Recordatorio: Por favor {recipientActionVerb} tu documento"
-#: packages/ui/primitives/document-flow/add-fields.tsx:1116
+#: packages/ui/primitives/document-flow/add-fields.tsx:1117
msgid "Remove"
msgstr "Eliminar"
@@ -1301,7 +1298,7 @@ msgstr "Filas por p谩gina"
msgid "Save"
msgstr "Guardar"
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:854
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:861
msgid "Save Template"
msgstr "Guardar plantilla"
@@ -1310,6 +1307,7 @@ msgid "Search languages..."
msgstr "Buscar idiomas..."
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx:115
+#: packages/ui/primitives/document-flow/types.ts:59
msgid "Select"
msgstr "Seleccionar"
@@ -1377,7 +1375,7 @@ msgid "Share your signing experience!"
msgstr "隆Comparte tu experiencia de firma!"
#: packages/ui/primitives/document-flow/add-signers.tsx:709
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:655
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:663
msgid "Show advanced settings"
msgstr "Mostrar configuraciones avanzadas"
@@ -1394,11 +1392,11 @@ msgstr "Firmar Documento"
msgid "Sign In"
msgstr "Iniciar sesi贸n"
-#: packages/ui/primitives/document-flow/add-fields.tsx:829
+#: packages/ui/primitives/document-flow/add-fields.tsx:830
#: packages/ui/primitives/document-flow/add-signature.tsx:323
#: packages/ui/primitives/document-flow/field-icon.tsx:52
#: packages/ui/primitives/document-flow/types.ts:49
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:586
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:593
msgid "Signature"
msgstr "Firma"
@@ -1481,9 +1479,9 @@ msgstr "Correo electr贸nico del equipo eliminado para {teamName} en Documenso"
msgid "Template title"
msgstr "T铆tulo de plantilla"
-#: packages/ui/primitives/document-flow/add-fields.tsx:959
+#: packages/ui/primitives/document-flow/add-fields.tsx:960
#: packages/ui/primitives/document-flow/types.ts:52
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:716
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:723
msgid "Text"
msgstr "Texto"
@@ -1578,7 +1576,7 @@ msgstr "Esto se puede anular configurando los requisitos de autenticaci贸n direc
msgid "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
msgstr "Este documento no se puede recuperar, si deseas impugnar la raz贸n para documentos futuros, por favor contacta con el soporte."
-#: packages/ui/primitives/document-flow/add-fields.tsx:763
+#: packages/ui/primitives/document-flow/add-fields.tsx:764
msgid "This document has already been sent to this recipient. You can no longer edit this recipient."
msgstr "Este documento ya ha sido enviado a este destinatario. Ya no puede editar a este destinatario."
@@ -1609,7 +1607,7 @@ msgstr "Este correo electr贸nico se env铆a al destinatario solicitando que firme
msgid "This email will be sent to the recipient who has just signed the document, if there are still other recipients who have not signed yet."
msgstr "Este correo electr贸nico se enviar谩 al destinatario que acaba de firmar el documento, si todav铆a hay otros destinatarios que no han firmado."
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:573
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:581
msgid "This field cannot be modified or deleted. When you share this template's direct link or add it to your public profile, anyone who accesses it can input their name and email, and fill in the fields assigned to them."
msgstr "Este campo no se puede modificar ni eliminar. Cuando comparta el enlace directo de esta plantilla o lo agregue a su perfil p煤blico, cualquiera que acceda podr谩 ingresar su nombre y correo electr贸nico, y completar los campos que se le hayan asignado."
@@ -1617,7 +1615,7 @@ msgstr "Este campo no se puede modificar ni eliminar. Cuando comparta el enlace
msgid "This is how the document will reach the recipients once the document is ready for signing."
msgstr "As铆 es como el documento llegar谩 a los destinatarios una vez que est茅 listo para firmarse."
-#: packages/ui/primitives/document-flow/add-fields.tsx:1096
+#: packages/ui/primitives/document-flow/add-fields.tsx:1097
msgid "This recipient can no longer be modified as they have signed a field, or completed the document."
msgstr "Este destinatario ya no puede ser modificado ya que ha firmado un campo o completado el documento."
@@ -1646,8 +1644,8 @@ msgstr "Zona horaria"
msgid "Title"
msgstr "T铆tulo"
-#: packages/ui/primitives/document-flow/add-fields.tsx:1079
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:834
+#: packages/ui/primitives/document-flow/add-fields.tsx:1080
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:841
msgid "To proceed further, please set at least one value for the {0} field."
msgstr "Para continuar, por favor establezca al menos un valor para el campo {0}."
diff --git a/packages/lib/translations/es/marketing.po b/packages/lib/translations/es/marketing.po
index 8057083c5..5a14fd8a8 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-14 12:05\n"
+"PO-Revision-Date: 2024-11-20 11:56\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
diff --git a/packages/lib/translations/es/web.po b/packages/lib/translations/es/web.po
index fc7901508..dbc0e139b 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-14 12:05\n"
+"PO-Revision-Date: 2024-11-20 11:56\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -50,19 +50,19 @@ msgstr "\"{placeholderEmail}\" en nombre de \"{0}\" te ha invitado a firmar \"do
msgid "\"{teamUrl}\" has invited you to sign \"example document\"."
msgstr "\"{teamUrl}\" te ha invitado a firmar \"ejemplo de documento\"."
-#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:79
+#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:80
msgid "({0}) has invited you to approve this document"
msgstr "({0}) te ha invitado a aprobar este documento"
-#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:76
+#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:77
msgid "({0}) has invited you to sign this document"
msgstr "({0}) te ha invitado a firmar este documento"
-#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:73
+#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:74
msgid "({0}) has invited you to view this document"
msgstr "({0}) te ha invitado a ver este documento"
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:311
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:313
msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
msgstr "{0, plural, one {(1 car谩cter excedido)} other {(# caracteres excedidos)}}"
@@ -84,6 +84,10 @@ msgstr "{0, plural, one {# Asiento} other {# Asientos}}"
msgid "{0, plural, one {<0>You have <1>11> pending team invitation0>} other {<2>You have <3>#3> pending team invitations2>}}"
msgstr "{0, plural, one {<0>Tienes <1>11> invitaci贸n de equipo pendiente0>} other {<2>Tienes <3>#3> invitaciones de equipo pendientes2>}}"
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:196
+msgid "{0, plural, one {1 matching field} other {# matching fields}}"
+msgstr "{0, plural, one {1 campo que coincide} other {# campos que coinciden}}"
+
#: apps/web/src/app/(dashboard)/documents/[id]/edit/document-edit-page-view.tsx:129
msgid "{0, plural, one {1 Recipient} other {# Recipients}}"
msgstr "{0, plural, one {1 Destinatario} other {# Destinatarios}}"
@@ -96,6 +100,10 @@ msgstr "{0, plural, one {Esperando 1 destinatario} other {Esperando # destinatar
msgid "{0, plural, zero {Select values} other {# selected...}}"
msgstr "{0, plural, zero {Selecciona valores} other {# seleccionados...}}"
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:193
+msgid "{0}"
+msgstr "{0}"
+
#: apps/web/src/components/templates/manage-public-template-dialog.tsx:249
msgid "{0} direct signing templates"
msgstr "{0} plantillas de firma directa"
@@ -116,7 +124,7 @@ msgstr "{0} Destinatario(s)"
#~ msgid "{0} the document to complete the process."
#~ msgstr "{0} the document to complete the process."
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:292
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:294
msgid "{charactersRemaining, plural, one {1 character remaining} other {{charactersRemaining} characters remaining}}"
msgstr "{charactersRemaining, plural, one {1 car谩cter restante} other {{charactersRemaining} caracteres restantes}}"
@@ -474,6 +482,10 @@ msgstr "Ocurri贸 un error al agregar firmantes."
msgid "An error occurred while adding the fields."
msgstr "Ocurri贸 un error al agregar los campos."
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:154
+msgid "An error occurred while auto-signing the document, some fields may not be signed. Please review and manually sign any remaining fields."
+msgstr "Se produjo un error al firmar autom谩ticamente el documento, es posible que algunos campos no est茅n firmados. Por favor, revise y firme manualmente cualquier campo restante."
+
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:176
msgid "An error occurred while creating document from template."
msgstr "Ocurri贸 un error al crear el documento a partir de la plantilla."
@@ -748,7 +760,7 @@ msgstr "Banner actualizado"
msgid "Basic details"
msgstr "Detalles b谩sicos"
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:72
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:74
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/billing/page.tsx:61
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:117
#: apps/web/src/components/(dashboard)/settings/layout/mobile-nav.tsx:120
@@ -810,6 +822,7 @@ msgstr "Al utilizar la funci贸n de firma electr贸nica, usted est谩 consintiendo
#: apps/web/src/app/(dashboard)/templates/duplicate-template-dialog.tsx:78
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:119
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:472
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:220
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-2fa.tsx:178
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-account.tsx:71
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-passkey.tsx:164
@@ -817,11 +830,11 @@ msgstr "Al utilizar la funci贸n de firma electr贸nica, usted est谩 consintiendo
#: apps/web/src/app/(signing)/sign/[token]/form.tsx:151
#: apps/web/src/app/(signing)/sign/[token]/form.tsx:220
#: apps/web/src/app/(signing)/sign/[token]/name-field.tsx:215
-#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:327
+#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:328
#: apps/web/src/app/(signing)/sign/[token]/reject-document-dialog.tsx:153
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:113
#: apps/web/src/app/(signing)/sign/[token]/signature-field.tsx:248
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:333
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:335
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-transfer-status.tsx:121
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:176
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:242
@@ -1780,7 +1793,7 @@ msgstr "Ingresa tu direcci贸n de correo electr贸nico para recibir el documento c
msgid "Enter your name"
msgstr "Ingresa tu nombre"
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:278
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:280
msgid "Enter your text here"
msgstr "Ingresa tu texto aqu铆"
@@ -1799,6 +1812,7 @@ msgstr "Ingresa tu texto aqu铆"
#: apps/web/src/app/(dashboard)/templates/duplicate-template-dialog.tsx:51
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:56
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:175
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:152
#: apps/web/src/app/(signing)/sign/[token]/checkbox-field.tsx:122
#: apps/web/src/app/(signing)/sign/[token]/checkbox-field.tsx:151
#: apps/web/src/app/(signing)/sign/[token]/checkbox-field.tsx:212
@@ -2230,6 +2244,10 @@ msgstr "Gestionar todos los equipos con los que est谩s asociado actualmente."
msgid "Manage and view template"
msgstr "Gestionar y ver plantilla"
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:136
+msgid "Manage billing"
+msgstr "Gestionar la facturaci贸n"
+
#: apps/web/src/components/templates/manage-public-template-dialog.tsx:341
msgid "Manage details for this public template"
msgstr "Gestionar detalles de esta plantilla p煤blica"
@@ -2250,7 +2268,7 @@ msgstr "Gestionar claves de acceso"
msgid "Manage subscription"
msgstr "Gestionar suscripci贸n"
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:66
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:67
msgid "Manage Subscription"
msgstr "Gestionar Suscripci贸n"
@@ -2463,7 +2481,7 @@ msgstr "No soportado"
msgid "Nothing to do"
msgstr "Nada que hacer"
-#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:270
+#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:271
msgid "Number"
msgstr "N煤mero"
@@ -3026,8 +3044,8 @@ msgid "Roles"
msgstr "Roles"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:446
-#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:336
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:342
+#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:337
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:344
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/preferences/branding-preferences.tsx:312
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/preferences/document-preferences.tsx:232
msgid "Save"
@@ -3175,6 +3193,7 @@ msgstr "Mostrar plantillas en el perfil p煤blico de tu equipo para que tu audien
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:114
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:139
#: apps/web/src/app/(profile)/p/[url]/page.tsx:192
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:229
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-2fa.tsx:182
#: apps/web/src/app/(signing)/sign/[token]/name-field.tsx:224
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:124
@@ -3331,7 +3350,7 @@ msgstr "Configuraciones del sitio"
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:80
#: apps/web/src/app/(dashboard)/documents/duplicate-document-dialog.tsx:72
#: apps/web/src/app/(dashboard)/settings/billing/billing-plans.tsx:62
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:50
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:51
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:124
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:73
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:93
@@ -3646,8 +3665,8 @@ msgstr "Plantillas"
msgid "Templates allow you to quickly generate documents with pre-filled recipients and fields."
msgstr "Las plantillas te permiten generar documentos r谩pidamente con destinatarios y campos prellenados."
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:256
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:272
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:257
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:274
msgid "Text"
msgstr "Texto"
@@ -4451,7 +4470,7 @@ msgstr "驴Quieres enviar enlaces de firma elegantes como este? <0>Consulta Docum
msgid "Want your own public profile?"
msgstr "驴Quieres tu propio perfil p煤blico?"
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:40
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:41
#: apps/web/src/app/(teams)/t/[teamUrl]/layout-billing-banner.tsx:55
#: apps/web/src/components/(teams)/team-billing-portal-button.tsx:31
msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
@@ -4715,6 +4734,10 @@ msgstr "驴Estabas intentando editar este documento en su lugar?"
msgid "When you click continue, you will be prompted to add the first available authenticator on your system."
msgstr "Cuando haces clic en continuar, se te pedir谩 que a帽adas el primer autenticador disponible en tu sistema."
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:183
+msgid "When you sign a document, we can automatically fill in and sign the following fields using information that has already been provided. You can also manually sign or remove any automatically signed fields afterwards if you desire."
+msgstr "Cuando firme un documento, podemos completar y firmar autom谩ticamente los siguientes campos usando informaci贸n que ya se ha proporcionado. Tambi茅n puede firmar manualmente o eliminar cualquier campo firmado autom谩ticamente m谩s tarde si lo desea."
+
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:36
msgid "When you use our platform to affix your electronic signature to documents, you are consenting to do so under the Electronic Signatures in Global and National Commerce Act (E-Sign Act) and other applicable laws. This action indicates your agreement to use electronic means to sign documents and receive notifications."
msgstr "Cuando utilice nuestra plataforma para colocar su firma electr贸nica en documentos, est谩 consintiendo hacerlo bajo la Ley de Firmas Electr贸nicas en el Comercio Global y Nacional (Ley E-Sign) y otras leyes aplicables. Esta acci贸n indica su aceptaci贸n de usar medios electr贸nicos para firmar documentos y recibir notificaciones."
@@ -4784,7 +4807,7 @@ msgstr "Est谩s a punto de eliminar al siguiente usuario de <0>{teamName}0>."
msgid "You are about to revoke access for team <0>{0}0> ({1}) to use your email."
msgstr "Est谩s a punto de revocar el acceso para el equipo <0>{0}0> ({1}) para usar tu correo electr贸nico."
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:78
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:80
msgid "You are currently on the <0>Free Plan0>."
msgstr "Actualmente est谩s en el <0>Plan Gratuito0>."
@@ -4836,7 +4859,7 @@ msgstr "No puedes modificar a un miembro del equipo que tenga un rol m谩s alto q
msgid "You cannot upload encrypted PDFs"
msgstr "No puedes subir PDFs encriptados"
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:45
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:46
msgid "You do not currently have a customer record, this should not happen. Please contact support for assistance."
msgstr "Actualmente no tienes un registro de cliente, esto no deber铆a suceder. Por favor contacta a soporte para obtener asistencia."
@@ -4982,7 +5005,7 @@ msgstr "La URL de tu sitio web de marca"
msgid "Your branding preferences have been updated"
msgstr "Tus preferencias de marca han sido actualizadas"
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:119
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:125
msgid "Your current plan is past due. Please update your payment information."
msgstr "Tu plan actual est谩 vencido. Por favor actualiza tu informaci贸n de pago."
diff --git a/packages/lib/translations/fr/common.po b/packages/lib/translations/fr/common.po
index a0a4fc9ed..894cdb7ac 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-14 12:05\n"
+"PO-Revision-Date: 2024-11-20 11:56\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -248,16 +248,8 @@ msgid "{userName} completed their task"
msgstr "{userName} a compl茅t茅 sa t芒che"
#: packages/lib/utils/document-audit-logs.ts:355
-<<<<<<< HEAD
-#~ msgid "{userName} rejected the document"
-#~ msgstr ""
-||||||| f15f9ecdd
-msgid "{userName} rejected the document"
-msgstr ""
-=======
msgid "{userName} rejected the document"
msgstr "{userName} a rejet茅 le document"
->>>>>>> main
#: packages/lib/utils/document-audit-logs.ts:341
msgid "{userName} signed the document"
@@ -430,11 +422,11 @@ msgstr "Ajouter une autre valeur"
msgid "Add myself"
msgstr "Ajoutez-moi"
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:637
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:645
msgid "Add Myself"
msgstr "Ajoutez-moi"
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:623
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:631
msgid "Add Placeholder Recipient"
msgstr "Ajouter un destinataire de substitution"
@@ -459,8 +451,8 @@ msgstr "Administrateur"
msgid "Advanced Options"
msgstr "Options avanc茅es"
-#: packages/ui/primitives/document-flow/add-fields.tsx:579
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:406
+#: packages/ui/primitives/document-flow/add-fields.tsx:576
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:409
msgid "Advanced settings"
msgstr "Param猫tres avanc茅s"
@@ -566,6 +558,10 @@ msgstr "Ccers"
msgid "Character Limit"
msgstr "Limite de caract猫res"
+#: packages/ui/primitives/document-flow/types.ts:58
+msgid "Checkbox"
+msgstr "Case 脿 cocher"
+
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx:197
msgid "Checkbox values"
msgstr "Valeurs de case 脿 cocher"
@@ -601,8 +597,8 @@ msgstr "Document Termin茅"
msgid "Configure Direct Recipient"
msgstr "Configurer le destinataire direct"
-#: packages/ui/primitives/document-flow/add-fields.tsx:580
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:407
+#: packages/ui/primitives/document-flow/add-fields.tsx:577
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:410
msgid "Configure the {0} field"
msgstr "Configurer le champ {0}"
@@ -663,9 +659,9 @@ msgstr "Cr茅er un compte"
msgid "Custom Text"
msgstr "Texte personnalis茅"
-#: packages/ui/primitives/document-flow/add-fields.tsx:933
+#: packages/ui/primitives/document-flow/add-fields.tsx:934
#: packages/ui/primitives/document-flow/types.ts:53
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:690
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:697
msgid "Date"
msgstr "Date"
@@ -682,7 +678,7 @@ msgstr "D茅cliner"
msgid "Didn't request a password change? We are here to help you secure your account, just <0>contact us.0>"
msgstr "Vous n'avez pas demand茅 de changement de mot de passe ? Nous sommes ici pour vous aider 脿 s茅curiser votre compte, il suffit de <0>nous contacter.0>"
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:570
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:578
msgid "Direct link receiver"
msgstr "Receveur de lien direct"
@@ -808,8 +804,8 @@ msgstr "Brouillon"
msgid "Drag & drop your PDF here."
msgstr "Faites glisser et d茅posez votre PDF ici."
-#: packages/ui/primitives/document-flow/add-fields.tsx:1064
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:820
+#: packages/ui/primitives/document-flow/add-fields.tsx:1065
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:827
msgid "Dropdown"
msgstr "Liste d茅roulante"
@@ -818,14 +814,14 @@ msgid "Dropdown options"
msgstr "Options de liste d茅roulante"
#: packages/lib/constants/document.ts:28
-#: packages/ui/primitives/document-flow/add-fields.tsx:881
+#: packages/ui/primitives/document-flow/add-fields.tsx:882
#: packages/ui/primitives/document-flow/add-signature.tsx:272
#: packages/ui/primitives/document-flow/add-signers.tsx:512
#: packages/ui/primitives/document-flow/add-signers.tsx:519
#: packages/ui/primitives/document-flow/types.ts:54
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:638
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:463
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:470
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:645
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:471
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:478
msgid "Email"
msgstr "Email"
@@ -854,11 +850,11 @@ msgid "Enable Direct Link Signing"
msgstr "Activer la signature de lien direct"
#: packages/ui/primitives/document-flow/add-signers.tsx:401
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:362
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:370
msgid "Enable signing order"
msgstr "Activer l'ordre de signature"
-#: packages/ui/primitives/document-flow/add-fields.tsx:801
+#: packages/ui/primitives/document-flow/add-fields.tsx:802
msgid "Enable Typed Signatures"
msgstr "Activer les signatures tap茅es"
@@ -1036,14 +1032,14 @@ msgstr "Message <0>(Optionnel)0>"
msgid "Min"
msgstr "Min"
-#: packages/ui/primitives/document-flow/add-fields.tsx:907
+#: packages/ui/primitives/document-flow/add-fields.tsx:908
#: packages/ui/primitives/document-flow/add-signature.tsx:298
#: packages/ui/primitives/document-flow/add-signers.tsx:550
#: packages/ui/primitives/document-flow/add-signers.tsx:556
#: packages/ui/primitives/document-flow/types.ts:55
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:664
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:498
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:504
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:671
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:506
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:512
msgid "Name"
msgstr "Nom"
@@ -1059,8 +1055,8 @@ msgstr "N茅cessite une signature"
msgid "Needs to view"
msgstr "N茅cessite une visualisation"
-#: packages/ui/primitives/document-flow/add-fields.tsx:692
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:504
+#: packages/ui/primitives/document-flow/add-fields.tsx:693
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:511
msgid "No recipient matching this description was found."
msgstr "Aucun destinataire correspondant 脿 cette description n'a 茅t茅 trouv茅."
@@ -1068,8 +1064,8 @@ msgstr "Aucun destinataire correspondant 脿 cette description n'a 茅t茅 trouv茅.
msgid "No recipients"
msgstr "Aucun destinataire"
-#: packages/ui/primitives/document-flow/add-fields.tsx:707
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:519
+#: packages/ui/primitives/document-flow/add-fields.tsx:708
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:526
msgid "No recipients with this role"
msgstr "Aucun destinataire avec ce r么le"
@@ -1097,9 +1093,9 @@ msgstr "Aucune valeur trouv茅e."
msgid "None"
msgstr "Aucun"
-#: packages/ui/primitives/document-flow/add-fields.tsx:985
+#: packages/ui/primitives/document-flow/add-fields.tsx:986
#: packages/ui/primitives/document-flow/types.ts:56
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:742
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:749
msgid "Number"
msgstr "Num茅ro"
@@ -1190,7 +1186,8 @@ msgstr "Veuillez confirmer votre adresse email"
msgid "Please try again or contact our support."
msgstr "Veuillez r茅essayer ou contacter notre support."
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:768
+#: packages/ui/primitives/document-flow/types.ts:57
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:775
msgid "Radio"
msgstr "Radio"
@@ -1269,7 +1266,7 @@ msgstr "Rappel : Veuillez {recipientActionVerb} ce document"
msgid "Reminder: Please {recipientActionVerb} your document"
msgstr "Rappel : Veuillez {recipientActionVerb} votre document"
-#: packages/ui/primitives/document-flow/add-fields.tsx:1116
+#: packages/ui/primitives/document-flow/add-fields.tsx:1117
msgid "Remove"
msgstr "Retirer"
@@ -1301,7 +1298,7 @@ msgstr "Lignes par page"
msgid "Save"
msgstr "Sauvegarder"
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:854
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:861
msgid "Save Template"
msgstr "Sauvegarder le mod猫le"
@@ -1310,6 +1307,7 @@ msgid "Search languages..."
msgstr "Rechercher des langues..."
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx:115
+#: packages/ui/primitives/document-flow/types.ts:59
msgid "Select"
msgstr "S茅lectionner"
@@ -1377,7 +1375,7 @@ msgid "Share your signing experience!"
msgstr "Partagez votre exp茅rience de signature !"
#: packages/ui/primitives/document-flow/add-signers.tsx:709
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:655
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:663
msgid "Show advanced settings"
msgstr "Afficher les param猫tres avanc茅s"
@@ -1394,11 +1392,11 @@ msgstr "Signer le document"
msgid "Sign In"
msgstr "Se connecter"
-#: packages/ui/primitives/document-flow/add-fields.tsx:829
+#: packages/ui/primitives/document-flow/add-fields.tsx:830
#: packages/ui/primitives/document-flow/add-signature.tsx:323
#: packages/ui/primitives/document-flow/field-icon.tsx:52
#: packages/ui/primitives/document-flow/types.ts:49
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:586
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:593
msgid "Signature"
msgstr "Signature"
@@ -1481,9 +1479,9 @@ msgstr "Email d'茅quipe supprim茅 pour {teamName} sur Documenso"
msgid "Template title"
msgstr "Titre du mod猫le"
-#: packages/ui/primitives/document-flow/add-fields.tsx:959
+#: packages/ui/primitives/document-flow/add-fields.tsx:960
#: packages/ui/primitives/document-flow/types.ts:52
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:716
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:723
msgid "Text"
msgstr "Texte"
@@ -1578,7 +1576,7 @@ msgstr "Cela peut 锚tre remplac茅 par le param茅trage direct des exigences d'aut
msgid "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
msgstr "Ce document ne peut pas 锚tre r茅cup茅r茅, si vous souhaitez contester la raison des documents futurs, veuillez contacter le support."
-#: packages/ui/primitives/document-flow/add-fields.tsx:763
+#: packages/ui/primitives/document-flow/add-fields.tsx:764
msgid "This document has already been sent to this recipient. You can no longer edit this recipient."
msgstr "Ce document a d茅j脿 茅t茅 envoy茅 脿 ce destinataire. Vous ne pouvez plus modifier ce destinataire."
@@ -1609,7 +1607,7 @@ msgstr "Cet e-mail est envoy茅 au destinataire lui demandant de signer le docume
msgid "This email will be sent to the recipient who has just signed the document, if there are still other recipients who have not signed yet."
msgstr "Cet e-mail sera envoy茅 au destinataire qui vient de signer le document, s'il y a encore d'autres destinataires qui n'ont pas sign茅."
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:573
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:581
msgid "This field cannot be modified or deleted. When you share this template's direct link or add it to your public profile, anyone who accesses it can input their name and email, and fill in the fields assigned to them."
msgstr "Ce champ ne peut pas 锚tre modifi茅 ou supprim茅. Lorsque vous partagez le lien direct de ce mod猫le ou l'ajoutez 脿 votre profil public, toute personne qui y acc猫de peut saisir son nom et son email, et remplir les champs qui lui sont attribu茅s."
@@ -1617,7 +1615,7 @@ msgstr "Ce champ ne peut pas 锚tre modifi茅 ou supprim茅. Lorsque vous partagez
msgid "This is how the document will reach the recipients once the document is ready for signing."
msgstr "Voici comment le document atteindra les destinataires une fois qu'il sera pr锚t 脿 锚tre sign茅."
-#: packages/ui/primitives/document-flow/add-fields.tsx:1096
+#: packages/ui/primitives/document-flow/add-fields.tsx:1097
msgid "This recipient can no longer be modified as they have signed a field, or completed the document."
msgstr "Ce destinataire ne peut plus 锚tre modifi茅 car il a sign茅 un champ ou compl茅t茅 le document."
@@ -1646,8 +1644,8 @@ msgstr "Fuseau horaire"
msgid "Title"
msgstr "Titre"
-#: packages/ui/primitives/document-flow/add-fields.tsx:1079
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:834
+#: packages/ui/primitives/document-flow/add-fields.tsx:1080
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:841
msgid "To proceed further, please set at least one value for the {0} field."
msgstr "Pour continuer, veuillez d茅finir au moins une valeur pour le champ {0}."
diff --git a/packages/lib/translations/fr/marketing.po b/packages/lib/translations/fr/marketing.po
index 1f0b041a6..a2d4ca002 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-14 12:05\n"
+"PO-Revision-Date: 2024-11-20 11:56\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
diff --git a/packages/lib/translations/fr/web.po b/packages/lib/translations/fr/web.po
index 53a7563e9..69f8fbf01 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-14 12:05\n"
+"PO-Revision-Date: 2024-11-20 11:56\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -50,19 +50,19 @@ msgstr "\"{placeholderEmail}\" au nom de \"{0}\" vous a invit茅 脿 signer \"exem
msgid "\"{teamUrl}\" has invited you to sign \"example document\"."
msgstr "\"{teamUrl}\" vous a invit茅 脿 signer \"example document\"."
-#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:79
+#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:80
msgid "({0}) has invited you to approve this document"
msgstr "({0}) vous a invit茅 脿 approuver ce document"
-#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:76
+#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:77
msgid "({0}) has invited you to sign this document"
msgstr "({0}) vous a invit茅 脿 signer ce document"
-#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:73
+#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:74
msgid "({0}) has invited you to view this document"
msgstr "({0}) vous a invit茅 脿 consulter ce document"
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:311
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:313
msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
msgstr "{0, plural, one {(1 caract猫re de trop)} other {(# caract猫res de trop)}}"
@@ -84,6 +84,10 @@ msgstr "{0, plural, one {# si猫ge} other {# si猫ges}}"
msgid "{0, plural, one {<0>You have <1>11> pending team invitation0>} other {<2>You have <3>#3> pending team invitations2>}}"
msgstr "{0, plural, one {<0>Vous avez <1>11> invitation d'茅quipe en attente0>} other {<2>Vous avez <3>#3> invitations d'茅quipe en attente2>}}"
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:196
+msgid "{0, plural, one {1 matching field} other {# matching fields}}"
+msgstr "{0, plural, one {1 champ correspondant} other {# champs correspondants}}"
+
#: apps/web/src/app/(dashboard)/documents/[id]/edit/document-edit-page-view.tsx:129
msgid "{0, plural, one {1 Recipient} other {# Recipients}}"
msgstr "{0, plural, one {1 Destinataire} other {# Destinataires}}"
@@ -96,6 +100,10 @@ msgstr "{0, plural, one {En attente d'1 destinataire} other {En attente de # des
msgid "{0, plural, zero {Select values} other {# selected...}}"
msgstr "{0, plural, zero {S茅lectionner des valeurs} other {# s茅lectionn茅es...}}"
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:193
+msgid "{0}"
+msgstr "{0}"
+
#: apps/web/src/components/templates/manage-public-template-dialog.tsx:249
msgid "{0} direct signing templates"
msgstr "{0} mod猫les de signature directe"
@@ -116,7 +124,7 @@ msgstr "{0} Destinataire(s)"
#~ msgid "{0} the document to complete the process."
#~ msgstr "{0} the document to complete the process."
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:292
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:294
msgid "{charactersRemaining, plural, one {1 character remaining} other {{charactersRemaining} characters remaining}}"
msgstr "{charactersRemaining, plural, one {1 caract猫re restant} other {{charactersRemaining} caract猫res restants}}"
@@ -474,6 +482,10 @@ msgstr "Une erreur est survenue lors de l'ajout de signataires."
msgid "An error occurred while adding the fields."
msgstr "Une erreur est survenue lors de l'ajout des champs."
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:154
+msgid "An error occurred while auto-signing the document, some fields may not be signed. Please review and manually sign any remaining fields."
+msgstr "Une erreur est survenue lors de la signature automatique du document, certains champs peuvent ne pas 锚tre sign茅s. Veuillez v茅rifier et signer manuellement tous les champs restants."
+
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:176
msgid "An error occurred while creating document from template."
msgstr "Une erreur est survenue lors de la cr茅ation du document 脿 partir d'un mod猫le."
@@ -748,7 +760,7 @@ msgstr "Banni猫re mise 脿 jour"
msgid "Basic details"
msgstr "D茅tails de base"
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:72
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:74
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/billing/page.tsx:61
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:117
#: apps/web/src/components/(dashboard)/settings/layout/mobile-nav.tsx:120
@@ -810,6 +822,7 @@ msgstr "En utilisant la fonctionnalit茅 de signature 茅lectronique, vous consent
#: apps/web/src/app/(dashboard)/templates/duplicate-template-dialog.tsx:78
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:119
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:472
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:220
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-2fa.tsx:178
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-account.tsx:71
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-passkey.tsx:164
@@ -817,11 +830,11 @@ msgstr "En utilisant la fonctionnalit茅 de signature 茅lectronique, vous consent
#: apps/web/src/app/(signing)/sign/[token]/form.tsx:151
#: apps/web/src/app/(signing)/sign/[token]/form.tsx:220
#: apps/web/src/app/(signing)/sign/[token]/name-field.tsx:215
-#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:327
+#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:328
#: apps/web/src/app/(signing)/sign/[token]/reject-document-dialog.tsx:153
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:113
#: apps/web/src/app/(signing)/sign/[token]/signature-field.tsx:248
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:333
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:335
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-transfer-status.tsx:121
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:176
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:242
@@ -1780,7 +1793,7 @@ msgstr "Entrez votre adresse e-mail pour recevoir le document compl茅t茅."
msgid "Enter your name"
msgstr "Entrez votre nom"
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:278
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:280
msgid "Enter your text here"
msgstr "Entrez votre texte ici"
@@ -1799,6 +1812,7 @@ msgstr "Entrez votre texte ici"
#: apps/web/src/app/(dashboard)/templates/duplicate-template-dialog.tsx:51
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:56
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:175
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:152
#: apps/web/src/app/(signing)/sign/[token]/checkbox-field.tsx:122
#: apps/web/src/app/(signing)/sign/[token]/checkbox-field.tsx:151
#: apps/web/src/app/(signing)/sign/[token]/checkbox-field.tsx:212
@@ -2230,6 +2244,10 @@ msgstr "G茅rer toutes les 茅quipes avec lesquelles vous 锚tes actuellement assoc
msgid "Manage and view template"
msgstr "G茅rer et afficher le mod猫le"
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:136
+msgid "Manage billing"
+msgstr "G茅rer la facturation"
+
#: apps/web/src/components/templates/manage-public-template-dialog.tsx:341
msgid "Manage details for this public template"
msgstr "G茅rer les d茅tails de ce mod猫le public"
@@ -2250,7 +2268,7 @@ msgstr "G茅rer les cl茅s d'acc猫s"
msgid "Manage subscription"
msgstr "G茅rer l'abonnement"
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:66
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:67
msgid "Manage Subscription"
msgstr "G茅rer l'abonnement"
@@ -2463,7 +2481,7 @@ msgstr "Non pris en charge"
msgid "Nothing to do"
msgstr "Rien 脿 faire"
-#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:270
+#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:271
msgid "Number"
msgstr "Num茅ro"
@@ -3026,8 +3044,8 @@ msgid "Roles"
msgstr "R么les"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:446
-#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:336
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:342
+#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:337
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:344
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/preferences/branding-preferences.tsx:312
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/preferences/document-preferences.tsx:232
msgid "Save"
@@ -3175,6 +3193,7 @@ msgstr "Afficher des mod猫les dans le profil public de votre 茅quipe pour que vo
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:114
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:139
#: apps/web/src/app/(profile)/p/[url]/page.tsx:192
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:229
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-2fa.tsx:182
#: apps/web/src/app/(signing)/sign/[token]/name-field.tsx:224
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:124
@@ -3331,7 +3350,7 @@ msgstr "Param猫tres du site"
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:80
#: apps/web/src/app/(dashboard)/documents/duplicate-document-dialog.tsx:72
#: apps/web/src/app/(dashboard)/settings/billing/billing-plans.tsx:62
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:50
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:51
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:124
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:73
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:93
@@ -3646,8 +3665,8 @@ msgstr "Mod猫les"
msgid "Templates allow you to quickly generate documents with pre-filled recipients and fields."
msgstr "Les mod猫les vous permettent de g茅n茅rer rapidement des documents avec des destinataires et des champs pr茅-remplis."
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:256
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:272
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:257
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:274
msgid "Text"
msgstr "Texte"
@@ -4451,7 +4470,7 @@ msgstr "Vous voulez envoyer des liens de signature 茅l茅gants comme celui-ci ? <
msgid "Want your own public profile?"
msgstr "Vous voulez votre propre profil public ?"
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:40
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:41
#: apps/web/src/app/(teams)/t/[teamUrl]/layout-billing-banner.tsx:55
#: apps/web/src/components/(teams)/team-billing-portal-button.tsx:31
msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
@@ -4715,6 +4734,10 @@ msgstr "Essayiez-vous d'茅diter ce document 脿 la place ?"
msgid "When you click continue, you will be prompted to add the first available authenticator on your system."
msgstr "Lorsque vous cliquez sur continuer, vous serez invit茅 脿 ajouter le premier authentificateur disponible sur votre syst猫me."
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:183
+msgid "When you sign a document, we can automatically fill in and sign the following fields using information that has already been provided. You can also manually sign or remove any automatically signed fields afterwards if you desire."
+msgstr "Lorsque vous signez un document, nous pouvons automatiquement remplir et signer les champs suivants 脿 l'aide des informations d茅j脿 fournies. Vous pouvez 茅galement signer manuellement ou supprimer les champs sign茅s automatiquement par la suite si vous le souhaitez."
+
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:36
msgid "When you use our platform to affix your electronic signature to documents, you are consenting to do so under the Electronic Signatures in Global and National Commerce Act (E-Sign Act) and other applicable laws. This action indicates your agreement to use electronic means to sign documents and receive notifications."
msgstr "Lorsque vous utilisez notre plateforme pour apposer votre signature 茅lectronique sur des documents, vous consentez 脿 le faire conform茅ment 脿 la loi sur les signatures 茅lectroniques dans le commerce mondial et national (E-Sign Act) et aux autres lois applicables. Cette action indique votre accord 脿 utiliser des moyens 茅lectroniques pour signer des documents et recevoir des notifications."
@@ -4784,7 +4807,7 @@ msgstr "Vous 锚tes sur le point de supprimer l'utilisateur suivant de <0>{teamNa
msgid "You are about to revoke access for team <0>{0}0> ({1}) to use your email."
msgstr "Vous 锚tes sur le point de r茅voquer l'acc猫s de l'茅quipe <0>{0}0> ({1}) 脿 votre e-mail."
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:78
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:80
msgid "You are currently on the <0>Free Plan0>."
msgstr "Vous 锚tes actuellement sur le <0>Plan Gratuit0>."
@@ -4836,7 +4859,7 @@ msgstr "Vous ne pouvez pas modifier un membre de l'茅quipe qui a un r么le plus
msgid "You cannot upload encrypted PDFs"
msgstr "Vous ne pouvez pas t茅l茅charger de PDF crypt茅s"
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:45
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:46
msgid "You do not currently have a customer record, this should not happen. Please contact support for assistance."
msgstr "Vous n'avez actuellement pas de dossier client, cela ne devrait pas se produire. Veuillez contacter le support pour obtenir de l'aide."
@@ -4982,7 +5005,7 @@ msgstr "L'URL de votre site web de marque"
msgid "Your branding preferences have been updated"
msgstr "Vos pr茅f茅rences de branding ont 茅t茅 mises 脿 jour"
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:119
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:125
msgid "Your current plan is past due. Please update your payment information."
msgstr "Votre plan actuel est en retard. Veuillez mettre 脿 jour vos informations de paiement."
diff --git a/packages/lib/translations/pl/common.po b/packages/lib/translations/pl/common.po
index 54f02c577..f34deb226 100644
--- a/packages/lib/translations/pl/common.po
+++ b/packages/lib/translations/pl/common.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: pl\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2024-11-14 12:05\n"
+"PO-Revision-Date: 2024-11-20 11:56\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
@@ -414,11 +414,11 @@ msgstr "Dodaj kolejn膮 warto艣膰"
msgid "Add myself"
msgstr "Dodaj siebie"
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:637
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:645
msgid "Add Myself"
msgstr "Dodaj siebie"
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:623
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:631
msgid "Add Placeholder Recipient"
msgstr "Dodaj odbiorc臋 zast臋pczego"
@@ -443,8 +443,8 @@ msgstr "Administrator"
msgid "Advanced Options"
msgstr "Opcje zaawansowane"
-#: packages/ui/primitives/document-flow/add-fields.tsx:573
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:406
+#: packages/ui/primitives/document-flow/add-fields.tsx:576
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:409
msgid "Advanced settings"
msgstr "Ustawienia zaawansowane"
@@ -550,6 +550,10 @@ msgstr "Kserokopie"
msgid "Character Limit"
msgstr "Limit znak贸w"
+#: packages/ui/primitives/document-flow/types.ts:58
+msgid "Checkbox"
+msgstr "Checkbox"
+
#: packages/ui/primitives/document-flow/field-items-advanced-settings/checkbox-field.tsx:197
msgid "Checkbox values"
msgstr "Warto艣ci checkboxa"
@@ -585,8 +589,8 @@ msgstr "Dokument zako艅czony"
msgid "Configure Direct Recipient"
msgstr "Skonfiguruj bezpo艣redniego odbiorc臋"
-#: packages/ui/primitives/document-flow/add-fields.tsx:574
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:407
+#: packages/ui/primitives/document-flow/add-fields.tsx:577
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:410
msgid "Configure the {0} field"
msgstr "Skonfiguruj pole {0}"
@@ -647,9 +651,9 @@ msgstr "Utw贸rz konto"
msgid "Custom Text"
msgstr "Tekst niestandardowy"
-#: packages/ui/primitives/document-flow/add-fields.tsx:927
+#: packages/ui/primitives/document-flow/add-fields.tsx:934
#: packages/ui/primitives/document-flow/types.ts:53
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:690
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:697
msgid "Date"
msgstr "Data"
@@ -666,7 +670,7 @@ msgstr "Odm贸w"
msgid "Didn't request a password change? We are here to help you secure your account, just <0>contact us.0>"
msgstr "Nie prosi艂e艣 o zmian臋 has艂a? Jeste艣my tutaj, aby pom贸c Ci zabezpieczy膰 swoje konto, po prostu <0>skontaktuj si臋 z nami.0>"
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:570
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:578
msgid "Direct link receiver"
msgstr "Odbiorca linku bezpo艣redniego"
@@ -788,8 +792,8 @@ msgstr "Robocza wersja"
msgid "Drag & drop your PDF here."
msgstr "Przeci膮gnij i upu艣膰 sw贸j PDF tutaj."
-#: packages/ui/primitives/document-flow/add-fields.tsx:1058
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:820
+#: packages/ui/primitives/document-flow/add-fields.tsx:1065
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:827
msgid "Dropdown"
msgstr "Lista rozwijana"
@@ -798,14 +802,14 @@ msgid "Dropdown options"
msgstr "Opcje rozwijane"
#: packages/lib/constants/document.ts:28
-#: packages/ui/primitives/document-flow/add-fields.tsx:875
+#: packages/ui/primitives/document-flow/add-fields.tsx:882
#: packages/ui/primitives/document-flow/add-signature.tsx:272
#: packages/ui/primitives/document-flow/add-signers.tsx:512
#: packages/ui/primitives/document-flow/add-signers.tsx:519
#: packages/ui/primitives/document-flow/types.ts:54
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:638
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:463
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:470
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:645
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:471
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:478
msgid "Email"
msgstr "Email"
@@ -825,7 +829,7 @@ msgstr "E-mail wys艂any ponownie"
msgid "Email sent"
msgstr "E-mail wys艂any"
-#: packages/ui/primitives/document-flow/add-fields.tsx:1123
+#: packages/ui/primitives/document-flow/add-fields.tsx:1130
msgid "Empty field"
msgstr "Puste pole"
@@ -834,11 +838,11 @@ msgid "Enable Direct Link Signing"
msgstr "W艂膮cz podpisywanie linku bezpo艣redniego"
#: packages/ui/primitives/document-flow/add-signers.tsx:401
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:362
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:370
msgid "Enable signing order"
msgstr "W艂膮cz kolejno艣膰 podpis贸w"
-#: packages/ui/primitives/document-flow/add-fields.tsx:795
+#: packages/ui/primitives/document-flow/add-fields.tsx:802
msgid "Enable Typed Signatures"
msgstr "W艂膮cz podpisy typu pisanego"
@@ -1016,14 +1020,14 @@ msgstr "Wiadomo艣膰 <0>(Opcjonalnie)0>"
msgid "Min"
msgstr "Min"
-#: packages/ui/primitives/document-flow/add-fields.tsx:901
+#: packages/ui/primitives/document-flow/add-fields.tsx:908
#: packages/ui/primitives/document-flow/add-signature.tsx:298
#: packages/ui/primitives/document-flow/add-signers.tsx:550
#: packages/ui/primitives/document-flow/add-signers.tsx:556
#: packages/ui/primitives/document-flow/types.ts:55
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:664
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:498
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:504
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:671
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:506
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:512
msgid "Name"
msgstr "Nazwa"
@@ -1039,8 +1043,8 @@ msgstr "Wymaga podpisania"
msgid "Needs to view"
msgstr "Wymaga obejrzenia"
-#: packages/ui/primitives/document-flow/add-fields.tsx:686
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:504
+#: packages/ui/primitives/document-flow/add-fields.tsx:693
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:511
msgid "No recipient matching this description was found."
msgstr "Nie znaleziono odbiorcy pasuj膮cego do tego opisu."
@@ -1048,8 +1052,8 @@ msgstr "Nie znaleziono odbiorcy pasuj膮cego do tego opisu."
msgid "No recipients"
msgstr "Brak odbiorc贸w"
-#: packages/ui/primitives/document-flow/add-fields.tsx:701
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:519
+#: packages/ui/primitives/document-flow/add-fields.tsx:708
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:526
msgid "No recipients with this role"
msgstr "Brak odbiorc贸w z t膮 rol膮"
@@ -1077,9 +1081,9 @@ msgstr "Nie znaleziono warto艣ci."
msgid "None"
msgstr "Brak"
-#: packages/ui/primitives/document-flow/add-fields.tsx:979
+#: packages/ui/primitives/document-flow/add-fields.tsx:986
#: packages/ui/primitives/document-flow/types.ts:56
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:742
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:749
msgid "Number"
msgstr "Numer"
@@ -1170,7 +1174,8 @@ msgstr "Prosz臋 potwierdzi膰 sw贸j adres email"
msgid "Please try again or contact our support."
msgstr "Spr贸buj ponownie lub skontaktuj si臋 z naszym wsparciem."
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:768
+#: packages/ui/primitives/document-flow/types.ts:57
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:775
msgid "Radio"
msgstr "Radio"
@@ -1250,7 +1255,7 @@ msgstr "Przypomnienie: Prosz臋 {recipientActionVerb} ten dokument"
msgid "Reminder: Please {recipientActionVerb} your document"
msgstr "Przypomnienie: Prosz臋 {recipientActionVerb} Tw贸j dokument"
-#: packages/ui/primitives/document-flow/add-fields.tsx:1110
+#: packages/ui/primitives/document-flow/add-fields.tsx:1117
msgid "Remove"
msgstr "Usu艅"
@@ -1282,7 +1287,7 @@ msgstr "Wiersze na stron臋"
msgid "Save"
msgstr "Zapisz"
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:854
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:861
msgid "Save Template"
msgstr "Zapisz szablon"
@@ -1291,6 +1296,7 @@ msgid "Search languages..."
msgstr "Szukaj j臋zyk贸w..."
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx:115
+#: packages/ui/primitives/document-flow/types.ts:59
msgid "Select"
msgstr "Wybierz"
@@ -1354,7 +1360,7 @@ msgid "Share your signing experience!"
msgstr "Podziel si臋 swoim do艣wiadczeniem podpisywania!"
#: packages/ui/primitives/document-flow/add-signers.tsx:709
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:655
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:663
msgid "Show advanced settings"
msgstr "Poka偶 ustawienia zaawansowane"
@@ -1370,11 +1376,11 @@ msgstr "Podpisz dokument"
msgid "Sign In"
msgstr "Zaloguj si臋"
-#: packages/ui/primitives/document-flow/add-fields.tsx:823
+#: packages/ui/primitives/document-flow/add-fields.tsx:830
#: packages/ui/primitives/document-flow/add-signature.tsx:323
#: packages/ui/primitives/document-flow/field-icon.tsx:52
#: packages/ui/primitives/document-flow/types.ts:49
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:586
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:593
msgid "Signature"
msgstr "Podpis"
@@ -1457,9 +1463,9 @@ msgstr "Email zespo艂owy usuni臋ty dla {teamName} na Documenso"
msgid "Template title"
msgstr "Tytu艂 szablonu"
-#: packages/ui/primitives/document-flow/add-fields.tsx:953
+#: packages/ui/primitives/document-flow/add-fields.tsx:960
#: packages/ui/primitives/document-flow/types.ts:52
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:716
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:723
msgid "Text"
msgstr "Tekst"
@@ -1554,7 +1560,7 @@ msgstr "To mo偶na nadpisa膰, ustawiaj膮c wymagania dotycz膮ce uwierzytelniania b
msgid "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
msgstr "Dokument ten nie mo偶e by膰 odzyskany. Je艣li chcesz zakwestionowa膰 przyczyn臋 przysz艂ych dokument贸w, skontaktuj si臋 z administracj膮."
-#: packages/ui/primitives/document-flow/add-fields.tsx:757
+#: packages/ui/primitives/document-flow/add-fields.tsx:764
msgid "This document has already been sent to this recipient. You can no longer edit this recipient."
msgstr "Ten dokument zosta艂 ju偶 wys艂any do tego odbiorcy. Nie mo偶na ju偶 edytowa膰 tego odbiorcy."
@@ -1585,7 +1591,7 @@ msgstr "Ten e-mail jest wysy艂any do odbiorcy, prosz膮c go o podpisanie dokument
msgid "This email will be sent to the recipient who has just signed the document, if there are still other recipients who have not signed yet."
msgstr "Ten e-mail zostanie wys艂any do odbiorcy, kt贸ry w艂a艣nie podpisa艂 dokument, je艣li s膮 jeszcze inni odbiorcy, kt贸rzy nie podpisali."
-#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:573
+#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:581
msgid "This field cannot be modified or deleted. When you share this template's direct link or add it to your public profile, anyone who accesses it can input their name and email, and fill in the fields assigned to them."
msgstr "To pole nie mo偶e by膰 modyfikowane ani usuwane. Po udost臋pnieniu bezpo艣redniego linku do tego szablonu lub dodaniu go do swojego publicznego profilu, ka偶dy, kto si臋 w nim dostanie, mo偶e wpisa膰 swoje imi臋 i email oraz wype艂ni膰 przypisane mu pola."
@@ -1593,7 +1599,7 @@ msgstr "To pole nie mo偶e by膰 modyfikowane ani usuwane. Po udost臋pnieniu bezpo
msgid "This is how the document will reach the recipients once the document is ready for signing."
msgstr "W ten spos贸b dokument dotrze do odbiorc贸w, gdy tylko dokument b臋dzie gotowy do podpisania."
-#: packages/ui/primitives/document-flow/add-fields.tsx:1090
+#: packages/ui/primitives/document-flow/add-fields.tsx:1097
msgid "This recipient can no longer be modified as they have signed a field, or completed the document."
msgstr "Ten odbiorca nie mo偶e by膰 ju偶 modyfikowany, poniewa偶 podpisa艂 pole lub uko艅czy艂 dokument."
@@ -1622,8 +1628,8 @@ msgstr "Strefa czasowa"
msgid "Title"
msgstr "Tytu艂"
-#: packages/ui/primitives/document-flow/add-fields.tsx:1073
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:834
+#: packages/ui/primitives/document-flow/add-fields.tsx:1080
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:841
msgid "To proceed further, please set at least one value for the {0} field."
msgstr "Aby kontynuowa膰, ustaw przynajmniej jedn膮 warto艣膰 dla pola {0}."
diff --git a/packages/lib/translations/pl/marketing.po b/packages/lib/translations/pl/marketing.po
index 831dc7d6c..3562769bb 100644
--- a/packages/lib/translations/pl/marketing.po
+++ b/packages/lib/translations/pl/marketing.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: pl\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2024-11-14 12:05\n"
+"PO-Revision-Date: 2024-11-20 11:56\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
diff --git a/packages/lib/translations/pl/web.po b/packages/lib/translations/pl/web.po
index bb24b0446..48af3c12a 100644
--- a/packages/lib/translations/pl/web.po
+++ b/packages/lib/translations/pl/web.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: pl\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2024-11-14 12:05\n"
+"PO-Revision-Date: 2024-11-20 11:56\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
@@ -50,19 +50,19 @@ msgstr "\"{placeholderEmail}\" w imieniu \"{0}\" zaprosi艂 Ci臋 do podpisania \"
msgid "\"{teamUrl}\" has invited you to sign \"example document\"."
msgstr "\"{teamUrl}\" zaprosi艂 Ci臋 do podpisania \"przyk艂adowego dokumentu\"."
-#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:79
+#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:80
msgid "({0}) has invited you to approve this document"
msgstr "({0}) zaprosi艂 Ci臋 do zatwierdzenia tego dokumentu"
-#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:76
+#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:77
msgid "({0}) has invited you to sign this document"
msgstr "({0}) zaprosi艂 Ci臋 do podpisania tego dokumentu"
-#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:73
+#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:74
msgid "({0}) has invited you to view this document"
msgstr "({0}) zaprosi艂 Ci臋 do przegl膮dania tego dokumentu"
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:311
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:313
msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
msgstr "{0, plural, one {(1 znak przekroczony)} other {(# znak贸w przekroczonych)}}"
@@ -84,6 +84,10 @@ msgstr "{0, plural, one {# miejsce} other {# miejsc}}"
msgid "{0, plural, one {<0>You have <1>11> pending team invitation0>} other {<2>You have <3>#3> pending team invitations2>}}"
msgstr "{0, plural, one {<0>Masz <1>11> oczekuj膮ce zaproszenie do zespo艂u0>} other {<2>Masz <3>#3> oczekuj膮cych zaprosze艅 do zespo艂u2>}}"
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:196
+msgid "{0, plural, one {1 matching field} other {# matching fields}}"
+msgstr "{0, plural, one {1 pasuj膮ce pole} other {# pasuj膮cych p贸l}}"
+
#: apps/web/src/app/(dashboard)/documents/[id]/edit/document-edit-page-view.tsx:129
msgid "{0, plural, one {1 Recipient} other {# Recipients}}"
msgstr "{0, plural, one {1 Odbiorca} other {# Odbiorc贸w}}"
@@ -96,6 +100,10 @@ msgstr "{0, plural, one {Czekam na 1 odbiorc臋} other {Czekam na # odbiorc贸w}}"
msgid "{0, plural, zero {Select values} other {# selected...}}"
msgstr "{0, plural, zero {Wybierz warto艣ci} other {# wybranych...}}"
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:193
+msgid "{0}"
+msgstr "{0}"
+
#: apps/web/src/components/templates/manage-public-template-dialog.tsx:249
msgid "{0} direct signing templates"
msgstr "{0} bezpo艣rednich szablon贸w podpisu"
@@ -116,7 +124,7 @@ msgstr "{0} Odbiorca (贸w)"
#~ msgid "{0} the document to complete the process."
#~ msgstr "{0} the document to complete the process."
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:292
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:294
msgid "{charactersRemaining, plural, one {1 character remaining} other {{charactersRemaining} characters remaining}}"
msgstr "{charactersRemaining, plural, one {1 znak pozosta艂y} other {{charactersRemaining} znaki pozosta艂e}}"
@@ -254,7 +262,7 @@ msgstr "Akceptowane zaproszenie do zespo艂u"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:128
msgid "Account Authentication"
-msgstr "Autoryzacja konta"
+msgstr "Uwierzytelnianie konta"
#: 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
@@ -263,7 +271,7 @@ msgstr "Konto usuni臋te"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:119
msgid "Account Re-Authentication"
-msgstr "Ponowna autoryzacja konta"
+msgstr "Ponowna Autoryzacja Konta"
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:139
msgid "Acknowledgment"
@@ -296,7 +304,7 @@ msgstr "Aktywny"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:68
msgid "Active Subscriptions"
-msgstr "Aktywne subskrypcje"
+msgstr "Aktywne Subskrypcje"
#: apps/web/src/components/(teams)/dialogs/add-team-email-dialog.tsx:189
msgid "Add"
@@ -309,7 +317,7 @@ msgstr "Dodaj wszystkie istotne pola dla ka偶dego odbiorcy."
#: apps/web/src/app/(dashboard)/templates/[id]/edit/edit-template.tsx:83
msgid "Add all relevant placeholders for each recipient."
-msgstr "Dodaj wszystkie istotne znaczniki dla ka偶dego odbiorcy."
+msgstr "Dodaj wszystkie odpowiednie symbole zast臋pcze dla ka偶dego odbiorcy."
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:62
msgid "Add an authenticator to serve as a secondary authentication method for signing documents."
@@ -335,7 +343,7 @@ msgstr "Dodaj wi臋cej"
#: apps/web/src/app/(dashboard)/settings/security/passkeys/create-passkey-dialog.tsx:146
#: apps/web/src/app/(dashboard)/settings/security/passkeys/create-passkey-dialog.tsx:154
msgid "Add passkey"
-msgstr "Dodaj klucz has艂a"
+msgstr "Dodaj has艂o"
#: apps/web/src/app/(dashboard)/templates/[id]/edit/edit-template.tsx:82
msgid "Add Placeholders"
@@ -359,7 +367,7 @@ msgstr "Dodaj osoby, kt贸re podpisz膮 dokument."
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:220
msgid "Add the recipients to create the document with"
-msgstr "Dodaj odbiorc贸w, aby stworzy膰 dokument"
+msgstr "Dodaj odbiorc贸w, aby utworzy膰 dokument"
#: apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx:181
#~ msgid "Add the subject and message you wish to send to signers."
@@ -474,6 +482,10 @@ msgstr "Wyst膮pi艂 b艂膮d podczas dodawania sygnatariuszy."
msgid "An error occurred while adding the fields."
msgstr "Wyst膮pi艂 b艂膮d podczas dodawania p贸l."
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:154
+msgid "An error occurred while auto-signing the document, some fields may not be signed. Please review and manually sign any remaining fields."
+msgstr "Wyst膮pi艂 b艂膮d podczas automatycznego podpisywania dokumentu, niekt贸re pola mog膮 nie by膰 podpisane. Prosz臋 sprawdzi膰 i r臋cznie podpisa膰 wszystkie pozosta艂e pola."
+
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:176
msgid "An error occurred while creating document from template."
msgstr "Wyst膮pi艂 b艂膮d podczas tworzenia dokumentu z szablonu."
@@ -748,7 +760,7 @@ msgstr "Baner zaktualizowany"
msgid "Basic details"
msgstr "Podstawowe szczeg贸艂y"
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:72
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:74
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/billing/page.tsx:61
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:117
#: apps/web/src/components/(dashboard)/settings/layout/mobile-nav.tsx:120
@@ -810,6 +822,7 @@ msgstr "Korzystaj膮c z funkcji podpisu elektronicznego, wyra偶asz zgod臋 na prze
#: apps/web/src/app/(dashboard)/templates/duplicate-template-dialog.tsx:78
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:119
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:472
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:220
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-2fa.tsx:178
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-account.tsx:71
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-passkey.tsx:164
@@ -817,11 +830,11 @@ msgstr "Korzystaj膮c z funkcji podpisu elektronicznego, wyra偶asz zgod臋 na prze
#: apps/web/src/app/(signing)/sign/[token]/form.tsx:151
#: apps/web/src/app/(signing)/sign/[token]/form.tsx:220
#: apps/web/src/app/(signing)/sign/[token]/name-field.tsx:215
-#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:327
+#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:328
#: apps/web/src/app/(signing)/sign/[token]/reject-document-dialog.tsx:153
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:113
#: apps/web/src/app/(signing)/sign/[token]/signature-field.tsx:248
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:333
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:335
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-transfer-status.tsx:121
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:176
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:242
@@ -1780,7 +1793,7 @@ msgstr "Wprowad藕 sw贸j adres e-mail, aby otrzyma膰 uko艅czony dokument."
msgid "Enter your name"
msgstr "Wprowad藕 swoje imi臋"
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:278
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:280
msgid "Enter your text here"
msgstr "Wprowad藕 sw贸j tekst tutaj"
@@ -1799,6 +1812,7 @@ msgstr "Wprowad藕 sw贸j tekst tutaj"
#: apps/web/src/app/(dashboard)/templates/duplicate-template-dialog.tsx:51
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:56
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:175
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:152
#: apps/web/src/app/(signing)/sign/[token]/checkbox-field.tsx:122
#: apps/web/src/app/(signing)/sign/[token]/checkbox-field.tsx:151
#: apps/web/src/app/(signing)/sign/[token]/checkbox-field.tsx:212
@@ -2230,6 +2244,10 @@ msgstr "Zarz膮dzaj wszystkimi zespo艂ami, z kt贸rymi jeste艣 obecnie zwi膮zany."
msgid "Manage and view template"
msgstr "Zarz膮dzaj i przegl膮daj szablon"
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:136
+msgid "Manage billing"
+msgstr "Zarz膮dzaj fakturowaniem"
+
#: apps/web/src/components/templates/manage-public-template-dialog.tsx:341
msgid "Manage details for this public template"
msgstr "Zarz膮dzaj szczeg贸艂ami tego publicznego szablonu"
@@ -2250,7 +2268,7 @@ msgstr "Zarz膮dzaj kluczami dost臋pu"
msgid "Manage subscription"
msgstr "Zarz膮dzaj subskrypcj膮"
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:66
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:67
msgid "Manage Subscription"
msgstr "Zarz膮dzaj Subskrypcj膮"
@@ -2463,7 +2481,7 @@ msgstr "Nieobs艂ugiwane"
msgid "Nothing to do"
msgstr "Nic do zrobienia"
-#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:270
+#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:271
msgid "Number"
msgstr "Numer"
@@ -2570,7 +2588,7 @@ msgstr "Nazwa klucza dost臋pu"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:121
msgid "Passkey Re-Authentication"
-msgstr "Ponowna autoryzacja za pomoc膮 klucza"
+msgstr "Ponowna Autoryzacja Klucza Dost臋pu"
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:106
#: apps/web/src/app/(dashboard)/settings/security/passkeys/page.tsx:32
@@ -2627,7 +2645,7 @@ msgstr "Oczekuj膮ce Dokumenty"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:89
msgid "Pending Documents"
-msgstr "Oczekuj膮ce zaproszenia"
+msgstr "Oczekuj膮ce dokumenty"
#: apps/web/src/app/(dashboard)/settings/teams/team-invitations.tsx:62
msgid "Pending invitations"
@@ -2639,71 +2657,71 @@ msgstr "Oczekuj膮cy zesp贸艂 usuni臋ty."
#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:134
msgid "Personal"
-msgstr "Konto osobiste"
+msgstr "Osobiste"
#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:77
msgid "Personal Account"
-msgstr "Wybierz has艂o"
+msgstr "Konto osobiste"
#: apps/web/src/app/(signing)/sign/[token]/complete/claim-account.tsx:152
msgid "Pick a password"
-msgstr "Wybierz jedn膮 z poni偶szych um贸w i zacznij podpisywa膰, aby si臋 zarejestrowa膰"
+msgstr "Wybierz has艂o"
#: apps/web/src/components/ui/user-profile-timur.tsx:53
msgid "Pick any of the following agreements below and start signing to get started"
-msgstr "Pick any of the following agreements below and start signing to get started"
+msgstr "Wybierz dowoln膮 z poni偶szych um贸w i zacznij podpisywanie, aby rozpocz膮膰"
#: apps/web/src/components/(teams)/dialogs/invite-team-member-dialog.tsx:212
msgid "Please check the CSV file and make sure it is according to our format"
-msgstr "Prosz臋 wybra膰 nowe has艂o"
+msgstr "Prosz臋 sprawdzi膰 plik CSV i upewni膰 si臋, 偶e jest zgodny z naszym formatem"
#: apps/web/src/app/(signing)/sign/[token]/waiting/page.tsx:81
msgid "Please check your email for updates."
-msgstr "Prosz臋 sprawd藕 sw贸j e-mail w celu uzyskania aktualizacji."
+msgstr "Prosz臋 sprawdzi膰 sw贸j email w celu aktualizacji."
#: apps/web/src/app/(unauthenticated)/reset-password/[token]/page.tsx:34
msgid "Please choose your new password"
-msgstr "Please choose your new password"
+msgstr "Prosz臋 wybra膰 nowe has艂o"
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:174
msgid "Please contact support if you would like to revert this action."
-msgstr "Prosz臋 poda膰 znacz膮c膮 nazw臋 dla swojego tokena. To pomo偶e Ci zidentyfikowa膰 go p贸藕niej."
+msgstr "Prosz臋 skontaktowa膰 si臋 z pomoc膮 techniczn膮, je艣li chcesz cofn膮膰 t臋 akcj臋."
#: apps/web/src/components/forms/token.tsx:175
msgid "Please enter a meaningful name for your token. This will help you identify it later."
-msgstr "Please enter a meaningful name for your token. This will help you identify it later."
+msgstr "Prosz臋 poda膰 warto艣ciow膮 nazw臋 dla swojego tokena. Pomo偶e to p贸藕niej w jego identyfikacji."
#: apps/web/src/app/(signing)/sign/[token]/form.tsx:135
msgid "Please mark as viewed to complete"
-msgstr "Please mark as viewed to complete"
+msgstr "Prosz臋 zaznaczy膰 jako obejrzane, aby zako艅czy膰"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:459
msgid "Please note that proceeding will remove direct linking recipient and turn it into a placeholder."
-msgstr "Please note that proceeding will remove direct linking recipient and turn it into a placeholder."
+msgstr "Prosz臋 zauwa偶y膰, 偶e kontynuowanie usunie bezpo艣rednio 艂膮cz膮cego odbiorc臋 i zamieni go w symbol zast臋pczy."
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:128
msgid "Please note that this action is <0>irreversible0>."
-msgstr "Prosz臋 pami臋ta膰, 偶e ta akcja jest <0>nieodwracalna0>. Po zatwierdzeniu ten dokument zostanie trwale usuni臋ty."
+msgstr "Prosz臋 zauwa偶y膰, 偶e ta czynno艣膰 jest <0>nieodwracalna0>."
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:119
msgid "Please note that this action is <0>irreversible0>. Once confirmed, this document will be permanently deleted."
-msgstr "Please note that this action is <0>irreversible0>. Once confirmed, this document will be permanently deleted."
+msgstr "Prosz臋 pami臋ta膰, 偶e ta czynno艣膰 jest <0>nieodwracalna0>. Po potwierdzeniu, ten dokument zostanie trwale usuni臋ty."
#: apps/web/src/app/(dashboard)/templates/delete-template-dialog.tsx:67
msgid "Please note that this action is irreversible. Once confirmed, your template will be permanently deleted."
-msgstr "Prosz臋 pami臋ta膰, 偶e ta akcja jest nieodwracalna. Po zatwierdzeniu Tw贸j token zostanie trwale usuni臋ty."
+msgstr "Prosz臋 pami臋ta膰, 偶e ta czynno艣膰 jest nieodwracalna. Po potwierdzeniu, Tw贸j szablon zostanie trwale usuni臋ty."
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:133
msgid "Please note that this action is irreversible. Once confirmed, your token will be permanently deleted."
-msgstr "Prosz臋 pami臋ta膰, 偶e ta akcja jest nieodwracalna. Po zatwierdzeniu Tw贸j webhook zostanie trwale usuni臋ty."
+msgstr "Prosz臋 zauwa偶y膰, 偶e ta czynno艣膰 jest nieodwracalna. Po potwierdzeniu, tw贸j token zostanie trwale usuni臋ty."
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:121
msgid "Please note that this action is irreversible. Once confirmed, your webhook will be permanently deleted."
-msgstr "Please note that this action is irreversible. Once confirmed, your webhook will be permanently deleted."
+msgstr "Prosz臋 pami臋ta膰, 偶e ta czynno艣膰 jest nieodwracalna. Po potwierdzeniu, Tw贸j webhook zostanie trwale usuni臋ty."
#: apps/web/src/components/(teams)/dialogs/delete-team-dialog.tsx:130
msgid "Please note that you will lose access to all documents associated with this team & all the members will be removed and notified"
-msgstr "Please note that you will lose access to all documents associated with this team & all the members will be removed and notified"
+msgstr "Prosz臋 pami臋ta膰, 偶e stracisz dost臋p do wszystkich dokument贸w powi膮zanych z tym zespo艂em i wszyscy cz艂onkowie zostan膮 usuni臋ci oraz powiadomieni"
#: apps/web/src/app/(signing)/sign/[token]/reject-document-dialog.tsx:37
msgid "Please provide a reason"
@@ -2711,11 +2729,11 @@ msgstr "Prosz臋 poda膰 pow贸d"
#: apps/web/src/components/forms/2fa/disable-authenticator-app-dialog.tsx:127
msgid "Please provide a token from the authenticator, or a backup code. If you do not have a backup code available, please contact support."
-msgstr "Prosz臋 poda膰 token z swojego autoryzatora lub kod zapasowy."
+msgstr "Prosz臋 poda膰 token z aplikacji uwierzytelniaj膮cej lub kod zapasowy. Je艣li nie masz dost臋pnego kodu zapasowego, skontaktuj si臋 z pomoc膮 techniczn膮."
#: apps/web/src/components/forms/2fa/view-recovery-codes-dialog.tsx:120
msgid "Please provide a token from your authenticator, or a backup code."
-msgstr "Prosz臋 spr贸bowa膰 ponownie i upewni膰 si臋, 偶e wprowadzasz poprawny adres e-mail."
+msgstr "Prosz臋 poda膰 token z Twojego uwierzytelniacza lub kod zapasowy."
#: apps/web/src/app/(signing)/sign/[token]/form.tsx:169
msgid "Please review the document before signing."
@@ -2723,25 +2741,25 @@ msgstr "Prosz臋 przejrze膰 dokument przed podpisaniem."
#: apps/web/src/components/forms/send-confirmation-email.tsx:64
msgid "Please try again and make sure you enter the correct email address."
-msgstr "Please try again and make sure you enter the correct email address."
+msgstr "Spr贸buj ponownie i upewnij si臋, 偶e wprowadzasz poprawny adres email."
#: apps/web/src/components/forms/signin.tsx:203
msgid "Please try again later or login using your normal details"
-msgstr "Please try again later or login using your normal details"
+msgstr "Spr贸buj ponownie p贸藕niej lub zaloguj si臋, u偶ywaj膮c swoich normalnych danych"
#: apps/web/src/app/(dashboard)/templates/new-template-dialog.tsx:80
msgid "Please try again later."
-msgstr "Please try again later."
+msgstr "Prosz臋 spr贸bowa膰 ponownie p贸藕niej."
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:134
msgid "Please type <0>{0}0> to confirm."
-msgstr "Please type <0>{0}0> to confirm."
+msgstr "Prosz臋 wpisa膰 <0>{0}0> aby potwierdzi膰."
#: apps/web/src/components/(dashboard)/common/command-menu.tsx:214
#: apps/web/src/components/(teams)/settings/layout/desktop-nav.tsx:58
#: apps/web/src/components/(teams)/settings/layout/mobile-nav.tsx:67
msgid "Preferences"
-msgstr "Preferences"
+msgstr "Preferencje"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/preferences/document-preferences.tsx:204
msgid "Preview"
@@ -2749,7 +2767,7 @@ msgstr "Podgl膮d"
#: apps/web/src/app/(recipient)/d/[token]/direct-template.tsx:63
msgid "Preview and configure template."
-msgstr "Preview and configure template."
+msgstr "Podgl膮d i konfiguracja szablonu."
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/preferences/document-preferences.tsx:130
#~ msgid "Preview: {0}"
@@ -2758,36 +2776,36 @@ msgstr "Preview and configure template."
#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:105
#: apps/web/src/components/formatter/template-type.tsx:22
msgid "Private"
-msgstr "Private"
+msgstr "Prywatne"
#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:115
msgid "Private templates can only be modified and viewed by you."
-msgstr "Private templates can only be modified and viewed by you."
+msgstr "Prywatne szablony mog膮 by膰 modyfikowane i przegl膮dane tylko przez Ciebie."
#: apps/web/src/app/(dashboard)/settings/profile/page.tsx:28
#: apps/web/src/components/(dashboard)/common/command-menu.tsx:69
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:36
#: apps/web/src/components/(dashboard)/settings/layout/mobile-nav.tsx:39
msgid "Profile"
-msgstr "Profile"
+msgstr "Profil"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:184
msgid "Profile is currently <0>hidden0>."
-msgstr "Profil jest obecnie <0>widoczny0>."
+msgstr "Profil jest obecnie <0>ukryty0>."
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:172
msgid "Profile is currently <0>visible0>."
-msgstr "Profile is currently <0>visible0>."
+msgstr "Profil jest obecnie <0>widoczny0>."
#: apps/web/src/app/(dashboard)/admin/users/[id]/page.tsx:72
#: apps/web/src/components/forms/profile.tsx:72
msgid "Profile updated"
-msgstr "Publiczny"
+msgstr "Profil zaktualizowano"
#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:78
#: apps/web/src/components/formatter/template-type.tsx:27
msgid "Public"
-msgstr "Publiczny profil"
+msgstr "Publiczny"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:42
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:50
@@ -2795,23 +2813,23 @@ msgstr "Publiczny profil"
#: apps/web/src/components/(teams)/settings/layout/desktop-nav.tsx:72
#: apps/web/src/components/(teams)/settings/layout/mobile-nav.tsx:81
msgid "Public Profile"
-msgstr "Public Profile"
+msgstr "Profil publiczny"
#: apps/web/src/components/forms/public-profile-form.tsx:146
msgid "Public profile URL"
-msgstr "Nazwa u偶ytkownika publicznego profilu"
+msgstr "URL publicznego profilu"
#: apps/web/src/components/forms/v2/signup.tsx:450
msgid "Public profile username"
-msgstr "Public profile username"
+msgstr "Nazwa u偶ytkownika profilu publicznego"
#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:82
msgid "Public templates are connected to your public profile. Any modifications to public templates will also appear in your public profile."
-msgstr "Public templates are connected to your public profile. Any modifications to public templates will also appear in your public profile."
+msgstr "Szablony publiczne s膮 powi膮zane z Twoim publicznym profilem. Wszelkie modyfikacje szablon贸w publicznych r贸wnie偶 pojawi膮 si臋 w Twoim publicznym profilu."
#: apps/web/src/app/(signing)/sign/[token]/signing-field-container.tsx:144
msgid "Read only field"
-msgstr "Gotowe"
+msgstr "Pole tylko do odczytu"
#: apps/web/src/components/general/signing-disclosure.tsx:21
msgid "Read the full <0>signature disclosure0>."
@@ -2819,7 +2837,7 @@ msgstr "Przeczytaj pe艂ne <0>ujawnienie podpisu0>."
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:106
msgid "Ready"
-msgstr "Wymagana ponowna autoryzacja, aby podpisa膰 to pole"
+msgstr "Gotowy"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:281
msgid "Reason"
@@ -2835,12 +2853,12 @@ msgstr "Pow贸d musi mie膰 mniej ni偶 500 znak贸w"
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-dialog.tsx:62
msgid "Reauthentication is required to sign this field"
-msgstr "Ostatnia aktywno艣膰"
+msgstr "Wymagana jest ponowna autoryzacja, aby podpisa膰 to pole"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recent-activity.tsx:57
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:130
msgid "Recent activity"
-msgstr "Odbiorca"
+msgstr "Ostatnia aktywno艣膰"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view-recent-activity.tsx:47
msgid "Recent documents"
@@ -2898,7 +2916,7 @@ msgstr "Odrzucony"
#: apps/web/src/app/(unauthenticated)/forgot-password/page.tsx:34
msgid "Remembered your password? <0>Sign In0>"
-msgstr "Pami臋tasz swoje has艂o? <0>Zaloguj si臋0>"
+msgstr "Zapami臋ta艂e艣 has艂o? <0>Zaloguj si臋0>"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:193
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:431
@@ -2929,11 +2947,11 @@ msgstr "Powt贸rz has艂o"
#: apps/web/src/components/(teams)/dialogs/transfer-team-dialog.tsx:282
msgid "Request transfer"
-msgstr "Popro艣 o transfer"
+msgstr "Zle膰 przeniesienie"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/admin-actions.tsx:61
msgid "Reseal document"
-msgstr "Zamknij dokument"
+msgstr "Zapiecz臋tuj ponownie dokument"
#: apps/web/src/app/(dashboard)/documents/_action-items/resend-document.tsx:118
#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:154
@@ -2992,7 +3010,7 @@ msgstr "Zwr贸膰"
#: apps/web/src/app/(unauthenticated)/team/decline/[token]/page.tsx:130
msgid "Return to Dashboard"
-msgstr "Powr贸t do pulpitu nawigacyjnego"
+msgstr "Powr贸t do pulpitu"
#: apps/web/src/app/(unauthenticated)/team/decline/[token]/page.tsx:136
msgid "Return to Home"
@@ -3026,8 +3044,8 @@ msgid "Roles"
msgstr "Role"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:446
-#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:336
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:342
+#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:337
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:344
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/preferences/branding-preferences.tsx:312
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/preferences/document-preferences.tsx:232
msgid "Save"
@@ -3175,6 +3193,7 @@ msgstr "Poka偶 szablony w profilu publicznym zespo艂u dla swojej publiczno艣ci,
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:114
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:139
#: apps/web/src/app/(profile)/p/[url]/page.tsx:192
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:229
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-2fa.tsx:182
#: apps/web/src/app/(signing)/sign/[token]/name-field.tsx:224
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:124
@@ -3331,7 +3350,7 @@ msgstr "Ustawienia strony"
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:80
#: apps/web/src/app/(dashboard)/documents/duplicate-document-dialog.tsx:72
#: apps/web/src/app/(dashboard)/settings/billing/billing-plans.tsx:62
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:50
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:51
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:124
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:73
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:93
@@ -3646,8 +3665,8 @@ msgstr "Szablony"
msgid "Templates allow you to quickly generate documents with pre-filled recipients and fields."
msgstr "Szablony pozwalaj膮 na szybkie generowanie dokument贸w z wype艂nionymi odbiorcami i polami."
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:256
-#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:272
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:257
+#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:274
msgid "Text"
msgstr "Tekst"
@@ -4451,7 +4470,7 @@ msgstr "Chcesz wys艂a膰 eleganckie linki do podpisywania, takie jak ten? <0>Spra
msgid "Want your own public profile?"
msgstr "Chcesz sw贸j w艂asny profil publiczny?"
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:40
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:41
#: apps/web/src/app/(teams)/t/[teamUrl]/layout-billing-banner.tsx:55
#: apps/web/src/components/(teams)/team-billing-portal-button.tsx:31
msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
@@ -4715,6 +4734,10 @@ msgstr "Czy pr贸bowa艂e艣 raczej edytowa膰 ten dokument?"
msgid "When you click continue, you will be prompted to add the first available authenticator on your system."
msgstr "Kiedy klikniesz kontynuuj, zostaniesz poproszony o dodanie pierwszego dost臋pnego autoryzatora w swoim systemie."
+#: apps/web/src/app/(signing)/sign/[token]/auto-sign.tsx:183
+msgid "When you sign a document, we can automatically fill in and sign the following fields using information that has already been provided. You can also manually sign or remove any automatically signed fields afterwards if you desire."
+msgstr "Podczas podpisywania dokumentu mo偶emy automatycznie wype艂ni膰 i podpisa膰 nast臋puj膮ce pola, u偶ywaj膮c informacji, kt贸re zosta艂y ju偶 podane. Mo偶esz r贸wnie偶 r臋cznie podpisa膰 lub usun膮膰 ka偶de automatycznie podpisane pole p贸藕niej, je艣li chcesz."
+
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:36
msgid "When you use our platform to affix your electronic signature to documents, you are consenting to do so under the Electronic Signatures in Global and National Commerce Act (E-Sign Act) and other applicable laws. This action indicates your agreement to use electronic means to sign documents and receive notifications."
msgstr "Kiedy korzystasz z naszej platformy, aby przyczepi膰 sw贸j podpis elektroniczny do dokument贸w, wyra偶asz zgod臋 na dokonanie tego zgodnie z Ustaw膮 o podpisach elektronicznych w handlu globalnym i krajowym (Ustawa E-Sign) oraz innymi obowi膮zuj膮cymi przepisami. Ta czynno艣膰 wskazuje na twoj膮 zgod臋 na korzystanie z elektronicznych 艣rodk贸w do podpisywania dokument贸w i otrzymywania powiadomie艅."
@@ -4784,7 +4807,7 @@ msgstr "Zaraz usuniesz nast臋puj膮cego u偶ytkownika z <0>{teamName}0>."
msgid "You are about to revoke access for team <0>{0}0> ({1}) to use your email."
msgstr "Zaraz cofniesz dost臋p dla zespo艂u <0>{0}0> ({1}) do korzystania z twojego e-maila."
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:78
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:80
msgid "You are currently on the <0>Free Plan0>."
msgstr "Obecnie jeste艣 na <0>Planie darmowym0>."
@@ -4836,7 +4859,7 @@ msgstr "Nie mo偶esz modyfikowa膰 cz艂onka zespo艂u, kt贸ry ma wy偶sz膮 rol臋 ni
msgid "You cannot upload encrypted PDFs"
msgstr "Nie mo偶esz przesy艂a膰 zaszyfrowanych plik贸w PDF"
-#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:45
+#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:46
msgid "You do not currently have a customer record, this should not happen. Please contact support for assistance."
msgstr "Obecnie nie masz rekordu klienta, nie powinno tak si臋 dzia膰. Prosz臋 skontaktuj si臋 z pomoc膮 techniczn膮."
@@ -4982,7 +5005,7 @@ msgstr "Adres URL witryny Twojej marki"
msgid "Your branding preferences have been updated"
msgstr "Preferencje dotycz膮ce marki zosta艂y zaktualizowane"
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:119
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:125
msgid "Your current plan is past due. Please update your payment information."
msgstr "Tw贸j obecny plan jest przeterminowany. Zaktualizuj swoje informacje p艂atnicze."
diff --git a/packages/tailwind-config/index.cjs b/packages/tailwind-config/index.cjs
index c2c510e84..067034a8b 100644
--- a/packages/tailwind-config/index.cjs
+++ b/packages/tailwind-config/index.cjs
@@ -139,5 +139,9 @@ module.exports = {
},
},
},
- plugins: [require('tailwindcss-animate'), require('@tailwindcss/typography')],
+ plugins: [
+ require('tailwindcss-animate'),
+ require('@tailwindcss/typography'),
+ require('@tailwindcss/container-queries'),
+ ],
};
diff --git a/packages/tailwind-config/package.json b/packages/tailwind-config/package.json
index d6827955f..e062b0df5 100644
--- a/packages/tailwind-config/package.json
+++ b/packages/tailwind-config/package.json
@@ -7,15 +7,15 @@
"clean": "rimraf node_modules"
},
"dependencies": {
+ "@tailwindcss/container-queries": "^0.1.1",
+ "@tailwindcss/typography": "^0.5.9",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.32",
"tailwindcss": "3.3.2",
"tailwindcss-animate": "^1.0.5"
},
- "devDependencies": {
- "@tailwindcss/typography": "^0.5.9"
- },
+ "devDependencies": {},
"publishConfig": {
"access": "public"
}
-}
+}
\ No newline at end of file
diff --git a/packages/ui/primitives/auto-sized-text.tsx b/packages/ui/primitives/auto-sized-text.tsx
new file mode 100644
index 000000000..a2b9e8cef
--- /dev/null
+++ b/packages/ui/primitives/auto-sized-text.tsx
@@ -0,0 +1,157 @@
+'use client';
+
+import { useLayoutEffect, useRef } from 'react';
+
+import { cn } from '../lib/utils';
+
+export type Dimensions = {
+ height: number;
+ width: number;
+};
+
+export type AutoSizedTextProps = {
+ children: React.ReactNode;
+ className?: string;
+ maxHeight?: number;
+ useRem?: boolean;
+};
+
+const ITERATION_LIMIT = 20;
+const MAXIMUM_DIFFERENCE = 1; // px
+
+function getElementDimensions(element: HTMLElement): Dimensions {
+ const bbox = element.getBoundingClientRect();
+
+ return {
+ width: bbox.width,
+ height: bbox.height,
+ };
+}
+
+function getBaseFontSize(): number {
+ try {
+ const fontSize = getComputedStyle(document.documentElement).fontSize;
+ const parsed = parseFloat(fontSize);
+
+ // Check if we got a valid number
+ if (!Number.isFinite(parsed)) {
+ return 16;
+ }
+
+ return parsed;
+ } catch (error) {
+ // Fallback to browser default if anything goes wrong
+ return 16;
+ }
+}
+
+function pxToRem(px: number): number {
+ return px / getBaseFontSize();
+}
+
+export function AutoSizedText({
+ children,
+ className,
+ maxHeight,
+ useRem = false,
+}: AutoSizedTextProps) {
+ const childRef = useRef
+ {/*
{signerEmail}
-