mirror of
https://github.com/documenso/documenso.git
synced 2026-07-21 23:43:43 +10:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f4ba47b074 | |||
| 7f85388eb7 |
@@ -11,9 +11,14 @@ Documenso enforces rate limits on all API endpoints to ensure service stability.
|
||||
|
||||
## HTTP Rate Limits
|
||||
|
||||
**Limit:** 100 requests per minute per IP address
|
||||
**Limit:** 1000 requests per minute per IP address
|
||||
**Response:** 429 Too Many Requests
|
||||
|
||||
<Callout type="info">
|
||||
This is the global per-IP ceiling. Your organisation may have its own rate limits configured below
|
||||
this value, in which case you can be rate-limited before reaching the global limit.
|
||||
</Callout>
|
||||
|
||||
### Rate Limit Response
|
||||
|
||||
```json
|
||||
|
||||
@@ -472,7 +472,7 @@ Send the same document to multiple recipients in parallel. Useful for policy ack
|
||||
<code>distributeDocument: true</code>
|
||||
</Step>
|
||||
<Step>
|
||||
Process in batches with a short delay to respect rate limits (e.g. 100 requests/minute)
|
||||
Process in batches with a short delay to respect rate limits (e.g. 1000 requests/minute)
|
||||
</Step>
|
||||
</Steps>
|
||||
|
||||
@@ -638,8 +638,8 @@ done
|
||||
</Tabs>
|
||||
|
||||
<Callout type="info">
|
||||
The API allows 100 requests per minute. For large batches, implement rate limiting with delays
|
||||
between requests to avoid hitting limits.
|
||||
The API allows 1000 requests per minute (your organisation may have its own lower limit). For large
|
||||
batches, implement rate limiting with delays between requests to avoid hitting limits.
|
||||
</Callout>
|
||||
|
||||
---
|
||||
|
||||
@@ -483,7 +483,7 @@ The API returns standard HTTP status codes and JSON error responses:
|
||||
|
||||
### Handling Rate Limits
|
||||
|
||||
The API allows 100 requests per minute per IP address. When rate limited, wait at least 60 seconds before retrying:
|
||||
The API allows 1000 requests per minute per IP address. Your organisation may have its own lower rate limits. When rate limited, wait at least 60 seconds before retrying:
|
||||
|
||||
```javascript
|
||||
async function fetchWithRetry(url, options, maxRetries = 3) {
|
||||
|
||||
@@ -41,12 +41,17 @@ When a limit is reached, requests return a `429 Too Many Requests` response with
|
||||
|
||||
| Action | Limit | Window |
|
||||
| --- | --- | --- |
|
||||
| API requests (v1 and v2) | 100 requests | 1 minute |
|
||||
| API requests (v1 and v2) | 1000 requests | 1 minute |
|
||||
| File uploads | 20 requests | 1 minute |
|
||||
| AI features | 3 requests | 1 minute |
|
||||
|
||||
Authentication endpoints (login, signup, password reset, etc.) are also rate-limited to protect against abuse.
|
||||
|
||||
<Callout type="info">
|
||||
The API request limit above is the global per-IP ceiling. Individual organisations also have their
|
||||
own rate limits, which may be configured below this value.
|
||||
</Callout>
|
||||
|
||||
<Callout type="info">
|
||||
Rate limits may vary by plan. Enterprise plans can include higher or custom limits. Contact
|
||||
[sales](https://documen.so/sales) for details.
|
||||
|
||||
@@ -13,7 +13,7 @@ There are three distinct kinds of limit:
|
||||
| ---------------------- | ------------------------------------------------- | ----------------------- |
|
||||
| Resource quota | Documents, emails, and API requests **per month** | Yes — per claim and org |
|
||||
| Resource rate limit | The same resources over a short window (e.g. `1h`) | Yes — per claim and org |
|
||||
| Global HTTP rate limit | API requests per IP (100/min, hardcoded) | No — see [Limitations](#limitations) |
|
||||
| Global HTTP rate limit | API requests per IP (1000/min, hardcoded) | No — see [Limitations](#limitations) |
|
||||
|
||||
## Prerequisites
|
||||
|
||||
@@ -91,7 +91,7 @@ Monthly quota usage is keyed to the **UTC calendar month**. There is no schedule
|
||||
|
||||
## Limitations
|
||||
|
||||
The **global HTTP rate limit is not configurable.** Documenso enforces a hardcoded **100 requests per minute per IP address** on its API endpoint groups (`/api/v1`, `/api/v2`, and the tRPC API are limited separately), returning `429 Too Many Requests`. It is a per-IP safeguard applied at the HTTP layer — not per-organisation, not stored on any claim, and not adjustable from the admin panel. See [Rate Limits](/docs/developers/api/rate-limits).
|
||||
The **global HTTP rate limit is not configurable.** Documenso enforces a hardcoded **1000 requests per minute per IP address** on its API endpoint groups (`/api/v1`, `/api/v2`, and the tRPC API are limited separately), returning `429 Too Many Requests`. It is a per-IP safeguard applied at the HTTP layer — not per-organisation, not stored on any claim, and not adjustable from the admin panel. See [Rate Limits](/docs/developers/api/rate-limits).
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
|
||||
@@ -50,7 +50,7 @@ import type { Organisation, Team, User } from '@prisma/client';
|
||||
*
|
||||
* --- GLOBAL LIMIT AWARENESS ---
|
||||
* apps/remix/server/router.ts applies a GLOBAL per-IP limiter to /api/v1/*:
|
||||
* apiV1RateLimit = 100 requests / 1 minute (action `api.v1`, see rate-limits.ts).
|
||||
* apiV1RateLimit = 1000 requests / 1 minute (action `api.v1`, see rate-limits.ts).
|
||||
* Every per-org limit/quota configured here is kept FAR below that ceiling (single
|
||||
* digits) and the suite runs serially so the shared-IP global bucket is never the
|
||||
* thing that trips. A global-limit 429 is shaped `{ error }` whereas an org-limit
|
||||
@@ -62,7 +62,7 @@ const WEBAPP_BASE_URL = NEXT_PUBLIC_WEBAPP_URL();
|
||||
const baseUrl = `${WEBAPP_BASE_URL}/api/v1`;
|
||||
|
||||
// Run serially: all workers share one IP, and the global /api/v1 limiter is
|
||||
// per-IP. Serial execution keeps the shared global bucket well under 100/min.
|
||||
// per-IP. Serial execution keeps the shared global bucket well under 1000/min.
|
||||
test.describe.configure({ mode: 'serial' });
|
||||
|
||||
// This suite is only meaningful with real rate limiting enabled. CI sets the
|
||||
@@ -125,7 +125,7 @@ const setClaimLimits = async (team: Team, limits: ClaimLimits) => {
|
||||
* GLOBAL /api/v1 IP bucket so a fresh scenario starts from zero.
|
||||
*
|
||||
* - The org windowed limiter keys its rows `ip:org:<id>`.
|
||||
* - The GLOBAL limiter (apps/remix/server/router.ts -> apiV1RateLimit, 100/min
|
||||
* - The GLOBAL limiter (apps/remix/server/router.ts -> apiV1RateLimit, 1000/min
|
||||
* per IP, action `api.v1`) is shared by EVERY v1 request from this test client.
|
||||
* Across the suite (and especially across repeated local runs within the same
|
||||
* minute) that shared bucket would otherwise fill up and trip BEFORE the org
|
||||
|
||||
@@ -37,7 +37,7 @@ import type { Organisation, Team, User } from '@prisma/client';
|
||||
*
|
||||
* --- GLOBAL LIMIT AWARENESS ---
|
||||
* apps/remix/server/router.ts applies a GLOBAL per-IP limiter to /api/v2/*:
|
||||
* apiV2RateLimit = 100 requests / 1 minute (see rate-limits.ts).
|
||||
* apiV2RateLimit = 1000 requests / 1 minute (see rate-limits.ts).
|
||||
* Every per-org limit/quota configured here is kept FAR below that ceiling (single
|
||||
* digits) and the suite runs serially so the shared-IP global bucket is never the
|
||||
* thing that trips. A global-limit 429 is shaped `{ error }` whereas an org-limit
|
||||
@@ -49,7 +49,7 @@ const WEBAPP_BASE_URL = NEXT_PUBLIC_WEBAPP_URL();
|
||||
const baseUrl = `${WEBAPP_BASE_URL}/api/v2-beta`;
|
||||
|
||||
// Run serially: all workers share one IP, and the global /api/v2 limiter is
|
||||
// per-IP. Serial execution keeps the shared global bucket well under 100/min.
|
||||
// per-IP. Serial execution keeps the shared global bucket well under 1000/min.
|
||||
test.describe.configure({ mode: 'serial' });
|
||||
|
||||
// This suite is only meaningful with real rate limiting enabled. CI sets the
|
||||
|
||||
@@ -84,13 +84,13 @@ export const syncSubscriptionRateLimit = createRateLimit({
|
||||
|
||||
export const apiV1RateLimit = createRateLimit({
|
||||
action: 'api.v1',
|
||||
max: 100,
|
||||
max: 1000,
|
||||
window: '1m',
|
||||
});
|
||||
|
||||
export const apiV2RateLimit = createRateLimit({
|
||||
action: 'api.v2',
|
||||
max: 100,
|
||||
max: 1000,
|
||||
window: '1m',
|
||||
});
|
||||
|
||||
|
||||
@@ -850,11 +850,11 @@ msgstr "0 freie Organisationen übrig"
|
||||
msgid "1 Free organisations left"
|
||||
msgstr "1 Freie Organisationen übrig"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "1 month"
|
||||
msgstr "1 Monat"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "12 months"
|
||||
msgstr "12 Monate"
|
||||
|
||||
@@ -870,7 +870,7 @@ msgstr "2FA Zurücksetzen"
|
||||
msgid "2FA token"
|
||||
msgstr "2FA-Token"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "3 months"
|
||||
msgstr "3 Monate"
|
||||
|
||||
@@ -949,11 +949,11 @@ msgstr "5 Dokumente im Monat"
|
||||
msgid "500 Internal Server Error"
|
||||
msgstr "500 Interner Serverfehler"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "6 months"
|
||||
msgstr "6 Monate"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "7 days"
|
||||
msgstr "7 Tage"
|
||||
|
||||
@@ -1008,6 +1008,10 @@ msgstr "Ein Mitglied hat Ihre Organisation {organisationName} verlassen"
|
||||
msgid "A member has left your organisation on Documenso"
|
||||
msgstr "Ein Mitglied hat Ihre Organisation auf Documenso verlassen"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "A name to help you identify this token later."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/jobs/definitions/emails/send-organisation-member-joined-email.handler.ts
|
||||
msgid "A new member has joined your organisation"
|
||||
msgstr "Ein neues Mitglied ist Ihrer Organisation beigetreten"
|
||||
@@ -1016,10 +1020,6 @@ msgstr "Ein neues Mitglied ist Ihrer Organisation beigetreten"
|
||||
msgid "A new member has joined your organisation {organisationName}"
|
||||
msgstr "Ein neues Mitglied ist Ihrer Organisation {organisationName} beigetreten"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "A new token was created successfully."
|
||||
msgstr "Ein neuer Token wurde erfolgreich erstellt."
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
|
||||
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
|
||||
@@ -1215,6 +1215,7 @@ msgstr "Aktion"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Actions"
|
||||
msgstr "Aktionen"
|
||||
@@ -1539,6 +1540,7 @@ msgstr "Nach der elektronischen Unterzeichnung eines Dokuments haben Sie die Mö
|
||||
msgid "After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email."
|
||||
msgstr "Nach der Übermittlung wird ein Dokument automatisch generiert und zu Ihrer Dokumentenseite hinzugefügt. Sie erhalten außerdem eine Benachrichtigung per E-Mail."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "AI features"
|
||||
msgstr "KI-Funktionen"
|
||||
@@ -1708,11 +1710,11 @@ msgstr "Eine E-Mail mit dieser Adresse existiert bereits."
|
||||
#: apps/remix/app/components/dialogs/admin-team-member-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/admin-user-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/forms/avatar-image.tsx
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
#: apps/remix/app/components/forms/signup.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
@@ -2121,10 +2123,6 @@ msgstr "Sind Sie sicher, dass Sie den folgenden Transport löschen möchten?"
|
||||
msgid "Are you sure you want to delete this folder?"
|
||||
msgstr "Möchten Sie diesen Ordner wirklich löschen?"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Are you sure you want to delete this token?"
|
||||
msgstr "Bist du sicher, dass du dieses Token löschen möchtest?"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
msgid "Are you sure you want to reject this document? This action cannot be undone."
|
||||
msgstr "Sind Sie sicher, dass Sie dieses Dokument ablehnen möchten? Diese Aktion kann nicht rückgängig gemacht werden."
|
||||
@@ -2390,6 +2388,10 @@ msgstr "Blau"
|
||||
msgid "Border"
|
||||
msgstr "Rahmen"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Border radius"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Border Radius"
|
||||
msgstr "Eckenradius"
|
||||
@@ -2406,6 +2408,10 @@ msgstr "Unten"
|
||||
msgid "Brand Colours"
|
||||
msgstr "Markenfarben"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand colours, including background, foreground, primary, and border colours"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Brand Details"
|
||||
msgstr "Markendetails"
|
||||
@@ -2414,6 +2420,10 @@ msgstr "Markendetails"
|
||||
msgid "Brand Website"
|
||||
msgstr "Marken-Website"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand website and brand details"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
#: apps/remix/app/components/general/settings-nav-desktop.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -2425,6 +2435,7 @@ msgstr "Marken"
|
||||
msgid "Branding company details"
|
||||
msgstr "Branding-Unternehmensdetails"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Branding logo"
|
||||
msgstr "Branding-Logo"
|
||||
@@ -2544,9 +2555,11 @@ msgstr "Person nicht gefunden?"
|
||||
#: apps/remix/app/components/dialogs/ai-field-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-send-test-dialog.tsx
|
||||
@@ -2607,6 +2620,7 @@ msgstr "Person nicht gefunden?"
|
||||
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
@@ -2796,10 +2810,6 @@ msgstr "Verifizierungsmethode wählen"
|
||||
msgid "Choose your preferred authentication method:"
|
||||
msgstr "Wählen Sie Ihre bevorzugte Authentifizierungsmethode aus:"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Choose..."
|
||||
msgstr "Wählen..."
|
||||
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "Claim"
|
||||
msgstr "Anspruch"
|
||||
@@ -3264,14 +3274,14 @@ msgstr "Signierlinks kopieren"
|
||||
msgid "Copy team ID"
|
||||
msgstr "Team-ID kopieren"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Copy token"
|
||||
msgstr "Token kopieren"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
msgid "Copy Value"
|
||||
msgstr "Wert kopieren"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Copy your token now. For security reasons you will not be able to see it again."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-reset-button.tsx
|
||||
msgid "Counter reset."
|
||||
msgstr "Zähler zurückgesetzt."
|
||||
@@ -3338,10 +3348,18 @@ msgstr "Erstellen Sie eine Organisation, um mit Teams zusammenzuarbeiten"
|
||||
msgid "Create an organisation to get started."
|
||||
msgstr "Erstellen Sie eine Organisation, um zu beginnen."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Create and manage API tokens. See our <0>documentation</0> for more information."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create and send"
|
||||
msgstr "Erstellen und senden"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create as draft"
|
||||
msgstr "Als Entwurf erstellen"
|
||||
@@ -3460,8 +3478,8 @@ msgstr "Vorlage erstellen"
|
||||
msgid "Create the document as pending and ready to sign."
|
||||
msgstr "Erstellen Sie das Dokument als ausstehend und bereit zur Unterschrift."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create token"
|
||||
msgstr "Token erstellen"
|
||||
|
||||
@@ -3507,6 +3525,7 @@ msgstr "Erstellen Sie Ihr Konto und beginnen Sie mit dem modernen Dokumentensign
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Created"
|
||||
msgstr "Erstellt"
|
||||
@@ -3527,11 +3546,6 @@ msgstr "Erstellt von"
|
||||
msgid "Created on"
|
||||
msgstr "Erstellt am"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Created on {0}"
|
||||
msgstr "Erstellt am {0}"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/envelope.create._index.tsx
|
||||
msgid "Creating Document"
|
||||
msgstr "Dokument wird erstellt"
|
||||
@@ -3587,6 +3601,14 @@ msgstr "Derzeit können E-Mail-Domains nur für Plattform- und höhere Pläne ko
|
||||
msgid "Custom {0} MB file"
|
||||
msgstr "Benutzerdefinierte {0} MB-Datei"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom branding enabled setting"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Custom CSS is sanitised on save. Layout-breaking properties, remote URLs, and pseudo-elements are stripped automatically. Any rules dropped during sanitisation will be shown after you save."
|
||||
msgstr "Benutzerdefiniertes CSS wird beim Speichern bereinigt. Layout-zerschießende Eigenschaften, entfernte URLs und Pseudo-Elemente werden automatisch entfernt. Alle Regeln, die während der Bereinigung verworfen werden, werden nach dem Speichern angezeigt."
|
||||
@@ -3671,14 +3693,26 @@ msgstr "Standard (System-Mailer)"
|
||||
msgid "Default border colour."
|
||||
msgstr "Standardrahmenfarbe."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default date format"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Date Format"
|
||||
msgstr "Standard-Datumsformat"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document language"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Language"
|
||||
msgstr "Standardsprache des Dokuments"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document visibility"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Visibility"
|
||||
msgstr "Standard Sichtbarkeit des Dokuments"
|
||||
@@ -3691,6 +3725,10 @@ msgstr "Standard-E-Mail"
|
||||
msgid "Default Email Settings"
|
||||
msgstr "Standard-E-Mail-Einstellungen"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default envelope expiration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Envelope Expiration"
|
||||
msgstr "Standardablauf für Umschläge"
|
||||
@@ -3703,6 +3741,10 @@ msgstr "Standarddatei"
|
||||
msgid "Default Organisation Role for New Users"
|
||||
msgstr "Standardorganisation Rolle für neue Benutzer"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default recipients"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Recipients"
|
||||
msgstr "Standardempfänger"
|
||||
@@ -3715,14 +3757,26 @@ msgstr "Standardeinstellungen, die auf diese Organisation angewendet werden."
|
||||
msgid "Default settings applied to this team. Inherited values come from the organisation."
|
||||
msgstr "Standardeinstellungen, die auf dieses Team angewendet werden. Vererbte Werte stammen von der Organisation."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signature settings"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signature Settings"
|
||||
msgstr "Standard-Signatureinstellungen"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signing reminders"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signing Reminders"
|
||||
msgstr "Standard-Signaturerinnerungen"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default time zone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Time Zone"
|
||||
msgstr "Standard-Zeitzone"
|
||||
@@ -3738,6 +3792,7 @@ msgstr "Standardwert"
|
||||
msgid "Default Value"
|
||||
msgstr "Standardwert"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Delegate document ownership"
|
||||
msgstr "Dokumenteneigentum delegieren"
|
||||
@@ -3768,6 +3823,7 @@ msgstr "löschen"
|
||||
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
|
||||
@@ -3909,6 +3965,10 @@ msgstr "Löschen Sie das Dokument. Diese Aktion ist irreversibel, daher seien Si
|
||||
msgid "Delete the users account and all its contents. This action is irreversible and will cancel their subscription, so proceed with caution."
|
||||
msgstr "Löschen Sie das Benutzerkonto und seinen gesamten Inhalt. Diese Aktion ist irreversibel und wird das Abonnement kündigen, seien Sie also vorsichtig."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Delete token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
msgid "Delete Webhook"
|
||||
msgstr "Webhook löschen"
|
||||
@@ -4651,6 +4711,10 @@ msgstr "Nicht wiederholen"
|
||||
msgid "Don't transfer (Delete all documents)"
|
||||
msgstr "Nicht übertragen (alle Dokumente löschen)"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
|
||||
@@ -5521,6 +5585,7 @@ msgstr "Ablauf"
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expired"
|
||||
msgstr "Abgelaufen"
|
||||
|
||||
@@ -5530,6 +5595,7 @@ msgid "Expired"
|
||||
msgstr "Abgelaufen"
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires"
|
||||
msgstr "Läuft ab"
|
||||
|
||||
@@ -5538,16 +5604,15 @@ msgstr "Läuft ab"
|
||||
msgid "Expires {0}"
|
||||
msgstr "Läuft ab am {0}"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Expires in"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: DateTime.fromMillis(Math.max(millisecondsRemaining, 0)).toFormat('mm:ss')
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
msgid "Expires in {0}"
|
||||
msgstr "Läuft ab in {0}"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.expires, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires on {0}"
|
||||
msgstr "Läuft ab am {0}"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
|
||||
#: packages/ui/primitives/document-flow/add-settings.tsx
|
||||
#: packages/ui/primitives/template-flow/add-template-settings.tsx
|
||||
@@ -6243,10 +6308,6 @@ msgstr "Ich bin der Besitzer dieses Dokuments"
|
||||
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
|
||||
msgstr "Ich verstehe, dass ich meine Anmeldedaten einem Drittanbieter-Service zur Verfügung stelle, der von dieser Organisation konfiguriert wurde."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "I'm sure! Delete it"
|
||||
msgstr "Ich bin mir sicher! Löschen"
|
||||
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
|
||||
@@ -6345,10 +6406,18 @@ msgstr "Absenderdetails einbeziehen"
|
||||
msgid "Include signing certificate"
|
||||
msgstr "Signaturzertifikat einbeziehen"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the audit logs in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Audit Logs in the Document"
|
||||
msgstr "Audit-Logs im Dokument einbeziehen"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the signing certificate in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Signing Certificate in the Document"
|
||||
msgstr "Signaturzertifikat in das Dokument einfügen"
|
||||
@@ -6429,6 +6498,11 @@ msgstr "Instanzstatistiken"
|
||||
msgid "Invalid code. Please try again."
|
||||
msgstr "Ungültiger Code. Bitte versuchen Sie es erneut."
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Invalid direct link template"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
|
||||
msgid "Invalid domains"
|
||||
msgstr "Ungültige Domains"
|
||||
@@ -7176,6 +7250,11 @@ msgstr "Fehlende Lizenz – Ihre Documenso-Instanz verwendet Funktionen, für di
|
||||
msgid "Missing Recipients"
|
||||
msgstr "Fehlende Empfänger"
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "Missing signature fields"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
|
||||
msgid "Modify recipients"
|
||||
@@ -7267,6 +7346,7 @@ msgstr "N/A"
|
||||
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/forms/email-transport-form.tsx
|
||||
@@ -7287,6 +7367,7 @@ msgstr "N/A"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: packages/lib/utils/fields.ts
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
#: packages/ui/primitives/document-flow/add-signers.tsx
|
||||
@@ -7326,14 +7407,12 @@ msgstr "Muss unterzeichnen"
|
||||
msgid "Needs to view"
|
||||
msgstr "Muss sehen"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Never"
|
||||
msgstr "Niemals"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Never expire"
|
||||
msgstr "Nie ablaufen"
|
||||
|
||||
#: packages/ui/components/document/expiration-period-picker.tsx
|
||||
msgid "Never expires"
|
||||
msgstr "Läuft nie ab"
|
||||
@@ -7669,14 +7748,15 @@ msgstr "Ein"
|
||||
msgid "On this page, you can create a new webhook."
|
||||
msgstr "Auf dieser Seite können Sie einen neuen Webhook erstellen."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "On this page, you can create and manage API tokens. See our <0>Documentation</0> for more information."
|
||||
msgstr "Auf dieser Seite können Sie API-Token erstellen und verwalten. Weitere Informationen finden Sie in unserer <0>Dokumentation</0>."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "On this page, you can create new Webhooks and manage the existing ones."
|
||||
msgstr "Auf dieser Seite können Sie neue Webhooks erstellen und die vorhandenen verwalten."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Once confirmed, the following will be reset:"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelope-cancel-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelope-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-cancel-dialog.tsx
|
||||
@@ -8327,10 +8407,6 @@ msgstr "Bitte kontaktieren Sie den Webseiteninhaber für weitere Unterstützung.
|
||||
msgid "Please don't close this tab. The signing provider is finalising your signature."
|
||||
msgstr "Bitte schließen Sie diesen Tab nicht. Der Signaturanbieter finalisiert Ihre Signatur."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Please enter a meaningful name for your token. This will help you identify it later."
|
||||
msgstr "Bitte geben Sie einen aussagekräftigen Namen für Ihr Token ein. Dies wird Ihnen helfen, es später zu identifizieren."
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a number"
|
||||
msgstr "Bitte gib eine Zahl ein"
|
||||
@@ -8876,6 +8952,10 @@ msgstr "Die Authentifizierung des Unterzeichnungsanbieters des Empfängers ist f
|
||||
msgid "Recipients"
|
||||
msgstr "Empfänger"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Recipients cannot use this direct link template because the following signers are missing a signature field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
|
||||
msgid "Recipients metrics"
|
||||
msgstr "Empfängermetriken"
|
||||
@@ -9234,6 +9314,14 @@ msgstr "Zurücksetzen"
|
||||
msgid "Reset 2FA"
|
||||
msgstr "2FA zurücksetzen"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Reset branding preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset document preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
msgid "Reset email sent"
|
||||
msgstr "Zurücksetzungs-E-Mail gesendet"
|
||||
@@ -9251,6 +9339,13 @@ msgstr "Passwort zurücksetzen"
|
||||
msgid "Reset the users two factor authentication. This action is irreversible and will disable two factor authentication for the user."
|
||||
msgstr "Die Zwei-Faktor-Authentifizierung des Benutzers zurücksetzen. Diese Aktion ist unwiderruflich und deaktiviert die Zwei-Faktor-Authentifizierung für den Benutzer."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset to defaults"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
|
||||
msgid "Reset Two Factor Authentication"
|
||||
msgstr "Zwei-Faktor-Authentifizierung zurücksetzen"
|
||||
@@ -9794,6 +9889,10 @@ msgstr "Umschlag senden"
|
||||
msgid "Send first reminder after"
|
||||
msgstr "Erste Erinnerung senden nach"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Send on behalf of team"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Send on Behalf of Team"
|
||||
msgstr "Im Namen des Teams senden"
|
||||
@@ -10384,7 +10483,7 @@ msgstr "Etwas ist schiefgelaufen!"
|
||||
msgid "Something went wrong."
|
||||
msgstr "Etwas ist schief gelaufen."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Something went wrong. Please try again later."
|
||||
msgstr "Etwas ist schiefgelaufen. Bitte versuchen Sie es später noch einmal."
|
||||
|
||||
@@ -11104,6 +11203,10 @@ msgstr "Der Anzeigename für diese E-Mail-Adresse"
|
||||
msgid "The document could not be created because of missing or invalid information. Please review the template's recipients and fields."
|
||||
msgstr "Das Dokument konnte aufgrund fehlender oder ungültiger Informationen nicht erstellt werden. Bitte überprüfen Sie die Empfänger und Felder der Vorlage."
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "The document could not be sent because some signers do not have a signature field. Please edit the template and add a signature field for each signer."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
|
||||
msgid "The Document has been deleted successfully."
|
||||
msgstr "Das Dokument wurde erfolgreich gelöscht."
|
||||
@@ -11434,10 +11537,6 @@ msgstr "Das Test-Webhook wurde erfolgreich an Ihren Endpunkt gesendet."
|
||||
msgid "The token is invalid or has expired."
|
||||
msgstr "Das Token ist ungültig oder abgelaufen."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "The token was copied to your clipboard."
|
||||
msgstr "Der Token wurde in die Zwischenablage kopiert."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "The token was deleted successfully."
|
||||
msgstr "Das Token wurde erfolgreich gelöscht."
|
||||
@@ -11560,6 +11659,14 @@ msgstr "Je nach Größe Ihres Dokuments kann dies ein bis zwei Minuten dauern."
|
||||
msgid "This claim is locked and cannot be deleted."
|
||||
msgstr "Dieser Anspruch ist gesperrt und kann nicht gelöscht werden."
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned. Please contact the sender to update the template."
|
||||
msgstr ""
|
||||
|
||||
#: packages/email/template-components/template-document-super-delete.tsx
|
||||
msgid "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
|
||||
msgstr "Dieses Dokument kann nicht wiederhergestellt werden. Wenn du den Grund für zukünftige Dokumente anfechten möchtest, kontaktiere bitte den Support."
|
||||
@@ -11830,6 +11937,14 @@ msgstr "Diese werden NUR Funktionsflags zurückspielen, die auf wahr gesetzt sin
|
||||
msgid "This will remove all emails associated with this email domain"
|
||||
msgstr "Dies entfernt alle E-Mails, die mit dieser E-Mail-Domain verbunden sind"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all branding preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all document preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
|
||||
msgid "This will sign you out of all other devices. You will need to sign in again on those devices to continue using your account."
|
||||
msgstr "Dies meldet Sie auf allen anderen Geräten ab. Sie müssen sich erneut auf diesen Geräten anmelden, um Ihr Konto weiter zu nutzen."
|
||||
@@ -12025,11 +12140,11 @@ msgstr "Schalten Sie den Schalter um, um Ihr Profil der Öffentlichkeit anzuzeig
|
||||
msgid "Token"
|
||||
msgstr "Token"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token copied to clipboard"
|
||||
msgstr "Token wurde in die Zwischenablage kopiert"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token created"
|
||||
msgstr "Token erstellt"
|
||||
|
||||
@@ -12037,22 +12152,10 @@ msgstr "Token erstellt"
|
||||
msgid "Token deleted"
|
||||
msgstr "Token gelöscht"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Token doesn't have an expiration date"
|
||||
msgstr "Token hat kein Ablaufdatum"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token expiration date"
|
||||
msgstr "Ablaufdatum des Tokens"
|
||||
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Token has expired. Please try again."
|
||||
msgstr "Das Token ist abgelaufen. Bitte versuchen Sie es erneut."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token name"
|
||||
msgstr "Token-Name"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/_layout.tsx
|
||||
msgid "Token Not Found"
|
||||
msgstr "Token nicht gefunden"
|
||||
@@ -12210,10 +12313,6 @@ msgstr "Zurzeit kann die Sprache nicht geändert werden. Bitte versuchen Sie es
|
||||
msgid "Unable to copy recovery code"
|
||||
msgstr "Kann Code zur Wiederherstellung nicht kopieren"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Unable to copy token"
|
||||
msgstr "Token kann nicht kopiert werden"
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
msgid "Unable to create direct template access. Please try again later."
|
||||
msgstr "Direkter Zugriff auf die Vorlage kann nicht erstellt werden. Bitte versuche es später noch einmal."
|
||||
@@ -12633,6 +12732,10 @@ msgstr ""
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Use API tokens to authenticate with the Documenso API."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13274,10 +13377,6 @@ msgstr "Wir haben eine Bestätigungs-E-Mail zur Überprüfung gesendet."
|
||||
msgid "We need your signature to sign documents"
|
||||
msgstr "Wir benötigen Ihre Unterschrift, um Dokumente zu unterschreiben"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "We were unable to copy the token to your clipboard. Please try again."
|
||||
msgstr "Wir konnten das Token nicht in Ihre Zwischenablage kopieren. Bitte versuchen Sie es erneut."
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/recovery-code-list.tsx
|
||||
msgid "We were unable to copy your recovery code to your clipboard. Please try again."
|
||||
msgstr "Wir konnten Ihren Wiederherstellungscode nicht in Ihre Zwischenablage kopieren. Bitte versuchen Sie es erneut."
|
||||
@@ -13928,7 +14027,7 @@ msgstr "Sie haben ein Umschlag-Element mit dem Titel {0} gelöscht"
|
||||
msgid "You deleted the document"
|
||||
msgstr "Sie haben das Dokument gelöscht"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "You do not have permission to create a token for this team."
|
||||
msgstr "Sie haben keine Berechtigung, ein Token für dieses Team zu erstellen."
|
||||
|
||||
@@ -13987,6 +14086,10 @@ msgstr "Sie haben die Einladung von <0>{0}</0> abgelehnt, deren Organisation bei
|
||||
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
|
||||
msgstr "Du hast das Dokument {0} initiiert, das erfordert, dass du {recipientActionVerb}."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "You have no API tokens yet. Your tokens will be shown here once you create them."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "You have no webhooks yet. Your webhooks will be shown here once you create them."
|
||||
msgstr "Sie haben noch keine Webhooks. Ihre Webhooks werden hier angezeigt, sobald Sie sie erstellt haben."
|
||||
@@ -14546,14 +14649,14 @@ msgstr "Ihr Kuvert wurde erfolgreich verteilt."
|
||||
msgid "Your envelope has been resent successfully."
|
||||
msgstr "Ihr Kuvert wurde erfolgreich erneut gesendet."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your existing tokens"
|
||||
msgstr "Ihre vorhandenen Tokens"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
|
||||
msgid "Your Name"
|
||||
msgstr "Ihr Name"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Your new API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Your new password cannot be the same as your old password."
|
||||
@@ -14748,14 +14851,6 @@ msgstr "Ihre Vorlagen wurden erfolgreich gespeichert."
|
||||
msgid "Your token has expired!"
|
||||
msgstr "Ihr Token ist abgelaufen!"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!"
|
||||
msgstr "Ihr Token wurde erfolgreich erstellt! Stellen Sie sicher, dass Sie es kopieren, da Sie es später nicht mehr sehen können!"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your tokens will be shown here once you create them."
|
||||
msgstr "Ihre Tokens werden hier angezeigt, sobald Sie sie erstellt haben."
|
||||
|
||||
#: packages/lib/server-only/2fa/email/send-2fa-token-email.ts
|
||||
msgid "Your two-factor authentication code"
|
||||
msgstr "Ihr Zwei-Faktor-Authentifizierungscode"
|
||||
|
||||
@@ -845,11 +845,11 @@ msgstr "0 Free organisations left"
|
||||
msgid "1 Free organisations left"
|
||||
msgstr "1 Free organisations left"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "1 month"
|
||||
msgstr "1 month"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "12 months"
|
||||
msgstr "12 months"
|
||||
|
||||
@@ -865,7 +865,7 @@ msgstr "2FA Reset"
|
||||
msgid "2FA token"
|
||||
msgstr "2FA token"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "3 months"
|
||||
msgstr "3 months"
|
||||
|
||||
@@ -944,11 +944,11 @@ msgstr "5 Documents a month"
|
||||
msgid "500 Internal Server Error"
|
||||
msgstr "500 Internal Server Error"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "6 months"
|
||||
msgstr "6 months"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "7 days"
|
||||
msgstr "7 days"
|
||||
|
||||
@@ -1003,6 +1003,10 @@ msgstr "A member has left your organisation {organisationName}"
|
||||
msgid "A member has left your organisation on Documenso"
|
||||
msgstr "A member has left your organisation on Documenso"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "A name to help you identify this token later."
|
||||
msgstr "A name to help you identify this token later."
|
||||
|
||||
#: packages/lib/jobs/definitions/emails/send-organisation-member-joined-email.handler.ts
|
||||
msgid "A new member has joined your organisation"
|
||||
msgstr "A new member has joined your organisation"
|
||||
@@ -1011,10 +1015,6 @@ msgstr "A new member has joined your organisation"
|
||||
msgid "A new member has joined your organisation {organisationName}"
|
||||
msgstr "A new member has joined your organisation {organisationName}"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "A new token was created successfully."
|
||||
msgstr "A new token was created successfully."
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
|
||||
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
|
||||
@@ -1210,6 +1210,7 @@ msgstr "Action"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Actions"
|
||||
msgstr "Actions"
|
||||
@@ -1534,6 +1535,7 @@ msgstr "After signing a document electronically, you will be provided the opport
|
||||
msgid "After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email."
|
||||
msgstr "After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "AI features"
|
||||
msgstr "AI features"
|
||||
@@ -1703,11 +1705,11 @@ msgstr "An email with this address already exists."
|
||||
#: apps/remix/app/components/dialogs/admin-team-member-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/admin-user-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/forms/avatar-image.tsx
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
#: apps/remix/app/components/forms/signup.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
@@ -2116,10 +2118,6 @@ msgstr "Are you sure you want to delete the following transport?"
|
||||
msgid "Are you sure you want to delete this folder?"
|
||||
msgstr "Are you sure you want to delete this folder?"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Are you sure you want to delete this token?"
|
||||
msgstr "Are you sure you want to delete this token?"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
msgid "Are you sure you want to reject this document? This action cannot be undone."
|
||||
msgstr "Are you sure you want to reject this document? This action cannot be undone."
|
||||
@@ -2385,6 +2383,10 @@ msgstr "Blue"
|
||||
msgid "Border"
|
||||
msgstr "Border"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Border radius"
|
||||
msgstr "Border radius"
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Border Radius"
|
||||
msgstr "Border Radius"
|
||||
@@ -2401,6 +2403,10 @@ msgstr "Bottom"
|
||||
msgid "Brand Colours"
|
||||
msgstr "Brand Colours"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand colours, including background, foreground, primary, and border colours"
|
||||
msgstr "Brand colours, including background, foreground, primary, and border colours"
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Brand Details"
|
||||
msgstr "Brand Details"
|
||||
@@ -2409,6 +2415,10 @@ msgstr "Brand Details"
|
||||
msgid "Brand Website"
|
||||
msgstr "Brand Website"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand website and brand details"
|
||||
msgstr "Brand website and brand details"
|
||||
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
#: apps/remix/app/components/general/settings-nav-desktop.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -2420,6 +2430,7 @@ msgstr "Branding"
|
||||
msgid "Branding company details"
|
||||
msgstr "Branding company details"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Branding logo"
|
||||
msgstr "Branding logo"
|
||||
@@ -2539,9 +2550,11 @@ msgstr "Can't find someone?"
|
||||
#: apps/remix/app/components/dialogs/ai-field-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-send-test-dialog.tsx
|
||||
@@ -2602,6 +2615,7 @@ msgstr "Can't find someone?"
|
||||
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
@@ -2791,10 +2805,6 @@ msgstr "Choose verification method"
|
||||
msgid "Choose your preferred authentication method:"
|
||||
msgstr "Choose your preferred authentication method:"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Choose..."
|
||||
msgstr "Choose..."
|
||||
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "Claim"
|
||||
msgstr "Claim"
|
||||
@@ -3259,14 +3269,14 @@ msgstr "Copy Signing Links"
|
||||
msgid "Copy team ID"
|
||||
msgstr "Copy team ID"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Copy token"
|
||||
msgstr "Copy token"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
msgid "Copy Value"
|
||||
msgstr "Copy Value"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Copy your token now. For security reasons you will not be able to see it again."
|
||||
msgstr "Copy your token now. For security reasons you will not be able to see it again."
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-reset-button.tsx
|
||||
msgid "Counter reset."
|
||||
msgstr "Counter reset."
|
||||
@@ -3333,10 +3343,18 @@ msgstr "Create an organisation to collaborate with teams"
|
||||
msgid "Create an organisation to get started."
|
||||
msgstr "Create an organisation to get started."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Create and manage API tokens. See our <0>documentation</0> for more information."
|
||||
msgstr "Create and manage API tokens. See our <0>documentation</0> for more information."
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create and send"
|
||||
msgstr "Create and send"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create API token"
|
||||
msgstr "Create API token"
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create as draft"
|
||||
msgstr "Create as draft"
|
||||
@@ -3455,8 +3473,8 @@ msgstr "Create Template"
|
||||
msgid "Create the document as pending and ready to sign."
|
||||
msgstr "Create the document as pending and ready to sign."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create token"
|
||||
msgstr "Create token"
|
||||
|
||||
@@ -3502,6 +3520,7 @@ msgstr "Create your account and start using state-of-the-art document signing. O
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Created"
|
||||
msgstr "Created"
|
||||
@@ -3522,11 +3541,6 @@ msgstr "Created by"
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Created on {0}"
|
||||
msgstr "Created on {0}"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/envelope.create._index.tsx
|
||||
msgid "Creating Document"
|
||||
msgstr "Creating Document"
|
||||
@@ -3582,6 +3596,14 @@ msgstr "Currently email domains can only be configured for Platform and above pl
|
||||
msgid "Custom {0} MB file"
|
||||
msgstr "Custom {0} MB file"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom branding enabled setting"
|
||||
msgstr "Custom branding enabled setting"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom CSS"
|
||||
msgstr "Custom CSS"
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Custom CSS is sanitised on save. Layout-breaking properties, remote URLs, and pseudo-elements are stripped automatically. Any rules dropped during sanitisation will be shown after you save."
|
||||
msgstr "Custom CSS is sanitised on save. Layout-breaking properties, remote URLs, and pseudo-elements are stripped automatically. Any rules dropped during sanitisation will be shown after you save."
|
||||
@@ -3666,14 +3688,26 @@ msgstr "Default (system mailer)"
|
||||
msgid "Default border colour."
|
||||
msgstr "Default border colour."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default date format"
|
||||
msgstr "Default date format"
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Date Format"
|
||||
msgstr "Default Date Format"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document language"
|
||||
msgstr "Default document language"
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Language"
|
||||
msgstr "Default Document Language"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document visibility"
|
||||
msgstr "Default document visibility"
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Visibility"
|
||||
msgstr "Default Document Visibility"
|
||||
@@ -3686,6 +3720,10 @@ msgstr "Default Email"
|
||||
msgid "Default Email Settings"
|
||||
msgstr "Default Email Settings"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default envelope expiration"
|
||||
msgstr "Default envelope expiration"
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Envelope Expiration"
|
||||
msgstr "Default Envelope Expiration"
|
||||
@@ -3698,6 +3736,10 @@ msgstr "Default file"
|
||||
msgid "Default Organisation Role for New Users"
|
||||
msgstr "Default Organisation Role for New Users"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default recipients"
|
||||
msgstr "Default recipients"
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Recipients"
|
||||
msgstr "Default Recipients"
|
||||
@@ -3710,14 +3752,26 @@ msgstr "Default settings applied to this organisation."
|
||||
msgid "Default settings applied to this team. Inherited values come from the organisation."
|
||||
msgstr "Default settings applied to this team. Inherited values come from the organisation."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signature settings"
|
||||
msgstr "Default signature settings"
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signature Settings"
|
||||
msgstr "Default Signature Settings"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signing reminders"
|
||||
msgstr "Default signing reminders"
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signing Reminders"
|
||||
msgstr "Default Signing Reminders"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default time zone"
|
||||
msgstr "Default time zone"
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Time Zone"
|
||||
msgstr "Default Time Zone"
|
||||
@@ -3733,6 +3787,7 @@ msgstr "Default value"
|
||||
msgid "Default Value"
|
||||
msgstr "Default Value"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Delegate document ownership"
|
||||
msgstr "Delegate document ownership"
|
||||
@@ -3763,6 +3818,7 @@ msgstr "delete"
|
||||
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
|
||||
@@ -3904,6 +3960,10 @@ msgstr "Delete the document. This action is irreversible so proceed with caution
|
||||
msgid "Delete the users account and all its contents. This action is irreversible and will cancel their subscription, so proceed with caution."
|
||||
msgstr "Delete the users account and all its contents. This action is irreversible and will cancel their subscription, so proceed with caution."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Delete token"
|
||||
msgstr "Delete token"
|
||||
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
msgid "Delete Webhook"
|
||||
msgstr "Delete Webhook"
|
||||
@@ -4646,6 +4706,10 @@ msgstr "Don't repeat"
|
||||
msgid "Don't transfer (Delete all documents)"
|
||||
msgstr "Don't transfer (Delete all documents)"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Done"
|
||||
msgstr "Done"
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
|
||||
@@ -5516,6 +5580,7 @@ msgstr "Expiration"
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expired"
|
||||
msgstr "Expired"
|
||||
|
||||
@@ -5525,6 +5590,7 @@ msgid "Expired"
|
||||
msgstr "Expired"
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires"
|
||||
msgstr "Expires"
|
||||
|
||||
@@ -5533,16 +5599,15 @@ msgstr "Expires"
|
||||
msgid "Expires {0}"
|
||||
msgstr "Expires {0}"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Expires in"
|
||||
msgstr "Expires in"
|
||||
|
||||
#. placeholder {0}: DateTime.fromMillis(Math.max(millisecondsRemaining, 0)).toFormat('mm:ss')
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
msgid "Expires in {0}"
|
||||
msgstr "Expires in {0}"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.expires, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires on {0}"
|
||||
msgstr "Expires on {0}"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
|
||||
#: packages/ui/primitives/document-flow/add-settings.tsx
|
||||
#: packages/ui/primitives/template-flow/add-template-settings.tsx
|
||||
@@ -6238,10 +6303,6 @@ msgstr "I am the owner of this document"
|
||||
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
|
||||
msgstr "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "I'm sure! Delete it"
|
||||
msgstr "I'm sure! Delete it"
|
||||
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
|
||||
@@ -6340,10 +6401,18 @@ msgstr "Include sender details"
|
||||
msgid "Include signing certificate"
|
||||
msgstr "Include signing certificate"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the audit logs in the document"
|
||||
msgstr "Include the audit logs in the document"
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Audit Logs in the Document"
|
||||
msgstr "Include the Audit Logs in the Document"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the signing certificate in the document"
|
||||
msgstr "Include the signing certificate in the document"
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Signing Certificate in the Document"
|
||||
msgstr "Include the Signing Certificate in the Document"
|
||||
@@ -6424,6 +6493,11 @@ msgstr "Instance Stats"
|
||||
msgid "Invalid code. Please try again."
|
||||
msgstr "Invalid code. Please try again."
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Invalid direct link template"
|
||||
msgstr "Invalid direct link template"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
|
||||
msgid "Invalid domains"
|
||||
msgstr "Invalid domains"
|
||||
@@ -7171,6 +7245,11 @@ msgstr "Missing License - Your Documenso instance is using features that require
|
||||
msgid "Missing Recipients"
|
||||
msgstr "Missing Recipients"
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "Missing signature fields"
|
||||
msgstr "Missing signature fields"
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
|
||||
msgid "Modify recipients"
|
||||
@@ -7262,6 +7341,7 @@ msgstr "N/A"
|
||||
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/forms/email-transport-form.tsx
|
||||
@@ -7282,6 +7362,7 @@ msgstr "N/A"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: packages/lib/utils/fields.ts
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
#: packages/ui/primitives/document-flow/add-signers.tsx
|
||||
@@ -7321,14 +7402,12 @@ msgstr "Needs to sign"
|
||||
msgid "Needs to view"
|
||||
msgstr "Needs to view"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Never"
|
||||
msgstr "Never"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Never expire"
|
||||
msgstr "Never expire"
|
||||
|
||||
#: packages/ui/components/document/expiration-period-picker.tsx
|
||||
msgid "Never expires"
|
||||
msgstr "Never expires"
|
||||
@@ -7664,14 +7743,15 @@ msgstr "On"
|
||||
msgid "On this page, you can create a new webhook."
|
||||
msgstr "On this page, you can create a new webhook."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "On this page, you can create and manage API tokens. See our <0>Documentation</0> for more information."
|
||||
msgstr "On this page, you can create and manage API tokens. See our <0>Documentation</0> for more information."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "On this page, you can create new Webhooks and manage the existing ones."
|
||||
msgstr "On this page, you can create new Webhooks and manage the existing ones."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Once confirmed, the following will be reset:"
|
||||
msgstr "Once confirmed, the following will be reset:"
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelope-cancel-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelope-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-cancel-dialog.tsx
|
||||
@@ -8322,10 +8402,6 @@ msgstr "Please contact the site owner for further assistance."
|
||||
msgid "Please don't close this tab. The signing provider is finalising your signature."
|
||||
msgstr "Please don't close this tab. The signing provider is finalising your signature."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Please enter a meaningful name for your token. This will help you identify it later."
|
||||
msgstr "Please enter a meaningful name for your token. This will help you identify it later."
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a number"
|
||||
msgstr "Please enter a number"
|
||||
@@ -8871,6 +8947,10 @@ msgstr "Recipient's signing provider authentication failed"
|
||||
msgid "Recipients"
|
||||
msgstr "Recipients"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Recipients cannot use this direct link template because the following signers are missing a signature field"
|
||||
msgstr "Recipients cannot use this direct link template because the following signers are missing a signature field"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
|
||||
msgid "Recipients metrics"
|
||||
msgstr "Recipients metrics"
|
||||
@@ -9229,6 +9309,14 @@ msgstr "Reset"
|
||||
msgid "Reset 2FA"
|
||||
msgstr "Reset 2FA"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Reset branding preferences"
|
||||
msgstr "Reset branding preferences"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset document preferences"
|
||||
msgstr "Reset document preferences"
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
msgid "Reset email sent"
|
||||
msgstr "Reset email sent"
|
||||
@@ -9246,6 +9334,13 @@ msgstr "Reset Password"
|
||||
msgid "Reset the users two factor authentication. This action is irreversible and will disable two factor authentication for the user."
|
||||
msgstr "Reset the users two factor authentication. This action is irreversible and will disable two factor authentication for the user."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset to defaults"
|
||||
msgstr "Reset to defaults"
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
|
||||
msgid "Reset Two Factor Authentication"
|
||||
msgstr "Reset Two Factor Authentication"
|
||||
@@ -9789,6 +9884,10 @@ msgstr "Send Envelope"
|
||||
msgid "Send first reminder after"
|
||||
msgstr "Send first reminder after"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Send on behalf of team"
|
||||
msgstr "Send on behalf of team"
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Send on Behalf of Team"
|
||||
msgstr "Send on Behalf of Team"
|
||||
@@ -10379,7 +10478,7 @@ msgstr "Something went wrong!"
|
||||
msgid "Something went wrong."
|
||||
msgstr "Something went wrong."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Something went wrong. Please try again later."
|
||||
msgstr "Something went wrong. Please try again later."
|
||||
|
||||
@@ -11099,6 +11198,10 @@ msgstr "The display name for this email address"
|
||||
msgid "The document could not be created because of missing or invalid information. Please review the template's recipients and fields."
|
||||
msgstr "The document could not be created because of missing or invalid information. Please review the template's recipients and fields."
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "The document could not be sent because some signers do not have a signature field. Please edit the template and add a signature field for each signer."
|
||||
msgstr "The document could not be sent because some signers do not have a signature field. Please edit the template and add a signature field for each signer."
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
|
||||
msgid "The Document has been deleted successfully."
|
||||
msgstr "The Document has been deleted successfully."
|
||||
@@ -11429,10 +11532,6 @@ msgstr "The test webhook has been successfully sent to your endpoint."
|
||||
msgid "The token is invalid or has expired."
|
||||
msgstr "The token is invalid or has expired."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "The token was copied to your clipboard."
|
||||
msgstr "The token was copied to your clipboard."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "The token was deleted successfully."
|
||||
msgstr "The token was deleted successfully."
|
||||
@@ -11555,6 +11654,14 @@ msgstr "This can take a minute or two depending on the size of your document."
|
||||
msgid "This claim is locked and cannot be deleted."
|
||||
msgstr "This claim is locked and cannot be deleted."
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned."
|
||||
msgstr "This direct link template cannot be used because one or more signers do not have a signature field assigned."
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned. Please contact the sender to update the template."
|
||||
msgstr "This direct link template cannot be used because one or more signers do not have a signature field assigned. Please contact the sender to update the template."
|
||||
|
||||
#: packages/email/template-components/template-document-super-delete.tsx
|
||||
msgid "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
|
||||
msgstr "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
|
||||
@@ -11825,6 +11932,14 @@ msgstr "This will ONLY backport feature flags which are set to true, anything di
|
||||
msgid "This will remove all emails associated with this email domain"
|
||||
msgstr "This will remove all emails associated with this email domain"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all branding preferences to their default values and save the changes immediately."
|
||||
msgstr "This will reset all branding preferences to their default values and save the changes immediately."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all document preferences to their default values and save the changes immediately."
|
||||
msgstr "This will reset all document preferences to their default values and save the changes immediately."
|
||||
|
||||
#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
|
||||
msgid "This will sign you out of all other devices. You will need to sign in again on those devices to continue using your account."
|
||||
msgstr "This will sign you out of all other devices. You will need to sign in again on those devices to continue using your account."
|
||||
@@ -12020,11 +12135,11 @@ msgstr "Toggle the switch to show your profile to the public."
|
||||
msgid "Token"
|
||||
msgstr "Token"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token copied to clipboard"
|
||||
msgstr "Token copied to clipboard"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token created"
|
||||
msgstr "Token created"
|
||||
|
||||
@@ -12032,22 +12147,10 @@ msgstr "Token created"
|
||||
msgid "Token deleted"
|
||||
msgstr "Token deleted"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Token doesn't have an expiration date"
|
||||
msgstr "Token doesn't have an expiration date"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token expiration date"
|
||||
msgstr "Token expiration date"
|
||||
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Token has expired. Please try again."
|
||||
msgstr "Token has expired. Please try again."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token name"
|
||||
msgstr "Token name"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/_layout.tsx
|
||||
msgid "Token Not Found"
|
||||
msgstr "Token Not Found"
|
||||
@@ -12205,10 +12308,6 @@ msgstr "Unable to change the language at this time. Please try again later."
|
||||
msgid "Unable to copy recovery code"
|
||||
msgstr "Unable to copy recovery code"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Unable to copy token"
|
||||
msgstr "Unable to copy token"
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
msgid "Unable to create direct template access. Please try again later."
|
||||
msgstr "Unable to create direct template access. Please try again later."
|
||||
@@ -12628,6 +12727,10 @@ msgstr "Use a duration with a unit, e.g. 5m, 1h, or 24h"
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr "Use a unique window for each rate limit"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Use API tokens to authenticate with the Documenso API."
|
||||
msgstr "Use API tokens to authenticate with the Documenso API."
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13269,10 +13372,6 @@ msgstr "We have sent a confirmation email for verification."
|
||||
msgid "We need your signature to sign documents"
|
||||
msgstr "We need your signature to sign documents"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "We were unable to copy the token to your clipboard. Please try again."
|
||||
msgstr "We were unable to copy the token to your clipboard. Please try again."
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/recovery-code-list.tsx
|
||||
msgid "We were unable to copy your recovery code to your clipboard. Please try again."
|
||||
msgstr "We were unable to copy your recovery code to your clipboard. Please try again."
|
||||
@@ -13923,7 +14022,7 @@ msgstr "You deleted an envelope item with title {0}"
|
||||
msgid "You deleted the document"
|
||||
msgstr "You deleted the document"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "You do not have permission to create a token for this team."
|
||||
msgstr "You do not have permission to create a token for this team."
|
||||
|
||||
@@ -13982,6 +14081,10 @@ msgstr "You have declined the invitation from <0>{0}</0> to join their organisat
|
||||
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
|
||||
msgstr "You have initiated the document {0} that requires you to {recipientActionVerb} it."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "You have no API tokens yet. Your tokens will be shown here once you create them."
|
||||
msgstr "You have no API tokens yet. Your tokens will be shown here once you create them."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "You have no webhooks yet. Your webhooks will be shown here once you create them."
|
||||
msgstr "You have no webhooks yet. Your webhooks will be shown here once you create them."
|
||||
@@ -14541,14 +14644,14 @@ msgstr "Your envelope has been distributed successfully."
|
||||
msgid "Your envelope has been resent successfully."
|
||||
msgstr "Your envelope has been resent successfully."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your existing tokens"
|
||||
msgstr "Your existing tokens"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
|
||||
msgid "Your Name"
|
||||
msgstr "Your Name"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Your new API token"
|
||||
msgstr "Your new API token"
|
||||
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Your new password cannot be the same as your old password."
|
||||
@@ -14743,14 +14846,6 @@ msgstr "Your templates has been saved successfully."
|
||||
msgid "Your token has expired!"
|
||||
msgstr "Your token has expired!"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!"
|
||||
msgstr "Your token was created successfully! Make sure to copy it because you won't be able to see it again!"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your tokens will be shown here once you create them."
|
||||
msgstr "Your tokens will be shown here once you create them."
|
||||
|
||||
#: packages/lib/server-only/2fa/email/send-2fa-token-email.ts
|
||||
msgid "Your two-factor authentication code"
|
||||
msgstr "Your two-factor authentication code"
|
||||
|
||||
@@ -850,11 +850,11 @@ msgstr "0 Organizaciones gratuitas restantes"
|
||||
msgid "1 Free organisations left"
|
||||
msgstr "1 organizaciones gratuitas restantes"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "1 month"
|
||||
msgstr "1 mes"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "12 months"
|
||||
msgstr "12 meses"
|
||||
|
||||
@@ -870,7 +870,7 @@ msgstr "Restablecimiento de 2FA"
|
||||
msgid "2FA token"
|
||||
msgstr "Token de 2FA"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "3 months"
|
||||
msgstr "3 meses"
|
||||
|
||||
@@ -949,11 +949,11 @@ msgstr "5 Documentos al mes"
|
||||
msgid "500 Internal Server Error"
|
||||
msgstr "500 Error Interno del Servidor"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "6 months"
|
||||
msgstr "6 meses"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "7 days"
|
||||
msgstr "7 días"
|
||||
|
||||
@@ -1008,6 +1008,10 @@ msgstr "Un miembro ha dejado tu organización {organisationName}"
|
||||
msgid "A member has left your organisation on Documenso"
|
||||
msgstr "Un miembro ha dejado tu organización en Documenso"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "A name to help you identify this token later."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/jobs/definitions/emails/send-organisation-member-joined-email.handler.ts
|
||||
msgid "A new member has joined your organisation"
|
||||
msgstr "Un nuevo miembro se ha unido a tu organización"
|
||||
@@ -1016,10 +1020,6 @@ msgstr "Un nuevo miembro se ha unido a tu organización"
|
||||
msgid "A new member has joined your organisation {organisationName}"
|
||||
msgstr "Un nuevo miembro se ha unido a tu organización {organisationName}"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "A new token was created successfully."
|
||||
msgstr "Un nuevo token se ha creado con éxito."
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
|
||||
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
|
||||
@@ -1215,6 +1215,7 @@ msgstr "Acción"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Actions"
|
||||
msgstr "Acciones"
|
||||
@@ -1539,6 +1540,7 @@ msgstr "Después de firmar un documento electrónicamente, se le dará la oportu
|
||||
msgid "After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email."
|
||||
msgstr "Después de la presentación, se generará automáticamente un documento y se agregará a su página de documentos. También recibirá una notificación por correo electrónico."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "AI features"
|
||||
msgstr "Funciones de IA"
|
||||
@@ -1708,11 +1710,11 @@ msgstr "Ya existe un correo electrónico con esta dirección."
|
||||
#: apps/remix/app/components/dialogs/admin-team-member-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/admin-user-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/forms/avatar-image.tsx
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
#: apps/remix/app/components/forms/signup.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
@@ -2121,10 +2123,6 @@ msgstr "¿Seguro que quieres eliminar el siguiente transporte?"
|
||||
msgid "Are you sure you want to delete this folder?"
|
||||
msgstr "¿Está seguro de que quiere eliminar esta carpeta?"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Are you sure you want to delete this token?"
|
||||
msgstr "¿Estás seguro de que deseas eliminar este token?"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
msgid "Are you sure you want to reject this document? This action cannot be undone."
|
||||
msgstr "Are you sure you want to reject this document? This action cannot be undone."
|
||||
@@ -2390,6 +2388,10 @@ msgstr "Azul"
|
||||
msgid "Border"
|
||||
msgstr "Borde"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Border radius"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Border Radius"
|
||||
msgstr "Radio del borde"
|
||||
@@ -2406,6 +2408,10 @@ msgstr "Fondo"
|
||||
msgid "Brand Colours"
|
||||
msgstr "Colores de la marca"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand colours, including background, foreground, primary, and border colours"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Brand Details"
|
||||
msgstr "Detalles de la Marca"
|
||||
@@ -2414,6 +2420,10 @@ msgstr "Detalles de la Marca"
|
||||
msgid "Brand Website"
|
||||
msgstr "Sitio Web de la Marca"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand website and brand details"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
#: apps/remix/app/components/general/settings-nav-desktop.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -2425,6 +2435,7 @@ msgstr "Branding"
|
||||
msgid "Branding company details"
|
||||
msgstr "Detalles de la empresa para la marca"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Branding logo"
|
||||
msgstr "Logotipo de la marca"
|
||||
@@ -2544,9 +2555,11 @@ msgstr "¿No puedes encontrar a alguien?"
|
||||
#: apps/remix/app/components/dialogs/ai-field-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-send-test-dialog.tsx
|
||||
@@ -2607,6 +2620,7 @@ msgstr "¿No puedes encontrar a alguien?"
|
||||
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
@@ -2796,10 +2810,6 @@ msgstr "Elige el método de verificación"
|
||||
msgid "Choose your preferred authentication method:"
|
||||
msgstr "Elige tu método de autenticación preferido:"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Choose..."
|
||||
msgstr "Elija..."
|
||||
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "Claim"
|
||||
msgstr "Reclamación"
|
||||
@@ -3264,14 +3274,14 @@ msgstr "Copiar enlaces de firma"
|
||||
msgid "Copy team ID"
|
||||
msgstr "Copiar ID del equipo"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Copy token"
|
||||
msgstr "Copiar token"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
msgid "Copy Value"
|
||||
msgstr "Copiar valor"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Copy your token now. For security reasons you will not be able to see it again."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-reset-button.tsx
|
||||
msgid "Counter reset."
|
||||
msgstr "Contador restablecido."
|
||||
@@ -3338,10 +3348,18 @@ msgstr "Crear una organización para colaborar con equipos"
|
||||
msgid "Create an organisation to get started."
|
||||
msgstr "Crear una organización para comenzar."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Create and manage API tokens. See our <0>documentation</0> for more information."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create and send"
|
||||
msgstr "Crear y enviar"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create as draft"
|
||||
msgstr "Crear como borrador"
|
||||
@@ -3460,8 +3478,8 @@ msgstr "Crear plantilla"
|
||||
msgid "Create the document as pending and ready to sign."
|
||||
msgstr "Crear el documento como pendiente y listo para firmar."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create token"
|
||||
msgstr "Crear token"
|
||||
|
||||
@@ -3507,6 +3525,7 @@ msgstr "Crea tu cuenta y comienza a utilizar la firma de documentos de última g
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Created"
|
||||
msgstr "Creado"
|
||||
@@ -3527,11 +3546,6 @@ msgstr "Creado por"
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Created on {0}"
|
||||
msgstr "Creado el {0}"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/envelope.create._index.tsx
|
||||
msgid "Creating Document"
|
||||
msgstr "Creando documento"
|
||||
@@ -3587,6 +3601,14 @@ msgstr "Actualmente los dominios de correo electrónico solo se pueden configura
|
||||
msgid "Custom {0} MB file"
|
||||
msgstr "Archivo personalizado de {0} MB"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom branding enabled setting"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Custom CSS is sanitised on save. Layout-breaking properties, remote URLs, and pseudo-elements are stripped automatically. Any rules dropped during sanitisation will be shown after you save."
|
||||
msgstr "El CSS personalizado se desinfecta al guardar. Las propiedades que rompen el diseño, las URL remotas y los pseudo-elementos se eliminan automáticamente. Cualquier regla descartada durante la desinfección se mostrará después de guardar."
|
||||
@@ -3671,14 +3693,26 @@ msgstr "Predeterminado (mailer del sistema)"
|
||||
msgid "Default border colour."
|
||||
msgstr "Color de borde predeterminado."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default date format"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Date Format"
|
||||
msgstr "Formato de fecha predeterminado"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document language"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Language"
|
||||
msgstr "Idioma predeterminado del documento"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document visibility"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Visibility"
|
||||
msgstr "Visibilidad predeterminada del documento"
|
||||
@@ -3691,6 +3725,10 @@ msgstr "Correo predeterminado"
|
||||
msgid "Default Email Settings"
|
||||
msgstr "Configuración de correo predeterminada"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default envelope expiration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Envelope Expiration"
|
||||
msgstr "Vencimiento predeterminado del sobre"
|
||||
@@ -3703,6 +3741,10 @@ msgstr "Archivo por defecto"
|
||||
msgid "Default Organisation Role for New Users"
|
||||
msgstr "Rol de organización predeterminado para nuevos usuarios"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default recipients"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Recipients"
|
||||
msgstr "Destinatarios predeterminados"
|
||||
@@ -3715,14 +3757,26 @@ msgstr "Configuración predeterminada aplicada a esta organización."
|
||||
msgid "Default settings applied to this team. Inherited values come from the organisation."
|
||||
msgstr "Configuración predeterminada aplicada a este equipo. Los valores heredados provienen de la organización."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signature settings"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signature Settings"
|
||||
msgstr "Configuraciones de Firma por Defecto"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signing reminders"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signing Reminders"
|
||||
msgstr "Recordatorios de firma predeterminados"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default time zone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Time Zone"
|
||||
msgstr "Zona horaria predeterminada"
|
||||
@@ -3738,6 +3792,7 @@ msgstr "Valor predeterminado"
|
||||
msgid "Default Value"
|
||||
msgstr "Valor Predeterminado"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Delegate document ownership"
|
||||
msgstr "Delegar la propiedad del documento"
|
||||
@@ -3768,6 +3823,7 @@ msgstr "eliminar"
|
||||
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
|
||||
@@ -3909,6 +3965,10 @@ msgstr "Eliminar el documento. Esta acción es irreversible, así que proceda co
|
||||
msgid "Delete the users account and all its contents. This action is irreversible and will cancel their subscription, so proceed with caution."
|
||||
msgstr "Eliminar la cuenta de usuario y todo su contenido. Esta acción es irreversible y cancelará su suscripción, así que proceda con cautela."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Delete token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
msgid "Delete Webhook"
|
||||
msgstr "Eliminar Webhook"
|
||||
@@ -4651,6 +4711,10 @@ msgstr "No repetir"
|
||||
msgid "Don't transfer (Delete all documents)"
|
||||
msgstr "No transferir (Eliminar todos los documentos)"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
|
||||
@@ -5521,6 +5585,7 @@ msgstr "Vencimiento"
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expired"
|
||||
msgstr "Expirado"
|
||||
|
||||
@@ -5530,6 +5595,7 @@ msgid "Expired"
|
||||
msgstr "Vencida"
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires"
|
||||
msgstr "Vence"
|
||||
|
||||
@@ -5538,16 +5604,15 @@ msgstr "Vence"
|
||||
msgid "Expires {0}"
|
||||
msgstr "Expira el {0}"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Expires in"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: DateTime.fromMillis(Math.max(millisecondsRemaining, 0)).toFormat('mm:ss')
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
msgid "Expires in {0}"
|
||||
msgstr "Expira en {0}"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.expires, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires on {0}"
|
||||
msgstr "Expira el {0}"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
|
||||
#: packages/ui/primitives/document-flow/add-settings.tsx
|
||||
#: packages/ui/primitives/template-flow/add-template-settings.tsx
|
||||
@@ -6243,10 +6308,6 @@ msgstr "Soy el propietario de este documento"
|
||||
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
|
||||
msgstr "Entiendo que estoy proporcionando mis credenciales a un servicio de terceros configurado por esta organización"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "I'm sure! Delete it"
|
||||
msgstr "¡Estoy seguro! Elimínalo"
|
||||
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
|
||||
@@ -6345,10 +6406,18 @@ msgstr "Incluir datos del remitente"
|
||||
msgid "Include signing certificate"
|
||||
msgstr "Incluir certificado de firma"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the audit logs in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Audit Logs in the Document"
|
||||
msgstr "Incluir los registros de auditoría en el documento"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the signing certificate in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Signing Certificate in the Document"
|
||||
msgstr "Incluir el certificado de firma en el documento"
|
||||
@@ -6429,6 +6498,11 @@ msgstr "Estadísticas de instancia"
|
||||
msgid "Invalid code. Please try again."
|
||||
msgstr "Código inválido. Por favor, intenta nuevamente."
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Invalid direct link template"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
|
||||
msgid "Invalid domains"
|
||||
msgstr "Dominios no válidos"
|
||||
@@ -7176,6 +7250,11 @@ msgstr "Licencia faltante: tu instancia de Documenso está usando funciones que
|
||||
msgid "Missing Recipients"
|
||||
msgstr "Faltan destinatarios"
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "Missing signature fields"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
|
||||
msgid "Modify recipients"
|
||||
@@ -7267,6 +7346,7 @@ msgstr "N/A"
|
||||
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/forms/email-transport-form.tsx
|
||||
@@ -7287,6 +7367,7 @@ msgstr "N/A"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: packages/lib/utils/fields.ts
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
#: packages/ui/primitives/document-flow/add-signers.tsx
|
||||
@@ -7326,14 +7407,12 @@ msgstr "Necesita firmar"
|
||||
msgid "Needs to view"
|
||||
msgstr "Necesita ver"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Never"
|
||||
msgstr "Nunca"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Never expire"
|
||||
msgstr "Nunca expira"
|
||||
|
||||
#: packages/ui/components/document/expiration-period-picker.tsx
|
||||
msgid "Never expires"
|
||||
msgstr "Nunca vence"
|
||||
@@ -7669,14 +7748,15 @@ msgstr "Activado"
|
||||
msgid "On this page, you can create a new webhook."
|
||||
msgstr "En esta página, puedes crear un nuevo webhook."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "On this page, you can create and manage API tokens. See our <0>Documentation</0> for more information."
|
||||
msgstr "En esta página, puedes crear y gestionar tokens de API. Consulta nuestra <0>Documentación</0> para más información."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "On this page, you can create new Webhooks and manage the existing ones."
|
||||
msgstr "En esta página, puedes editar el webhook y sus configuraciones."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Once confirmed, the following will be reset:"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelope-cancel-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelope-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-cancel-dialog.tsx
|
||||
@@ -8327,10 +8407,6 @@ msgstr "Por favor, contacte al propietario del sitio para más asistencia."
|
||||
msgid "Please don't close this tab. The signing provider is finalising your signature."
|
||||
msgstr "Por favor, no cierres esta pestaña. El proveedor de firma está finalizando tu firma."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Please enter a meaningful name for your token. This will help you identify it later."
|
||||
msgstr "Por favor, ingresa un nombre significativo para tu token. Esto te ayudará a identificarlo más tarde."
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a number"
|
||||
msgstr "Por favor ingresa un número"
|
||||
@@ -8876,6 +8952,10 @@ msgstr "Falló la autenticación del proveedor de firma del destinatario"
|
||||
msgid "Recipients"
|
||||
msgstr "Destinatarios"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Recipients cannot use this direct link template because the following signers are missing a signature field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
|
||||
msgid "Recipients metrics"
|
||||
msgstr "Métricas de destinatarios"
|
||||
@@ -9234,6 +9314,14 @@ msgstr "Restablecer"
|
||||
msgid "Reset 2FA"
|
||||
msgstr "Restablecer 2FA"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Reset branding preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset document preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
msgid "Reset email sent"
|
||||
msgstr "Correo de restablecimiento enviado"
|
||||
@@ -9251,6 +9339,13 @@ msgstr "Restablecer contraseña"
|
||||
msgid "Reset the users two factor authentication. This action is irreversible and will disable two factor authentication for the user."
|
||||
msgstr "Restablecer la autenticación de dos factores de los usuarios. Esta acción es irreversible y desactivará la autenticación de dos factores para el usuario."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset to defaults"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
|
||||
msgid "Reset Two Factor Authentication"
|
||||
msgstr "Restablecer autenticación de dos factores"
|
||||
@@ -9794,6 +9889,10 @@ msgstr "Enviar sobre (envelope)"
|
||||
msgid "Send first reminder after"
|
||||
msgstr "Enviar el primer recordatorio después de"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Send on behalf of team"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Send on Behalf of Team"
|
||||
msgstr "Enviar en nombre del equipo"
|
||||
@@ -10384,7 +10483,7 @@ msgstr "¡Algo salió mal!"
|
||||
msgid "Something went wrong."
|
||||
msgstr "Algo salió mal."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Something went wrong. Please try again later."
|
||||
msgstr "Algo salió mal. Por favor, inténtelo de nuevo más tarde."
|
||||
|
||||
@@ -11104,6 +11203,10 @@ msgstr "El nombre para mostrar para esta dirección de correo electrónico"
|
||||
msgid "The document could not be created because of missing or invalid information. Please review the template's recipients and fields."
|
||||
msgstr "No se pudo crear el documento debido a información faltante o no válida. Revise los destinatarios y los campos de la plantilla."
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "The document could not be sent because some signers do not have a signature field. Please edit the template and add a signature field for each signer."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
|
||||
msgid "The Document has been deleted successfully."
|
||||
msgstr "El documento se ha eliminado correctamente."
|
||||
@@ -11434,10 +11537,6 @@ msgstr "El webhook de prueba se ha enviado exitosamente a tu terminal."
|
||||
msgid "The token is invalid or has expired."
|
||||
msgstr "El token es inválido o ha expirado."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "The token was copied to your clipboard."
|
||||
msgstr "El token fue copiado a tu portapapeles."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "The token was deleted successfully."
|
||||
msgstr "El token fue eliminado con éxito."
|
||||
@@ -11560,6 +11659,14 @@ msgstr "Esto puede tardar uno o dos minutos, según el tamaño de tu documento."
|
||||
msgid "This claim is locked and cannot be deleted."
|
||||
msgstr "Esta reclamo está bloqueado y no puede ser eliminado."
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned. Please contact the sender to update the template."
|
||||
msgstr ""
|
||||
|
||||
#: packages/email/template-components/template-document-super-delete.tsx
|
||||
msgid "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
|
||||
msgstr "Este documento no se puede recuperar, si deseas impugnar la razón para documentos futuros, por favor contacta con el soporte."
|
||||
@@ -11830,6 +11937,14 @@ msgstr "Esto solo retroalimentará las banderas de características que estén c
|
||||
msgid "This will remove all emails associated with this email domain"
|
||||
msgstr "Esto eliminará todos los correos electrónicos asociados con este dominio de correo electrónico"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all branding preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all document preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
|
||||
msgid "This will sign you out of all other devices. You will need to sign in again on those devices to continue using your account."
|
||||
msgstr "Esto cerrará la sesión en todos los demás dispositivos. Necesitarás iniciar sesión nuevamente en esos dispositivos para continuar usando tu cuenta."
|
||||
@@ -12025,11 +12140,11 @@ msgstr "Activa el interruptor para mostrar tu perfil al público."
|
||||
msgid "Token"
|
||||
msgstr "Token"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token copied to clipboard"
|
||||
msgstr "Token copiado al portapapeles"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token created"
|
||||
msgstr "Token creado"
|
||||
|
||||
@@ -12037,22 +12152,10 @@ msgstr "Token creado"
|
||||
msgid "Token deleted"
|
||||
msgstr "Token eliminado"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Token doesn't have an expiration date"
|
||||
msgstr "El token no tiene una fecha de expiración"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token expiration date"
|
||||
msgstr "Fecha de expiración del token"
|
||||
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Token has expired. Please try again."
|
||||
msgstr "El token ha expirado. Por favor, inténtelo de nuevo."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token name"
|
||||
msgstr "Nombre del token"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/_layout.tsx
|
||||
msgid "Token Not Found"
|
||||
msgstr "Token no encontrado"
|
||||
@@ -12210,10 +12313,6 @@ msgstr "No se puede cambiar el idioma en este momento. Por favor intenta nuevame
|
||||
msgid "Unable to copy recovery code"
|
||||
msgstr "No se pudo copiar el código de recuperación"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Unable to copy token"
|
||||
msgstr "No se pudo copiar el token"
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
msgid "Unable to create direct template access. Please try again later."
|
||||
msgstr "No se pudo crear acceso directo a la plantilla. Por favor, inténtalo de nuevo más tarde."
|
||||
@@ -12633,6 +12732,10 @@ msgstr ""
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Use API tokens to authenticate with the Documenso API."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13274,10 +13377,6 @@ msgstr "Hemos enviado un correo electrónico de confirmación para la verificaci
|
||||
msgid "We need your signature to sign documents"
|
||||
msgstr "Necesitamos su firma para firmar documentos"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "We were unable to copy the token to your clipboard. Please try again."
|
||||
msgstr "No pudimos copiar el token en tu portapapeles. Por favor, inténtalo de nuevo."
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/recovery-code-list.tsx
|
||||
msgid "We were unable to copy your recovery code to your clipboard. Please try again."
|
||||
msgstr "No pudimos copiar tu código de recuperación en tu portapapeles. Por favor, inténtalo de nuevo."
|
||||
@@ -13928,7 +14027,7 @@ msgstr "Has eliminado un elemento de sobre con el título {0}"
|
||||
msgid "You deleted the document"
|
||||
msgstr "Has eliminado el documento"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "You do not have permission to create a token for this team."
|
||||
msgstr "No tienes permiso para crear un token para este equipo."
|
||||
|
||||
@@ -13987,6 +14086,10 @@ msgstr "Has rechazado la invitación de <0>{0}</0> para unirte a su organizació
|
||||
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
|
||||
msgstr "Has iniciado el documento {0} que requiere que {recipientActionVerb}."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "You have no API tokens yet. Your tokens will be shown here once you create them."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "You have no webhooks yet. Your webhooks will be shown here once you create them."
|
||||
msgstr "Aún no tienes webhooks. Tus webhooks se mostrarán aquí una vez que los crees."
|
||||
@@ -14546,14 +14649,14 @@ msgstr "Su sobre ha sido distribuido exitosamente."
|
||||
msgid "Your envelope has been resent successfully."
|
||||
msgstr "Su sobre ha sido reenviado exitosamente."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your existing tokens"
|
||||
msgstr "Tus tokens existentes"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
|
||||
msgid "Your Name"
|
||||
msgstr "Tu nombre"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Your new API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Your new password cannot be the same as your old password."
|
||||
@@ -14748,14 +14851,6 @@ msgstr "Tus plantillas han sido guardadas con éxito."
|
||||
msgid "Your token has expired!"
|
||||
msgstr "¡Tu token ha expirado!"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!"
|
||||
msgstr "¡Tu token se creó con éxito! ¡Asegúrate de copiarlo porque no podrás verlo de nuevo!"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your tokens will be shown here once you create them."
|
||||
msgstr "Tus tokens se mostrarán aquí una vez que los crees."
|
||||
|
||||
#: packages/lib/server-only/2fa/email/send-2fa-token-email.ts
|
||||
msgid "Your two-factor authentication code"
|
||||
msgstr "Su código de autenticación de dos factores"
|
||||
|
||||
@@ -850,11 +850,11 @@ msgstr "0 organisations gratuites restantes"
|
||||
msgid "1 Free organisations left"
|
||||
msgstr "1 organisme gratuit restant"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "1 month"
|
||||
msgstr "1 mois"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "12 months"
|
||||
msgstr "12 mois"
|
||||
|
||||
@@ -870,7 +870,7 @@ msgstr "Réinitialisation 2FA"
|
||||
msgid "2FA token"
|
||||
msgstr "Jeton 2FA"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "3 months"
|
||||
msgstr "3 mois"
|
||||
|
||||
@@ -949,11 +949,11 @@ msgstr "5 Documents par mois"
|
||||
msgid "500 Internal Server Error"
|
||||
msgstr "500 Erreur Interne du Serveur"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "6 months"
|
||||
msgstr "6 mois"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "7 days"
|
||||
msgstr "7 jours"
|
||||
|
||||
@@ -1008,6 +1008,10 @@ msgstr "Un membre a quitté votre organisation {organisationName}"
|
||||
msgid "A member has left your organisation on Documenso"
|
||||
msgstr "Un membre a quitté votre organisation sur Documenso"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "A name to help you identify this token later."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/jobs/definitions/emails/send-organisation-member-joined-email.handler.ts
|
||||
msgid "A new member has joined your organisation"
|
||||
msgstr "Un nouveau membre a rejoint votre organisation"
|
||||
@@ -1016,10 +1020,6 @@ msgstr "Un nouveau membre a rejoint votre organisation"
|
||||
msgid "A new member has joined your organisation {organisationName}"
|
||||
msgstr "Un nouveau membre a rejoint votre organisation {organisationName}"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "A new token was created successfully."
|
||||
msgstr "Un nouveau token a été créé avec succès."
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
|
||||
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
|
||||
@@ -1215,6 +1215,7 @@ msgstr "Action"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Actions"
|
||||
msgstr "Actions"
|
||||
@@ -1539,6 +1540,7 @@ msgstr "Après avoir signé un document électroniquement, vous aurez l'occasion
|
||||
msgid "After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email."
|
||||
msgstr "Après soumission, un document sera automatiquement généré et ajouté à votre page de documents. Vous recevrez également une notification par e-mail."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "AI features"
|
||||
msgstr "Fonctionnalités d’IA"
|
||||
@@ -1708,11 +1710,11 @@ msgstr "Un email avec cette adresse existe déjà."
|
||||
#: apps/remix/app/components/dialogs/admin-team-member-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/admin-user-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/forms/avatar-image.tsx
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
#: apps/remix/app/components/forms/signup.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
@@ -2121,10 +2123,6 @@ msgstr "Êtes-vous sûr de vouloir supprimer le transport suivant ?"
|
||||
msgid "Are you sure you want to delete this folder?"
|
||||
msgstr "Êtes-vous sûr de vouloir supprimer ce dossier ?"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Are you sure you want to delete this token?"
|
||||
msgstr "Êtes-vous sûr de vouloir supprimer ce token ?"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
msgid "Are you sure you want to reject this document? This action cannot be undone."
|
||||
msgstr "Êtes-vous sûr de vouloir rejeter ce document ? Cette action ne peut pas être annulée."
|
||||
@@ -2390,6 +2388,10 @@ msgstr "Bleu"
|
||||
msgid "Border"
|
||||
msgstr "Bordure"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Border radius"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Border Radius"
|
||||
msgstr "Rayon de la bordure"
|
||||
@@ -2406,6 +2408,10 @@ msgstr "Bas"
|
||||
msgid "Brand Colours"
|
||||
msgstr "Couleurs de la marque"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand colours, including background, foreground, primary, and border colours"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Brand Details"
|
||||
msgstr "Détails de la marque"
|
||||
@@ -2414,6 +2420,10 @@ msgstr "Détails de la marque"
|
||||
msgid "Brand Website"
|
||||
msgstr "Site web de la marque"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand website and brand details"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
#: apps/remix/app/components/general/settings-nav-desktop.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -2425,6 +2435,7 @@ msgstr "Image de marque"
|
||||
msgid "Branding company details"
|
||||
msgstr "Informations sur l’entreprise pour l’image de marque"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Branding logo"
|
||||
msgstr "Logo de l’image de marque"
|
||||
@@ -2544,9 +2555,11 @@ msgstr "Vous ne trouvez pas quelqu’un ?"
|
||||
#: apps/remix/app/components/dialogs/ai-field-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-send-test-dialog.tsx
|
||||
@@ -2607,6 +2620,7 @@ msgstr "Vous ne trouvez pas quelqu’un ?"
|
||||
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
@@ -2796,10 +2810,6 @@ msgstr "Choisissez la méthode de vérification"
|
||||
msgid "Choose your preferred authentication method:"
|
||||
msgstr "Choisissez votre méthode d'authentification préférée:"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Choose..."
|
||||
msgstr "Choisissez..."
|
||||
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "Claim"
|
||||
msgstr "Demande"
|
||||
@@ -3264,14 +3274,14 @@ msgstr "Copier les liens de signature"
|
||||
msgid "Copy team ID"
|
||||
msgstr "Copier l’ID de l’équipe"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Copy token"
|
||||
msgstr "Copier le token"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
msgid "Copy Value"
|
||||
msgstr "Copier la valeur"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Copy your token now. For security reasons you will not be able to see it again."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-reset-button.tsx
|
||||
msgid "Counter reset."
|
||||
msgstr "Compteur réinitialisé."
|
||||
@@ -3338,10 +3348,18 @@ msgstr "Créer une organisation pour collaborer avec des équipes"
|
||||
msgid "Create an organisation to get started."
|
||||
msgstr "Créer une organisation pour démarrer"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Create and manage API tokens. See our <0>documentation</0> for more information."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create and send"
|
||||
msgstr "Créer et envoyer"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create as draft"
|
||||
msgstr "Créer en tant que brouillon"
|
||||
@@ -3460,8 +3478,8 @@ msgstr "Créer un modèle"
|
||||
msgid "Create the document as pending and ready to sign."
|
||||
msgstr "Créer le document comme en attente et prêt à signer."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create token"
|
||||
msgstr "Créer un token"
|
||||
|
||||
@@ -3507,6 +3525,7 @@ msgstr "Créez votre compte et commencez à utiliser la signature de documents
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Created"
|
||||
msgstr "Créé"
|
||||
@@ -3527,11 +3546,6 @@ msgstr "Créé par"
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Created on {0}"
|
||||
msgstr "Créé le {0}"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/envelope.create._index.tsx
|
||||
msgid "Creating Document"
|
||||
msgstr "Création du document"
|
||||
@@ -3587,6 +3601,14 @@ msgstr "Actuellement, les domaines de messagerie ne peuvent être configurés qu
|
||||
msgid "Custom {0} MB file"
|
||||
msgstr "Fichier personnalisé de {0} Mo"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom branding enabled setting"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Custom CSS is sanitised on save. Layout-breaking properties, remote URLs, and pseudo-elements are stripped automatically. Any rules dropped during sanitisation will be shown after you save."
|
||||
msgstr "Le CSS personnalisé est nettoyé lors de l’enregistrement. Les propriétés pouvant casser la mise en page, les URL distantes et les pseudo-éléments sont supprimés automatiquement. Toutes les règles supprimées pendant la sanitisation seront affichées après l’enregistrement."
|
||||
@@ -3671,14 +3693,26 @@ msgstr "Par défaut (service de messagerie du système)"
|
||||
msgid "Default border colour."
|
||||
msgstr "Couleur de bordure par défaut."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default date format"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Date Format"
|
||||
msgstr "Format de date par défaut"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document language"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Language"
|
||||
msgstr "Langue par défaut du document"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document visibility"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Visibility"
|
||||
msgstr "Visibilité par défaut du document"
|
||||
@@ -3691,6 +3725,10 @@ msgstr "E-mail par défaut"
|
||||
msgid "Default Email Settings"
|
||||
msgstr "Paramètres d'e-mail par défaut"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default envelope expiration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Envelope Expiration"
|
||||
msgstr "Expiration par défaut de l’enveloppe"
|
||||
@@ -3703,6 +3741,10 @@ msgstr "Fichier par défaut"
|
||||
msgid "Default Organisation Role for New Users"
|
||||
msgstr "Rôle par défaut de l'organisation pour les nouveaux utilisateurs"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default recipients"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Recipients"
|
||||
msgstr "Destinataires par défaut"
|
||||
@@ -3715,14 +3757,26 @@ msgstr "Paramètres par défaut appliqués à cette organisation."
|
||||
msgid "Default settings applied to this team. Inherited values come from the organisation."
|
||||
msgstr "Paramètres par défaut appliqués à cette équipe. Les valeurs héritées proviennent de l’organisation."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signature settings"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signature Settings"
|
||||
msgstr "Paramètres de Signature par Défaut"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signing reminders"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signing Reminders"
|
||||
msgstr "Rappels de signature par défaut"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default time zone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Time Zone"
|
||||
msgstr "Fuseau horaire par défaut"
|
||||
@@ -3738,6 +3792,7 @@ msgstr "Valeur par défaut"
|
||||
msgid "Default Value"
|
||||
msgstr "Valeur par défaut"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Delegate document ownership"
|
||||
msgstr "Déléguer la propriété du document"
|
||||
@@ -3768,6 +3823,7 @@ msgstr "supprimer"
|
||||
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
|
||||
@@ -3909,6 +3965,10 @@ msgstr "Supprimez le document. Cette action est irréversible, soyez prudent."
|
||||
msgid "Delete the users account and all its contents. This action is irreversible and will cancel their subscription, so proceed with caution."
|
||||
msgstr "Supprimez le compte de l'utilisateur et tout son contenu. Cette action est irréversible et annulera son abonnement, soyez prudent."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Delete token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
msgid "Delete Webhook"
|
||||
msgstr "Supprimer le Webhook"
|
||||
@@ -4651,6 +4711,10 @@ msgstr "Ne pas répéter"
|
||||
msgid "Don't transfer (Delete all documents)"
|
||||
msgstr "Ne pas transférer (supprimer tous les documents)"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
|
||||
@@ -5521,6 +5585,7 @@ msgstr "Expiration"
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expired"
|
||||
msgstr "Expiré"
|
||||
|
||||
@@ -5530,6 +5595,7 @@ msgid "Expired"
|
||||
msgstr "Expiré"
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires"
|
||||
msgstr "Expire le"
|
||||
|
||||
@@ -5538,16 +5604,15 @@ msgstr "Expire le"
|
||||
msgid "Expires {0}"
|
||||
msgstr "Expire le {0}"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Expires in"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: DateTime.fromMillis(Math.max(millisecondsRemaining, 0)).toFormat('mm:ss')
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
msgid "Expires in {0}"
|
||||
msgstr "Expire dans {0}"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.expires, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires on {0}"
|
||||
msgstr "Expire le {0}"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
|
||||
#: packages/ui/primitives/document-flow/add-settings.tsx
|
||||
#: packages/ui/primitives/template-flow/add-template-settings.tsx
|
||||
@@ -6243,10 +6308,6 @@ msgstr "Je suis le propriétaire de ce document"
|
||||
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
|
||||
msgstr "Je comprends que je fournis mes identifiants à un service tiers configuré par cette organisation"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "I'm sure! Delete it"
|
||||
msgstr "Je suis sûr ! Supprimez-le"
|
||||
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
|
||||
@@ -6345,10 +6406,18 @@ msgstr "Inclure les informations sur l’expéditeur"
|
||||
msgid "Include signing certificate"
|
||||
msgstr "Inclure le certificat de signature"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the audit logs in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Audit Logs in the Document"
|
||||
msgstr "Inclure les journaux d'audit dans le document"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the signing certificate in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Signing Certificate in the Document"
|
||||
msgstr "Includez le certificat de signature dans le document"
|
||||
@@ -6429,6 +6498,11 @@ msgstr "Statistiques de l'instance"
|
||||
msgid "Invalid code. Please try again."
|
||||
msgstr "Code invalide. Veuillez réessayer."
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Invalid direct link template"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
|
||||
msgid "Invalid domains"
|
||||
msgstr "Domaines invalides"
|
||||
@@ -7176,6 +7250,11 @@ msgstr "Licence manquante - Votre instance Documenso utilise des fonctionnalité
|
||||
msgid "Missing Recipients"
|
||||
msgstr "Manque de destinataires"
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "Missing signature fields"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
|
||||
msgid "Modify recipients"
|
||||
@@ -7267,6 +7346,7 @@ msgstr "N/A"
|
||||
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/forms/email-transport-form.tsx
|
||||
@@ -7287,6 +7367,7 @@ msgstr "N/A"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: packages/lib/utils/fields.ts
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
#: packages/ui/primitives/document-flow/add-signers.tsx
|
||||
@@ -7326,14 +7407,12 @@ msgstr "Nécessite une signature"
|
||||
msgid "Needs to view"
|
||||
msgstr "Nécessite une visualisation"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Never"
|
||||
msgstr "Jamais"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Never expire"
|
||||
msgstr "Ne jamais expirer"
|
||||
|
||||
#: packages/ui/components/document/expiration-period-picker.tsx
|
||||
msgid "Never expires"
|
||||
msgstr "N’expire jamais"
|
||||
@@ -7669,14 +7748,15 @@ msgstr "Activé"
|
||||
msgid "On this page, you can create a new webhook."
|
||||
msgstr "Sur cette page, vous pouvez créer un nouveau webhook."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "On this page, you can create and manage API tokens. See our <0>Documentation</0> for more information."
|
||||
msgstr "Sur cette page, vous pouvez créer et gérer des tokens API. Consultez notre <0>Documentation</0> pour plus d'informations."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "On this page, you can create new Webhooks and manage the existing ones."
|
||||
msgstr "Sur cette page, vous pouvez créer de nouveaux webhooks et gérer ceux existants."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Once confirmed, the following will be reset:"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelope-cancel-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelope-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-cancel-dialog.tsx
|
||||
@@ -8327,10 +8407,6 @@ msgstr "Veuillez contacter le propriétaire du site pour obtenir de l'aide suppl
|
||||
msgid "Please don't close this tab. The signing provider is finalising your signature."
|
||||
msgstr "Veuillez ne pas fermer cet onglet. Le fournisseur de signature est en train de finaliser votre signature."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Please enter a meaningful name for your token. This will help you identify it later."
|
||||
msgstr "Veuillez entrer un nom significatif pour votre token. Cela vous aidera à l'identifier plus tard."
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a number"
|
||||
msgstr "Veuillez entrer un nombre"
|
||||
@@ -8876,6 +8952,10 @@ msgstr "L’authentification du fournisseur de signature du destinataire a écho
|
||||
msgid "Recipients"
|
||||
msgstr "Destinataires"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Recipients cannot use this direct link template because the following signers are missing a signature field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
|
||||
msgid "Recipients metrics"
|
||||
msgstr "Métriques des destinataires"
|
||||
@@ -9234,6 +9314,14 @@ msgstr "Réinitialiser"
|
||||
msgid "Reset 2FA"
|
||||
msgstr "Réinitialiser 2FA"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Reset branding preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset document preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
msgid "Reset email sent"
|
||||
msgstr "E-mail de réinitialisation envoyé"
|
||||
@@ -9251,6 +9339,13 @@ msgstr "Réinitialiser le mot de passe"
|
||||
msgid "Reset the users two factor authentication. This action is irreversible and will disable two factor authentication for the user."
|
||||
msgstr "Réinitialiser l'authentification à deux facteurs des utilisateurs. Cette action est irréversible et désactivera l'authentification à deux facteurs pour l'utilisateur."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset to defaults"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
|
||||
msgid "Reset Two Factor Authentication"
|
||||
msgstr "Réinitialiser l'authentification à deux facteurs"
|
||||
@@ -9794,6 +9889,10 @@ msgstr "Envoyer l’enveloppe"
|
||||
msgid "Send first reminder after"
|
||||
msgstr "Envoyer le premier rappel après"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Send on behalf of team"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Send on Behalf of Team"
|
||||
msgstr "Envoyer au nom de l'équipe"
|
||||
@@ -10384,7 +10483,7 @@ msgstr "Quelque chose a mal tourné !"
|
||||
msgid "Something went wrong."
|
||||
msgstr "Quelque chose a mal tourné."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Something went wrong. Please try again later."
|
||||
msgstr "Quelque chose a mal tourné. Veuillez réessayer plus tard."
|
||||
|
||||
@@ -11104,6 +11203,10 @@ msgstr "Le nom d'affichage pour cette adresse e-mail"
|
||||
msgid "The document could not be created because of missing or invalid information. Please review the template's recipients and fields."
|
||||
msgstr "Le document n'a pas pu être créé en raison d'informations manquantes ou invalides. Veuillez vérifier les destinataires et les champs du modèle."
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "The document could not be sent because some signers do not have a signature field. Please edit the template and add a signature field for each signer."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
|
||||
msgid "The Document has been deleted successfully."
|
||||
msgstr "Le document a été supprimé avec succès."
|
||||
@@ -11434,10 +11537,6 @@ msgstr "Le webhook de test a été envoyé avec succès vers votre point de term
|
||||
msgid "The token is invalid or has expired."
|
||||
msgstr "Le token est invalide ou a expiré."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "The token was copied to your clipboard."
|
||||
msgstr "Le token a été copié dans votre presse-papiers."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "The token was deleted successfully."
|
||||
msgstr "Le token a été supprimé avec succès."
|
||||
@@ -11560,6 +11659,14 @@ msgstr "Cela peut prendre une à deux minutes selon la taille de votre document.
|
||||
msgid "This claim is locked and cannot be deleted."
|
||||
msgstr "Cette réclamation est verrouillée et ne peut pas être supprimée."
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned. Please contact the sender to update the template."
|
||||
msgstr ""
|
||||
|
||||
#: packages/email/template-components/template-document-super-delete.tsx
|
||||
msgid "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
|
||||
msgstr "Ce document ne peut pas être récupéré, si vous souhaitez contester la raison des documents futurs, veuillez contacter le support."
|
||||
@@ -11830,6 +11937,14 @@ msgstr "Cela ne fera que rétroporter les drapeaux de fonctionnalité qui sont a
|
||||
msgid "This will remove all emails associated with this email domain"
|
||||
msgstr "Cela supprimera tous les e-mails associés à ce domaine de messagerie"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all branding preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all document preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
|
||||
msgid "This will sign you out of all other devices. You will need to sign in again on those devices to continue using your account."
|
||||
msgstr "Cela entraînera votre déconnexion de tous les autres appareils. Vous devrez vous reconnecter sur ces appareils pour continuer à utiliser votre compte."
|
||||
@@ -12025,11 +12140,11 @@ msgstr "Basculer l'interrupteur pour afficher votre profil au public."
|
||||
msgid "Token"
|
||||
msgstr "Jeton"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token copied to clipboard"
|
||||
msgstr "Token copié dans le presse-papiers"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token created"
|
||||
msgstr "Token créé"
|
||||
|
||||
@@ -12037,22 +12152,10 @@ msgstr "Token créé"
|
||||
msgid "Token deleted"
|
||||
msgstr "Token supprimé"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Token doesn't have an expiration date"
|
||||
msgstr "Le token n'a pas de date d'expiration"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token expiration date"
|
||||
msgstr "Date d'expiration du token"
|
||||
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Token has expired. Please try again."
|
||||
msgstr "Le token a expiré. Veuillez réessayer."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token name"
|
||||
msgstr "Nom du token"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/_layout.tsx
|
||||
msgid "Token Not Found"
|
||||
msgstr "Jeton introuvable"
|
||||
@@ -12210,10 +12313,6 @@ msgstr "Impossible de changer la langue pour le moment. Veuillez réessayer plus
|
||||
msgid "Unable to copy recovery code"
|
||||
msgstr "Impossible de copier le code de récupération"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Unable to copy token"
|
||||
msgstr "Impossible de copier le token"
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
msgid "Unable to create direct template access. Please try again later."
|
||||
msgstr "Impossible de créer un accès direct au modèle. Veuillez réessayer plus tard."
|
||||
@@ -12633,6 +12732,10 @@ msgstr ""
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Use API tokens to authenticate with the Documenso API."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13274,10 +13377,6 @@ msgstr "Nous avons envoyé un e-mail de confirmation pour vérification."
|
||||
msgid "We need your signature to sign documents"
|
||||
msgstr "Nous avons besoin de votre signature pour signer des documents"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "We were unable to copy the token to your clipboard. Please try again."
|
||||
msgstr "Nous n'avons pas pu copier le token dans votre presse-papiers. Veuillez réessayer."
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/recovery-code-list.tsx
|
||||
msgid "We were unable to copy your recovery code to your clipboard. Please try again."
|
||||
msgstr "Nous n'avons pas pu copier votre code de récupération dans votre presse-papiers. Veuillez réessayer."
|
||||
@@ -13928,7 +14027,7 @@ msgstr "Vous avez supprimé un élément d'enveloppe avec le titre {0}"
|
||||
msgid "You deleted the document"
|
||||
msgstr "Vous avez supprimé le document"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "You do not have permission to create a token for this team."
|
||||
msgstr "Vous n’avez pas l’autorisation de créer un jeton pour cette équipe."
|
||||
|
||||
@@ -13987,6 +14086,10 @@ msgstr "Vous avez refusé l'invitation de <0>{0}</0> à rejoindre leur organisat
|
||||
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
|
||||
msgstr "Vous avez initié le document {0} et devez le {recipientActionVerb}."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "You have no API tokens yet. Your tokens will be shown here once you create them."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "You have no webhooks yet. Your webhooks will be shown here once you create them."
|
||||
msgstr "Vous n'avez pas encore de webhooks. Vos webhooks seront affichés ici une fois que vous les aurez créés."
|
||||
@@ -14546,14 +14649,14 @@ msgstr "Votre enveloppe a été distribuée avec succès."
|
||||
msgid "Your envelope has been resent successfully."
|
||||
msgstr "Votre enveloppe a été renvoyée avec succès."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your existing tokens"
|
||||
msgstr "Vos tokens existants"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
|
||||
msgid "Your Name"
|
||||
msgstr "Votre nom"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Your new API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Your new password cannot be the same as your old password."
|
||||
@@ -14748,14 +14851,6 @@ msgstr "Vos modèles ont été enregistrés avec succès."
|
||||
msgid "Your token has expired!"
|
||||
msgstr "Votre token a expiré !"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!"
|
||||
msgstr "Votre token a été créé avec succès ! Assurez-vous de le copier car vous ne pourrez plus le voir !"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your tokens will be shown here once you create them."
|
||||
msgstr "Vos tokens seront affichés ici une fois que vous les aurez créés."
|
||||
|
||||
#: packages/lib/server-only/2fa/email/send-2fa-token-email.ts
|
||||
msgid "Your two-factor authentication code"
|
||||
msgstr "Votre code d'authentification à deux facteurs"
|
||||
|
||||
@@ -850,11 +850,11 @@ msgstr "0 Organizzazioni gratuite rimaste"
|
||||
msgid "1 Free organisations left"
|
||||
msgstr "1 Organizzazione gratuita rimasta"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "1 month"
|
||||
msgstr "{VAR_PLURAL, select, one {1 mese} other {# mesi}}"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "12 months"
|
||||
msgstr "{VAR_PLURAL, select, one {1 mese} other {12 mesi}}"
|
||||
|
||||
@@ -870,7 +870,7 @@ msgstr "Reimposta 2FA"
|
||||
msgid "2FA token"
|
||||
msgstr "Token 2FA (autenticazione a due fattori)"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "3 months"
|
||||
msgstr "{VAR_PLURAL, select, one {1 mese} other {3 mesi}}"
|
||||
|
||||
@@ -949,11 +949,11 @@ msgstr "5 Documenti al mese"
|
||||
msgid "500 Internal Server Error"
|
||||
msgstr "500 Errore Interno del Server"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "6 months"
|
||||
msgstr "{VAR_PLURAL, select, one {1 mese} other {6 mesi}}"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "7 days"
|
||||
msgstr "{VAR_PLURAL, select, one {1 giorno} other {7 giorni}}"
|
||||
|
||||
@@ -1008,6 +1008,10 @@ msgstr "Un membro ha lasciato la tua organizzazione {organisationName}"
|
||||
msgid "A member has left your organisation on Documenso"
|
||||
msgstr "Un membro ha lasciato la tua organizzazione su Documenso"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "A name to help you identify this token later."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/jobs/definitions/emails/send-organisation-member-joined-email.handler.ts
|
||||
msgid "A new member has joined your organisation"
|
||||
msgstr "Un nuovo membro si è unito alla tua organizzazione"
|
||||
@@ -1016,10 +1020,6 @@ msgstr "Un nuovo membro si è unito alla tua organizzazione"
|
||||
msgid "A new member has joined your organisation {organisationName}"
|
||||
msgstr "Nuovo membro si è unito alla tua organizzazione {organisationName}"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "A new token was created successfully."
|
||||
msgstr "Un nuovo token è stato creato con successo."
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
|
||||
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
|
||||
@@ -1215,6 +1215,7 @@ msgstr "Azione"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Actions"
|
||||
msgstr "Azioni"
|
||||
@@ -1539,6 +1540,7 @@ msgstr "Dopo aver firmato un documento elettronicamente, avrai la possibilità d
|
||||
msgid "After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email."
|
||||
msgstr "Dopo l'invio, un documento verrà generato automaticamente e aggiunto alla tua pagina dei documenti. Riceverai anche una notifica via email."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "AI features"
|
||||
msgstr "Funzionalità di IA"
|
||||
@@ -1708,11 +1710,11 @@ msgstr "Una email con questo indirizzo esiste già."
|
||||
#: apps/remix/app/components/dialogs/admin-team-member-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/admin-user-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/forms/avatar-image.tsx
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
#: apps/remix/app/components/forms/signup.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
@@ -2121,10 +2123,6 @@ msgstr "Sei sicuro di voler eliminare il seguente trasporto?"
|
||||
msgid "Are you sure you want to delete this folder?"
|
||||
msgstr "Sei sicuro di voler eliminare questa cartella?"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Are you sure you want to delete this token?"
|
||||
msgstr "Sei sicuro di voler eliminare questo token?"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
msgid "Are you sure you want to reject this document? This action cannot be undone."
|
||||
msgstr "Sei sicuro di voler rifiutare questo documento? Questa azione non può essere annullata."
|
||||
@@ -2390,6 +2388,10 @@ msgstr "Blu"
|
||||
msgid "Border"
|
||||
msgstr "Bordo"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Border radius"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Border Radius"
|
||||
msgstr "Raggio del bordo"
|
||||
@@ -2406,6 +2408,10 @@ msgstr "Inferiore"
|
||||
msgid "Brand Colours"
|
||||
msgstr "Colori del brand"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand colours, including background, foreground, primary, and border colours"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Brand Details"
|
||||
msgstr "Dettagli del Marchio"
|
||||
@@ -2414,6 +2420,10 @@ msgstr "Dettagli del Marchio"
|
||||
msgid "Brand Website"
|
||||
msgstr "Sito Web del Marchio"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand website and brand details"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
#: apps/remix/app/components/general/settings-nav-desktop.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -2425,6 +2435,7 @@ msgstr "Branding"
|
||||
msgid "Branding company details"
|
||||
msgstr "Dettagli aziendali del branding"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Branding logo"
|
||||
msgstr "Logo del branding"
|
||||
@@ -2544,9 +2555,11 @@ msgstr "Non riesci a trovare qualcuno?"
|
||||
#: apps/remix/app/components/dialogs/ai-field-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-send-test-dialog.tsx
|
||||
@@ -2607,6 +2620,7 @@ msgstr "Non riesci a trovare qualcuno?"
|
||||
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
@@ -2796,10 +2810,6 @@ msgstr "Scegli il metodo di verifica"
|
||||
msgid "Choose your preferred authentication method:"
|
||||
msgstr "Scegli il tuo metodo di autenticazione preferito:"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Choose..."
|
||||
msgstr "Scegli..."
|
||||
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "Claim"
|
||||
msgstr "Richiesta di risarcimento"
|
||||
@@ -3264,14 +3274,14 @@ msgstr "Copia link di firma"
|
||||
msgid "Copy team ID"
|
||||
msgstr "Copia ID team"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Copy token"
|
||||
msgstr "Copia il token"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
msgid "Copy Value"
|
||||
msgstr "Copia valore"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Copy your token now. For security reasons you will not be able to see it again."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-reset-button.tsx
|
||||
msgid "Counter reset."
|
||||
msgstr "Contatore reimpostato."
|
||||
@@ -3338,10 +3348,18 @@ msgstr "Crea un'organizzazione per collaborare con i team"
|
||||
msgid "Create an organisation to get started."
|
||||
msgstr "Crea un'organizzazione per iniziare."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Create and manage API tokens. See our <0>documentation</0> for more information."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create and send"
|
||||
msgstr "Crea e invia"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create as draft"
|
||||
msgstr "Crea come bozza"
|
||||
@@ -3460,8 +3478,8 @@ msgstr "Crea modello"
|
||||
msgid "Create the document as pending and ready to sign."
|
||||
msgstr "Crea il documento come in attesa e pronto per la firma."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create token"
|
||||
msgstr "Crea token"
|
||||
|
||||
@@ -3507,6 +3525,7 @@ msgstr "Crea il tuo account e inizia a utilizzare firme digitali all'avanguardia
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Created"
|
||||
msgstr "Creato"
|
||||
@@ -3527,11 +3546,6 @@ msgstr "Creato da"
|
||||
msgid "Created on"
|
||||
msgstr "Creato il"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Created on {0}"
|
||||
msgstr "Creato il {0}"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/envelope.create._index.tsx
|
||||
msgid "Creating Document"
|
||||
msgstr "Creazione del documento"
|
||||
@@ -3587,6 +3601,14 @@ msgstr "Attualmente i domini email possono essere configurati solo per i piani P
|
||||
msgid "Custom {0} MB file"
|
||||
msgstr "File personalizzato da {0} MB"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom branding enabled setting"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Custom CSS is sanitised on save. Layout-breaking properties, remote URLs, and pseudo-elements are stripped automatically. Any rules dropped during sanitisation will be shown after you save."
|
||||
msgstr "Il CSS personalizzato viene sanitizzato al salvataggio. Le proprietà che possono compromettere il layout, gli URL remoti e i pseudo-elementi vengono rimossi automaticamente. Qualsiasi regola eliminata durante la sanitizzazione verrà mostrata dopo il salvataggio."
|
||||
@@ -3671,14 +3693,26 @@ msgstr "Predefinito (mailer di sistema)"
|
||||
msgid "Default border colour."
|
||||
msgstr "Colore del bordo predefinito."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default date format"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Date Format"
|
||||
msgstr "Formato Data Predefinito"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document language"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Language"
|
||||
msgstr "Lingua predefinita del documento"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document visibility"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Visibility"
|
||||
msgstr "Visibilità predefinita del documento"
|
||||
@@ -3691,6 +3725,10 @@ msgstr "Email Predefinita"
|
||||
msgid "Default Email Settings"
|
||||
msgstr "Impostazioni Email Predefinite"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default envelope expiration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Envelope Expiration"
|
||||
msgstr "Scadenza predefinita della busta"
|
||||
@@ -3703,6 +3741,10 @@ msgstr "File predefinito"
|
||||
msgid "Default Organisation Role for New Users"
|
||||
msgstr "Ruolo dell'organizzazione predefinito per nuovi utenti"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default recipients"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Recipients"
|
||||
msgstr "Destinatari predefiniti"
|
||||
@@ -3715,14 +3757,26 @@ msgstr "Impostazioni predefinite applicate a questa organizzazione."
|
||||
msgid "Default settings applied to this team. Inherited values come from the organisation."
|
||||
msgstr "Impostazioni predefinite applicate a questo team. I valori ereditati provengono dall’organizzazione."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signature settings"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signature Settings"
|
||||
msgstr "Impostazioni predefinite della firma"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signing reminders"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signing Reminders"
|
||||
msgstr "Promemorie di firma predefiniti"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default time zone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Time Zone"
|
||||
msgstr "Fuso Orario Predefinito"
|
||||
@@ -3738,6 +3792,7 @@ msgstr "Valore predefinito"
|
||||
msgid "Default Value"
|
||||
msgstr "Valore predefinito"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Delegate document ownership"
|
||||
msgstr "Delega proprietà del documento"
|
||||
@@ -3768,6 +3823,7 @@ msgstr "elimina"
|
||||
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
|
||||
@@ -3909,6 +3965,10 @@ msgstr "Elimina il documento. Questa azione è irreversibile quindi procedi con
|
||||
msgid "Delete the users account and all its contents. This action is irreversible and will cancel their subscription, so proceed with caution."
|
||||
msgstr "Elimina l'account utente e tutti i suoi contenuti. Questa azione è irreversibile e annullerà l'abbonamento, quindi procedi con cautela."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Delete token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
msgid "Delete Webhook"
|
||||
msgstr "Elimina Webhook"
|
||||
@@ -4651,6 +4711,10 @@ msgstr "Non ripetere"
|
||||
msgid "Don't transfer (Delete all documents)"
|
||||
msgstr "Non trasferire (elimina tutti i documenti)"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
|
||||
@@ -5521,6 +5585,7 @@ msgstr "Scadenza"
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expired"
|
||||
msgstr "Scaduto"
|
||||
|
||||
@@ -5530,6 +5595,7 @@ msgid "Expired"
|
||||
msgstr "Scaduto"
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires"
|
||||
msgstr "Scade"
|
||||
|
||||
@@ -5538,16 +5604,15 @@ msgstr "Scade"
|
||||
msgid "Expires {0}"
|
||||
msgstr "Scade il {0}"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Expires in"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: DateTime.fromMillis(Math.max(millisecondsRemaining, 0)).toFormat('mm:ss')
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
msgid "Expires in {0}"
|
||||
msgstr "Scade in {0}"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.expires, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires on {0}"
|
||||
msgstr "Scade il {0}"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
|
||||
#: packages/ui/primitives/document-flow/add-settings.tsx
|
||||
#: packages/ui/primitives/template-flow/add-template-settings.tsx
|
||||
@@ -6243,10 +6308,6 @@ msgstr "Sono il proprietario di questo documento"
|
||||
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
|
||||
msgstr "Capisco che sto fornendo le mie credenziali a un servizio di terze parti configurato da questa organizzazione"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "I'm sure! Delete it"
|
||||
msgstr "Sono sicuro! Eliminalo"
|
||||
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
|
||||
@@ -6345,10 +6406,18 @@ msgstr "Includi dettagli del mittente"
|
||||
msgid "Include signing certificate"
|
||||
msgstr "Includi certificato di firma"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the audit logs in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Audit Logs in the Document"
|
||||
msgstr "Includi i Registri di Audit nel Documento"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the signing certificate in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Signing Certificate in the Document"
|
||||
msgstr "Includi il certificato di firma nel documento"
|
||||
@@ -6429,6 +6498,11 @@ msgstr "Statistiche istanze"
|
||||
msgid "Invalid code. Please try again."
|
||||
msgstr "Codice non valido. Riprova."
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Invalid direct link template"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
|
||||
msgid "Invalid domains"
|
||||
msgstr "Domini non validi"
|
||||
@@ -7176,6 +7250,11 @@ msgstr "Licenza mancante - La tua istanza Documenso sta utilizzando funzionalit
|
||||
msgid "Missing Recipients"
|
||||
msgstr "Destinatari Mancanti"
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "Missing signature fields"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
|
||||
msgid "Modify recipients"
|
||||
@@ -7267,6 +7346,7 @@ msgstr "N/A"
|
||||
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/forms/email-transport-form.tsx
|
||||
@@ -7287,6 +7367,7 @@ msgstr "N/A"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: packages/lib/utils/fields.ts
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
#: packages/ui/primitives/document-flow/add-signers.tsx
|
||||
@@ -7326,14 +7407,12 @@ msgstr "Necessita di firma"
|
||||
msgid "Needs to view"
|
||||
msgstr "Necessita di visualizzazione"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Never"
|
||||
msgstr "Mai"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Never expire"
|
||||
msgstr "Mai scadere"
|
||||
|
||||
#: packages/ui/components/document/expiration-period-picker.tsx
|
||||
msgid "Never expires"
|
||||
msgstr "Non scade mai"
|
||||
@@ -7669,14 +7748,15 @@ msgstr "Attivato"
|
||||
msgid "On this page, you can create a new webhook."
|
||||
msgstr "In questa pagina, puoi creare un nuovo webhook."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "On this page, you can create and manage API tokens. See our <0>Documentation</0> for more information."
|
||||
msgstr "Su questa pagina, puoi creare e gestire token API. Consulta la nostra <0>Documentazione</0> per maggiori informazioni."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "On this page, you can create new Webhooks and manage the existing ones."
|
||||
msgstr "In questa pagina, puoi creare nuovi Webhook e gestire quelli esistenti."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Once confirmed, the following will be reset:"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelope-cancel-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelope-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-cancel-dialog.tsx
|
||||
@@ -8327,10 +8407,6 @@ msgstr "Si prega di contattare il proprietario del sito per ulteriori assistenza
|
||||
msgid "Please don't close this tab. The signing provider is finalising your signature."
|
||||
msgstr "Non chiudere questa scheda. Il provider di firma sta finalizzando la tua firma."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Please enter a meaningful name for your token. This will help you identify it later."
|
||||
msgstr "Si prega di inserire un nome significativo per il proprio token. Questo ti aiuterà a identificarlo più tardi."
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a number"
|
||||
msgstr "Inserisci un numero"
|
||||
@@ -8876,6 +8952,10 @@ msgstr "L'autenticazione del provider di firma del destinatario non è riuscita"
|
||||
msgid "Recipients"
|
||||
msgstr "Destinatari"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Recipients cannot use this direct link template because the following signers are missing a signature field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
|
||||
msgid "Recipients metrics"
|
||||
msgstr "Metriche dei destinatari"
|
||||
@@ -9234,6 +9314,14 @@ msgstr "Ripristina"
|
||||
msgid "Reset 2FA"
|
||||
msgstr "Reimposta 2FA"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Reset branding preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset document preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
msgid "Reset email sent"
|
||||
msgstr "Email di reset inviato"
|
||||
@@ -9251,6 +9339,13 @@ msgstr "Reimposta password"
|
||||
msgid "Reset the users two factor authentication. This action is irreversible and will disable two factor authentication for the user."
|
||||
msgstr "Reimposta l'autenticazione a due fattori dell'utente. Questa azione è irreversibile e disabiliterà l'autenticazione a due fattori per l'utente."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset to defaults"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
|
||||
msgid "Reset Two Factor Authentication"
|
||||
msgstr "Reimposta autenticazione a due fattori"
|
||||
@@ -9794,6 +9889,10 @@ msgstr "Invia busta"
|
||||
msgid "Send first reminder after"
|
||||
msgstr "Invia il primo promemoria dopo"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Send on behalf of team"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Send on Behalf of Team"
|
||||
msgstr "Invia per conto del team"
|
||||
@@ -10384,7 +10483,7 @@ msgstr "Qualcosa è andato storto!"
|
||||
msgid "Something went wrong."
|
||||
msgstr "Qualcosa è andato storto."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Something went wrong. Please try again later."
|
||||
msgstr "Qualcosa è andato storto. Si prega di riprovare più tardi."
|
||||
|
||||
@@ -11104,6 +11203,10 @@ msgstr "Il nome visualizzato per questo indirizzo email"
|
||||
msgid "The document could not be created because of missing or invalid information. Please review the template's recipients and fields."
|
||||
msgstr "Non è stato possibile creare il documento a causa di informazioni mancanti o non valide. Per favore, verifica i destinatari e i campi del modello."
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "The document could not be sent because some signers do not have a signature field. Please edit the template and add a signature field for each signer."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
|
||||
msgid "The Document has been deleted successfully."
|
||||
msgstr "Il documento è stato eliminato correttamente."
|
||||
@@ -11434,10 +11537,6 @@ msgstr "Il test del webhook è stato inviato con successo al tuo endpoint."
|
||||
msgid "The token is invalid or has expired."
|
||||
msgstr "Il token non è valido o è scaduto."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "The token was copied to your clipboard."
|
||||
msgstr "Il token è stato copiato negli appunti."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "The token was deleted successfully."
|
||||
msgstr "Il token è stato eliminato con successo."
|
||||
@@ -11560,6 +11659,14 @@ msgstr "Questo può richiedere uno o due minuti a seconda delle dimensioni del d
|
||||
msgid "This claim is locked and cannot be deleted."
|
||||
msgstr "Questo reclamo è bloccato e non può essere eliminato."
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned. Please contact the sender to update the template."
|
||||
msgstr ""
|
||||
|
||||
#: packages/email/template-components/template-document-super-delete.tsx
|
||||
msgid "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
|
||||
msgstr "Questo documento non può essere recuperato, se vuoi contestare la ragione per i documenti futuri, contatta il supporto."
|
||||
@@ -11830,6 +11937,14 @@ msgstr "Questo farà SOLO il retroporting degli indicatori delle funzionalità i
|
||||
msgid "This will remove all emails associated with this email domain"
|
||||
msgstr "Questo rimuoverà tutte le email associate a questo dominio email"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all branding preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all document preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
|
||||
msgid "This will sign you out of all other devices. You will need to sign in again on those devices to continue using your account."
|
||||
msgstr "Questa azione ti disconnetterà da tutti gli altri dispositivi. Dovrai accedere nuovamente su quei dispositivi per continuare a usare il tuo account."
|
||||
@@ -12025,11 +12140,11 @@ msgstr "Attiva l'interruttore per mostrare il tuo profilo al pubblico."
|
||||
msgid "Token"
|
||||
msgstr "Token"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token copied to clipboard"
|
||||
msgstr "Token copiato negli appunti"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token created"
|
||||
msgstr "Token creato"
|
||||
|
||||
@@ -12037,22 +12152,10 @@ msgstr "Token creato"
|
||||
msgid "Token deleted"
|
||||
msgstr "Token eliminato"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Token doesn't have an expiration date"
|
||||
msgstr "Il token non ha una data di scadenza"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token expiration date"
|
||||
msgstr "Data di scadenza del token"
|
||||
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Token has expired. Please try again."
|
||||
msgstr "Il token è scaduto. Per favore riprova."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token name"
|
||||
msgstr "Nome del token"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/_layout.tsx
|
||||
msgid "Token Not Found"
|
||||
msgstr "Token non trovato"
|
||||
@@ -12210,10 +12313,6 @@ msgstr "Impossibile cambiare la lingua in questo momento. Per favore riprova pi
|
||||
msgid "Unable to copy recovery code"
|
||||
msgstr "Impossibile copiare il codice di recupero"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Unable to copy token"
|
||||
msgstr "Impossibile copiare il token"
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
msgid "Unable to create direct template access. Please try again later."
|
||||
msgstr "Impossibile creare l'accesso diretto al modello. Si prega di riprovare più tardi."
|
||||
@@ -12633,6 +12732,10 @@ msgstr ""
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Use API tokens to authenticate with the Documenso API."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13274,10 +13377,6 @@ msgstr "Abbiamo inviato un'email di conferma per la verifica."
|
||||
msgid "We need your signature to sign documents"
|
||||
msgstr "Abbiamo bisogno della tua firma per firmare i documenti"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "We were unable to copy the token to your clipboard. Please try again."
|
||||
msgstr "Non siamo riusciti a copiare il token negli appunti. Si prega di riprovare."
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/recovery-code-list.tsx
|
||||
msgid "We were unable to copy your recovery code to your clipboard. Please try again."
|
||||
msgstr "Non siamo riusciti a copiare il tuo codice di recupero negli appunti. Si prega di riprovare."
|
||||
@@ -13928,7 +14027,7 @@ msgstr "Hai eliminato un elemento della busta con titolo {0}"
|
||||
msgid "You deleted the document"
|
||||
msgstr "Hai eliminato il documento"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "You do not have permission to create a token for this team."
|
||||
msgstr "Non hai l'autorizzazione per creare un token per questo team."
|
||||
|
||||
@@ -13987,6 +14086,10 @@ msgstr "Hai rifiutato l'invito da <0>{0}</0> a unirti alla loro organizzazione."
|
||||
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
|
||||
msgstr "Hai avviato il documento {0} che richiede che tu lo {recipientActionVerb}."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "You have no API tokens yet. Your tokens will be shown here once you create them."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "You have no webhooks yet. Your webhooks will be shown here once you create them."
|
||||
msgstr "Non hai ancora webhook. I tuoi webhook verranno visualizzati qui una volta creati."
|
||||
@@ -14546,14 +14649,14 @@ msgstr "La tua busta è stata distribuita con successo."
|
||||
msgid "Your envelope has been resent successfully."
|
||||
msgstr "La tua busta è stata reinviata con successo."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your existing tokens"
|
||||
msgstr "I tuoi token esistenti"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
|
||||
msgid "Your Name"
|
||||
msgstr "Il tuo nome"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Your new API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Your new password cannot be the same as your old password."
|
||||
@@ -14748,14 +14851,6 @@ msgstr "I tuoi modelli sono stati salvati con successo."
|
||||
msgid "Your token has expired!"
|
||||
msgstr "Il tuo token è scaduto!"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!"
|
||||
msgstr "Il tuo token è stato creato con successo! Assicurati di copiarlo perché non potrai più vederlo!"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your tokens will be shown here once you create them."
|
||||
msgstr "I tuoi token verranno mostrati qui una volta creati."
|
||||
|
||||
#: packages/lib/server-only/2fa/email/send-2fa-token-email.ts
|
||||
msgid "Your two-factor authentication code"
|
||||
msgstr "Il tuo codice di autenticazione a due fattori"
|
||||
|
||||
@@ -850,11 +850,11 @@ msgstr "無料の組織枠は残り 0 件です"
|
||||
msgid "1 Free organisations left"
|
||||
msgstr "無料の組織枠は残り 1 件です"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "1 month"
|
||||
msgstr "1 か月"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "12 months"
|
||||
msgstr "12 か月"
|
||||
|
||||
@@ -870,7 +870,7 @@ msgstr "2FA リセット"
|
||||
msgid "2FA token"
|
||||
msgstr "2要素認証トークン"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "3 months"
|
||||
msgstr "3 か月"
|
||||
|
||||
@@ -949,11 +949,11 @@ msgstr "月 5 通のドキュメント"
|
||||
msgid "500 Internal Server Error"
|
||||
msgstr "500 Internal Server Error"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "6 months"
|
||||
msgstr "6 か月"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "7 days"
|
||||
msgstr "7 日間"
|
||||
|
||||
@@ -1008,6 +1008,10 @@ msgstr "メンバーが組織 {organisationName} を離れました"
|
||||
msgid "A member has left your organisation on Documenso"
|
||||
msgstr "メンバーが Documenso の組織を離れました"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "A name to help you identify this token later."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/jobs/definitions/emails/send-organisation-member-joined-email.handler.ts
|
||||
msgid "A new member has joined your organisation"
|
||||
msgstr "新しいメンバーが組織に参加しました"
|
||||
@@ -1016,10 +1020,6 @@ msgstr "新しいメンバーが組織に参加しました"
|
||||
msgid "A new member has joined your organisation {organisationName}"
|
||||
msgstr "新しいメンバーが組織 {organisationName} に参加しました"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "A new token was created successfully."
|
||||
msgstr "新しいトークンが正常に作成されました。"
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
|
||||
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
|
||||
@@ -1215,6 +1215,7 @@ msgstr "操作"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Actions"
|
||||
msgstr "操作"
|
||||
@@ -1539,6 +1540,7 @@ msgstr "文書に電子的に署名すると、記録用にその文書を表示
|
||||
msgid "After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email."
|
||||
msgstr "送信後、自動的にドキュメントが生成され、「ドキュメント」ページに追加されます。メールでも通知が届きます。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "AI features"
|
||||
msgstr "AI 機能"
|
||||
@@ -1708,11 +1710,11 @@ msgstr "このメールアドレスはすでに存在します。"
|
||||
#: apps/remix/app/components/dialogs/admin-team-member-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/admin-user-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/forms/avatar-image.tsx
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
#: apps/remix/app/components/forms/signup.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
@@ -2121,10 +2123,6 @@ msgstr "次のトランスポートを削除してもよろしいですか?"
|
||||
msgid "Are you sure you want to delete this folder?"
|
||||
msgstr "このフォルダを削除してもよろしいですか?"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Are you sure you want to delete this token?"
|
||||
msgstr "このトークンを削除してもよろしいですか?"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
msgid "Are you sure you want to reject this document? This action cannot be undone."
|
||||
msgstr "このドキュメントを却下してもよろしいですか?この操作は元に戻せません。"
|
||||
@@ -2390,6 +2388,10 @@ msgstr "青"
|
||||
msgid "Border"
|
||||
msgstr "ボーダー"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Border radius"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Border Radius"
|
||||
msgstr "ボーダーの角丸"
|
||||
@@ -2406,6 +2408,10 @@ msgstr "下"
|
||||
msgid "Brand Colours"
|
||||
msgstr "ブランドカラー"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand colours, including background, foreground, primary, and border colours"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Brand Details"
|
||||
msgstr "ブランド詳細"
|
||||
@@ -2414,6 +2420,10 @@ msgstr "ブランド詳細"
|
||||
msgid "Brand Website"
|
||||
msgstr "ブランドの Web サイト"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand website and brand details"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
#: apps/remix/app/components/general/settings-nav-desktop.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -2425,6 +2435,7 @@ msgstr "ブランディング"
|
||||
msgid "Branding company details"
|
||||
msgstr "ブランディング用の会社情報"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Branding logo"
|
||||
msgstr "ブランディング用ロゴ"
|
||||
@@ -2544,9 +2555,11 @@ msgstr "メンバーが見つかりませんか?"
|
||||
#: apps/remix/app/components/dialogs/ai-field-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-send-test-dialog.tsx
|
||||
@@ -2607,6 +2620,7 @@ msgstr "メンバーが見つかりませんか?"
|
||||
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
@@ -2796,10 +2810,6 @@ msgstr "認証方法を選択"
|
||||
msgid "Choose your preferred authentication method:"
|
||||
msgstr "希望する認証方法を選択してください。"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Choose..."
|
||||
msgstr "選択..."
|
||||
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "Claim"
|
||||
msgstr "請求"
|
||||
@@ -3264,14 +3274,14 @@ msgstr "署名リンクをコピー"
|
||||
msgid "Copy team ID"
|
||||
msgstr "チーム ID をコピー"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Copy token"
|
||||
msgstr "トークンをコピー"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
msgid "Copy Value"
|
||||
msgstr "値をコピー"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Copy your token now. For security reasons you will not be able to see it again."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-reset-button.tsx
|
||||
msgid "Counter reset."
|
||||
msgstr "カウンターをリセットしました。"
|
||||
@@ -3338,10 +3348,18 @@ msgstr "チームでコラボレーションするための組織を作成"
|
||||
msgid "Create an organisation to get started."
|
||||
msgstr "まずは組織を作成してください。"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Create and manage API tokens. See our <0>documentation</0> for more information."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create and send"
|
||||
msgstr "作成して送信"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create as draft"
|
||||
msgstr "下書きとして作成"
|
||||
@@ -3460,8 +3478,8 @@ msgstr "テンプレートを作成"
|
||||
msgid "Create the document as pending and ready to sign."
|
||||
msgstr "文書を保留状態で作成し、署名可能にします。"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create token"
|
||||
msgstr "トークンを作成"
|
||||
|
||||
@@ -3507,6 +3525,7 @@ msgstr "アカウントを作成して、最先端の文書署名を今すぐ始
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Created"
|
||||
msgstr "作成日時"
|
||||
@@ -3527,11 +3546,6 @@ msgstr "作成者"
|
||||
msgid "Created on"
|
||||
msgstr "作成日"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Created on {0}"
|
||||
msgstr "作成日 {0}"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/envelope.create._index.tsx
|
||||
msgid "Creating Document"
|
||||
msgstr "ドキュメントを作成中"
|
||||
@@ -3587,6 +3601,14 @@ msgstr "現在、メールドメインは Platform プラン以上のみ設定
|
||||
msgid "Custom {0} MB file"
|
||||
msgstr "カスタム {0} MB ファイル"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom branding enabled setting"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Custom CSS is sanitised on save. Layout-breaking properties, remote URLs, and pseudo-elements are stripped automatically. Any rules dropped during sanitisation will be shown after you save."
|
||||
msgstr "カスタムCSSは保存時にサニタイズされます。レイアウトを崩すプロパティ、リモートURL、および疑似要素は自動的に削除されます。サニタイズ中に削除されたルールは、保存後に表示されます。"
|
||||
@@ -3671,14 +3693,26 @@ msgstr "デフォルト(システムメーラー)"
|
||||
msgid "Default border colour."
|
||||
msgstr "デフォルトのボーダー色。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default date format"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Date Format"
|
||||
msgstr "既定の日付形式"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document language"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Language"
|
||||
msgstr "既定の文書言語"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document visibility"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Visibility"
|
||||
msgstr "既定の文書の公開範囲"
|
||||
@@ -3691,6 +3725,10 @@ msgstr "既定のメール"
|
||||
msgid "Default Email Settings"
|
||||
msgstr "既定のメール設定"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default envelope expiration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Envelope Expiration"
|
||||
msgstr "デフォルトの封筒有効期限"
|
||||
@@ -3703,6 +3741,10 @@ msgstr "デフォルトのファイル"
|
||||
msgid "Default Organisation Role for New Users"
|
||||
msgstr "新規ユーザーの既定の組織ロール"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default recipients"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Recipients"
|
||||
msgstr "デフォルトの受信者"
|
||||
@@ -3715,14 +3757,26 @@ msgstr "この組織に適用されているデフォルト設定です。"
|
||||
msgid "Default settings applied to this team. Inherited values come from the organisation."
|
||||
msgstr "このチームに適用されているデフォルト設定です。継承された値は組織から引き継がれます。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signature settings"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signature Settings"
|
||||
msgstr "既定の署名設定"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signing reminders"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signing Reminders"
|
||||
msgstr "デフォルトの署名リマインダー"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default time zone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Time Zone"
|
||||
msgstr "既定のタイムゾーン"
|
||||
@@ -3738,6 +3792,7 @@ msgstr "デフォルト値"
|
||||
msgid "Default Value"
|
||||
msgstr "既定値"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Delegate document ownership"
|
||||
msgstr "ドキュメント所有権の委任"
|
||||
@@ -3768,6 +3823,7 @@ msgstr "delete"
|
||||
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
|
||||
@@ -3909,6 +3965,10 @@ msgstr "この文書を削除します。この操作は取り消せないため
|
||||
msgid "Delete the users account and all its contents. This action is irreversible and will cancel their subscription, so proceed with caution."
|
||||
msgstr "このユーザーのアカウントと、そのすべての内容を削除します。この操作は取り消せず、サブスクリプションもキャンセルされるため、十分ご注意ください。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Delete token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
msgid "Delete Webhook"
|
||||
msgstr "Webhook を削除"
|
||||
@@ -4651,6 +4711,10 @@ msgstr "繰り返さない"
|
||||
msgid "Don't transfer (Delete all documents)"
|
||||
msgstr "転送しない(すべてのドキュメントを削除)"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
|
||||
@@ -5521,6 +5585,7 @@ msgstr "有効期限"
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expired"
|
||||
msgstr "有効期限切れ"
|
||||
|
||||
@@ -5530,6 +5595,7 @@ msgid "Expired"
|
||||
msgstr "有効期限切れ"
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires"
|
||||
msgstr "有効期限"
|
||||
|
||||
@@ -5538,16 +5604,15 @@ msgstr "有効期限"
|
||||
msgid "Expires {0}"
|
||||
msgstr "有効期限: {0}"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Expires in"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: DateTime.fromMillis(Math.max(millisecondsRemaining, 0)).toFormat('mm:ss')
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
msgid "Expires in {0}"
|
||||
msgstr "有効期限: 残り {0}"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.expires, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires on {0}"
|
||||
msgstr "有効期限 {0}"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
|
||||
#: packages/ui/primitives/document-flow/add-settings.tsx
|
||||
#: packages/ui/primitives/template-flow/add-template-settings.tsx
|
||||
@@ -6243,10 +6308,6 @@ msgstr "私はこの文書の所有者です"
|
||||
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
|
||||
msgstr "この組織が設定したサードパーティサービスに資格情報を提供することを理解しました"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "I'm sure! Delete it"
|
||||
msgstr "本当に削除します"
|
||||
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
|
||||
@@ -6345,10 +6406,18 @@ msgstr "送信者情報を含める"
|
||||
msgid "Include signing certificate"
|
||||
msgstr "署名証明書を含める"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the audit logs in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Audit Logs in the Document"
|
||||
msgstr "監査ログをドキュメントに含める"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the signing certificate in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Signing Certificate in the Document"
|
||||
msgstr "署名証明書をドキュメントに含める"
|
||||
@@ -6429,6 +6498,11 @@ msgstr "インスタンス統計"
|
||||
msgid "Invalid code. Please try again."
|
||||
msgstr "コードが無効です。もう一度お試しください。"
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Invalid direct link template"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
|
||||
msgid "Invalid domains"
|
||||
msgstr "無効なドメイン"
|
||||
@@ -7176,6 +7250,11 @@ msgstr "ライセンスがありません。ご利用中の Documenso インス
|
||||
msgid "Missing Recipients"
|
||||
msgstr "不足している受信者"
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "Missing signature fields"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
|
||||
msgid "Modify recipients"
|
||||
@@ -7267,6 +7346,7 @@ msgstr "N/A"
|
||||
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/forms/email-transport-form.tsx
|
||||
@@ -7287,6 +7367,7 @@ msgstr "N/A"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: packages/lib/utils/fields.ts
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
#: packages/ui/primitives/document-flow/add-signers.tsx
|
||||
@@ -7326,14 +7407,12 @@ msgstr "署名が必要"
|
||||
msgid "Needs to view"
|
||||
msgstr "閲覧が必要"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Never"
|
||||
msgstr "なし"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Never expire"
|
||||
msgstr "有効期限なし"
|
||||
|
||||
#: packages/ui/components/document/expiration-period-picker.tsx
|
||||
msgid "Never expires"
|
||||
msgstr "有効期限なし"
|
||||
@@ -7669,14 +7748,15 @@ msgstr "オン"
|
||||
msgid "On this page, you can create a new webhook."
|
||||
msgstr "このページでは新しい Webhook を作成できます。"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "On this page, you can create and manage API tokens. See our <0>Documentation</0> for more information."
|
||||
msgstr "このページでは、API トークンの作成と管理ができます。詳しくは<0>ドキュメント</0>をご覧ください。"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "On this page, you can create new Webhooks and manage the existing ones."
|
||||
msgstr "このページでは Webhook の新規作成と既存 Webhook の管理が行えます。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Once confirmed, the following will be reset:"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelope-cancel-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelope-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-cancel-dialog.tsx
|
||||
@@ -8327,10 +8407,6 @@ msgstr "詳しくはサイトのオーナーにお問い合わせください。
|
||||
msgid "Please don't close this tab. The signing provider is finalising your signature."
|
||||
msgstr "このタブを閉じないでください。署名プロバイダーが署名の最終処理を行っています。"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Please enter a meaningful name for your token. This will help you identify it later."
|
||||
msgstr "トークンの用途が分かる名前を入力してください。後から識別しやすくなります。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a number"
|
||||
msgstr "数値を入力してください"
|
||||
@@ -8876,6 +8952,10 @@ msgstr "受信者の署名プロバイダーでの認証に失敗しました"
|
||||
msgid "Recipients"
|
||||
msgstr "受信者"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Recipients cannot use this direct link template because the following signers are missing a signature field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
|
||||
msgid "Recipients metrics"
|
||||
msgstr "受信者は文書のコピーを保持したままです"
|
||||
@@ -9234,6 +9314,14 @@ msgstr "リセット"
|
||||
msgid "Reset 2FA"
|
||||
msgstr "2要素認証をリセット"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Reset branding preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset document preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
msgid "Reset email sent"
|
||||
msgstr "リセット用メールを送信しました"
|
||||
@@ -9251,6 +9339,13 @@ msgstr "パスワードをリセット"
|
||||
msgid "Reset the users two factor authentication. This action is irreversible and will disable two factor authentication for the user."
|
||||
msgstr "ユーザーの二要素認証をリセットします。この操作は元に戻せず、このユーザーの二要素認証は無効化されます。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset to defaults"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
|
||||
msgid "Reset Two Factor Authentication"
|
||||
msgstr "二要素認証をリセット"
|
||||
@@ -9794,6 +9889,10 @@ msgstr "封筒を送信"
|
||||
msgid "Send first reminder after"
|
||||
msgstr "最初のリマインダーを送信するまでの期間"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Send on behalf of team"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Send on Behalf of Team"
|
||||
msgstr "チームを代表して送信"
|
||||
@@ -10384,7 +10483,7 @@ msgstr "問題が発生しました。"
|
||||
msgid "Something went wrong."
|
||||
msgstr "問題が発生しました。"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Something went wrong. Please try again later."
|
||||
msgstr "問題が発生しました。後でもう一度お試しください。"
|
||||
|
||||
@@ -11104,6 +11203,10 @@ msgstr "このメールアドレスの表示名です"
|
||||
msgid "The document could not be created because of missing or invalid information. Please review the template's recipients and fields."
|
||||
msgstr "不足または無効な情報があるため、文書を作成できませんでした。テンプレートの受信者とフィールドを確認してください。"
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "The document could not be sent because some signers do not have a signature field. Please edit the template and add a signature field for each signer."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
|
||||
msgid "The Document has been deleted successfully."
|
||||
msgstr "ドキュメントは正常に削除されました。"
|
||||
@@ -11434,10 +11537,6 @@ msgstr "テスト Webhook はエンドポイントに正常に送信されまし
|
||||
msgid "The token is invalid or has expired."
|
||||
msgstr "トークンが無効であるか、有効期限が切れています。"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "The token was copied to your clipboard."
|
||||
msgstr "トークンをクリップボードにコピーしました。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "The token was deleted successfully."
|
||||
msgstr "トークンは正常に削除されました。"
|
||||
@@ -11560,6 +11659,14 @@ msgstr "ドキュメントのサイズによっては、1~2 分かかる場合
|
||||
msgid "This claim is locked and cannot be deleted."
|
||||
msgstr "このクレームはロックされているため削除できません。"
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned. Please contact the sender to update the template."
|
||||
msgstr ""
|
||||
|
||||
#: packages/email/template-components/template-document-super-delete.tsx
|
||||
msgid "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
|
||||
msgstr "このドキュメントは復元できません。今後のドキュメントについて理由に異議がある場合は、サポートまでお問い合わせください。"
|
||||
@@ -11830,6 +11937,14 @@ msgstr "ここでバックポートされるのは true に設定されている
|
||||
msgid "This will remove all emails associated with this email domain"
|
||||
msgstr "この操作により、このメールドメインに関連付けられたすべてのメールが削除されます。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all branding preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all document preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
|
||||
msgid "This will sign you out of all other devices. You will need to sign in again on those devices to continue using your account."
|
||||
msgstr "これにより、他のすべてのデバイスからサインアウトされます。アカウントを引き続き使用するには、それらのデバイスで再度サインインする必要があります。"
|
||||
@@ -12025,11 +12140,11 @@ msgstr "スイッチをオンにして、プロフィールを一般公開しま
|
||||
msgid "Token"
|
||||
msgstr "トークン"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token copied to clipboard"
|
||||
msgstr "トークンをコピーしました"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token created"
|
||||
msgstr "トークンを作成しました"
|
||||
|
||||
@@ -12037,22 +12152,10 @@ msgstr "トークンを作成しました"
|
||||
msgid "Token deleted"
|
||||
msgstr "トークンを削除しました"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Token doesn't have an expiration date"
|
||||
msgstr "このトークンには有効期限がありません"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token expiration date"
|
||||
msgstr "トークンの有効期限"
|
||||
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Token has expired. Please try again."
|
||||
msgstr "トークンの有効期限が切れています。もう一度お試しください。"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token name"
|
||||
msgstr "トークン名"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/_layout.tsx
|
||||
msgid "Token Not Found"
|
||||
msgstr "トークンが見つかりません"
|
||||
@@ -12210,10 +12313,6 @@ msgstr "現在、言語を変更できません。後でもう一度お試しく
|
||||
msgid "Unable to copy recovery code"
|
||||
msgstr "リカバリーコードをコピーできませんでした"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Unable to copy token"
|
||||
msgstr "トークンをコピーできませんでした"
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
msgid "Unable to create direct template access. Please try again later."
|
||||
msgstr "ダイレクトテンプレートアクセスを作成できませんでした。しばらくしてからもう一度お試しください。"
|
||||
@@ -12633,6 +12732,10 @@ msgstr ""
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Use API tokens to authenticate with the Documenso API."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13274,10 +13377,6 @@ msgstr "確認用のメールを送信しました。"
|
||||
msgid "We need your signature to sign documents"
|
||||
msgstr "ドキュメントに署名するには、お客様の署名が必要です。"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "We were unable to copy the token to your clipboard. Please try again."
|
||||
msgstr "トークンをクリップボードにコピーできませんでした。もう一度お試しください。"
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/recovery-code-list.tsx
|
||||
msgid "We were unable to copy your recovery code to your clipboard. Please try again."
|
||||
msgstr "リカバリーコードをクリップボードにコピーできませんでした。もう一度お試しください。"
|
||||
@@ -13928,7 +14027,7 @@ msgstr "タイトル {0} のエンベロープアイテムを削除しました"
|
||||
msgid "You deleted the document"
|
||||
msgstr "文書を削除しました"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "You do not have permission to create a token for this team."
|
||||
msgstr "このチームのトークンを作成する権限がありません。"
|
||||
|
||||
@@ -13987,6 +14086,10 @@ msgstr "<0>{0}</0> からの組織参加招待を辞退しました。"
|
||||
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
|
||||
msgstr "あなたが開始したドキュメント {0} は、{recipientActionVerb} が必要です。"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "You have no API tokens yet. Your tokens will be shown here once you create them."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "You have no webhooks yet. Your webhooks will be shown here once you create them."
|
||||
msgstr "Webhook はまだありません。作成するとここに表示されます。"
|
||||
@@ -14546,14 +14649,14 @@ msgstr "封筒を正常に送信しました。"
|
||||
msgid "Your envelope has been resent successfully."
|
||||
msgstr "封筒を正常に再送信しました。"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your existing tokens"
|
||||
msgstr "既存のトークン"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
|
||||
msgid "Your Name"
|
||||
msgstr "あなたの名前"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Your new API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Your new password cannot be the same as your old password."
|
||||
@@ -14748,14 +14851,6 @@ msgstr "テンプレートは正常に保存されました。"
|
||||
msgid "Your token has expired!"
|
||||
msgstr "トークンの有効期限が切れています。"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!"
|
||||
msgstr "トークンは正常に作成されました。今後この画面で表示できないため、必ずコピーして保管してください。"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your tokens will be shown here once you create them."
|
||||
msgstr "トークンは作成されるとここに表示されます。"
|
||||
|
||||
#: packages/lib/server-only/2fa/email/send-2fa-token-email.ts
|
||||
msgid "Your two-factor authentication code"
|
||||
msgstr "二要素認証コード"
|
||||
|
||||
@@ -850,11 +850,11 @@ msgstr "무료 조직 0개 남음"
|
||||
msgid "1 Free organisations left"
|
||||
msgstr "무료 조직 1개 남음"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "1 month"
|
||||
msgstr "1개월"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "12 months"
|
||||
msgstr "12개월"
|
||||
|
||||
@@ -870,7 +870,7 @@ msgstr "2단계 인증 재설정"
|
||||
msgid "2FA token"
|
||||
msgstr "2단계 인증 토큰"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "3 months"
|
||||
msgstr "3개월"
|
||||
|
||||
@@ -949,11 +949,11 @@ msgstr "월 5개 문서"
|
||||
msgid "500 Internal Server Error"
|
||||
msgstr "500 내부 서버 오류"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "6 months"
|
||||
msgstr "6개월"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "7 days"
|
||||
msgstr "7일"
|
||||
|
||||
@@ -1008,6 +1008,10 @@ msgstr "구성원이 조직 {organisationName}을 떠났습니다."
|
||||
msgid "A member has left your organisation on Documenso"
|
||||
msgstr "구성원이 Documenso의 조직을 떠났습니다."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "A name to help you identify this token later."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/jobs/definitions/emails/send-organisation-member-joined-email.handler.ts
|
||||
msgid "A new member has joined your organisation"
|
||||
msgstr "새 구성원이 조직에 가입했습니다."
|
||||
@@ -1016,10 +1020,6 @@ msgstr "새 구성원이 조직에 가입했습니다."
|
||||
msgid "A new member has joined your organisation {organisationName}"
|
||||
msgstr "새 구성원이 조직 {organisationName}에 가입했습니다."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "A new token was created successfully."
|
||||
msgstr "새 토큰이 성공적으로 생성되었습니다."
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
|
||||
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
|
||||
@@ -1215,6 +1215,7 @@ msgstr "동작"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Actions"
|
||||
msgstr "동작"
|
||||
@@ -1539,6 +1540,7 @@ msgstr "전자 서명을 완료한 후에는, 기록용으로 문서를 열람
|
||||
msgid "After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email."
|
||||
msgstr "제출이 완료되면 문서가 자동으로 생성되어 문서 페이지에 추가됩니다. 또한 이메일로 알림을 받게 됩니다."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "AI features"
|
||||
msgstr "AI 기능들"
|
||||
@@ -1708,11 +1710,11 @@ msgstr "이 이메일 주소를 사용하는 이메일이 이미 있습니다."
|
||||
#: apps/remix/app/components/dialogs/admin-team-member-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/admin-user-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/forms/avatar-image.tsx
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
#: apps/remix/app/components/forms/signup.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
@@ -2121,10 +2123,6 @@ msgstr "다음 전송 방식을 삭제하시겠습니까?"
|
||||
msgid "Are you sure you want to delete this folder?"
|
||||
msgstr "이 폴더를 삭제하시겠습니까?"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Are you sure you want to delete this token?"
|
||||
msgstr "이 토큰을 삭제하시겠습니까?"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
msgid "Are you sure you want to reject this document? This action cannot be undone."
|
||||
msgstr "이 문서를 거부하시겠습니까? 이 작업은 되돌릴 수 없습니다."
|
||||
@@ -2390,6 +2388,10 @@ msgstr "파랑"
|
||||
msgid "Border"
|
||||
msgstr "테두리"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Border radius"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Border Radius"
|
||||
msgstr "테두리 반경"
|
||||
@@ -2406,6 +2408,10 @@ msgstr "아래"
|
||||
msgid "Brand Colours"
|
||||
msgstr "브랜드 색상"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand colours, including background, foreground, primary, and border colours"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Brand Details"
|
||||
msgstr "브랜드 세부 정보"
|
||||
@@ -2414,6 +2420,10 @@ msgstr "브랜드 세부 정보"
|
||||
msgid "Brand Website"
|
||||
msgstr "브랜드 웹사이트"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand website and brand details"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
#: apps/remix/app/components/general/settings-nav-desktop.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -2425,6 +2435,7 @@ msgstr "브랜딩"
|
||||
msgid "Branding company details"
|
||||
msgstr "브랜딩 회사 정보"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Branding logo"
|
||||
msgstr "브랜딩 로고"
|
||||
@@ -2544,9 +2555,11 @@ msgstr "누군가를 찾을 수 없나요?"
|
||||
#: apps/remix/app/components/dialogs/ai-field-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-send-test-dialog.tsx
|
||||
@@ -2607,6 +2620,7 @@ msgstr "누군가를 찾을 수 없나요?"
|
||||
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
@@ -2796,10 +2810,6 @@ msgstr "인증 방법 선택"
|
||||
msgid "Choose your preferred authentication method:"
|
||||
msgstr "선호하는 인증 방법을 선택하세요."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Choose..."
|
||||
msgstr "선택..."
|
||||
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "Claim"
|
||||
msgstr "청구 건"
|
||||
@@ -3264,14 +3274,14 @@ msgstr "서명 링크 복사"
|
||||
msgid "Copy team ID"
|
||||
msgstr "팀 ID 복사"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Copy token"
|
||||
msgstr "토큰 복사"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
msgid "Copy Value"
|
||||
msgstr "값 복사"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Copy your token now. For security reasons you will not be able to see it again."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-reset-button.tsx
|
||||
msgid "Counter reset."
|
||||
msgstr "카운터가 초기화되었습니다."
|
||||
@@ -3338,10 +3348,18 @@ msgstr "팀과 협업할 조직을 생성하세요."
|
||||
msgid "Create an organisation to get started."
|
||||
msgstr "시작하려면 조직을 생성하세요."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Create and manage API tokens. See our <0>documentation</0> for more information."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create and send"
|
||||
msgstr "생성 및 발송"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create as draft"
|
||||
msgstr "임시로 생성"
|
||||
@@ -3460,8 +3478,8 @@ msgstr "템플릿 생성"
|
||||
msgid "Create the document as pending and ready to sign."
|
||||
msgstr "문서를 보류 상태이자 서명 준비 상태로 생성합니다."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create token"
|
||||
msgstr "토큰 생성"
|
||||
|
||||
@@ -3507,6 +3525,7 @@ msgstr "계정을 만들고 최첨단 전자 서명 서비스를 시작하세요
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Created"
|
||||
msgstr "생성일"
|
||||
@@ -3527,11 +3546,6 @@ msgstr "작성자"
|
||||
msgid "Created on"
|
||||
msgstr "생성일"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Created on {0}"
|
||||
msgstr "{0}에 생성됨"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/envelope.create._index.tsx
|
||||
msgid "Creating Document"
|
||||
msgstr "문서 생성 중"
|
||||
@@ -3587,6 +3601,14 @@ msgstr "현재 이메일 도메인은 Platform 요금제 이상에서만 구성
|
||||
msgid "Custom {0} MB file"
|
||||
msgstr "사용자 정의 {0} MB 파일"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom branding enabled setting"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Custom CSS is sanitised on save. Layout-breaking properties, remote URLs, and pseudo-elements are stripped automatically. Any rules dropped during sanitisation will be shown after you save."
|
||||
msgstr "사용자 지정 CSS는 저장 시 보안 정제가 수행됩니다. 레이아웃을 깨뜨리는 속성, 원격 URL 및 의사 요소는 자동으로 제거됩니다. 정제 과정에서 제거된 규칙은 저장 후에 표시됩니다."
|
||||
@@ -3671,14 +3693,26 @@ msgstr "기본값(시스템 메일러)"
|
||||
msgid "Default border colour."
|
||||
msgstr "기본 테두리 색상입니다."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default date format"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Date Format"
|
||||
msgstr "기본 날짜 형식"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document language"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Language"
|
||||
msgstr "기본 문서 언어"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document visibility"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Visibility"
|
||||
msgstr "기본 문서 공개 범위"
|
||||
@@ -3691,6 +3725,10 @@ msgstr "기본 이메일"
|
||||
msgid "Default Email Settings"
|
||||
msgstr "기본 이메일 설정"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default envelope expiration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Envelope Expiration"
|
||||
msgstr "기본 봉투 만료 기간"
|
||||
@@ -3703,6 +3741,10 @@ msgstr "기본 파일"
|
||||
msgid "Default Organisation Role for New Users"
|
||||
msgstr "새 사용자 기본 조직 역할"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default recipients"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Recipients"
|
||||
msgstr "기본 수신인들"
|
||||
@@ -3715,14 +3757,26 @@ msgstr "이 조직에 기본 설정이 적용되었습니다."
|
||||
msgid "Default settings applied to this team. Inherited values come from the organisation."
|
||||
msgstr "이 팀에 기본 설정이 적용되었습니다. 상속된 값은 조직에서 가져옵니다."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signature settings"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signature Settings"
|
||||
msgstr "기본 서명 설정"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signing reminders"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signing Reminders"
|
||||
msgstr "기본 서명 알림"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default time zone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Time Zone"
|
||||
msgstr "기본 시간대"
|
||||
@@ -3738,6 +3792,7 @@ msgstr "기본 값"
|
||||
msgid "Default Value"
|
||||
msgstr "기본값"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Delegate document ownership"
|
||||
msgstr "문서 소유권 위임"
|
||||
@@ -3768,6 +3823,7 @@ msgstr "delete"
|
||||
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
|
||||
@@ -3909,6 +3965,10 @@ msgstr "문서를 삭제합니다. 이 작업은 되돌릴 수 없으므로 신
|
||||
msgid "Delete the users account and all its contents. This action is irreversible and will cancel their subscription, so proceed with caution."
|
||||
msgstr "사용자의 계정과 그 안의 모든 내용을 삭제합니다. 이 작업은 되돌릴 수 없으며, 구독도 취소되므로 신중히 진행하세요."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Delete token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
msgid "Delete Webhook"
|
||||
msgstr "웹훅 삭제"
|
||||
@@ -4651,6 +4711,10 @@ msgstr "반복 안 함"
|
||||
msgid "Don't transfer (Delete all documents)"
|
||||
msgstr "전송하지 않음(모든 문서 삭제)"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
|
||||
@@ -5521,6 +5585,7 @@ msgstr "만료"
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expired"
|
||||
msgstr "만료됨"
|
||||
|
||||
@@ -5530,6 +5595,7 @@ msgid "Expired"
|
||||
msgstr "만료됨"
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires"
|
||||
msgstr "만료일"
|
||||
|
||||
@@ -5538,16 +5604,15 @@ msgstr "만료일"
|
||||
msgid "Expires {0}"
|
||||
msgstr "만료일 {0}"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Expires in"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: DateTime.fromMillis(Math.max(millisecondsRemaining, 0)).toFormat('mm:ss')
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
msgid "Expires in {0}"
|
||||
msgstr "{0} 후 만료"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.expires, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires on {0}"
|
||||
msgstr "{0}에 만료됨"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
|
||||
#: packages/ui/primitives/document-flow/add-settings.tsx
|
||||
#: packages/ui/primitives/template-flow/add-template-settings.tsx
|
||||
@@ -6243,10 +6308,6 @@ msgstr "이 문서의 소유자입니다"
|
||||
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
|
||||
msgstr "이 조직에서 구성한 제3자 서비스에 내 자격 증명을 제공하는 것임을 이해합니다"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "I'm sure! Delete it"
|
||||
msgstr "확실합니다! 삭제하세요"
|
||||
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
|
||||
@@ -6345,10 +6406,18 @@ msgstr "발신자 정보 포함"
|
||||
msgid "Include signing certificate"
|
||||
msgstr "서명 인증서 포함"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the audit logs in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Audit Logs in the Document"
|
||||
msgstr "문서에 감사 로그 포함"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the signing certificate in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Signing Certificate in the Document"
|
||||
msgstr "문서에 서명 인증서 포함"
|
||||
@@ -6429,6 +6498,11 @@ msgstr "인스턴스 통계"
|
||||
msgid "Invalid code. Please try again."
|
||||
msgstr "코드가 올바르지 않습니다. 다시 시도해 주세요."
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Invalid direct link template"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
|
||||
msgid "Invalid domains"
|
||||
msgstr "잘못된 도메인"
|
||||
@@ -7176,6 +7250,11 @@ msgstr "라이선스 누락 - 현재 Documenso 인스턴스에서 사용하는
|
||||
msgid "Missing Recipients"
|
||||
msgstr "수신자 누락"
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "Missing signature fields"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
|
||||
msgid "Modify recipients"
|
||||
@@ -7267,6 +7346,7 @@ msgstr "해당 없음"
|
||||
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/forms/email-transport-form.tsx
|
||||
@@ -7287,6 +7367,7 @@ msgstr "해당 없음"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: packages/lib/utils/fields.ts
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
#: packages/ui/primitives/document-flow/add-signers.tsx
|
||||
@@ -7326,14 +7407,12 @@ msgstr "서명 필요"
|
||||
msgid "Needs to view"
|
||||
msgstr "열람 필요"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Never"
|
||||
msgstr "없음"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Never expire"
|
||||
msgstr "만료되지 않음"
|
||||
|
||||
#: packages/ui/components/document/expiration-period-picker.tsx
|
||||
msgid "Never expires"
|
||||
msgstr "만료되지 않음"
|
||||
@@ -7669,14 +7748,15 @@ msgstr "켜짐"
|
||||
msgid "On this page, you can create a new webhook."
|
||||
msgstr "이 페이지에서 새 웹훅을 생성할 수 있습니다."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "On this page, you can create and manage API tokens. See our <0>Documentation</0> for more information."
|
||||
msgstr "이 페이지에서 API 토큰을 생성하고 관리할 수 있습니다. 자세한 내용은 <0>문서</0>를 참고하세요."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "On this page, you can create new Webhooks and manage the existing ones."
|
||||
msgstr "이 페이지에서 새 웹훅을 생성하고 기존 웹훅을 관리할 수 있습니다."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Once confirmed, the following will be reset:"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelope-cancel-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelope-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-cancel-dialog.tsx
|
||||
@@ -8327,10 +8407,6 @@ msgstr "사이트 소유자에게 추가 지원을 요청해 주세요."
|
||||
msgid "Please don't close this tab. The signing provider is finalising your signature."
|
||||
msgstr "이 탭을 닫지 마십시오. 서명 제공자가 서명을 마무리하고 있습니다."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Please enter a meaningful name for your token. This will help you identify it later."
|
||||
msgstr "토큰을 나중에 식별할 수 있도록 의미 있는 이름을 입력해 주세요."
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a number"
|
||||
msgstr "숫자를 입력하세요"
|
||||
@@ -8876,6 +8952,10 @@ msgstr "수신자의 서명 제공자 인증에 실패했습니다."
|
||||
msgid "Recipients"
|
||||
msgstr "수신자"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Recipients cannot use this direct link template because the following signers are missing a signature field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
|
||||
msgid "Recipients metrics"
|
||||
msgstr "수신자 지표"
|
||||
@@ -9234,6 +9314,14 @@ msgstr "초기화"
|
||||
msgid "Reset 2FA"
|
||||
msgstr "2단계 인증 재설정"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Reset branding preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset document preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
msgid "Reset email sent"
|
||||
msgstr "재설정 이메일이 전송되었습니다"
|
||||
@@ -9251,6 +9339,13 @@ msgstr "비밀번호 재설정"
|
||||
msgid "Reset the users two factor authentication. This action is irreversible and will disable two factor authentication for the user."
|
||||
msgstr "사용자의 2단계 인증을 재설정합니다. 이 작업은 되돌릴 수 없으며 사용자의 2단계 인증이 비활성화됩니다."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset to defaults"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
|
||||
msgid "Reset Two Factor Authentication"
|
||||
msgstr "2단계 인증 재설정"
|
||||
@@ -9794,6 +9889,10 @@ msgstr "봉투 보내기"
|
||||
msgid "Send first reminder after"
|
||||
msgstr "첫 알림 전송 시점"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Send on behalf of team"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Send on Behalf of Team"
|
||||
msgstr "팀을 대신해 발송"
|
||||
@@ -10384,7 +10483,7 @@ msgstr "문제가 발생했습니다!"
|
||||
msgid "Something went wrong."
|
||||
msgstr "문제가 발생했습니다."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Something went wrong. Please try again later."
|
||||
msgstr "문제가 발생했습니다. 잠시 후 다시 시도해 주세요."
|
||||
|
||||
@@ -11104,6 +11203,10 @@ msgstr "이 이메일 주소의 표시 이름입니다."
|
||||
msgid "The document could not be created because of missing or invalid information. Please review the template's recipients and fields."
|
||||
msgstr "정보가 없거나 유효하지 않아 문서를 생성할 수 없습니다. 템플릿의 수신인과 필드를 다시 확인해 주세요."
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "The document could not be sent because some signers do not have a signature field. Please edit the template and add a signature field for each signer."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
|
||||
msgid "The Document has been deleted successfully."
|
||||
msgstr "문서가 성공적으로 삭제되었습니다."
|
||||
@@ -11434,10 +11537,6 @@ msgstr "테스트 웹후크가 정상적으로 엔드포인트로 전송되었
|
||||
msgid "The token is invalid or has expired."
|
||||
msgstr "토큰이 잘못되었거나 만료되었습니다."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "The token was copied to your clipboard."
|
||||
msgstr "토큰이 클립보드에 복사되었습니다."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "The token was deleted successfully."
|
||||
msgstr "토큰이 성공적으로 삭제되었습니다."
|
||||
@@ -11560,6 +11659,14 @@ msgstr "문서 크기에 따라 1~2분 정도 소요될 수 있습니다."
|
||||
msgid "This claim is locked and cannot be deleted."
|
||||
msgstr "이 클레임은 잠겨 있어 삭제할 수 없습니다."
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned. Please contact the sender to update the template."
|
||||
msgstr ""
|
||||
|
||||
#: packages/email/template-components/template-document-super-delete.tsx
|
||||
msgid "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
|
||||
msgstr "이 문서는 복구할 수 없습니다. 향후 문서에 대한 삭제 사유에 이의를 제기하시려면 고객 지원팀에 문의해 주세요."
|
||||
@@ -11830,6 +11937,14 @@ msgstr "이 작업은 true로 설정된 기능 플래그만 다시 반영합니
|
||||
msgid "This will remove all emails associated with this email domain"
|
||||
msgstr "이 작업은 이 이메일 도메인과 연결된 모든 이메일을 제거합니다."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all branding preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all document preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
|
||||
msgid "This will sign you out of all other devices. You will need to sign in again on those devices to continue using your account."
|
||||
msgstr "모든 다른 기기에서 로그아웃됩니다. 해당 기기에서 계정을 계속 사용하려면 다시 로그인해야 합니다."
|
||||
@@ -12025,11 +12140,11 @@ msgstr "스위치를 전환하여 프로필을 공개로 표시합니다."
|
||||
msgid "Token"
|
||||
msgstr "토큰"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token copied to clipboard"
|
||||
msgstr "토큰이 클립보드에 복사되었습니다"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token created"
|
||||
msgstr "토큰이 생성되었습니다"
|
||||
|
||||
@@ -12037,22 +12152,10 @@ msgstr "토큰이 생성되었습니다"
|
||||
msgid "Token deleted"
|
||||
msgstr "토큰이 삭제되었습니다"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Token doesn't have an expiration date"
|
||||
msgstr "토큰에는 만료 날짜가 없습니다"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token expiration date"
|
||||
msgstr "토큰 만료 날짜"
|
||||
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Token has expired. Please try again."
|
||||
msgstr "토큰이 만료되었습니다. 다시 시도해 주세요."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token name"
|
||||
msgstr "토큰 이름"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/_layout.tsx
|
||||
msgid "Token Not Found"
|
||||
msgstr "토큰을 찾을 수 없습니다"
|
||||
@@ -12210,10 +12313,6 @@ msgstr "현재 언어를 변경할 수 없습니다. 나중에 다시 시도해
|
||||
msgid "Unable to copy recovery code"
|
||||
msgstr "복구 코드를 복사할 수 없습니다"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Unable to copy token"
|
||||
msgstr "토큰을 복사할 수 없습니다"
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
msgid "Unable to create direct template access. Please try again later."
|
||||
msgstr "직접 템플릿 접근을 생성할 수 없습니다. 나중에 다시 시도해 주세요."
|
||||
@@ -12633,6 +12732,10 @@ msgstr ""
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Use API tokens to authenticate with the Documenso API."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13274,10 +13377,6 @@ msgstr "인증을 위해 확인 이메일을 발송했습니다."
|
||||
msgid "We need your signature to sign documents"
|
||||
msgstr "문서에 서명하려면 서명이 필요합니다."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "We were unable to copy the token to your clipboard. Please try again."
|
||||
msgstr "토큰을 클립보드에 복사하지 못했습니다. 다시 시도해 주세요."
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/recovery-code-list.tsx
|
||||
msgid "We were unable to copy your recovery code to your clipboard. Please try again."
|
||||
msgstr "복구 코드를 클립보드에 복사하지 못했습니다. 다시 시도해 주세요."
|
||||
@@ -13928,7 +14027,7 @@ msgstr "제목이 {0}인 봉투 항목을 삭제했습니다"
|
||||
msgid "You deleted the document"
|
||||
msgstr "문서를 삭제했습니다"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "You do not have permission to create a token for this team."
|
||||
msgstr "이 팀에 대한 토큰을 생성할 권한이 없습니다."
|
||||
|
||||
@@ -13987,6 +14086,10 @@ msgstr "<0>{0}</0> 조직의 초대를 거절했습니다."
|
||||
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
|
||||
msgstr "귀하가 시작한 문서 {0}에 {recipientActionVerb}해야 합니다."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "You have no API tokens yet. Your tokens will be shown here once you create them."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "You have no webhooks yet. Your webhooks will be shown here once you create them."
|
||||
msgstr "아직 웹훅을 생성하지 않았습니다. 웹훅을 생성하면 이곳에 표시됩니다."
|
||||
@@ -14546,14 +14649,14 @@ msgstr "봉투가 성공적으로 배포되었습니다."
|
||||
msgid "Your envelope has been resent successfully."
|
||||
msgstr "봉투가 성공적으로 다시 전송되었습니다."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your existing tokens"
|
||||
msgstr "기존 토큰"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
|
||||
msgid "Your Name"
|
||||
msgstr "이름"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Your new API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Your new password cannot be the same as your old password."
|
||||
@@ -14748,14 +14851,6 @@ msgstr "템플릿이 성공적으로 저장되었습니다."
|
||||
msgid "Your token has expired!"
|
||||
msgstr "토큰이 만료되었습니다!"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!"
|
||||
msgstr "토큰이 성공적으로 생성되었습니다! 나중에 다시 볼 수 없으니 반드시 복사해 두세요!"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your tokens will be shown here once you create them."
|
||||
msgstr "토큰을 생성하면 이곳에 표시됩니다."
|
||||
|
||||
#: packages/lib/server-only/2fa/email/send-2fa-token-email.ts
|
||||
msgid "Your two-factor authentication code"
|
||||
msgstr "2단계 인증 코드"
|
||||
|
||||
@@ -850,11 +850,11 @@ msgstr "0 gratis organisaties over"
|
||||
msgid "1 Free organisations left"
|
||||
msgstr "1 gratis organisatie over"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "1 month"
|
||||
msgstr "1 maand"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "12 months"
|
||||
msgstr "12 maanden"
|
||||
|
||||
@@ -870,7 +870,7 @@ msgstr "2FA-reset"
|
||||
msgid "2FA token"
|
||||
msgstr "2FA-token"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "3 months"
|
||||
msgstr "3 maanden"
|
||||
|
||||
@@ -949,11 +949,11 @@ msgstr "5 documenten per maand"
|
||||
msgid "500 Internal Server Error"
|
||||
msgstr "500 Interne serverfout"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "6 months"
|
||||
msgstr "6 maanden"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "7 days"
|
||||
msgstr "7 dagen"
|
||||
|
||||
@@ -1008,6 +1008,10 @@ msgstr "Een lid heeft je organisatie {organisationName} verlaten"
|
||||
msgid "A member has left your organisation on Documenso"
|
||||
msgstr "Een lid heeft je organisatie op Documenso verlaten"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "A name to help you identify this token later."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/jobs/definitions/emails/send-organisation-member-joined-email.handler.ts
|
||||
msgid "A new member has joined your organisation"
|
||||
msgstr "Een nieuw lid is toegetreden tot je organisatie"
|
||||
@@ -1016,10 +1020,6 @@ msgstr "Een nieuw lid is toegetreden tot je organisatie"
|
||||
msgid "A new member has joined your organisation {organisationName}"
|
||||
msgstr "Een nieuw lid is toegetreden tot je organisatie {organisationName}"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "A new token was created successfully."
|
||||
msgstr "Er is succesvol een nieuw token aangemaakt."
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
|
||||
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
|
||||
@@ -1215,6 +1215,7 @@ msgstr "Actie"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Actions"
|
||||
msgstr "Acties"
|
||||
@@ -1539,6 +1540,7 @@ msgstr "Na het elektronisch ondertekenen van een document krijg je de mogelijkhe
|
||||
msgid "After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email."
|
||||
msgstr "Na indiening wordt er automatisch een document gegenereerd en toegevoegd aan je documentenpagina. Je ontvangt ook een melding per e-mail."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "AI features"
|
||||
msgstr "AI-functies"
|
||||
@@ -1708,11 +1710,11 @@ msgstr "Er bestaat al een e-mailadres met dit adres."
|
||||
#: apps/remix/app/components/dialogs/admin-team-member-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/admin-user-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/forms/avatar-image.tsx
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
#: apps/remix/app/components/forms/signup.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
@@ -2121,10 +2123,6 @@ msgstr "Weet u zeker dat u het volgende transport wilt verwijderen?"
|
||||
msgid "Are you sure you want to delete this folder?"
|
||||
msgstr "Weet je zeker dat je deze map wilt verwijderen?"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Are you sure you want to delete this token?"
|
||||
msgstr "Weet je zeker dat je dit token wilt verwijderen?"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
msgid "Are you sure you want to reject this document? This action cannot be undone."
|
||||
msgstr "Weet je zeker dat je dit document wilt weigeren? Deze actie kan niet ongedaan worden gemaakt."
|
||||
@@ -2390,6 +2388,10 @@ msgstr "Blauw"
|
||||
msgid "Border"
|
||||
msgstr "Rand"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Border radius"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Border Radius"
|
||||
msgstr "Afgeronde hoeken"
|
||||
@@ -2406,6 +2408,10 @@ msgstr "Onder"
|
||||
msgid "Brand Colours"
|
||||
msgstr "Merkkleuren"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand colours, including background, foreground, primary, and border colours"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Brand Details"
|
||||
msgstr "Merkdetails"
|
||||
@@ -2414,6 +2420,10 @@ msgstr "Merkdetails"
|
||||
msgid "Brand Website"
|
||||
msgstr "Website van merk"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand website and brand details"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
#: apps/remix/app/components/general/settings-nav-desktop.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -2425,6 +2435,7 @@ msgstr "Branding"
|
||||
msgid "Branding company details"
|
||||
msgstr "Bedrijfsgegevens voor branding"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Branding logo"
|
||||
msgstr "Branding-logo"
|
||||
@@ -2544,9 +2555,11 @@ msgstr "Kunt u niemand vinden?"
|
||||
#: apps/remix/app/components/dialogs/ai-field-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-send-test-dialog.tsx
|
||||
@@ -2607,6 +2620,7 @@ msgstr "Kunt u niemand vinden?"
|
||||
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
@@ -2796,10 +2810,6 @@ msgstr "Verificatiemethode kiezen"
|
||||
msgid "Choose your preferred authentication method:"
|
||||
msgstr "Kies je voorkeursauthenticatiemethode:"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Choose..."
|
||||
msgstr "Kiezen..."
|
||||
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "Claim"
|
||||
msgstr "Claim"
|
||||
@@ -3264,14 +3274,14 @@ msgstr "Ondertekeningslinks kopiëren"
|
||||
msgid "Copy team ID"
|
||||
msgstr "Team-ID kopiëren"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Copy token"
|
||||
msgstr "Token kopiëren"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
msgid "Copy Value"
|
||||
msgstr "Waarde kopiëren"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Copy your token now. For security reasons you will not be able to see it again."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-reset-button.tsx
|
||||
msgid "Counter reset."
|
||||
msgstr "Teller opnieuw ingesteld."
|
||||
@@ -3338,10 +3348,18 @@ msgstr "Maak een organisatie aan om met teams samen te werken"
|
||||
msgid "Create an organisation to get started."
|
||||
msgstr "Maak een organisatie aan om te beginnen."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Create and manage API tokens. See our <0>documentation</0> for more information."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create and send"
|
||||
msgstr "Aanmaken en verzenden"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create as draft"
|
||||
msgstr "Als concept aanmaken"
|
||||
@@ -3460,8 +3478,8 @@ msgstr "Sjabloon maken"
|
||||
msgid "Create the document as pending and ready to sign."
|
||||
msgstr "Maak het document aan als in behandeling en klaar om te ondertekenen."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create token"
|
||||
msgstr "Token aanmaken"
|
||||
|
||||
@@ -3507,6 +3525,7 @@ msgstr "Maak je account aan en begin met het gebruik van moderne documentenonder
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Created"
|
||||
msgstr "Aangemaakt"
|
||||
@@ -3527,11 +3546,6 @@ msgstr "Aangemaakt door"
|
||||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Created on {0}"
|
||||
msgstr "Aangemaakt op {0}"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/envelope.create._index.tsx
|
||||
msgid "Creating Document"
|
||||
msgstr "Document wordt gemaakt"
|
||||
@@ -3587,6 +3601,14 @@ msgstr "E-maildomeinen kunnen momenteel alleen worden geconfigureerd voor Platfo
|
||||
msgid "Custom {0} MB file"
|
||||
msgstr "Aangepast {0} MB-bestand"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom branding enabled setting"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Custom CSS is sanitised on save. Layout-breaking properties, remote URLs, and pseudo-elements are stripped automatically. Any rules dropped during sanitisation will be shown after you save."
|
||||
msgstr "Aangepaste CSS wordt opgeschoond bij het opslaan. Layout-verstorende eigenschappen, externe URL's en pseudo-elementen worden automatisch verwijderd. Alle regels die tijdens het opschonen zijn verwijderd, worden weergegeven nadat je hebt opgeslagen."
|
||||
@@ -3671,14 +3693,26 @@ msgstr "Standaard (systeemmailer)"
|
||||
msgid "Default border colour."
|
||||
msgstr "Standaardrandkleur."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default date format"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Date Format"
|
||||
msgstr "Standaarddatumnotatie"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document language"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Language"
|
||||
msgstr "Standaarddocumenttaal"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document visibility"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Visibility"
|
||||
msgstr "Standaarddocumentzichtbaarheid"
|
||||
@@ -3691,6 +3725,10 @@ msgstr "Standaard e-mailadres"
|
||||
msgid "Default Email Settings"
|
||||
msgstr "Standaarde-mailinstellingen"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default envelope expiration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Envelope Expiration"
|
||||
msgstr "Standaardvervaldatum voor enveloppen"
|
||||
@@ -3703,6 +3741,10 @@ msgstr "Standaardbestand"
|
||||
msgid "Default Organisation Role for New Users"
|
||||
msgstr "Standaard organisatierol voor nieuwe gebruikers"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default recipients"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Recipients"
|
||||
msgstr "Standaardontvangers"
|
||||
@@ -3715,14 +3757,26 @@ msgstr "Standaardinstellingen toegepast op deze organisatie."
|
||||
msgid "Default settings applied to this team. Inherited values come from the organisation."
|
||||
msgstr "Standaardinstellingen toegepast op dit team. Overgenomen waarden komen van de organisatie."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signature settings"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signature Settings"
|
||||
msgstr "Standaardinstellingen voor handtekeningen"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signing reminders"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signing Reminders"
|
||||
msgstr "Standaardherinneringen voor ondertekening"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default time zone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Time Zone"
|
||||
msgstr "Standaardtijdzone"
|
||||
@@ -3738,6 +3792,7 @@ msgstr "Standaardwaarde"
|
||||
msgid "Default Value"
|
||||
msgstr "Standaardwaarde"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Delegate document ownership"
|
||||
msgstr "Documenteigendom delegeren"
|
||||
@@ -3768,6 +3823,7 @@ msgstr "verwijderen"
|
||||
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
|
||||
@@ -3909,6 +3965,10 @@ msgstr "Verwijder het document. Deze actie kan niet ongedaan worden gemaakt, ga
|
||||
msgid "Delete the users account and all its contents. This action is irreversible and will cancel their subscription, so proceed with caution."
|
||||
msgstr "Verwijder de gebruikersaccount en alle bijbehorende inhoud. Deze actie kan niet ongedaan worden gemaakt en zal hun abonnement opzeggen, dus ga voorzichtig te werk."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Delete token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
msgid "Delete Webhook"
|
||||
msgstr "Webhook verwijderen"
|
||||
@@ -4651,6 +4711,10 @@ msgstr "Niet herhalen"
|
||||
msgid "Don't transfer (Delete all documents)"
|
||||
msgstr "Niet overdragen (alle documenten verwijderen)"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
|
||||
@@ -5521,6 +5585,7 @@ msgstr "Vervaldatum"
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expired"
|
||||
msgstr "Verlopen"
|
||||
|
||||
@@ -5530,6 +5595,7 @@ msgid "Expired"
|
||||
msgstr "Verlopen"
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires"
|
||||
msgstr "Verloopt"
|
||||
|
||||
@@ -5538,16 +5604,15 @@ msgstr "Verloopt"
|
||||
msgid "Expires {0}"
|
||||
msgstr "Verloopt op {0}"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Expires in"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: DateTime.fromMillis(Math.max(millisecondsRemaining, 0)).toFormat('mm:ss')
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
msgid "Expires in {0}"
|
||||
msgstr "Verloopt over {0}"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.expires, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires on {0}"
|
||||
msgstr "Verloopt op {0}"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
|
||||
#: packages/ui/primitives/document-flow/add-settings.tsx
|
||||
#: packages/ui/primitives/template-flow/add-template-settings.tsx
|
||||
@@ -6243,10 +6308,6 @@ msgstr "Ik ben de eigenaar van dit document"
|
||||
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
|
||||
msgstr "Ik begrijp dat ik mijn inloggegevens verstrek aan een externe dienst die door deze organisatie is ingesteld"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "I'm sure! Delete it"
|
||||
msgstr "Ik weet het zeker! Verwijder het"
|
||||
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
|
||||
@@ -6345,10 +6406,18 @@ msgstr "Afzendergegevens bijvoegen"
|
||||
msgid "Include signing certificate"
|
||||
msgstr "Ondertekeningscertificaat bijvoegen"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the audit logs in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Audit Logs in the Document"
|
||||
msgstr "Auditlogs opnemen in het document"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the signing certificate in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Signing Certificate in the Document"
|
||||
msgstr "Het ondertekeningscertificaat opnemen in het document"
|
||||
@@ -6429,6 +6498,11 @@ msgstr "Instantiestatistieken"
|
||||
msgid "Invalid code. Please try again."
|
||||
msgstr "Ongeldige code. Probeer het opnieuw."
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Invalid direct link template"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
|
||||
msgid "Invalid domains"
|
||||
msgstr "Ongeldige domeinen"
|
||||
@@ -7176,6 +7250,11 @@ msgstr "Licentie ontbreekt - Je Documenso-instantie gebruikt functies waarvoor e
|
||||
msgid "Missing Recipients"
|
||||
msgstr "Ontbrekende ontvangers"
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "Missing signature fields"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
|
||||
msgid "Modify recipients"
|
||||
@@ -7267,6 +7346,7 @@ msgstr "n.v.t."
|
||||
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/forms/email-transport-form.tsx
|
||||
@@ -7287,6 +7367,7 @@ msgstr "n.v.t."
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: packages/lib/utils/fields.ts
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
#: packages/ui/primitives/document-flow/add-signers.tsx
|
||||
@@ -7326,14 +7407,12 @@ msgstr "Moet ondertekenen"
|
||||
msgid "Needs to view"
|
||||
msgstr "Moet bekijken"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Never"
|
||||
msgstr "Nooit"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Never expire"
|
||||
msgstr "Nooit verlopen"
|
||||
|
||||
#: packages/ui/components/document/expiration-period-picker.tsx
|
||||
msgid "Never expires"
|
||||
msgstr "Verloopt nooit"
|
||||
@@ -7669,14 +7748,15 @@ msgstr "Aan"
|
||||
msgid "On this page, you can create a new webhook."
|
||||
msgstr "Op deze pagina kun je een nieuwe webhook aanmaken."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "On this page, you can create and manage API tokens. See our <0>Documentation</0> for more information."
|
||||
msgstr "Op deze pagina kun je API-tokens aanmaken en beheren. Zie onze <0>documentatie</0> voor meer informatie."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "On this page, you can create new Webhooks and manage the existing ones."
|
||||
msgstr "Op deze pagina kun je nieuwe webhooks aanmaken en bestaande beheren."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Once confirmed, the following will be reset:"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelope-cancel-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelope-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-cancel-dialog.tsx
|
||||
@@ -8327,10 +8407,6 @@ msgstr "Neem contact op met de site-eigenaar voor verdere hulp."
|
||||
msgid "Please don't close this tab. The signing provider is finalising your signature."
|
||||
msgstr "Sluit dit tabblad niet. De ondertekenprovider rondt uw handtekening af."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Please enter a meaningful name for your token. This will help you identify it later."
|
||||
msgstr "Voer een betekenisvolle naam in voor je token. Hiermee kun je het later herkennen."
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a number"
|
||||
msgstr "Voer een nummer in"
|
||||
@@ -8876,6 +8952,10 @@ msgstr "De verificatie bij de ondertekeningsprovider van de ontvanger is mislukt
|
||||
msgid "Recipients"
|
||||
msgstr "Ontvangers"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Recipients cannot use this direct link template because the following signers are missing a signature field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
|
||||
msgid "Recipients metrics"
|
||||
msgstr "Ontvangerstatistieken"
|
||||
@@ -9234,6 +9314,14 @@ msgstr "Resetten"
|
||||
msgid "Reset 2FA"
|
||||
msgstr "2FA resetten"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Reset branding preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset document preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
msgid "Reset email sent"
|
||||
msgstr "Resetmail verzonden"
|
||||
@@ -9251,6 +9339,13 @@ msgstr "Wachtwoord resetten"
|
||||
msgid "Reset the users two factor authentication. This action is irreversible and will disable two factor authentication for the user."
|
||||
msgstr "Reset de tweefactorauthenticatie van de gebruiker. Deze actie is onomkeerbaar en schakelt tweefactorauthenticatie voor de gebruiker uit."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset to defaults"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
|
||||
msgid "Reset Two Factor Authentication"
|
||||
msgstr "Tweefactorauthenticatie resetten"
|
||||
@@ -9794,6 +9889,10 @@ msgstr "Envelope verzenden"
|
||||
msgid "Send first reminder after"
|
||||
msgstr "Eerste herinnering verzenden na"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Send on behalf of team"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Send on Behalf of Team"
|
||||
msgstr "Verzenden namens team"
|
||||
@@ -10384,7 +10483,7 @@ msgstr "Er is iets misgegaan!"
|
||||
msgid "Something went wrong."
|
||||
msgstr "Er is iets misgegaan."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Something went wrong. Please try again later."
|
||||
msgstr "Er is iets misgegaan. Probeer het later opnieuw."
|
||||
|
||||
@@ -11104,6 +11203,10 @@ msgstr "De weergavenaam voor dit e-mailadres"
|
||||
msgid "The document could not be created because of missing or invalid information. Please review the template's recipients and fields."
|
||||
msgstr "Het document kon niet worden gemaakt vanwege ontbrekende of ongeldige informatie. Controleer de ontvangers en velden van de sjabloon."
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "The document could not be sent because some signers do not have a signature field. Please edit the template and add a signature field for each signer."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
|
||||
msgid "The Document has been deleted successfully."
|
||||
msgstr "Het document is succesvol verwijderd."
|
||||
@@ -11434,10 +11537,6 @@ msgstr "De testwebhook is succesvol naar je endpoint verzonden."
|
||||
msgid "The token is invalid or has expired."
|
||||
msgstr "De token is ongeldig of is verlopen."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "The token was copied to your clipboard."
|
||||
msgstr "Het token is naar je klembord gekopieerd."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "The token was deleted successfully."
|
||||
msgstr "Het token is succesvol verwijderd."
|
||||
@@ -11560,6 +11659,14 @@ msgstr "Dit kan een of twee minuten duren, afhankelijk van de grootte van uw doc
|
||||
msgid "This claim is locked and cannot be deleted."
|
||||
msgstr "Deze claim is vergrendeld en kan niet worden verwijderd."
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned. Please contact the sender to update the template."
|
||||
msgstr ""
|
||||
|
||||
#: packages/email/template-components/template-document-super-delete.tsx
|
||||
msgid "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
|
||||
msgstr "Dit document kan niet worden teruggezet. Als je de reden voor toekomstige documenten wilt betwisten, neem dan contact op met de ondersteuning."
|
||||
@@ -11830,6 +11937,14 @@ msgstr "Hiermee worden ALLE feature-flags die op true staan teruggezet; alles wa
|
||||
msgid "This will remove all emails associated with this email domain"
|
||||
msgstr "Hiermee worden alle e-mails die aan dit e-maildomein zijn gekoppeld verwijderd"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all branding preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all document preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
|
||||
msgid "This will sign you out of all other devices. You will need to sign in again on those devices to continue using your account."
|
||||
msgstr "Hiermee wordt je op alle andere apparaten uitgelogd. Je moet op die apparaten opnieuw inloggen om je account verder te gebruiken."
|
||||
@@ -12025,11 +12140,11 @@ msgstr "Schakel de schakelaar om je profiel voor het publiek zichtbaar te maken.
|
||||
msgid "Token"
|
||||
msgstr "Token"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token copied to clipboard"
|
||||
msgstr "Token gekopieerd naar klembord"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token created"
|
||||
msgstr "Token aangemaakt"
|
||||
|
||||
@@ -12037,22 +12152,10 @@ msgstr "Token aangemaakt"
|
||||
msgid "Token deleted"
|
||||
msgstr "Token verwijderd"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Token doesn't have an expiration date"
|
||||
msgstr "Token heeft geen vervaldatum"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token expiration date"
|
||||
msgstr "Vervaldatum token"
|
||||
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Token has expired. Please try again."
|
||||
msgstr "Het token is verlopen. Probeer het opnieuw."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token name"
|
||||
msgstr "Tokennaam"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/_layout.tsx
|
||||
msgid "Token Not Found"
|
||||
msgstr "Token niet gevonden"
|
||||
@@ -12210,10 +12313,6 @@ msgstr "De taal kan nu niet worden gewijzigd. Probeer het later opnieuw."
|
||||
msgid "Unable to copy recovery code"
|
||||
msgstr "Kan herstelcode niet kopiëren"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Unable to copy token"
|
||||
msgstr "Kan token niet kopiëren"
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
msgid "Unable to create direct template access. Please try again later."
|
||||
msgstr "Kan geen toegang via directe sjabloon maken. Probeer het later opnieuw."
|
||||
@@ -12633,6 +12732,10 @@ msgstr ""
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Use API tokens to authenticate with the Documenso API."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13274,10 +13377,6 @@ msgstr "We hebben een bevestigingsmail voor verificatie verzonden."
|
||||
msgid "We need your signature to sign documents"
|
||||
msgstr "We hebben je handtekening nodig om documenten te ondertekenen."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "We were unable to copy the token to your clipboard. Please try again."
|
||||
msgstr "We konden het token niet naar je klembord kopiëren. Probeer het opnieuw."
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/recovery-code-list.tsx
|
||||
msgid "We were unable to copy your recovery code to your clipboard. Please try again."
|
||||
msgstr "We konden je herstelcode niet naar je klembord kopiëren. Probeer het opnieuw."
|
||||
@@ -13928,7 +14027,7 @@ msgstr "Je hebt een envelopitem verwijderd met de titel {0}"
|
||||
msgid "You deleted the document"
|
||||
msgstr "Je hebt het document verwijderd"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "You do not have permission to create a token for this team."
|
||||
msgstr "Je hebt geen toestemming om een token voor dit team te maken."
|
||||
|
||||
@@ -13987,6 +14086,10 @@ msgstr "Je hebt de uitnodiging van <0>{0}</0> om lid te worden van hun organisat
|
||||
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
|
||||
msgstr "Je hebt het document {0} gestart dat je moet {recipientActionVerb}."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "You have no API tokens yet. Your tokens will be shown here once you create them."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "You have no webhooks yet. Your webhooks will be shown here once you create them."
|
||||
msgstr "Je hebt nog geen webhooks. Je webhooks worden hier weergegeven zodra je ze aanmaakt."
|
||||
@@ -14546,14 +14649,14 @@ msgstr "Uw envelop is succesvol verzonden."
|
||||
msgid "Your envelope has been resent successfully."
|
||||
msgstr "Uw envelop is succesvol opnieuw verzonden."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your existing tokens"
|
||||
msgstr "Je bestaande tokens"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
|
||||
msgid "Your Name"
|
||||
msgstr "Uw naam"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Your new API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Your new password cannot be the same as your old password."
|
||||
@@ -14748,14 +14851,6 @@ msgstr "Je sjablonen zijn succesvol opgeslagen."
|
||||
msgid "Your token has expired!"
|
||||
msgstr "Je token is verlopen!"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!"
|
||||
msgstr "Je token is succesvol aangemaakt! Zorg dat je het kopieert, want je kunt het later niet meer bekijken!"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your tokens will be shown here once you create them."
|
||||
msgstr "Je tokens worden hier weergegeven zodra je ze aanmaakt."
|
||||
|
||||
#: packages/lib/server-only/2fa/email/send-2fa-token-email.ts
|
||||
msgid "Your two-factor authentication code"
|
||||
msgstr "Uw tweefactorauthenticatiecode"
|
||||
|
||||
@@ -850,11 +850,11 @@ msgstr "Pozostało 0 darmowych organizacji"
|
||||
msgid "1 Free organisations left"
|
||||
msgstr "Pozostała 1 darmowa organizacja"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "1 month"
|
||||
msgstr "1 miesiąc"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "12 months"
|
||||
msgstr "12 miesięcy"
|
||||
|
||||
@@ -870,7 +870,7 @@ msgstr "Resetowanie weryfikacji dwuetapowej"
|
||||
msgid "2FA token"
|
||||
msgstr "Kod weryfikacyjny"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "3 months"
|
||||
msgstr "3 miesiące"
|
||||
|
||||
@@ -949,11 +949,11 @@ msgstr "5 dokumentów miesięcznie"
|
||||
msgid "500 Internal Server Error"
|
||||
msgstr "500: Wystąpił wewnętrzny błąd serwera"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "6 months"
|
||||
msgstr "6 miesięcy"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "7 days"
|
||||
msgstr "7 dni"
|
||||
|
||||
@@ -1008,6 +1008,10 @@ msgstr "Użytkownik opuścił organizację {organisationName}"
|
||||
msgid "A member has left your organisation on Documenso"
|
||||
msgstr "Użytkownik opuścił organizację w Documenso"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "A name to help you identify this token later."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/jobs/definitions/emails/send-organisation-member-joined-email.handler.ts
|
||||
msgid "A new member has joined your organisation"
|
||||
msgstr "Nowy użytkownik dołączył do organizacji"
|
||||
@@ -1016,10 +1020,6 @@ msgstr "Nowy użytkownik dołączył do organizacji"
|
||||
msgid "A new member has joined your organisation {organisationName}"
|
||||
msgstr "Nowy użytkownik dołączył do organizacji {organisationName}"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "A new token was created successfully."
|
||||
msgstr "Nowy token został pomyślnie utworzony."
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
|
||||
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
|
||||
@@ -1215,6 +1215,7 @@ msgstr "Akcja"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Actions"
|
||||
msgstr "Akcje"
|
||||
@@ -1539,6 +1540,7 @@ msgstr "Po podpisaniu dokumentu elektronicznie otrzymasz możliwość jego wyśw
|
||||
msgid "After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email."
|
||||
msgstr "Przesłany dokument zostanie automatycznie dodany do Twojej strony dokumentów. Otrzymasz również powiadomienie."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "AI features"
|
||||
msgstr "Funkcje AI"
|
||||
@@ -1708,11 +1710,11 @@ msgstr "Ten adres e-mail już istnieje."
|
||||
#: apps/remix/app/components/dialogs/admin-team-member-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/admin-user-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/forms/avatar-image.tsx
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
#: apps/remix/app/components/forms/signup.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
@@ -2121,10 +2123,6 @@ msgstr "Czy na pewno chcesz usunąć następującego dostawcę poczty e-mail?"
|
||||
msgid "Are you sure you want to delete this folder?"
|
||||
msgstr "Czy na pewno chcesz usunąć folder?"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Are you sure you want to delete this token?"
|
||||
msgstr "Czy na pewno chcesz usunąć token?"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
msgid "Are you sure you want to reject this document? This action cannot be undone."
|
||||
msgstr "Czy na pewno chcesz odrzucić dokument? Ta akcja jest nieodwracalna."
|
||||
@@ -2390,6 +2388,10 @@ msgstr "Niebieski"
|
||||
msgid "Border"
|
||||
msgstr "Obramowanie"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Border radius"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Border Radius"
|
||||
msgstr "Zaokrąglenie obramowania"
|
||||
@@ -2406,6 +2408,10 @@ msgstr "Dół"
|
||||
msgid "Brand Colours"
|
||||
msgstr "Kolory marki"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand colours, including background, foreground, primary, and border colours"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Brand Details"
|
||||
msgstr "Szczegóły marki"
|
||||
@@ -2414,6 +2420,10 @@ msgstr "Szczegóły marki"
|
||||
msgid "Brand Website"
|
||||
msgstr "Strona internetowa marki"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand website and brand details"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
#: apps/remix/app/components/general/settings-nav-desktop.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -2425,6 +2435,7 @@ msgstr "Branding"
|
||||
msgid "Branding company details"
|
||||
msgstr "Szczegóły brandingu"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Branding logo"
|
||||
msgstr "Logo marki"
|
||||
@@ -2544,9 +2555,11 @@ msgstr "Nie możesz kogoś znaleźć?"
|
||||
#: apps/remix/app/components/dialogs/ai-field-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-send-test-dialog.tsx
|
||||
@@ -2607,6 +2620,7 @@ msgstr "Nie możesz kogoś znaleźć?"
|
||||
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
@@ -2796,10 +2810,6 @@ msgstr "Wybierz metodę weryfikacji"
|
||||
msgid "Choose your preferred authentication method:"
|
||||
msgstr "Wybierz metodę uwierzytelniania:"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Choose..."
|
||||
msgstr "Wybierz..."
|
||||
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "Claim"
|
||||
msgstr "Subskrypcja"
|
||||
@@ -3264,14 +3274,14 @@ msgstr "Kopiuj linki do podpisywania"
|
||||
msgid "Copy team ID"
|
||||
msgstr "Kopiuj identyfikator zespołu"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Copy token"
|
||||
msgstr "Kopiuj token"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
msgid "Copy Value"
|
||||
msgstr "Kopiuj wartość"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Copy your token now. For security reasons you will not be able to see it again."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-reset-button.tsx
|
||||
msgid "Counter reset."
|
||||
msgstr "Licznik został zresetowany."
|
||||
@@ -3338,10 +3348,18 @@ msgstr "Utwórz organizację do współpracy z zespołami"
|
||||
msgid "Create an organisation to get started."
|
||||
msgstr "Utwórz organizację, aby rozpocząć."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Create and manage API tokens. See our <0>documentation</0> for more information."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create and send"
|
||||
msgstr "Utwórz i wyślij"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create as draft"
|
||||
msgstr "Utwórz jako szkic"
|
||||
@@ -3460,8 +3478,8 @@ msgstr "Utwórz szablon"
|
||||
msgid "Create the document as pending and ready to sign."
|
||||
msgstr "Utwórz dokument jako oczekujący i gotowy do podpisania."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create token"
|
||||
msgstr "Utwórz token"
|
||||
|
||||
@@ -3507,6 +3525,7 @@ msgstr "Utwórz konto i zacznij korzystać z nowoczesnego podpisywania dokument
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Created"
|
||||
msgstr "Utworzono"
|
||||
@@ -3527,11 +3546,6 @@ msgstr "Utworzono przez"
|
||||
msgid "Created on"
|
||||
msgstr "Utworzono"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Created on {0}"
|
||||
msgstr "Utworzono {0}"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/envelope.create._index.tsx
|
||||
msgid "Creating Document"
|
||||
msgstr "Tworzenie dokumentu"
|
||||
@@ -3587,6 +3601,14 @@ msgstr "Domeny możesz skonfigurować tylko w planie Platform lub wyższym."
|
||||
msgid "Custom {0} MB file"
|
||||
msgstr "Niestandardowy plik {0} MB"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom branding enabled setting"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Custom CSS is sanitised on save. Layout-breaking properties, remote URLs, and pseudo-elements are stripped automatically. Any rules dropped during sanitisation will be shown after you save."
|
||||
msgstr "Niestandardowy CSS jest oczyszczany podczas zapisywania. Właściwości psujące układ graficzny, zdalne adresy URL oraz pseudoelementy są automatycznie usuwane. Reguły usunięte podczas oczyszczania kodu zostaną wyświetlone po zapisaniu zmian."
|
||||
@@ -3671,14 +3693,26 @@ msgstr "Domyślny (systemowy)"
|
||||
msgid "Default border colour."
|
||||
msgstr "Kolor obramowania."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default date format"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Date Format"
|
||||
msgstr "Domyślny format daty"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document language"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Language"
|
||||
msgstr "Domyślny język dokumentu"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document visibility"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Visibility"
|
||||
msgstr "Domyślna widoczność dokumentu"
|
||||
@@ -3691,6 +3725,10 @@ msgstr "Domyślny adres e-mail"
|
||||
msgid "Default Email Settings"
|
||||
msgstr "Domyślne ustawienia adresu e-mail"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default envelope expiration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Envelope Expiration"
|
||||
msgstr "Domyślny czas wygaśnięcia koperty"
|
||||
@@ -3703,6 +3741,10 @@ msgstr "Domyślny plik"
|
||||
msgid "Default Organisation Role for New Users"
|
||||
msgstr "Domyślna rola w organizacji dla nowych użytkowników"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default recipients"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Recipients"
|
||||
msgstr "Domyślni odbiorcy"
|
||||
@@ -3715,14 +3757,26 @@ msgstr "Domyślne ustawienia organizacji."
|
||||
msgid "Default settings applied to this team. Inherited values come from the organisation."
|
||||
msgstr "Domyślne ustawienia zespołu. Zespoły dziedziczą domyślne ustawienia organizacji."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signature settings"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signature Settings"
|
||||
msgstr "Domyślne rodzaje dozwolonych podpisów"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signing reminders"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signing Reminders"
|
||||
msgstr "Domyślne przypomnienia o podpisaniu"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default time zone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Time Zone"
|
||||
msgstr "Domyślna strefa czasowa"
|
||||
@@ -3738,6 +3792,7 @@ msgstr "Domyślna wartość"
|
||||
msgid "Default Value"
|
||||
msgstr "Domyślna wartość"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Delegate document ownership"
|
||||
msgstr "Zmień właściciela dokumentu"
|
||||
@@ -3768,6 +3823,7 @@ msgstr "usuń"
|
||||
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
|
||||
@@ -3909,6 +3965,10 @@ msgstr "Usuń dokument. Ta akcja jest nieodwracalna."
|
||||
msgid "Delete the users account and all its contents. This action is irreversible and will cancel their subscription, so proceed with caution."
|
||||
msgstr "Usuń konto użytkownika i wszystkie jego dane. Ta akcja jest nieodwracalna i anuluje subskrypcję."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Delete token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
msgid "Delete Webhook"
|
||||
msgstr "Usuń webhook"
|
||||
@@ -4651,6 +4711,10 @@ msgstr "Nie powtarzaj"
|
||||
msgid "Don't transfer (Delete all documents)"
|
||||
msgstr "Nie przenoś (usuń wszystkie dokumenty)"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
|
||||
@@ -5521,6 +5585,7 @@ msgstr "Wygaśnięcie"
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expired"
|
||||
msgstr "Wygasł"
|
||||
|
||||
@@ -5530,6 +5595,7 @@ msgid "Expired"
|
||||
msgstr "Wygasła"
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires"
|
||||
msgstr "Wygasa"
|
||||
|
||||
@@ -5538,16 +5604,15 @@ msgstr "Wygasa"
|
||||
msgid "Expires {0}"
|
||||
msgstr "Wygasa {0}"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Expires in"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: DateTime.fromMillis(Math.max(millisecondsRemaining, 0)).toFormat('mm:ss')
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
msgid "Expires in {0}"
|
||||
msgstr "Wygaśnie za {0}"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.expires, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires on {0}"
|
||||
msgstr "Wygasa {0}"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
|
||||
#: packages/ui/primitives/document-flow/add-settings.tsx
|
||||
#: packages/ui/primitives/template-flow/add-template-settings.tsx
|
||||
@@ -6243,10 +6308,6 @@ msgstr "Jestem właścicielem dokumentu"
|
||||
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
|
||||
msgstr "Rozumiem, że udostępniam swoje poświadczenia zewnętrznej usłudze"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "I'm sure! Delete it"
|
||||
msgstr "Usuń trwale"
|
||||
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
|
||||
@@ -6345,10 +6406,18 @@ msgstr "Dołącz dane nadawcy"
|
||||
msgid "Include signing certificate"
|
||||
msgstr "Dołącz certyfikat podpisu"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the audit logs in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Audit Logs in the Document"
|
||||
msgstr "Dołącz dziennik logów do dokumentu"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the signing certificate in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Signing Certificate in the Document"
|
||||
msgstr "Dołącz certyfikat podpisu do dokumentu"
|
||||
@@ -6429,6 +6498,11 @@ msgstr "Statystyki instancji"
|
||||
msgid "Invalid code. Please try again."
|
||||
msgstr "Kod jest nieprawidłowy. Spróbuj ponownie."
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Invalid direct link template"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
|
||||
msgid "Invalid domains"
|
||||
msgstr "Domeny są nieprawidłowe"
|
||||
@@ -7176,6 +7250,11 @@ msgstr "Brak licencji – Twoja instancja Documenso korzysta z funkcji, które w
|
||||
msgid "Missing Recipients"
|
||||
msgstr "Brak odbiorców"
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "Missing signature fields"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
|
||||
msgid "Modify recipients"
|
||||
@@ -7267,6 +7346,7 @@ msgstr "Nie dotyczy"
|
||||
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/forms/email-transport-form.tsx
|
||||
@@ -7287,6 +7367,7 @@ msgstr "Nie dotyczy"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: packages/lib/utils/fields.ts
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
#: packages/ui/primitives/document-flow/add-signers.tsx
|
||||
@@ -7326,14 +7407,12 @@ msgstr "Musi podpisać"
|
||||
msgid "Needs to view"
|
||||
msgstr "Musi wyświetlić"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Never"
|
||||
msgstr "Nigdy"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Never expire"
|
||||
msgstr "Nigdy nie wygasa"
|
||||
|
||||
#: packages/ui/components/document/expiration-period-picker.tsx
|
||||
msgid "Never expires"
|
||||
msgstr "Nigdy nie wygasa"
|
||||
@@ -7669,14 +7748,15 @@ msgstr "Włączone"
|
||||
msgid "On this page, you can create a new webhook."
|
||||
msgstr "Na tej stronie możesz utworzyć nowy webhook."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "On this page, you can create and manage API tokens. See our <0>Documentation</0> for more information."
|
||||
msgstr "Na tej stronie możesz tworzyć i zarządzać tokenami API. Sprawdź <0>dokumentację</0>, aby uzyskać więcej informacji."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "On this page, you can create new Webhooks and manage the existing ones."
|
||||
msgstr "Na tej stronie możesz utworzyć nowe webhooki i zarządzać obecnymi."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Once confirmed, the following will be reset:"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelope-cancel-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelope-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-cancel-dialog.tsx
|
||||
@@ -8327,10 +8407,6 @@ msgstr "Skontaktuj się z właścicielem dokumentu, aby uzyskać pomoc."
|
||||
msgid "Please don't close this tab. The signing provider is finalising your signature."
|
||||
msgstr "Nie zamykaj karty. Dostawca podpisu finalizuje podpis."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Please enter a meaningful name for your token. This will help you identify it later."
|
||||
msgstr "Wpisz nazwę tokena. Pomoże to później w jego identyfikacji."
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a number"
|
||||
msgstr "Wpisz liczbę"
|
||||
@@ -8876,6 +8952,10 @@ msgstr "Uwierzytelnienie odbiorcy u dostawcy podpisu nie powiodło się"
|
||||
msgid "Recipients"
|
||||
msgstr "Odbiorcy"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Recipients cannot use this direct link template because the following signers are missing a signature field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
|
||||
msgid "Recipients metrics"
|
||||
msgstr "Metryki odbiorców"
|
||||
@@ -9234,6 +9314,14 @@ msgstr "Resetuj"
|
||||
msgid "Reset 2FA"
|
||||
msgstr "Resetowanie weryfikacji dwuetapowej"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Reset branding preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset document preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
msgid "Reset email sent"
|
||||
msgstr "Wysłano wiadomość z linkiem do resetowania hasła"
|
||||
@@ -9251,6 +9339,13 @@ msgstr "Resetowanie hasła"
|
||||
msgid "Reset the users two factor authentication. This action is irreversible and will disable two factor authentication for the user."
|
||||
msgstr "Zresetuj weryfikację dwuetapową użytkownika. Ta akcja jest nieodwracalna i spowoduje wyłączenie weryfikacji dwuetapowej użytkownika."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset to defaults"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
|
||||
msgid "Reset Two Factor Authentication"
|
||||
msgstr "Zresetuj weryfikację dwuetapową"
|
||||
@@ -9794,6 +9889,10 @@ msgstr "Wyślij kopertę"
|
||||
msgid "Send first reminder after"
|
||||
msgstr "Wyślij pierwsze przypomnienie za"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Send on behalf of team"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Send on Behalf of Team"
|
||||
msgstr "Wyślij w imieniu zespołu"
|
||||
@@ -10384,7 +10483,7 @@ msgstr "Coś poszło nie tak!"
|
||||
msgid "Something went wrong."
|
||||
msgstr "Coś poszło nie tak."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Something went wrong. Please try again later."
|
||||
msgstr "Coś poszło nie tak. Spróbuj ponownie później."
|
||||
|
||||
@@ -11104,6 +11203,10 @@ msgstr "Nazwa wyświetlana dla adresu e-mail"
|
||||
msgid "The document could not be created because of missing or invalid information. Please review the template's recipients and fields."
|
||||
msgstr "Nie można było utworzyć dokumentu z powodu brakujących lub nieprawidłowych informacji. Sprawdź odbiorców i pola szablonu."
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "The document could not be sent because some signers do not have a signature field. Please edit the template and add a signature field for each signer."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
|
||||
msgid "The Document has been deleted successfully."
|
||||
msgstr "Dokument został pomyślnie usunięty."
|
||||
@@ -11434,10 +11537,6 @@ msgstr "Testowy webhook został pomyślnie wysłany do Twojego punktu końcowego
|
||||
msgid "The token is invalid or has expired."
|
||||
msgstr "Token jest nieprawidłowy lub wygasł."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "The token was copied to your clipboard."
|
||||
msgstr "Token został skopiowany do schowka."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "The token was deleted successfully."
|
||||
msgstr "Token został pomyślnie usunięty."
|
||||
@@ -11560,6 +11659,14 @@ msgstr "Może to potrwać minutę lub dwie, w zależności od rozmiaru dokumentu
|
||||
msgid "This claim is locked and cannot be deleted."
|
||||
msgstr "Subskrypcja jest zablokowana i nie można ją usunąć."
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned. Please contact the sender to update the template."
|
||||
msgstr ""
|
||||
|
||||
#: packages/email/template-components/template-document-super-delete.tsx
|
||||
msgid "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
|
||||
msgstr "Dokument nie może być odzyskany. Jeśli chcesz zakwestionować decyzję, skontaktuj się z pomocą techniczną."
|
||||
@@ -11830,6 +11937,14 @@ msgstr "Spowoduje to TYLKO przeniesienie flag funkcji ustawionych na wartość
|
||||
msgid "This will remove all emails associated with this email domain"
|
||||
msgstr "Spowoduje to usunięcie wszystkich adresów e-mail powiązanych z domeną"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all branding preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all document preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
|
||||
msgid "This will sign you out of all other devices. You will need to sign in again on those devices to continue using your account."
|
||||
msgstr "Spowoduje to wylogowanie ze wszystkich innych urządzeń. Konieczne będzie ponownie zalogowanie się na tych urządzeniach."
|
||||
@@ -12025,11 +12140,11 @@ msgstr "Przełącz, aby pokazać profil."
|
||||
msgid "Token"
|
||||
msgstr "Kod"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token copied to clipboard"
|
||||
msgstr "Token został skopiowany do schowka"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token created"
|
||||
msgstr "Token został utworzony"
|
||||
|
||||
@@ -12037,22 +12152,10 @@ msgstr "Token został utworzony"
|
||||
msgid "Token deleted"
|
||||
msgstr "Token został usunięty"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Token doesn't have an expiration date"
|
||||
msgstr "Token nie ma daty wygaśnięcia"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token expiration date"
|
||||
msgstr "Data wygaśnięcia tokena"
|
||||
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Token has expired. Please try again."
|
||||
msgstr "Token wygasł. Spróbuj ponownie."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token name"
|
||||
msgstr "Nazwa tokena"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/_layout.tsx
|
||||
msgid "Token Not Found"
|
||||
msgstr "Token nie został znaleziony"
|
||||
@@ -12210,10 +12313,6 @@ msgstr "Nie można zmienić języka. Spróbuj ponownie później."
|
||||
msgid "Unable to copy recovery code"
|
||||
msgstr "Nie można skopiować kodu odzyskiwania"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Unable to copy token"
|
||||
msgstr "Nie można skopiować tokena"
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
msgid "Unable to create direct template access. Please try again later."
|
||||
msgstr "Nie można utworzyć bezpośredniego szablonu. Spróbuj ponownie później."
|
||||
@@ -12633,6 +12732,10 @@ msgstr ""
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Use API tokens to authenticate with the Documenso API."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13274,10 +13377,6 @@ msgstr "Wysłaliśmy wiadomość weryfikacyjną."
|
||||
msgid "We need your signature to sign documents"
|
||||
msgstr "Potrzebujemy Twojego podpisu, aby podpisywać dokumenty"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "We were unable to copy the token to your clipboard. Please try again."
|
||||
msgstr "Nie mogliśmy skopiować tokena do schowka. Spróbuj ponownie."
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/recovery-code-list.tsx
|
||||
msgid "We were unable to copy your recovery code to your clipboard. Please try again."
|
||||
msgstr "Nie mogliśmy skopiować kodu odzyskiwania do schowka. Spróbuj ponownie."
|
||||
@@ -13928,7 +14027,7 @@ msgstr "Usunąłeś element koperty o nazwie „{0}”"
|
||||
msgid "You deleted the document"
|
||||
msgstr "Usunąłeś dokument"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "You do not have permission to create a token for this team."
|
||||
msgstr "Nie masz uprawnień do utworzenia tokena dla tego zespołu."
|
||||
|
||||
@@ -13987,6 +14086,10 @@ msgstr "Odrzucono zaproszenie dołączenia do organizacji <0>{0}</0>."
|
||||
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
|
||||
msgstr "Sprawdź i {recipientActionVerb} dokument „{0}” utworzony przez Ciebie."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "You have no API tokens yet. Your tokens will be shown here once you create them."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "You have no webhooks yet. Your webhooks will be shown here once you create them."
|
||||
msgstr "Nie masz jeszcze żadnych webhooków. Twoje webhooki zostaną tutaj wyświetlone."
|
||||
@@ -14546,14 +14649,14 @@ msgstr "Koperta została wysłana."
|
||||
msgid "Your envelope has been resent successfully."
|
||||
msgstr "Koperta została ponownie wysłana."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your existing tokens"
|
||||
msgstr "Obecne tokeny"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
|
||||
msgid "Your Name"
|
||||
msgstr "Twoja nazwa"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Your new API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Your new password cannot be the same as your old password."
|
||||
@@ -14748,14 +14851,6 @@ msgstr "Twoje szablony zostały pomyślnie zapisane."
|
||||
msgid "Your token has expired!"
|
||||
msgstr "Token wygasł!"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!"
|
||||
msgstr "Token został utworzony! Skopiuj go, ponieważ nie będzie można go ponownie wyświetlić!"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your tokens will be shown here once you create them."
|
||||
msgstr "Utworzone tokeny pojawią się tutaj."
|
||||
|
||||
#: packages/lib/server-only/2fa/email/send-2fa-token-email.ts
|
||||
msgid "Your two-factor authentication code"
|
||||
msgstr "Twój kod weryfikacyjny"
|
||||
|
||||
@@ -845,11 +845,11 @@ msgstr "0 organizações gratuitas restantes"
|
||||
msgid "1 Free organisations left"
|
||||
msgstr "1 organização gratuita restante"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "1 month"
|
||||
msgstr "1 mês"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "12 months"
|
||||
msgstr "12 meses"
|
||||
|
||||
@@ -865,7 +865,7 @@ msgstr "Redefinição de 2FA"
|
||||
msgid "2FA token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "3 months"
|
||||
msgstr "3 meses"
|
||||
|
||||
@@ -944,11 +944,11 @@ msgstr "5 Documentos por mês"
|
||||
msgid "500 Internal Server Error"
|
||||
msgstr "500 Erro Interno do Servidor"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "6 months"
|
||||
msgstr "6 meses"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "7 days"
|
||||
msgstr "7 dias"
|
||||
|
||||
@@ -1003,6 +1003,10 @@ msgstr "Um membro deixou sua organização {organisationName}"
|
||||
msgid "A member has left your organisation on Documenso"
|
||||
msgstr "Um membro deixou sua organização no Documenso"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "A name to help you identify this token later."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/jobs/definitions/emails/send-organisation-member-joined-email.handler.ts
|
||||
msgid "A new member has joined your organisation"
|
||||
msgstr "Um novo membro entrou na sua organização"
|
||||
@@ -1011,10 +1015,6 @@ msgstr "Um novo membro entrou na sua organização"
|
||||
msgid "A new member has joined your organisation {organisationName}"
|
||||
msgstr "Um novo membro entrou na sua organização {organisationName}"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "A new token was created successfully."
|
||||
msgstr "Um novo token foi criado com sucesso."
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
|
||||
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
|
||||
@@ -1210,6 +1210,7 @@ msgstr "Ação"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Actions"
|
||||
msgstr "Ações"
|
||||
@@ -1534,6 +1535,7 @@ msgstr "Após assinar um documento eletronicamente, você terá a oportunidade d
|
||||
msgid "After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email."
|
||||
msgstr "Após o envio, um documento será gerado automaticamente e adicionado à sua página de documentos. Você também receberá uma notificação por e-mail."
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "AI features"
|
||||
msgstr ""
|
||||
@@ -1703,11 +1705,11 @@ msgstr "Um e-mail com este endereço já existe."
|
||||
#: apps/remix/app/components/dialogs/admin-team-member-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/admin-user-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/forms/avatar-image.tsx
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
#: apps/remix/app/components/forms/signup.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
@@ -2116,10 +2118,6 @@ msgstr ""
|
||||
msgid "Are you sure you want to delete this folder?"
|
||||
msgstr "Tem certeza de que deseja excluir esta pasta?"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Are you sure you want to delete this token?"
|
||||
msgstr "Tem certeza de que deseja excluir este token?"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
msgid "Are you sure you want to reject this document? This action cannot be undone."
|
||||
msgstr "Tem certeza de que deseja rejeitar este documento? Esta ação não pode ser desfeita."
|
||||
@@ -2385,6 +2383,10 @@ msgstr "Azul"
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Border radius"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Border Radius"
|
||||
msgstr ""
|
||||
@@ -2401,6 +2403,10 @@ msgstr "Inferior"
|
||||
msgid "Brand Colours"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand colours, including background, foreground, primary, and border colours"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Brand Details"
|
||||
msgstr "Detalhes da Marca"
|
||||
@@ -2409,6 +2415,10 @@ msgstr "Detalhes da Marca"
|
||||
msgid "Brand Website"
|
||||
msgstr "Site da Marca"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand website and brand details"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
#: apps/remix/app/components/general/settings-nav-desktop.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -2420,6 +2430,7 @@ msgstr "Marca"
|
||||
msgid "Branding company details"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Branding logo"
|
||||
msgstr ""
|
||||
@@ -2539,9 +2550,11 @@ msgstr ""
|
||||
#: apps/remix/app/components/dialogs/ai-field-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-send-test-dialog.tsx
|
||||
@@ -2602,6 +2615,7 @@ msgstr ""
|
||||
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
@@ -2791,10 +2805,6 @@ msgstr "Escolha o método de verificação"
|
||||
msgid "Choose your preferred authentication method:"
|
||||
msgstr "Escolha seu método de autenticação preferido:"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Choose..."
|
||||
msgstr "Escolha..."
|
||||
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "Claim"
|
||||
msgstr ""
|
||||
@@ -3259,14 +3269,14 @@ msgstr "Copiar Links de Assinatura"
|
||||
msgid "Copy team ID"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Copy token"
|
||||
msgstr "Copiar token"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
msgid "Copy Value"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Copy your token now. For security reasons you will not be able to see it again."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-reset-button.tsx
|
||||
msgid "Counter reset."
|
||||
msgstr ""
|
||||
@@ -3333,10 +3343,18 @@ msgstr "Crie uma organização para colaborar com equipes"
|
||||
msgid "Create an organisation to get started."
|
||||
msgstr "Crie uma organização para começar."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Create and manage API tokens. See our <0>documentation</0> for more information."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create and send"
|
||||
msgstr "Criar e enviar"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create as draft"
|
||||
msgstr "Criar como rascunho"
|
||||
@@ -3455,8 +3473,8 @@ msgstr ""
|
||||
msgid "Create the document as pending and ready to sign."
|
||||
msgstr "Criar o documento como pendente e pronto para assinar."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create token"
|
||||
msgstr "Criar token"
|
||||
|
||||
@@ -3502,6 +3520,7 @@ msgstr "Crie sua conta e comece a usar a assinatura de documentos de última ger
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Created"
|
||||
msgstr "Criado"
|
||||
@@ -3522,11 +3541,6 @@ msgstr "Criado por"
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Created on {0}"
|
||||
msgstr "Criado em {0}"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/envelope.create._index.tsx
|
||||
msgid "Creating Document"
|
||||
msgstr ""
|
||||
@@ -3582,6 +3596,14 @@ msgstr "Atualmente, domínios de e-mail só podem ser configurados para planos P
|
||||
msgid "Custom {0} MB file"
|
||||
msgstr "Arquivo personalizado de {0} MB"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom branding enabled setting"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Custom CSS is sanitised on save. Layout-breaking properties, remote URLs, and pseudo-elements are stripped automatically. Any rules dropped during sanitisation will be shown after you save."
|
||||
msgstr ""
|
||||
@@ -3666,14 +3688,26 @@ msgstr ""
|
||||
msgid "Default border colour."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default date format"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Date Format"
|
||||
msgstr "Formato de Data Padrão"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document language"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Language"
|
||||
msgstr "Idioma Padrão do Documento"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document visibility"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Visibility"
|
||||
msgstr "Visibilidade Padrão do Documento"
|
||||
@@ -3686,6 +3720,10 @@ msgstr "E-mail Padrão"
|
||||
msgid "Default Email Settings"
|
||||
msgstr "Configurações de E-mail Padrão"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default envelope expiration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Envelope Expiration"
|
||||
msgstr ""
|
||||
@@ -3698,6 +3736,10 @@ msgstr "Arquivo padrão"
|
||||
msgid "Default Organisation Role for New Users"
|
||||
msgstr "Função Padrão da Organização para Novos Usuários"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default recipients"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Recipients"
|
||||
msgstr ""
|
||||
@@ -3710,14 +3752,26 @@ msgstr ""
|
||||
msgid "Default settings applied to this team. Inherited values come from the organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signature settings"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signature Settings"
|
||||
msgstr "Configurações de Assinatura Padrão"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signing reminders"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signing Reminders"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default time zone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Time Zone"
|
||||
msgstr "Fuso Horário Padrão"
|
||||
@@ -3733,6 +3787,7 @@ msgstr ""
|
||||
msgid "Default Value"
|
||||
msgstr "Valor Padrão"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Delegate document ownership"
|
||||
msgstr ""
|
||||
@@ -3763,6 +3818,7 @@ msgstr "excluir"
|
||||
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
|
||||
@@ -3904,6 +3960,10 @@ msgstr "Excluir o documento. Esta ação é irreversível, portanto, prossiga co
|
||||
msgid "Delete the users account and all its contents. This action is irreversible and will cancel their subscription, so proceed with caution."
|
||||
msgstr "Excluir a conta do usuário e todo o seu conteúdo. Esta ação é irreversível e cancelará a assinatura, portanto, prossiga com cautela."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Delete token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
msgid "Delete Webhook"
|
||||
msgstr "Excluir Webhook"
|
||||
@@ -4646,6 +4706,10 @@ msgstr ""
|
||||
msgid "Don't transfer (Delete all documents)"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
|
||||
@@ -5516,6 +5580,7 @@ msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expired"
|
||||
msgstr "Expirado"
|
||||
|
||||
@@ -5525,6 +5590,7 @@ msgid "Expired"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
@@ -5533,16 +5599,15 @@ msgstr ""
|
||||
msgid "Expires {0}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Expires in"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: DateTime.fromMillis(Math.max(millisecondsRemaining, 0)).toFormat('mm:ss')
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
msgid "Expires in {0}"
|
||||
msgstr "Expira em {0}"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.expires, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires on {0}"
|
||||
msgstr "Expira em {0}"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
|
||||
#: packages/ui/primitives/document-flow/add-settings.tsx
|
||||
#: packages/ui/primitives/template-flow/add-template-settings.tsx
|
||||
@@ -6238,10 +6303,6 @@ msgstr "Eu sou o proprietário deste documento"
|
||||
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
|
||||
msgstr "Entendo que estou fornecendo minhas credenciais a um serviço de terceiros configurado por esta organização"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "I'm sure! Delete it"
|
||||
msgstr "Tenho certeza! Excluir"
|
||||
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
|
||||
@@ -6340,10 +6401,18 @@ msgstr ""
|
||||
msgid "Include signing certificate"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the audit logs in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Audit Logs in the Document"
|
||||
msgstr "Incluir os Logs de Auditoria no Documento"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the signing certificate in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Signing Certificate in the Document"
|
||||
msgstr "Incluir o Certificado de Assinatura no Documento"
|
||||
@@ -6424,6 +6493,11 @@ msgstr "Estatísticas da Instância"
|
||||
msgid "Invalid code. Please try again."
|
||||
msgstr "Código inválido. Por favor, tente novamente."
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Invalid direct link template"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
|
||||
msgid "Invalid domains"
|
||||
msgstr "Domínios inválidos"
|
||||
@@ -7171,6 +7245,11 @@ msgstr ""
|
||||
msgid "Missing Recipients"
|
||||
msgstr "Destinatários Ausentes"
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "Missing signature fields"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
|
||||
msgid "Modify recipients"
|
||||
@@ -7262,6 +7341,7 @@ msgstr "N/A"
|
||||
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/forms/email-transport-form.tsx
|
||||
@@ -7282,6 +7362,7 @@ msgstr "N/A"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: packages/lib/utils/fields.ts
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
#: packages/ui/primitives/document-flow/add-signers.tsx
|
||||
@@ -7321,14 +7402,12 @@ msgstr "Precisa assinar"
|
||||
msgid "Needs to view"
|
||||
msgstr "Precisa visualizar"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Never"
|
||||
msgstr "Nunca"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Never expire"
|
||||
msgstr "Nunca expirar"
|
||||
|
||||
#: packages/ui/components/document/expiration-period-picker.tsx
|
||||
msgid "Never expires"
|
||||
msgstr ""
|
||||
@@ -7664,14 +7743,15 @@ msgstr ""
|
||||
msgid "On this page, you can create a new webhook."
|
||||
msgstr "Nesta página, você pode criar um novo webhook."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "On this page, you can create and manage API tokens. See our <0>Documentation</0> for more information."
|
||||
msgstr "Nesta página, você pode criar e gerenciar tokens de API. Veja nossa <0>Documentação</0> para mais informações."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "On this page, you can create new Webhooks and manage the existing ones."
|
||||
msgstr "Nesta página, você pode criar novos Webhooks e gerenciar os existentes."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Once confirmed, the following will be reset:"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelope-cancel-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelope-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-cancel-dialog.tsx
|
||||
@@ -8322,10 +8402,6 @@ msgstr "Por favor, entre em contato com o proprietário do site para mais assist
|
||||
msgid "Please don't close this tab. The signing provider is finalising your signature."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Please enter a meaningful name for your token. This will help you identify it later."
|
||||
msgstr "Por favor, insira um nome significativo para seu token. Isso ajudará você a identificá-lo mais tarde."
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a number"
|
||||
msgstr ""
|
||||
@@ -8871,6 +8947,10 @@ msgstr ""
|
||||
msgid "Recipients"
|
||||
msgstr "Destinatários"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Recipients cannot use this direct link template because the following signers are missing a signature field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
|
||||
msgid "Recipients metrics"
|
||||
msgstr "Métricas de destinatários"
|
||||
@@ -9229,6 +9309,14 @@ msgstr "Redefinir"
|
||||
msgid "Reset 2FA"
|
||||
msgstr "Redefinir 2FA"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Reset branding preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset document preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
msgid "Reset email sent"
|
||||
msgstr "E-mail de redefinição enviado"
|
||||
@@ -9246,6 +9334,13 @@ msgstr "Redefinir Senha"
|
||||
msgid "Reset the users two factor authentication. This action is irreversible and will disable two factor authentication for the user."
|
||||
msgstr "Redefinir a autenticação de dois fatores do usuário. Esta ação é irreversível e desativará a autenticação de dois fatores para o usuário."
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset to defaults"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
|
||||
msgid "Reset Two Factor Authentication"
|
||||
msgstr "Redefinir Autenticação de Dois Fatores"
|
||||
@@ -9789,6 +9884,10 @@ msgstr ""
|
||||
msgid "Send first reminder after"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Send on behalf of team"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Send on Behalf of Team"
|
||||
msgstr "Enviar em Nome da Equipe"
|
||||
@@ -10379,7 +10478,7 @@ msgstr "Algo deu errado!"
|
||||
msgid "Something went wrong."
|
||||
msgstr "Algo deu errado."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Something went wrong. Please try again later."
|
||||
msgstr "Algo deu errado. Por favor, tente novamente mais tarde."
|
||||
|
||||
@@ -11099,6 +11198,10 @@ msgstr "O nome de exibição para este endereço de e-mail"
|
||||
msgid "The document could not be created because of missing or invalid information. Please review the template's recipients and fields."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "The document could not be sent because some signers do not have a signature field. Please edit the template and add a signature field for each signer."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
|
||||
msgid "The Document has been deleted successfully."
|
||||
msgstr "O Documento foi excluído com sucesso."
|
||||
@@ -11429,10 +11532,6 @@ msgstr "O webhook de teste foi enviado com sucesso para o seu endpoint."
|
||||
msgid "The token is invalid or has expired."
|
||||
msgstr "O token é inválido ou expirou."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "The token was copied to your clipboard."
|
||||
msgstr "O token foi copiado para sua área de transferência."
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "The token was deleted successfully."
|
||||
msgstr "O token foi excluído com sucesso."
|
||||
@@ -11555,6 +11654,14 @@ msgstr "Isso pode levar um ou dois minutos, dependendo do tamanho do seu documen
|
||||
msgid "This claim is locked and cannot be deleted."
|
||||
msgstr "Esta reivindicação está bloqueada e não pode ser excluída."
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned. Please contact the sender to update the template."
|
||||
msgstr ""
|
||||
|
||||
#: packages/email/template-components/template-document-super-delete.tsx
|
||||
msgid "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
|
||||
msgstr "Este documento não pode ser recuperado, se você quiser contestar o motivo para documentos futuros, entre em contato com o suporte."
|
||||
@@ -11825,6 +11932,14 @@ msgstr "Isso APENAS transferirá sinalizadores de recurso definidos como verdade
|
||||
msgid "This will remove all emails associated with this email domain"
|
||||
msgstr "Isso removerá todos os e-mails associados a este domínio de e-mail"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all branding preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all document preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
|
||||
msgid "This will sign you out of all other devices. You will need to sign in again on those devices to continue using your account."
|
||||
msgstr "Isso desconectará você de todos os outros dispositivos. Você precisará entrar novamente nesses dispositivos para continuar usando sua conta."
|
||||
@@ -12020,11 +12135,11 @@ msgstr "Alterne o botão para mostrar seu perfil ao público."
|
||||
msgid "Token"
|
||||
msgstr "Token"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token copied to clipboard"
|
||||
msgstr "Token copiado para a área de transferência"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token created"
|
||||
msgstr "Token criado"
|
||||
|
||||
@@ -12032,22 +12147,10 @@ msgstr "Token criado"
|
||||
msgid "Token deleted"
|
||||
msgstr "Token excluído"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Token doesn't have an expiration date"
|
||||
msgstr "O token não tem data de validade"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token expiration date"
|
||||
msgstr "Data de validade do token"
|
||||
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Token has expired. Please try again."
|
||||
msgstr "O token expirou. Por favor, tente novamente."
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token name"
|
||||
msgstr "Nome do token"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/_layout.tsx
|
||||
msgid "Token Not Found"
|
||||
msgstr ""
|
||||
@@ -12205,10 +12308,6 @@ msgstr "Não foi possível alterar o idioma neste momento. Por favor, tente nova
|
||||
msgid "Unable to copy recovery code"
|
||||
msgstr "Não foi possível copiar o código de recuperação"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Unable to copy token"
|
||||
msgstr "Não foi possível copiar o token"
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
msgid "Unable to create direct template access. Please try again later."
|
||||
msgstr "Não foi possível criar acesso direto ao modelo. Por favor, tente novamente mais tarde."
|
||||
@@ -12628,6 +12727,10 @@ msgstr ""
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Use API tokens to authenticate with the Documenso API."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13269,10 +13372,6 @@ msgstr "Enviamos um e-mail de confirmação para verificação."
|
||||
msgid "We need your signature to sign documents"
|
||||
msgstr "Precisamos da sua assinatura para assinar documentos"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "We were unable to copy the token to your clipboard. Please try again."
|
||||
msgstr "Não conseguimos copiar o token para sua área de transferência. Por favor, tente novamente."
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/recovery-code-list.tsx
|
||||
msgid "We were unable to copy your recovery code to your clipboard. Please try again."
|
||||
msgstr "Não conseguimos copiar seu código de recuperação para sua área de transferência. Por favor, tente novamente."
|
||||
@@ -13923,7 +14022,7 @@ msgstr ""
|
||||
msgid "You deleted the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "You do not have permission to create a token for this team."
|
||||
msgstr ""
|
||||
|
||||
@@ -13982,6 +14081,10 @@ msgstr "Você recusou o convite de <0>{0}</0> para participar da organização d
|
||||
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
|
||||
msgstr "Você iniciou o documento {0} que requer que você o {recipientActionVerb}."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "You have no API tokens yet. Your tokens will be shown here once you create them."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "You have no webhooks yet. Your webhooks will be shown here once you create them."
|
||||
msgstr "Você ainda não tem webhooks. Seus webhooks serão mostrados aqui assim que você criá-los."
|
||||
@@ -14541,14 +14644,14 @@ msgstr "Seu envelope foi distribuído com sucesso."
|
||||
msgid "Your envelope has been resent successfully."
|
||||
msgstr "Seu envelope foi reenviado com sucesso."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your existing tokens"
|
||||
msgstr "Seus tokens existentes"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
|
||||
msgid "Your Name"
|
||||
msgstr "Seu Nome"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Your new API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Your new password cannot be the same as your old password."
|
||||
@@ -14743,14 +14846,6 @@ msgstr "Seus modelos foram salvos com sucesso."
|
||||
msgid "Your token has expired!"
|
||||
msgstr "Seu token expirou!"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!"
|
||||
msgstr "Seu token foi criado com sucesso! Certifique-se de copiá-lo, pois você não poderá vê-lo novamente!"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your tokens will be shown here once you create them."
|
||||
msgstr "Seus tokens serão mostrados aqui assim que você criá-los."
|
||||
|
||||
#: packages/lib/server-only/2fa/email/send-2fa-token-email.ts
|
||||
msgid "Your two-factor authentication code"
|
||||
msgstr "Seu código de autenticação de dois fatores"
|
||||
|
||||
@@ -850,11 +850,11 @@ msgstr "剩余 0 个免费组织"
|
||||
msgid "1 Free organisations left"
|
||||
msgstr "剩余 1 个免费组织"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "1 month"
|
||||
msgstr "1 个月"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "12 months"
|
||||
msgstr "12 个月"
|
||||
|
||||
@@ -870,7 +870,7 @@ msgstr "2FA 重置"
|
||||
msgid "2FA token"
|
||||
msgstr "双重验证令牌 (2FA token)"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "3 months"
|
||||
msgstr "3 个月"
|
||||
|
||||
@@ -949,11 +949,11 @@ msgstr "每月 5 个文档"
|
||||
msgid "500 Internal Server Error"
|
||||
msgstr "500 内部服务器错误"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "6 months"
|
||||
msgstr "6 个月"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "7 days"
|
||||
msgstr "7 天"
|
||||
|
||||
@@ -1008,6 +1008,10 @@ msgstr "有成员已离开您的组织 {organisationName}"
|
||||
msgid "A member has left your organisation on Documenso"
|
||||
msgstr "有成员已在 Documenso 上离开您的组织"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "A name to help you identify this token later."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/jobs/definitions/emails/send-organisation-member-joined-email.handler.ts
|
||||
msgid "A new member has joined your organisation"
|
||||
msgstr "有新成员已加入您的组织"
|
||||
@@ -1016,10 +1020,6 @@ msgstr "有新成员已加入您的组织"
|
||||
msgid "A new member has joined your organisation {organisationName}"
|
||||
msgstr "有新成员已加入您的组织 {organisationName}"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "A new token was created successfully."
|
||||
msgstr "新令牌创建成功。"
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
#: apps/remix/app/routes/_unauthenticated+/check-email.tsx
|
||||
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
|
||||
@@ -1215,6 +1215,7 @@ msgstr "操作"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Actions"
|
||||
msgstr "操作"
|
||||
@@ -1539,6 +1540,7 @@ msgstr "在你以电子方式签署文档后,你将可以查看、下载和打
|
||||
msgid "After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email."
|
||||
msgstr "提交后,将自动生成一个文档并添加到您的“文档”页面。您还会收到一封电子邮件通知。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "AI features"
|
||||
msgstr "AI 功能"
|
||||
@@ -1708,11 +1710,11 @@ msgstr "已存在使用该地址的邮箱。"
|
||||
#: apps/remix/app/components/dialogs/admin-team-member-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/admin-user-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/organisation-email-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/forms/avatar-image.tsx
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
#: apps/remix/app/components/forms/signup.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
@@ -2121,10 +2123,6 @@ msgstr "确定要删除以下传输方式吗?"
|
||||
msgid "Are you sure you want to delete this folder?"
|
||||
msgstr "确定要删除此文件夹吗?"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Are you sure you want to delete this token?"
|
||||
msgstr "确定要删除此令牌吗?"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
msgid "Are you sure you want to reject this document? This action cannot be undone."
|
||||
msgstr "您确定要拒签此文档吗?此操作无法撤销。"
|
||||
@@ -2390,6 +2388,10 @@ msgstr "蓝色"
|
||||
msgid "Border"
|
||||
msgstr "边框"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Border radius"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Border Radius"
|
||||
msgstr "边框圆角"
|
||||
@@ -2406,6 +2408,10 @@ msgstr "底部对齐"
|
||||
msgid "Brand Colours"
|
||||
msgstr "品牌颜色"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand colours, including background, foreground, primary, and border colours"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Brand Details"
|
||||
msgstr "品牌详情"
|
||||
@@ -2414,6 +2420,10 @@ msgstr "品牌详情"
|
||||
msgid "Brand Website"
|
||||
msgstr "品牌网站"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Brand website and brand details"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
#: apps/remix/app/components/general/settings-nav-desktop.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -2425,6 +2435,7 @@ msgstr "品牌"
|
||||
msgid "Branding company details"
|
||||
msgstr "品牌公司详情"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Branding logo"
|
||||
msgstr "品牌徽标"
|
||||
@@ -2544,9 +2555,11 @@ msgstr "找不到某个人?"
|
||||
#: apps/remix/app/components/dialogs/ai-field-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/assistant-confirmation-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/claim-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/email-transport-send-test-dialog.tsx
|
||||
@@ -2607,6 +2620,7 @@ msgstr "找不到某个人?"
|
||||
#: apps/remix/app/components/dialogs/team-member-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
@@ -2796,10 +2810,6 @@ msgstr "选择验证方式"
|
||||
msgid "Choose your preferred authentication method:"
|
||||
msgstr "请选择首选认证方式:"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Choose..."
|
||||
msgstr "请选择..."
|
||||
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "Claim"
|
||||
msgstr "索赔"
|
||||
@@ -3264,14 +3274,14 @@ msgstr "复制签署链接"
|
||||
msgid "Copy team ID"
|
||||
msgstr "复制团队 ID"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Copy token"
|
||||
msgstr "复制令牌"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
msgid "Copy Value"
|
||||
msgstr "复制值"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Copy your token now. For security reasons you will not be able to see it again."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-reset-button.tsx
|
||||
msgid "Counter reset."
|
||||
msgstr "计数器已重置。"
|
||||
@@ -3338,10 +3348,18 @@ msgstr "创建一个组织以便与团队协作"
|
||||
msgid "Create an organisation to get started."
|
||||
msgstr "创建一个组织以开始使用。"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Create and manage API tokens. See our <0>documentation</0> for more information."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create and send"
|
||||
msgstr "创建并发送"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
msgid "Create as draft"
|
||||
msgstr "创建为草稿"
|
||||
@@ -3460,8 +3478,8 @@ msgstr "创建模板"
|
||||
msgid "Create the document as pending and ready to sign."
|
||||
msgstr "将文档创建为待处理状态,并准备好供签署。"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Create token"
|
||||
msgstr "创建令牌"
|
||||
|
||||
@@ -3507,6 +3525,7 @@ msgstr "创建你的账号,开始使用最先进的文档签署功能。开放
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/unsealed-documents._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "Created"
|
||||
msgstr "已创建"
|
||||
@@ -3527,11 +3546,6 @@ msgstr "创建者"
|
||||
msgid "Created on"
|
||||
msgstr "创建于"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Created on {0}"
|
||||
msgstr "创建于 {0}"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/envelope.create._index.tsx
|
||||
msgid "Creating Document"
|
||||
msgstr "正在创建文档"
|
||||
@@ -3587,6 +3601,14 @@ msgstr "目前仅 Platform 及以上套餐可以配置邮箱域名。"
|
||||
msgid "Custom {0} MB file"
|
||||
msgstr "自定义 {0} MB 文件"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom branding enabled setting"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/branding-preferences-form.tsx
|
||||
msgid "Custom CSS is sanitised on save. Layout-breaking properties, remote URLs, and pseudo-elements are stripped automatically. Any rules dropped during sanitisation will be shown after you save."
|
||||
msgstr "自定义 CSS 在保存时会进行清理。破坏布局的属性、远程 URL 和伪元素会被自动移除。任何在清理过程中被删除的规则都会在你保存后显示出来。"
|
||||
@@ -3671,14 +3693,26 @@ msgstr "默认(系统邮件程序)"
|
||||
msgid "Default border colour."
|
||||
msgstr "默认边框颜色。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default date format"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Date Format"
|
||||
msgstr "默认日期格式"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document language"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Language"
|
||||
msgstr "默认文档语言"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default document visibility"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Document Visibility"
|
||||
msgstr "默认文档可见性"
|
||||
@@ -3691,6 +3725,10 @@ msgstr "默认邮箱"
|
||||
msgid "Default Email Settings"
|
||||
msgstr "默认邮件设置"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default envelope expiration"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Envelope Expiration"
|
||||
msgstr "默认信封过期时间"
|
||||
@@ -3703,6 +3741,10 @@ msgstr "默认文件"
|
||||
msgid "Default Organisation Role for New Users"
|
||||
msgstr "新用户的默认组织角色"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default recipients"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Recipients"
|
||||
msgstr "默认收件人"
|
||||
@@ -3715,14 +3757,26 @@ msgstr "已将默认设置应用于此组织。"
|
||||
msgid "Default settings applied to this team. Inherited values come from the organisation."
|
||||
msgstr "已将默认设置应用于此团队。继承的值来自组织。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signature settings"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signature Settings"
|
||||
msgstr "默认签名设置"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default signing reminders"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Signing Reminders"
|
||||
msgstr "默认签署提醒"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Default time zone"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Default Time Zone"
|
||||
msgstr "默认时区"
|
||||
@@ -3738,6 +3792,7 @@ msgstr "默认值"
|
||||
msgid "Default Value"
|
||||
msgstr "默认值"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/general/admin-global-settings-section.tsx
|
||||
msgid "Delegate document ownership"
|
||||
msgstr "委派文档所有权"
|
||||
@@ -3768,6 +3823,7 @@ msgstr "delete"
|
||||
#: apps/remix/app/components/dialogs/team-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-group-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-page-view-dropdown.tsx
|
||||
@@ -3909,6 +3965,10 @@ msgstr "删除该文档。此操作不可恢复,请谨慎进行。"
|
||||
msgid "Delete the users account and all its contents. This action is irreversible and will cancel their subscription, so proceed with caution."
|
||||
msgstr "删除该用户的账号及其所有内容。此操作不可恢复,并会取消其订阅,请谨慎进行。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "Delete token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx
|
||||
msgid "Delete Webhook"
|
||||
msgstr "删除 Webhook"
|
||||
@@ -4651,6 +4711,10 @@ msgstr "不重复"
|
||||
msgid "Don't transfer (Delete all documents)"
|
||||
msgstr "不要转移(删除所有文档)"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/2fa/view-recovery-codes-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-certificate-qr-view.tsx
|
||||
@@ -5521,6 +5585,7 @@ msgstr "过期设置"
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expired"
|
||||
msgstr "已过期"
|
||||
|
||||
@@ -5530,6 +5595,7 @@ msgid "Expired"
|
||||
msgstr "已过期"
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires"
|
||||
msgstr "到期时间"
|
||||
|
||||
@@ -5538,16 +5604,15 @@ msgstr "到期时间"
|
||||
msgid "Expires {0}"
|
||||
msgstr "于 {0} 到期"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Expires in"
|
||||
msgstr ""
|
||||
|
||||
#. placeholder {0}: DateTime.fromMillis(Math.max(millisecondsRemaining, 0)).toFormat('mm:ss')
|
||||
#: apps/remix/app/components/general/document-signing/access-auth-2fa-form.tsx
|
||||
msgid "Expires in {0}"
|
||||
msgstr "将在 {0} 后过期"
|
||||
|
||||
#. placeholder {0}: i18n.date(token.expires, DateTime.DATETIME_FULL)
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Expires on {0}"
|
||||
msgstr "将于 {0} 到期"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-settings-dialog.tsx
|
||||
#: packages/ui/primitives/document-flow/add-settings.tsx
|
||||
#: packages/ui/primitives/template-flow/add-template-settings.tsx
|
||||
@@ -6243,10 +6308,6 @@ msgstr "我是此文档的所有者"
|
||||
msgid "I understand that I am providing my credentials to a 3rd party service configured by this organisation"
|
||||
msgstr "我理解我正在向此组织配置的第三方服务提供我的凭证"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "I'm sure! Delete it"
|
||||
msgstr "我确定!删除"
|
||||
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-dashboard-users-table.tsx
|
||||
#: apps/remix/app/components/tables/admin-document-recipient-item-table.tsx
|
||||
@@ -6345,10 +6406,18 @@ msgstr "包含发送方详情"
|
||||
msgid "Include signing certificate"
|
||||
msgstr "包含签名证书"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the audit logs in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Audit Logs in the Document"
|
||||
msgstr "在文档中包含审计日志"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Include the signing certificate in the document"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Include the Signing Certificate in the Document"
|
||||
msgstr "在文档中包含签署证书"
|
||||
@@ -6429,6 +6498,11 @@ msgstr "实例统计"
|
||||
msgid "Invalid code. Please try again."
|
||||
msgstr "验证码无效。请重试。"
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Invalid direct link template"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.sso.tsx
|
||||
msgid "Invalid domains"
|
||||
msgstr "无效的域名"
|
||||
@@ -7176,6 +7250,11 @@ msgstr "缺少许可证 - 您的 Documenso 实例正在使用需要许可证的
|
||||
msgid "Missing Recipients"
|
||||
msgstr "缺少收件人"
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "Missing signature fields"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/document/document-page-view-recipients.tsx
|
||||
#: apps/remix/app/components/general/template/template-page-view-recipients.tsx
|
||||
msgid "Modify recipients"
|
||||
@@ -7267,6 +7346,7 @@ msgstr "N/A"
|
||||
#: apps/remix/app/components/dialogs/team-email-add-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-email-update-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/template-use-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/embed/authoring/configure-document-recipients.tsx
|
||||
#: apps/remix/app/components/forms/email-transport-form.tsx
|
||||
@@ -7287,6 +7367,7 @@ msgstr "N/A"
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/users.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.email-domains.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
#: packages/lib/utils/fields.ts
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
#: packages/ui/primitives/document-flow/add-signers.tsx
|
||||
@@ -7326,14 +7407,12 @@ msgstr "需要签署"
|
||||
msgid "Needs to view"
|
||||
msgstr "需要查看"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
#: apps/remix/app/components/tables/settings-security-passkey-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Never"
|
||||
msgstr "从不"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Never expire"
|
||||
msgstr "永不过期"
|
||||
|
||||
#: packages/ui/components/document/expiration-period-picker.tsx
|
||||
msgid "Never expires"
|
||||
msgstr "永不过期"
|
||||
@@ -7669,14 +7748,15 @@ msgstr "开启"
|
||||
msgid "On this page, you can create a new webhook."
|
||||
msgstr "在此页面,你可以创建新的 Webhook。"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "On this page, you can create and manage API tokens. See our <0>Documentation</0> for more information."
|
||||
msgstr "在此页面,您可以创建和管理 API 令牌。更多信息请参阅我们的<0>文档</0>。"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "On this page, you can create new Webhooks and manage the existing ones."
|
||||
msgstr "在此页面,你可以创建新的 Webhook 并管理现有的 Webhook。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Once confirmed, the following will be reset:"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelope-cancel-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelope-delete-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-cancel-dialog.tsx
|
||||
@@ -8327,10 +8407,6 @@ msgstr "请联系站点所有者以获取进一步帮助。"
|
||||
msgid "Please don't close this tab. The signing provider is finalising your signature."
|
||||
msgstr "请不要关闭此标签页。签名服务提供商正在完成您的签名。"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Please enter a meaningful name for your token. This will help you identify it later."
|
||||
msgstr "请输入一个有意义的令牌名称,以便日后识别。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a number"
|
||||
msgstr "请输入一个数字"
|
||||
@@ -8876,6 +8952,10 @@ msgstr "收件人的签名服务提供商身份验证失败"
|
||||
msgid "Recipients"
|
||||
msgstr "收件人"
|
||||
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-invalid-direct-template-alert.tsx
|
||||
msgid "Recipients cannot use this direct link template because the following signers are missing a signature field"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/stats.tsx
|
||||
msgid "Recipients metrics"
|
||||
msgstr "收件人仍将保留其文档副本"
|
||||
@@ -9234,6 +9314,14 @@ msgstr "重置"
|
||||
msgid "Reset 2FA"
|
||||
msgstr "重置双重认证"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "Reset branding preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset document preferences"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/forgot-password.tsx
|
||||
msgid "Reset email sent"
|
||||
msgstr "重置邮件已发送"
|
||||
@@ -9251,6 +9339,13 @@ msgstr "重置密码"
|
||||
msgid "Reset the users two factor authentication. This action is irreversible and will disable two factor authentication for the user."
|
||||
msgstr "重置该用户的双重身份验证。此操作不可撤销,并将为该用户禁用双重身份验证。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Reset to defaults"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-user-reset-two-factor-dialog.tsx
|
||||
msgid "Reset Two Factor Authentication"
|
||||
msgstr "重置双重身份验证"
|
||||
@@ -9794,6 +9889,10 @@ msgstr "发送信封"
|
||||
msgid "Send first reminder after"
|
||||
msgstr "在以下时间后发送首个提醒"
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "Send on behalf of team"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/document-preferences-form.tsx
|
||||
msgid "Send on Behalf of Team"
|
||||
msgstr "以团队名义发送"
|
||||
@@ -10384,7 +10483,7 @@ msgstr "出错了!"
|
||||
msgid "Something went wrong."
|
||||
msgstr "发生了一些错误。"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Something went wrong. Please try again later."
|
||||
msgstr "出现了一些问题。请稍后重试。"
|
||||
|
||||
@@ -11104,6 +11203,10 @@ msgstr "此邮箱地址的显示名称"
|
||||
msgid "The document could not be created because of missing or invalid information. Please review the template's recipients and fields."
|
||||
msgstr "由于信息缺失或无效,无法创建该文档。请检查模板的收件人和字段。"
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "The document could not be sent because some signers do not have a signature field. Please edit the template and add a signature field for each signer."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx
|
||||
msgid "The Document has been deleted successfully."
|
||||
msgstr "文档已成功删除。"
|
||||
@@ -11434,10 +11537,6 @@ msgstr "测试 Webhook 已成功发送到您的端点。"
|
||||
msgid "The token is invalid or has expired."
|
||||
msgstr "令牌无效或已过期。"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "The token was copied to your clipboard."
|
||||
msgstr "令牌已复制到剪贴板。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-delete-dialog.tsx
|
||||
msgid "The token was deleted successfully."
|
||||
msgstr "令牌已成功删除。"
|
||||
@@ -11560,6 +11659,14 @@ msgstr "根据文档大小,这可能需要一到两分钟。"
|
||||
msgid "This claim is locked and cannot be deleted."
|
||||
msgstr "此声明已锁定,无法删除。"
|
||||
|
||||
#: apps/remix/app/utils/toast-error-messages.ts
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/direct-template/direct-template-invalid-page.tsx
|
||||
msgid "This direct link template cannot be used because one or more signers do not have a signature field assigned. Please contact the sender to update the template."
|
||||
msgstr ""
|
||||
|
||||
#: packages/email/template-components/template-document-super-delete.tsx
|
||||
msgid "This document can not be recovered, if you would like to dispute the reason for future documents please contact support."
|
||||
msgstr "此文档无法恢复。若您希望对未来文档的删除原因提出异议,请联系支持。"
|
||||
@@ -11830,6 +11937,14 @@ msgstr "这将只回溯设置为 true 的功能标记,初始声明中被禁用
|
||||
msgid "This will remove all emails associated with this email domain"
|
||||
msgstr "这将移除此邮箱域名下的所有邮箱"
|
||||
|
||||
#: apps/remix/app/components/dialogs/branding-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all branding preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/document-preferences-reset-dialog.tsx
|
||||
msgid "This will reset all document preferences to their default values and save the changes immediately."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/session-logout-all-dialog.tsx
|
||||
msgid "This will sign you out of all other devices. You will need to sign in again on those devices to continue using your account."
|
||||
msgstr "这将使您在所有其他设备上退出登录。您需要在那些设备上重新登录才能继续使用账户。"
|
||||
@@ -12025,11 +12140,11 @@ msgstr "切换开关以将你的资料对公众可见。"
|
||||
msgid "Token"
|
||||
msgstr "令牌"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token copied to clipboard"
|
||||
msgstr "令牌已复制到剪贴板"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Token created"
|
||||
msgstr "令牌已创建"
|
||||
|
||||
@@ -12037,22 +12152,10 @@ msgstr "令牌已创建"
|
||||
msgid "Token deleted"
|
||||
msgstr "令牌已删除"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Token doesn't have an expiration date"
|
||||
msgstr "令牌没有过期日期"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token expiration date"
|
||||
msgstr "令牌过期日期"
|
||||
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Token has expired. Please try again."
|
||||
msgstr "令牌已过期。请重试。"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Token name"
|
||||
msgstr "令牌名称"
|
||||
|
||||
#: apps/remix/app/routes/embed+/v2+/authoring+/_layout.tsx
|
||||
msgid "Token Not Found"
|
||||
msgstr "未找到令牌"
|
||||
@@ -12210,10 +12313,6 @@ msgstr "当前无法更改语言。请稍后再试。"
|
||||
msgid "Unable to copy recovery code"
|
||||
msgstr "无法复制恢复代码"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Unable to copy token"
|
||||
msgstr "无法复制令牌"
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx
|
||||
msgid "Unable to create direct template access. Please try again later."
|
||||
msgstr "无法创建直接模板访问。请稍后再试。"
|
||||
@@ -12633,6 +12732,10 @@ msgstr ""
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Use API tokens to authenticate with the Documenso API."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13274,10 +13377,6 @@ msgstr "我们已发送确认邮件用于验证。"
|
||||
msgid "We need your signature to sign documents"
|
||||
msgstr "我们需要您的签名来签署文档"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "We were unable to copy the token to your clipboard. Please try again."
|
||||
msgstr "无法将令牌复制到剪贴板。请重试。"
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/recovery-code-list.tsx
|
||||
msgid "We were unable to copy your recovery code to your clipboard. Please try again."
|
||||
msgstr "无法将恢复代码复制到剪贴板。请重试。"
|
||||
@@ -13928,7 +14027,7 @@ msgstr "你删除了一个标题为 {0} 的信封条目"
|
||||
msgid "You deleted the document"
|
||||
msgstr "你删除了此文档"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "You do not have permission to create a token for this team."
|
||||
msgstr "您没有权限为此团队创建令牌。"
|
||||
|
||||
@@ -13987,6 +14086,10 @@ msgstr "您已拒绝来自 <0>{0}</0> 的加入其组织的邀请。"
|
||||
msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it."
|
||||
msgstr "您已发起文档 {0},需要您对其进行 {recipientActionVerb}。"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "You have no API tokens yet. Your tokens will be shown here once you create them."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx
|
||||
msgid "You have no webhooks yet. Your webhooks will be shown here once you create them."
|
||||
msgstr "你还没有创建任何 Webhook。创建后,它们会显示在这里。"
|
||||
@@ -14546,14 +14649,14 @@ msgstr "您的信封已成功分发。"
|
||||
msgid "Your envelope has been resent successfully."
|
||||
msgstr "您的信封已成功重新发送。"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your existing tokens"
|
||||
msgstr "你现有的令牌"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx
|
||||
msgid "Your Name"
|
||||
msgstr "您的姓名"
|
||||
|
||||
#: apps/remix/app/components/dialogs/token-create-dialog.tsx
|
||||
msgid "Your new API token"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/password.tsx
|
||||
#: apps/remix/app/components/forms/reset-password.tsx
|
||||
msgid "Your new password cannot be the same as your old password."
|
||||
@@ -14748,14 +14851,6 @@ msgstr "你的模板已成功保存。"
|
||||
msgid "Your token has expired!"
|
||||
msgstr "你的令牌已过期!"
|
||||
|
||||
#: apps/remix/app/components/forms/token.tsx
|
||||
msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!"
|
||||
msgstr "你的令牌已创建成功!请务必立即复制,因为之后将无法再次查看!"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx
|
||||
msgid "Your tokens will be shown here once you create them."
|
||||
msgstr "创建令牌后将会显示在这里。"
|
||||
|
||||
#: packages/lib/server-only/2fa/email/send-2fa-token-email.ts
|
||||
msgid "Your two-factor authentication code"
|
||||
msgstr "您的双重身份验证码"
|
||||
|
||||
Reference in New Issue
Block a user