mirror of
https://github.com/documenso/documenso.git
synced 2026-07-11 21:45:18 +10:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ad22914a57 | |||
| 400b6a24f1 | |||
| 1b1e3d197b | |||
| a276e18e1f |
-199
@@ -1,199 +0,0 @@
|
||||
---
|
||||
date: 2026-03-02
|
||||
title: View Pdf As Recipient Online After Completion Via Qr Share Url Outside Team
|
||||
---
|
||||
|
||||
## Goal
|
||||
|
||||
Allow a recipient (including users outside the owning team) to open the final completed PDF online from the post-completion experience.
|
||||
|
||||
## Non-Goals
|
||||
|
||||
- No support for historical completed documents that predate this change.
|
||||
- No recipient access to draft versions, intermediate revisions, or team-internal metadata.
|
||||
- No rollout flag/canary; ship enabled by default.
|
||||
|
||||
## Current State
|
||||
|
||||
Only sender/team-member paths reliably reach the online PDF viewer. Recipient-side access after signing can fail when authorization assumes team membership.
|
||||
|
||||
## Product Decisions Captured
|
||||
|
||||
- Authorization primitive: signed recipient token (recipient + document scoped).
|
||||
- URL availability: generate and persist synchronously before showing completion CTA.
|
||||
- Revocation: inherit existing document share/QR toggle behavior.
|
||||
- Security controls in v1: access logs plus per-token + IP rate limiting.
|
||||
- Token binding strictness: recipient + document binding only (no device/IP hard binding).
|
||||
- Artifact visibility: final completed PDF only.
|
||||
- Backward compatibility: only new completions are supported.
|
||||
- Multi-recipient policy: recipient can view only after whole document is fully completed.
|
||||
- Failure UX: inline retry with backoff and support code.
|
||||
- Rollout: enabled globally by default.
|
||||
|
||||
## Detailed Plan
|
||||
|
||||
1. Trace and reuse the existing QR/share URL generation source for completed documents.
|
||||
2. Ensure share URL/token material is created transactionally in the completion finalization flow, before completion CTA rendering.
|
||||
3. Wire recipient post-completion CTA to this shared URL source (not team-member viewer route assumptions).
|
||||
4. Add a dedicated authorization path for recipient online-view requests:
|
||||
- Validate signed token.
|
||||
- Confirm token recipientId matches a recipient on the target document.
|
||||
- Confirm token documentId matches request document.
|
||||
- Confirm document status is fully completed.
|
||||
- Confirm share/QR access is currently enabled.
|
||||
5. Keep sender behavior unchanged; sender paths continue through existing sender/team rules.
|
||||
6. Add fallback UX for missing/failed share URL generation with bounded retry and support code.
|
||||
7. Add observability and abuse controls (logs, rate limits) on recipient view endpoint.
|
||||
8. Add and update automated tests for happy path and denial path coverage.
|
||||
|
||||
## Authorization and Security Model
|
||||
|
||||
### Access Contract
|
||||
|
||||
- Recipient view endpoint accepts a signed recipient token (bearer).
|
||||
- Token claims should include at minimum:
|
||||
- `documentId`
|
||||
- `recipientId`
|
||||
- `completedAt` (or equivalent anti-stale marker)
|
||||
- `exp` (bounded expiry)
|
||||
- Team membership is not required for this path.
|
||||
|
||||
### Access Denial Conditions
|
||||
|
||||
- Invalid signature, expired token, or malformed claims.
|
||||
- Token/document mismatch or token/recipient mismatch.
|
||||
- Document not fully completed.
|
||||
- Share/QR feature disabled/revoked for document.
|
||||
- Rate limit exceeded.
|
||||
|
||||
### Rate Limiting
|
||||
|
||||
- Apply sliding window limits keyed by token fingerprint + source IP.
|
||||
- Return `429` with `Retry-After` on throttle.
|
||||
- Log throttle events with reason and correlation id.
|
||||
|
||||
### Audit Logging
|
||||
|
||||
- Log recipient view attempts (allow + deny) with:
|
||||
- document id
|
||||
- recipient id (if resolvable)
|
||||
- result (allow/deny)
|
||||
- deny reason code
|
||||
- IP and user-agent
|
||||
- request correlation id
|
||||
|
||||
## UX and Behavior
|
||||
|
||||
### Post-Completion CTA
|
||||
|
||||
- Completion screen includes `View completed PDF` CTA for recipients.
|
||||
- CTA is rendered only after synchronous URL generation succeeds.
|
||||
|
||||
### Failure Handling
|
||||
|
||||
- If synchronous generation fails, keep user on completion success context and show:
|
||||
- clear inline error
|
||||
- retry action with exponential backoff (bounded attempts)
|
||||
- support code/correlation id for escalation
|
||||
- Do not expose internal stack details.
|
||||
|
||||
### Multi-Recipient Behavior
|
||||
|
||||
- Recipient access is blocked until all required recipients are completed and document is in final completed state.
|
||||
|
||||
## Data and Lifecycle
|
||||
|
||||
- Reuse existing share URL persistence model.
|
||||
- Generate token/share material during completion finalization for new completions only.
|
||||
- No retroactive migration for previously completed documents.
|
||||
|
||||
## API / Endpoint Expectations
|
||||
|
||||
- Recipient viewer endpoint should return:
|
||||
- `200` with final PDF viewer payload on success
|
||||
- `401/403` for token/authz failures (reason mapped to safe frontend message)
|
||||
- `404` if document is not visible via token context
|
||||
- `409` if document not yet fully completed
|
||||
- `429` when rate-limited
|
||||
- Error responses should expose stable error codes consumable by frontend copy mapping.
|
||||
|
||||
## Testing Strategy
|
||||
|
||||
### Unit / Integration
|
||||
|
||||
- Token validation and claim mismatch rejection.
|
||||
- Denial when document incomplete.
|
||||
- Denial when share toggle disabled.
|
||||
- Rate-limit enforcement behavior.
|
||||
|
||||
### End-to-End
|
||||
|
||||
- Sender path unaffected (regression).
|
||||
- Recipient outside team can open final PDF after full completion.
|
||||
- Recipient cannot open before full completion.
|
||||
- Unauthorized/random user without valid token is denied.
|
||||
- Failure fallback UI shows retry + support code on forced generation failure.
|
||||
|
||||
## Validation Criteria
|
||||
|
||||
- Recipient can open completed PDF online from completion context without team membership.
|
||||
- Final-PDF-only visibility is enforced.
|
||||
- Sender behavior remains unchanged.
|
||||
- Unauthorized users still cannot access the document.
|
||||
- Share-toggle revocation immediately removes recipient access.
|
||||
- Access events and rate-limit events are observable in logs.
|
||||
|
||||
## Risks and Mitigations
|
||||
|
||||
- Risk: broader access than intended.
|
||||
- Mitigation: strict recipient+document token checks, completed-state check, share-toggle gate.
|
||||
- Risk: completion-time URL generation increases latency.
|
||||
- Mitigation: keep generation in bounded transaction path, add retry fallback UX, log latency.
|
||||
- Risk: support confusion for pre-existing completed documents.
|
||||
- Mitigation: document "new completions only" behavior in release notes/internal support docs.
|
||||
|
||||
## Implementation Checklist (Repo-Mapped)
|
||||
|
||||
1. Completion UX entry point (recipient side)
|
||||
- File: `apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx`
|
||||
- Replace/augment current post-completion action so recipients get a direct `View completed PDF` action that points to `/share/${document.qrToken}` when available.
|
||||
- Gate visibility on final completion state (`signingStatus === 'COMPLETED'`) and `document.qrToken` presence.
|
||||
- Keep download and existing sender/home actions unchanged.
|
||||
|
||||
2. Ensure QR token availability at completion time
|
||||
- File: `packages/lib/jobs/definitions/internal/seal-document.handler.ts`
|
||||
- Preserve existing `qrToken` creation in sealing flow and confirm it runs before the recipient completion page can surface the final view action.
|
||||
- If race conditions appear (status completed but `qrToken` missing), add an explicit short polling/fallback state in UI rather than exposing a broken link.
|
||||
|
||||
3. Recipient-readable completed document route
|
||||
- File: `apps/remix/app/routes/_share+/share.$slug.tsx`
|
||||
- Keep `qr_` branch as the recipient-safe online view path and ensure it stays independent from team membership checks.
|
||||
- Keep non-`qr_` slug behavior (social share redirects/meta) unchanged.
|
||||
|
||||
4. Access/read model for QR token
|
||||
- File: `packages/lib/server-only/document/get-document-by-access-token.ts`
|
||||
- Maintain strict completed-document-only lookup (`status: COMPLETED`) and minimal selected payload.
|
||||
- Verify returned payload remains final-artifact-only (no draft/intermediate data leakage).
|
||||
|
||||
5. Existing share-link path boundary (non-goal guardrail)
|
||||
- Files: `packages/trpc/server/document-router/share-document.ts`, `packages/lib/server-only/share/create-or-get-share-link.ts`
|
||||
- Do not repurpose social `DocumentShareLink` as authorization source for final PDF access in this change.
|
||||
- Keep this as a separate concern from QR token completed-document viewing.
|
||||
|
||||
6. Logging and throttling hooks
|
||||
- Files: `apps/remix/server/router.ts`, `packages/lib/server-only/rate-limit/rate-limit.ts`, `packages/lib/server-only/rate-limit/rate-limit-middleware.ts`
|
||||
- Add or reuse per-route limits for `/share/qr_*` access attempts.
|
||||
- Log allow/deny/throttle events with correlation id to support abuse triage.
|
||||
|
||||
7. Test coverage targets
|
||||
- Add route/component coverage for recipient completion page behavior in `apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx` flows.
|
||||
- Add integration coverage for QR route access in `apps/remix/app/routes/_share+/share.$slug.tsx` + `packages/lib/server-only/document/get-document-by-access-token.ts`.
|
||||
- Add E2E scenario under `packages/app-tests/e2e/document-auth/` for:
|
||||
- recipient outside team sees and uses `View completed PDF` after full completion,
|
||||
- recipient does not see final-view action before full completion,
|
||||
- invalid/random QR token is denied.
|
||||
|
||||
8. Verification commands
|
||||
- Typecheck changed TS packages: `npx tsc --noEmit`
|
||||
- Run affected tests (targeted): `npm run test:dev -w @documenso/app-tests`
|
||||
- Optional broader confidence (if needed): `npm run lint`
|
||||
@@ -76,6 +76,8 @@ The Enterprise Edition is required when you:
|
||||
4. Restart your Documenso instance
|
||||
5. Verify the license is active in the **Admin Panel** under the **Stats** section
|
||||
|
||||
See [Apply Your License Key](/docs/self-hosting/configuration/license) for the full walkthrough, including how to enable individual features once licensed.
|
||||
|
||||
</Accordion>
|
||||
</Accordions>
|
||||
|
||||
@@ -197,7 +199,7 @@ See [Support](/docs/policies/support) for complete support options.
|
||||
1. Sign the Enterprise license agreement
|
||||
2. Receive license key and access credentials
|
||||
3. Deploy using [self-hosting guides](/docs/self-hosting) or access Documenso Cloud
|
||||
4. Configure Enterprise features with support assistance
|
||||
4. Apply the key — see [Apply Your License Key](/docs/self-hosting/configuration/license) — and configure Enterprise features with support assistance
|
||||
|
||||
</Step>
|
||||
<Step>
|
||||
@@ -238,6 +240,7 @@ See [Support](/docs/policies/support) for complete support options.
|
||||
|
||||
## Related
|
||||
|
||||
- [Apply Your License Key](/docs/self-hosting/configuration/license) - Step-by-step license activation
|
||||
- [Community Edition](/docs/policies/community-edition) - AGPL-3.0 open-source license
|
||||
- [Licenses](/docs/policies/licenses) - Complete licensing overview and FAQ
|
||||
- [Support](/docs/policies/support) - Support channels and response times
|
||||
|
||||
@@ -443,11 +443,11 @@ Telemetry collects only: app version, installation ID, and node ID. No personal
|
||||
|
||||
## Enterprise Features
|
||||
|
||||
These variables require an active [Enterprise Edition](/docs/policies/enterprise-edition) license. Obtain a license key from [license.documenso.com](https://license.documenso.com) and set it below to unlock enterprise features such as SSO, embed editor, and 21 CFR Part 11 compliance.
|
||||
These variables require an active [Enterprise Edition](/docs/policies/enterprise-edition) license. Obtain a license key from [license.documenso.com](https://license.documenso.com) and set it below to unlock enterprise features such as SSO, embed editor, and 21 CFR Part 11 compliance. See [Apply Your License Key](/docs/self-hosting/configuration/license) for step-by-step setup.
|
||||
|
||||
| Variable | Description |
|
||||
| ------------------------------------ | ------------------------------------------------ |
|
||||
| `NEXT_PRIVATE_DOCUMENSO_LICENSE_KEY` | License key for enterprise features |
|
||||
| `NEXT_PRIVATE_DOCUMENSO_LICENSE_KEY` | License key for enterprise features — see [Apply Your License Key](/docs/self-hosting/configuration/license) for how to apply it |
|
||||
| `NEXT_PRIVATE_STRIPE_API_KEY` | Stripe API key for billing |
|
||||
| `NEXT_PRIVATE_STRIPE_WEBHOOK_SECRET` | Stripe webhook secret |
|
||||
| `NEXT_PRIVATE_SES_ACCESS_KEY_ID` | AWS SES access key for email domain verification |
|
||||
|
||||
@@ -0,0 +1,107 @@
|
||||
---
|
||||
title: Apply Your License Key
|
||||
description: Activate your Enterprise license key to unlock enterprise features on your self-hosted instance.
|
||||
---
|
||||
|
||||
import { Accordion, Accordions } from 'fumadocs-ui/components/accordion';
|
||||
import { Callout } from 'fumadocs-ui/components/callout';
|
||||
import { Tab, Tabs } from 'fumadocs-ui/components/tabs';
|
||||
|
||||
A license key activates the Enterprise features available to your self-hosted instance, such as CSC signing, SSO, embed white-labelling, and 21 CFR Part 11 compliance.
|
||||
|
||||
<Callout type="info">
|
||||
The license key applies to your **whole instance**, not an individual user account. There's one
|
||||
key per deployment.
|
||||
</Callout>
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- An active Enterprise license key — contact [sales](https://documen.so/enterprise) to set up an
|
||||
Enterprise subscription, then copy your key from [license.documenso.com](https://license.documenso.com).
|
||||
See [Enterprise Edition](/docs/policies/enterprise-edition) for details.
|
||||
- A running self-hosted Documenso instance that you're able to restart
|
||||
|
||||
## Step 1: Set the environment variable
|
||||
|
||||
Set `NEXT_PRIVATE_DOCUMENSO_LICENSE_KEY` to your license key.
|
||||
|
||||
<Tabs items={['Docker Compose', 'docker run', '.env']}>
|
||||
<Tab value="Docker Compose">
|
||||
|
||||
Add the variable to your `.env` file (or directly under `environment:` in `compose.yml`):
|
||||
|
||||
```bash
|
||||
NEXT_PRIVATE_DOCUMENSO_LICENSE_KEY=your-license-key-here
|
||||
```
|
||||
|
||||
Then apply it:
|
||||
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
</Tab>
|
||||
<Tab value="docker run">
|
||||
|
||||
```bash
|
||||
docker run -d \
|
||||
--name documenso \
|
||||
-e NEXT_PRIVATE_DOCUMENSO_LICENSE_KEY=your-license-key-here \
|
||||
documenso/documenso:latest
|
||||
```
|
||||
|
||||
</Tab>
|
||||
<Tab value=".env">
|
||||
|
||||
If you're running Documenso directly (not in a container), add the variable to your `.env` file:
|
||||
|
||||
```bash
|
||||
NEXT_PRIVATE_DOCUMENSO_LICENSE_KEY=your-license-key-here
|
||||
```
|
||||
|
||||
</Tab>
|
||||
</Tabs>
|
||||
|
||||
## Step 2: Restart the instance
|
||||
|
||||
The license key is only read once, at process startup. Setting the variable in a running container or shell has no effect until the process restarts.
|
||||
|
||||
```bash
|
||||
# Docker Compose
|
||||
docker compose restart documenso
|
||||
|
||||
# Docker
|
||||
docker restart documenso
|
||||
```
|
||||
|
||||
On startup, Documenso validates the key against the Documenso license server and caches the result locally for future startups, so a brief license-server outage won't lock you out.
|
||||
|
||||
## What the license enables
|
||||
|
||||
A valid license doesn't turn every enterprise feature on everywhere — activation depends on the feature:
|
||||
|
||||
- **CSC signing** activates instance-wide automatically once the license is active and CSC transport is configured. See [CSC / QES Signing](/docs/self-hosting/configuration/signing-certificate/csc-qes) for the full setup.
|
||||
- **SSO, embed white-labelling, 21 CFR Part 11, and similar** are provisioned per organisation. Follow each feature's own guide to configure it once the license is active.
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
<Accordions type="multiple">
|
||||
<Accordion title="Enterprise features are still unavailable after applying the key">
|
||||
- Confirm the key is present in the environment the running process actually reads — `docker
|
||||
exec` into the container and check `env | grep LICENSE` if unsure.
|
||||
- Confirm the instance was fully restarted after the variable was set, not just reloaded.
|
||||
- Re-copy the key to rule out truncation or accidental whitespace.
|
||||
</Accordion>
|
||||
<Accordion title="A specific feature still isn't working">
|
||||
Instance-wide features (like CSC signing) also need their own configuration — an active license
|
||||
alone isn't enough. Check that feature's guide to confirm the required settings are in place.
|
||||
Per-organisation features additionally need to be provisioned for the organisation that's using
|
||||
them.
|
||||
</Accordion>
|
||||
</Accordions>
|
||||
|
||||
## See Also
|
||||
|
||||
- [Environment Variables](/docs/self-hosting/configuration/environment) - Complete configuration reference
|
||||
- [Enterprise Edition](/docs/policies/enterprise-edition) - What's included and how to purchase a license
|
||||
- [CSC / QES Signing](/docs/self-hosting/configuration/signing-certificate/csc-qes) - Enable CSC-based signing
|
||||
@@ -2,6 +2,7 @@
|
||||
"title": "Configuration",
|
||||
"pages": [
|
||||
"environment",
|
||||
"license",
|
||||
"database",
|
||||
"email",
|
||||
"storage",
|
||||
|
||||
@@ -49,7 +49,7 @@ The callback URL is fixed — Documenso derives it from `NEXT_PUBLIC_WEBAPP_URL`
|
||||
|
||||
### Enterprise Edition license
|
||||
|
||||
CSC mode is gated by the `instanceCscSigning` license flag. Without a valid Enterprise license, the transport refuses to start (`CSC_UNLICENSED`).
|
||||
CSC mode is gated by the `instanceCscSigning` license flag. Without a valid Enterprise license, the transport refuses to start (`CSC_UNLICENSED`). See [Apply Your License Key](/docs/self-hosting/configuration/license) to activate one.
|
||||
|
||||
</Step>
|
||||
<Step>
|
||||
|
||||
@@ -141,7 +141,7 @@ See the [Quick Start guide](/docs/self-hosting/getting-started/quick-start) for
|
||||
|
||||
Self-hosted Documenso includes full core functionality under the AGPL-3.0 license. If you need enterprise features such as SSO, embed editor white label, or 21 CFR Part 11 compliance, you can activate them with a license key.
|
||||
|
||||
See [Enterprise Edition](/docs/policies/enterprise-edition) for details and [Licenses](/docs/policies/licenses) for a comparison.
|
||||
See [Enterprise Edition](/docs/policies/enterprise-edition) for details and [Licenses](/docs/policies/licenses) for a comparison. Already have a key? See [Apply Your License Key](/docs/self-hosting/configuration/license).
|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -103,7 +103,6 @@ export const EnvelopeDownloadDialog = ({
|
||||
);
|
||||
|
||||
const envelopeItems = envelopeItemsPayload?.data || [];
|
||||
const isQrToken = Boolean(token?.startsWith('qr_'));
|
||||
|
||||
const onDownload = async (envelopeItem: EnvelopeItemToDownload, version: 'original' | 'signed' | 'pending') => {
|
||||
const { id: envelopeItemId } = envelopeItem;
|
||||
@@ -161,41 +160,41 @@ export const EnvelopeDownloadDialog = ({
|
||||
</DialogHeader>
|
||||
|
||||
<div className="flex w-full flex-col gap-4 overflow-hidden">
|
||||
{isLoadingEnvelopeItems ? (
|
||||
<div className="flex items-center gap-2 rounded-lg border border-border bg-card p-4">
|
||||
<Skeleton className="h-10 w-10 flex-shrink-0 rounded-lg" />
|
||||
{isLoadingEnvelopeItems
|
||||
? Array.from({ length: 1 }).map((_, index) => (
|
||||
<div key={index} className="flex items-center gap-2 rounded-lg border border-border bg-card p-4">
|
||||
<Skeleton className="h-10 w-10 flex-shrink-0 rounded-lg" />
|
||||
|
||||
<div className="flex w-full flex-col gap-2">
|
||||
<Skeleton className="h-4 w-28 rounded-lg" />
|
||||
<Skeleton className="h-4 w-20 rounded-lg" />
|
||||
</div>
|
||||
|
||||
<Skeleton className="h-10 w-20 flex-shrink-0 rounded-lg" />
|
||||
</div>
|
||||
) : (
|
||||
envelopeItems.map((item) => (
|
||||
<div
|
||||
key={item.id}
|
||||
className="flex items-center gap-4 rounded-lg border border-border bg-card p-4 transition-colors hover:bg-accent/50"
|
||||
>
|
||||
<div className="flex-shrink-0">
|
||||
<div className="flex h-10 w-10 items-center justify-center rounded-lg bg-primary/10">
|
||||
<FileTextIcon className="h-5 w-5 text-primary" />
|
||||
<div className="flex w-full flex-col gap-2">
|
||||
<Skeleton className="h-4 w-28 rounded-lg" />
|
||||
<Skeleton className="h-4 w-20 rounded-lg" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="min-w-0 flex-1">
|
||||
{/* Todo: Envelopes - Fix overflow */}
|
||||
<h4 className="truncate font-medium text-foreground text-sm" title={item.title}>
|
||||
{item.title}
|
||||
</h4>
|
||||
<p className="mt-0.5 text-muted-foreground text-xs">
|
||||
<Trans>PDF Document</Trans>
|
||||
</p>
|
||||
<Skeleton className="h-10 w-20 flex-shrink-0 rounded-lg" />
|
||||
</div>
|
||||
))
|
||||
: envelopeItems.map((item) => (
|
||||
<div
|
||||
key={item.id}
|
||||
className="flex items-center gap-4 rounded-lg border border-border bg-card p-4 transition-colors hover:bg-accent/50"
|
||||
>
|
||||
<div className="flex-shrink-0">
|
||||
<div className="flex h-10 w-10 items-center justify-center rounded-lg bg-primary/10">
|
||||
<FileTextIcon className="h-5 w-5 text-primary" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="flex flex-shrink-0 items-center gap-2">
|
||||
{!isQrToken && (
|
||||
<div className="min-w-0 flex-1">
|
||||
{/* Todo: Envelopes - Fix overflow */}
|
||||
<h4 className="truncate font-medium text-foreground text-sm" title={item.title}>
|
||||
{item.title}
|
||||
</h4>
|
||||
<p className="mt-0.5 text-muted-foreground text-xs">
|
||||
<Trans>PDF Document</Trans>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="flex flex-shrink-0 items-center gap-2">
|
||||
<Button
|
||||
variant="outline"
|
||||
size="sm"
|
||||
@@ -208,26 +207,24 @@ export const EnvelopeDownloadDialog = ({
|
||||
)}
|
||||
<Trans context="Original document (adjective)">Original</Trans>
|
||||
</Button>
|
||||
)}
|
||||
|
||||
{secondaryDownload && (
|
||||
<Button
|
||||
variant="default"
|
||||
size="sm"
|
||||
className="text-xs"
|
||||
onClick={async () => onDownload(item, secondaryDownload.version)}
|
||||
loading={isDownloadingState[generateDownloadKey(item.id, secondaryDownload.version)]}
|
||||
>
|
||||
{!isDownloadingState[generateDownloadKey(item.id, secondaryDownload.version)] && (
|
||||
<DownloadIcon className="mr-2 h-4 w-4" />
|
||||
)}
|
||||
{secondaryDownload.label}
|
||||
</Button>
|
||||
)}
|
||||
{secondaryDownload && (
|
||||
<Button
|
||||
variant="default"
|
||||
size="sm"
|
||||
className="text-xs"
|
||||
onClick={async () => onDownload(item, secondaryDownload.version)}
|
||||
loading={isDownloadingState[generateDownloadKey(item.id, secondaryDownload.version)]}
|
||||
>
|
||||
{!isDownloadingState[generateDownloadKey(item.id, secondaryDownload.version)] && (
|
||||
<DownloadIcon className="mr-2 h-4 w-4" />
|
||||
)}
|
||||
{secondaryDownload.label}
|
||||
</Button>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
))
|
||||
)}
|
||||
))}
|
||||
</div>
|
||||
</DialogContent>
|
||||
</Dialog>
|
||||
|
||||
@@ -58,7 +58,6 @@ export type TDocumentPreferencesFormSchema = {
|
||||
documentDateFormat: TDocumentMetaDateFormat | null;
|
||||
includeSenderDetails: boolean | null;
|
||||
includeSigningCertificate: boolean | null;
|
||||
allowPublicCompletedDocumentAccess: boolean | null;
|
||||
includeAuditLog: boolean | null;
|
||||
signatureTypes: DocumentSignatureType[];
|
||||
defaultRecipients: TDefaultRecipients | null;
|
||||
@@ -76,7 +75,6 @@ type SettingsSubset = Pick<
|
||||
| 'documentDateFormat'
|
||||
| 'includeSenderDetails'
|
||||
| 'includeSigningCertificate'
|
||||
| 'allowPublicCompletedDocumentAccess'
|
||||
| 'includeAuditLog'
|
||||
| 'typedSignatureEnabled'
|
||||
| 'uploadSignatureEnabled'
|
||||
@@ -118,7 +116,6 @@ export const DocumentPreferencesForm = ({
|
||||
documentDateFormat: ZDocumentMetaTimezoneSchema.nullable(),
|
||||
includeSenderDetails: z.boolean().nullable(),
|
||||
includeSigningCertificate: z.boolean().nullable(),
|
||||
allowPublicCompletedDocumentAccess: z.boolean().nullable(),
|
||||
includeAuditLog: z.boolean().nullable(),
|
||||
signatureTypes: z.array(z.nativeEnum(DocumentSignatureType)).min(canInherit ? 0 : 1, {
|
||||
message: msg`At least one signature type must be enabled`.id,
|
||||
@@ -139,7 +136,6 @@ export const DocumentPreferencesForm = ({
|
||||
documentDateFormat: settings.documentDateFormat as TDocumentMetaDateFormat | null,
|
||||
includeSenderDetails: settings.includeSenderDetails,
|
||||
includeSigningCertificate: settings.includeSigningCertificate,
|
||||
allowPublicCompletedDocumentAccess: settings.allowPublicCompletedDocumentAccess,
|
||||
includeAuditLog: settings.includeAuditLog,
|
||||
signatureTypes: extractTeamSignatureSettings({ ...settings }),
|
||||
defaultRecipients: settings.defaultRecipients ? ZDefaultRecipientsSchema.parse(settings.defaultRecipients) : null,
|
||||
@@ -487,58 +483,6 @@ export const DocumentPreferencesForm = ({
|
||||
)}
|
||||
/>
|
||||
|
||||
<FormField
|
||||
control={form.control}
|
||||
name="allowPublicCompletedDocumentAccess"
|
||||
render={({ field }) => (
|
||||
<FormItem className="flex-1">
|
||||
<FormLabel>
|
||||
<Trans>Allow Public Access to Completed Documents via QR/Share Link</Trans>
|
||||
</FormLabel>
|
||||
|
||||
<FormControl>
|
||||
<Select
|
||||
{...field}
|
||||
value={field.value === null ? '-1' : field.value.toString()}
|
||||
onValueChange={(value) =>
|
||||
field.onChange(value === 'true' ? true : value === 'false' ? false : null)
|
||||
}
|
||||
>
|
||||
<SelectTrigger
|
||||
className="bg-background text-muted-foreground"
|
||||
data-testid="allow-public-completed-document-access-trigger"
|
||||
>
|
||||
<SelectValue />
|
||||
</SelectTrigger>
|
||||
|
||||
<SelectContent>
|
||||
<SelectItem value="true">
|
||||
<Trans>Yes</Trans>
|
||||
</SelectItem>
|
||||
|
||||
<SelectItem value="false">
|
||||
<Trans>No</Trans>
|
||||
</SelectItem>
|
||||
|
||||
{canInherit && (
|
||||
<SelectItem value={'-1'}>
|
||||
<Trans>Inherit from organisation</Trans>
|
||||
</SelectItem>
|
||||
)}
|
||||
</SelectContent>
|
||||
</Select>
|
||||
</FormControl>
|
||||
|
||||
<FormDescription>
|
||||
<Trans>
|
||||
Controls whether recipients can open completed documents online through QR/share links, including
|
||||
recipients outside your team.
|
||||
</Trans>
|
||||
</FormDescription>
|
||||
</FormItem>
|
||||
)}
|
||||
/>
|
||||
|
||||
<FormField
|
||||
control={form.control}
|
||||
name="includeAuditLog"
|
||||
|
||||
@@ -96,7 +96,7 @@ export const SignUpForm = ({
|
||||
password: '',
|
||||
signature: '',
|
||||
},
|
||||
mode: 'onBlur',
|
||||
mode: 'onChange',
|
||||
resolver: zodResolver(ZSignUpFormSchema),
|
||||
});
|
||||
|
||||
|
||||
@@ -2,7 +2,6 @@ import {
|
||||
EnvelopeRenderProvider,
|
||||
useCurrentEnvelopeRender,
|
||||
} from '@documenso/lib/client-only/providers/envelope-render-provider';
|
||||
import { useOptionalSession } from '@documenso/lib/client-only/providers/session';
|
||||
import { PDF_VIEWER_ERROR_MESSAGES } from '@documenso/lib/constants/pdf-viewer-i18n';
|
||||
import { getDocumentDataUrlForPdfViewer } from '@documenso/lib/utils/envelope-download';
|
||||
import { formatDocumentsPath } from '@documenso/lib/utils/teams';
|
||||
@@ -50,9 +49,9 @@ export const DocumentCertificateQRView = ({
|
||||
completedDate,
|
||||
token,
|
||||
}: DocumentCertificateQRViewProps) => {
|
||||
const { sessionData } = useOptionalSession();
|
||||
|
||||
const { data: documentViaUser } = trpc.document.get.useQuery({ documentId }, { enabled: !!sessionData?.user });
|
||||
const { data: documentViaUser } = trpc.document.get.useQuery({
|
||||
documentId,
|
||||
});
|
||||
|
||||
const [isDialogOpen, setIsDialogOpen] = useState(() => !!documentViaUser);
|
||||
|
||||
@@ -207,9 +206,7 @@ const DocumentCertificateQrV2 = ({ title, recipientCount, formattedDate, token }
|
||||
</div>
|
||||
|
||||
<div className="mt-12 w-full">
|
||||
{envelopeItems.length > 1 && (
|
||||
<EnvelopeRendererFileSelector className="mb-4 p-0" fields={[]} secondaryOverride={''} />
|
||||
)}
|
||||
<EnvelopeRendererFileSelector className="mb-4 p-0" fields={[]} secondaryOverride={''} />
|
||||
|
||||
<EnvelopePdfViewer
|
||||
scrollParentRef="window"
|
||||
|
||||
@@ -53,7 +53,6 @@ export default function OrganisationSettingsDocumentPage() {
|
||||
documentDateFormat,
|
||||
includeSenderDetails,
|
||||
includeSigningCertificate,
|
||||
allowPublicCompletedDocumentAccess,
|
||||
includeAuditLog,
|
||||
signatureTypes,
|
||||
defaultRecipients,
|
||||
@@ -69,7 +68,6 @@ export default function OrganisationSettingsDocumentPage() {
|
||||
documentDateFormat === null ||
|
||||
includeSenderDetails === null ||
|
||||
includeSigningCertificate === null ||
|
||||
allowPublicCompletedDocumentAccess === null ||
|
||||
includeAuditLog === null ||
|
||||
aiFeaturesEnabled === null
|
||||
) {
|
||||
@@ -85,7 +83,6 @@ export default function OrganisationSettingsDocumentPage() {
|
||||
documentDateFormat,
|
||||
includeSenderDetails,
|
||||
includeSigningCertificate,
|
||||
allowPublicCompletedDocumentAccess,
|
||||
includeAuditLog,
|
||||
defaultRecipients,
|
||||
typedSignatureEnabled: signatureTypes.includes(DocumentSignatureType.TYPE),
|
||||
|
||||
@@ -48,7 +48,6 @@ export default function TeamsSettingsPage() {
|
||||
documentDateFormat,
|
||||
includeSenderDetails,
|
||||
includeSigningCertificate,
|
||||
allowPublicCompletedDocumentAccess,
|
||||
includeAuditLog,
|
||||
signatureTypes,
|
||||
defaultRecipients,
|
||||
@@ -67,7 +66,6 @@ export default function TeamsSettingsPage() {
|
||||
documentDateFormat,
|
||||
includeSenderDetails,
|
||||
includeSigningCertificate,
|
||||
allowPublicCompletedDocumentAccess,
|
||||
includeAuditLog,
|
||||
defaultRecipients,
|
||||
aiFeaturesEnabled,
|
||||
|
||||
@@ -16,11 +16,11 @@ import { SigningCard3D } from '@documenso/ui/components/signing-card';
|
||||
import { cn } from '@documenso/ui/lib/utils';
|
||||
import { Badge } from '@documenso/ui/primitives/badge';
|
||||
import { Button } from '@documenso/ui/primitives/button';
|
||||
import { useLingui } from '@lingui/react';
|
||||
import { Trans } from '@lingui/react/macro';
|
||||
import { DocumentStatus, FieldType, RecipientRole } from '@prisma/client';
|
||||
import { CheckCircle2, Clock8, DownloadIcon, EyeIcon, Loader2 } from 'lucide-react';
|
||||
import { useCallback, useEffect, useState } from 'react';
|
||||
import { Link, useRevalidator } from 'react-router';
|
||||
import { CheckCircle2, Clock8, DownloadIcon, Loader2 } from 'lucide-react';
|
||||
import { Link } from 'react-router';
|
||||
import { match } from 'ts-pattern';
|
||||
|
||||
import { EnvelopeDownloadDialog } from '~/components/dialogs/envelope-download-dialog';
|
||||
@@ -31,8 +31,6 @@ import { useCspNonce } from '~/utils/nonce';
|
||||
|
||||
import type { Route } from './+types/complete';
|
||||
|
||||
const MAX_QR_RETRY_COUNT = 4;
|
||||
|
||||
export async function loader({ params, request }: Route.LoaderArgs) {
|
||||
const { user } = await getOptionalSession(request);
|
||||
|
||||
@@ -105,26 +103,32 @@ export async function loader({ params, request }: Route.LoaderArgs) {
|
||||
}
|
||||
|
||||
export default function CompletedSigningPage({ loaderData }: Route.ComponentProps) {
|
||||
const revalidator = useRevalidator();
|
||||
const { _ } = useLingui();
|
||||
|
||||
const { sessionData } = useOptionalSession();
|
||||
const user = sessionData?.user;
|
||||
const cspNonce = useCspNonce();
|
||||
|
||||
const { isDocumentAccessValid, recipientEmail, branding } = loaderData;
|
||||
const signingStatusToken = isDocumentAccessValid ? loaderData.recipient.token : '';
|
||||
const initialSigningStatus = isDocumentAccessValid ? loaderData.document.status : DocumentStatus.PENDING;
|
||||
const {
|
||||
isDocumentAccessValid,
|
||||
canSignUp,
|
||||
recipientName,
|
||||
signatures,
|
||||
document,
|
||||
recipient,
|
||||
recipientEmail,
|
||||
returnToHomePath,
|
||||
branding,
|
||||
} = loaderData;
|
||||
|
||||
// Poll signing status every few seconds
|
||||
const { data: signingStatusData } = trpc.envelope.signingStatus.useQuery(
|
||||
{
|
||||
token: signingStatusToken,
|
||||
token: recipient?.token || '',
|
||||
},
|
||||
{
|
||||
refetchInterval: (query) => {
|
||||
const status = query.state.data?.status;
|
||||
return status === 'COMPLETED' || status === 'REJECTED' ? false : 3000;
|
||||
},
|
||||
initialData: match(initialSigningStatus)
|
||||
refetchInterval: 3000,
|
||||
initialData: match(document?.status)
|
||||
.with(DocumentStatus.COMPLETED, () => ({ status: 'COMPLETED' }) as const)
|
||||
.with(DocumentStatus.REJECTED, () => ({ status: 'REJECTED' }) as const)
|
||||
.with(DocumentStatus.PENDING, () => ({ status: 'PENDING' }) as const)
|
||||
@@ -132,56 +136,9 @@ export default function CompletedSigningPage({ loaderData }: Route.ComponentProp
|
||||
},
|
||||
);
|
||||
|
||||
// Use signing status from query if available, otherwise fall back to document status
|
||||
const signingStatus = signingStatusData?.status ?? 'PENDING';
|
||||
|
||||
const [qrRetryCount, setQrRetryCount] = useState(0);
|
||||
const [isRetryingQrLink, setIsRetryingQrLink] = useState(false);
|
||||
|
||||
const onRetryQrLink = useCallback(async () => {
|
||||
if (!isDocumentAccessValid) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (qrRetryCount >= MAX_QR_RETRY_COUNT) {
|
||||
return;
|
||||
}
|
||||
|
||||
setIsRetryingQrLink(true);
|
||||
|
||||
const nextRetryCount = qrRetryCount + 1;
|
||||
const retryDelay = Math.min(250 * 2 ** nextRetryCount, 3000);
|
||||
|
||||
await new Promise<void>((resolve) => {
|
||||
setTimeout(resolve, retryDelay);
|
||||
});
|
||||
|
||||
setQrRetryCount(nextRetryCount);
|
||||
|
||||
try {
|
||||
await revalidator.revalidate();
|
||||
} finally {
|
||||
setIsRetryingQrLink(false);
|
||||
}
|
||||
}, [isDocumentAccessValid, qrRetryCount, revalidator]);
|
||||
|
||||
const isFullyCompleted = isDocumentAccessValid && signingStatus === 'COMPLETED';
|
||||
const hasQrToken = isDocumentAccessValid && Boolean(loaderData.document.qrToken);
|
||||
const supportCode = isDocumentAccessValid ? `QR-${loaderData.document.id}-${loaderData.recipient.id}` : '';
|
||||
|
||||
useEffect(() => {
|
||||
if (
|
||||
!isFullyCompleted ||
|
||||
hasQrToken ||
|
||||
isRetryingQrLink ||
|
||||
revalidator.state !== 'idle' ||
|
||||
qrRetryCount >= MAX_QR_RETRY_COUNT
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
||||
void onRetryQrLink();
|
||||
}, [hasQrToken, isFullyCompleted, isRetryingQrLink, onRetryQrLink, qrRetryCount, revalidator]);
|
||||
|
||||
if (!isDocumentAccessValid) {
|
||||
return (
|
||||
<>
|
||||
@@ -191,8 +148,6 @@ export default function CompletedSigningPage({ loaderData }: Route.ComponentProp
|
||||
);
|
||||
}
|
||||
|
||||
const { canSignUp, recipientName, signatures, document, recipient, returnToHomePath } = loaderData;
|
||||
|
||||
return (
|
||||
<>
|
||||
<RecipientBranding branding={branding} cspNonce={cspNonce} />
|
||||
@@ -294,40 +249,6 @@ export default function CompletedSigningPage({ loaderData }: Route.ComponentProp
|
||||
))}
|
||||
|
||||
<div className="mt-8 flex w-full max-w-xs flex-col items-stretch gap-4 md:w-auto md:max-w-none md:flex-row md:items-center">
|
||||
{isFullyCompleted && hasQrToken && (
|
||||
<Button asChild variant="secondary" className="w-full">
|
||||
<Link to={`/share/${document.qrToken}`} target="_blank" rel="noopener noreferrer">
|
||||
<EyeIcon className="mr-2 h-5 w-5" />
|
||||
<Trans>View completed PDF</Trans>
|
||||
</Link>
|
||||
</Button>
|
||||
)}
|
||||
|
||||
{isFullyCompleted && !hasQrToken && (
|
||||
<div className="w-full rounded-md border border-orange-200 bg-orange-50 p-3 text-left text-orange-900 text-sm md:max-w-sm">
|
||||
<p>
|
||||
<Trans>We are preparing your online PDF view. If it does not appear, retry below.</Trans>
|
||||
</p>
|
||||
|
||||
<div className="mt-2 flex items-center justify-between gap-2">
|
||||
<span className="font-medium text-orange-700 text-xs uppercase tracking-wide">
|
||||
<Trans>Support code</Trans>: {supportCode}
|
||||
</span>
|
||||
|
||||
<Button
|
||||
type="button"
|
||||
variant="outline"
|
||||
size="sm"
|
||||
loading={isRetryingQrLink || revalidator.state === 'loading'}
|
||||
disabled={qrRetryCount >= MAX_QR_RETRY_COUNT}
|
||||
onClick={() => void onRetryQrLink()}
|
||||
>
|
||||
<Trans>Retry</Trans>
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
<DocumentShareButton
|
||||
documentId={document.id}
|
||||
token={recipient.token}
|
||||
|
||||
@@ -1,27 +1,14 @@
|
||||
import { NEXT_PUBLIC_WEBAPP_URL } from '@documenso/lib/constants/app';
|
||||
import { AppError, AppErrorCode } from '@documenso/lib/errors/app-error';
|
||||
import { getDocumentByAccessToken } from '@documenso/lib/server-only/document/get-document-by-access-token';
|
||||
import { qrShareViewRateLimit } from '@documenso/lib/server-only/rate-limit/rate-limits';
|
||||
import { tokenFingerprint } from '@documenso/lib/universal/crypto';
|
||||
import { extractRequestMetadata } from '@documenso/lib/universal/extract-request-metadata';
|
||||
import { logger } from '@documenso/lib/utils/logger';
|
||||
import { Button } from '@documenso/ui/primitives/button';
|
||||
import { Trans } from '@lingui/react/macro';
|
||||
import { AlertCircle } from 'lucide-react';
|
||||
import { nanoid } from 'nanoid';
|
||||
import { isRouteErrorResponse, Link, redirect, useLoaderData } from 'react-router';
|
||||
import { match } from 'ts-pattern';
|
||||
import { redirect, useLoaderData } from 'react-router';
|
||||
|
||||
import { DocumentCertificateQRView } from '~/components/general/document/document-certificate-qr-view';
|
||||
import { appMetaTags } from '~/utils/meta';
|
||||
|
||||
import type { Route } from './+types/share.$slug';
|
||||
|
||||
export function meta({ params: { slug }, loaderData }: Route.MetaArgs) {
|
||||
export function meta({ params: { slug } }: Route.MetaArgs) {
|
||||
if (slug.startsWith('qr_')) {
|
||||
const documentTitle = loaderData?.document?.title ?? 'Shared Document';
|
||||
|
||||
return [...appMetaTags(documentTitle), { name: 'robots', content: 'noindex, nofollow' }];
|
||||
return undefined;
|
||||
}
|
||||
|
||||
return [
|
||||
@@ -62,155 +49,18 @@ export function meta({ params: { slug }, loaderData }: Route.MetaArgs) {
|
||||
];
|
||||
}
|
||||
|
||||
type TQrShareErrorPayload = {
|
||||
code: string;
|
||||
correlationId: string;
|
||||
};
|
||||
|
||||
const createQrShareErrorResponse = ({
|
||||
status,
|
||||
code,
|
||||
correlationId,
|
||||
headers,
|
||||
}: {
|
||||
status: number;
|
||||
code: string;
|
||||
correlationId: string;
|
||||
headers?: HeadersInit;
|
||||
}) => {
|
||||
return new Response(
|
||||
JSON.stringify({
|
||||
code,
|
||||
correlationId,
|
||||
} satisfies TQrShareErrorPayload),
|
||||
{
|
||||
status,
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'X-Documenso-Error-Code': code,
|
||||
...headers,
|
||||
},
|
||||
},
|
||||
);
|
||||
};
|
||||
|
||||
const parseQrShareErrorPayload = (value: unknown): TQrShareErrorPayload | null => {
|
||||
if (!value || typeof value !== 'string') {
|
||||
return null;
|
||||
}
|
||||
|
||||
try {
|
||||
const parsed = JSON.parse(value);
|
||||
|
||||
if (typeof parsed.code === 'string' && typeof parsed.correlationId === 'string') {
|
||||
return parsed;
|
||||
}
|
||||
|
||||
return null;
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
};
|
||||
|
||||
export const loader = async ({ request, params: { slug } }: Route.LoaderArgs) => {
|
||||
if (slug.startsWith('qr_')) {
|
||||
const correlationId = request.headers.get('x-request-id') ?? nanoid(12);
|
||||
const requestMetadata = extractRequestMetadata(request);
|
||||
const rateLimitResult = await qrShareViewRateLimit.check({
|
||||
ip: requestMetadata.ipAddress ?? 'unknown',
|
||||
identifier: tokenFingerprint(slug),
|
||||
});
|
||||
const document = await getDocumentByAccessToken({ token: slug });
|
||||
|
||||
if (rateLimitResult.isLimited) {
|
||||
const retryAfter = String(Math.max(1, Math.ceil((rateLimitResult.reset.getTime() - Date.now()) / 1000)));
|
||||
|
||||
logger.warn({
|
||||
msg: 'QR share access throttled',
|
||||
documentId: null,
|
||||
recipientId: null,
|
||||
result: 'deny',
|
||||
denyReasonCode: 'QR_VIEW_RATE_LIMITED',
|
||||
correlationId,
|
||||
ipAddress: requestMetadata.ipAddress,
|
||||
userAgent: requestMetadata.userAgent,
|
||||
});
|
||||
|
||||
throw createQrShareErrorResponse({
|
||||
status: 429,
|
||||
code: 'QR_VIEW_RATE_LIMITED',
|
||||
correlationId,
|
||||
headers: {
|
||||
'Retry-After': retryAfter,
|
||||
'X-RateLimit-Limit': String(rateLimitResult.limit),
|
||||
'X-RateLimit-Remaining': String(rateLimitResult.remaining),
|
||||
'X-RateLimit-Reset': String(Math.ceil(rateLimitResult.reset.getTime() / 1000)),
|
||||
},
|
||||
});
|
||||
if (!document) {
|
||||
throw redirect('/');
|
||||
}
|
||||
|
||||
try {
|
||||
const document = await getDocumentByAccessToken({ token: slug });
|
||||
|
||||
logger.info({
|
||||
msg: 'QR share access allowed',
|
||||
documentId: document.id,
|
||||
recipientId: null,
|
||||
result: 'allow',
|
||||
denyReasonCode: null,
|
||||
correlationId,
|
||||
ipAddress: requestMetadata.ipAddress,
|
||||
userAgent: requestMetadata.userAgent,
|
||||
});
|
||||
|
||||
return {
|
||||
document,
|
||||
token: slug,
|
||||
};
|
||||
} catch (error) {
|
||||
const appError = AppError.parseError(error);
|
||||
|
||||
const { status, code } = match(appError)
|
||||
.when(
|
||||
(e) => e.code === AppErrorCode.NOT_FOUND,
|
||||
() => ({ status: 404, code: 'QR_VIEW_NOT_FOUND' }),
|
||||
)
|
||||
.when(
|
||||
(e) => e.code === AppErrorCode.INVALID_REQUEST,
|
||||
() => ({ status: 409, code: 'QR_VIEW_NOT_COMPLETED' }),
|
||||
)
|
||||
.when(
|
||||
(e) => e.code === AppErrorCode.UNAUTHORIZED && e.statusCode === 403,
|
||||
() => ({ status: 403, code: 'QR_VIEW_DISABLED' }),
|
||||
)
|
||||
.when(
|
||||
(e) => e.code === AppErrorCode.UNAUTHORIZED,
|
||||
() => ({ status: 401, code: 'QR_VIEW_UNAUTHORIZED' }),
|
||||
)
|
||||
.otherwise(() => ({ status: 500, code: 'QR_VIEW_INTERNAL_ERROR' }));
|
||||
|
||||
logger.warn({
|
||||
msg: 'QR share access denied',
|
||||
documentId: null,
|
||||
recipientId: null,
|
||||
result: 'deny',
|
||||
denyReasonCode: code,
|
||||
correlationId,
|
||||
ipAddress: requestMetadata.ipAddress,
|
||||
userAgent: requestMetadata.userAgent,
|
||||
});
|
||||
|
||||
// Unknown/invalid tokens keep the pre-existing public contract of
|
||||
// redirecting home. Policy denials below render status-coded pages.
|
||||
if (code === 'QR_VIEW_NOT_FOUND') {
|
||||
throw redirect('/');
|
||||
}
|
||||
|
||||
throw createQrShareErrorResponse({
|
||||
status,
|
||||
code,
|
||||
correlationId,
|
||||
});
|
||||
}
|
||||
return {
|
||||
document,
|
||||
token: slug,
|
||||
};
|
||||
}
|
||||
|
||||
const userAgent = request.headers.get('User-Agent') ?? '';
|
||||
@@ -241,45 +91,5 @@ export default function SharePage() {
|
||||
);
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
const qrShareErrorMessage = (code: string | undefined) =>
|
||||
match(code)
|
||||
.with('QR_VIEW_NOT_FOUND', () => <Trans>The shared document could not be found.</Trans>)
|
||||
.with('QR_VIEW_NOT_COMPLETED', () => <Trans>This document is not fully completed yet.</Trans>)
|
||||
.with('QR_VIEW_DISABLED', () => <Trans>Public completed-document access is currently disabled.</Trans>)
|
||||
.with('QR_VIEW_UNAUTHORIZED', () => <Trans>You are not authorized to view this document.</Trans>)
|
||||
.with('QR_VIEW_RATE_LIMITED', () => <Trans>Too many requests. Please try again shortly.</Trans>)
|
||||
.otherwise(() => <Trans>Something went wrong while opening this shared view.</Trans>);
|
||||
|
||||
export function ErrorBoundary({ error }: Route.ErrorBoundaryProps) {
|
||||
const payload = isRouteErrorResponse(error) ? parseQrShareErrorPayload(error.data) : null;
|
||||
|
||||
return (
|
||||
<div className="flex flex-col items-center">
|
||||
<div className="flex items-center gap-x-4">
|
||||
<AlertCircle className="size-10 self-start text-destructive" />
|
||||
|
||||
<div className="flex flex-col gap-2">
|
||||
<h2 className="font-semibold text-2xl leading-normal md:text-3xl lg:text-4xl">
|
||||
<Trans>Unable to Open Document</Trans>
|
||||
</h2>
|
||||
<p className="text-muted-foreground text-sm">{qrShareErrorMessage(payload?.code)}</p>
|
||||
|
||||
{payload?.correlationId && (
|
||||
<p className="mt-4 font-medium text-muted-foreground text-xs uppercase tracking-wide">
|
||||
<Trans>Support code: {payload.correlationId}</Trans>
|
||||
</p>
|
||||
)}
|
||||
|
||||
<Button className="mt-6 w-fit" asChild>
|
||||
<Link to="/">
|
||||
<Trans>Return Home</Trans>
|
||||
</Link>
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
return <div></div>;
|
||||
}
|
||||
|
||||
@@ -1,15 +1,13 @@
|
||||
import { NEXT_PUBLIC_WEBAPP_URL } from '@documenso/lib/constants/app';
|
||||
import { i18n, type MessageDescriptor } from '@lingui/core';
|
||||
|
||||
export const appMetaTags = (title?: MessageDescriptor | string) => {
|
||||
export const appMetaTags = (title?: MessageDescriptor) => {
|
||||
const description =
|
||||
'Join Documenso, the open signing infrastructure, and get a 10x better signing experience. Pricing starts at $30/mo. forever! Sign in now and enjoy a faster, smarter, and more beautiful document signing process. Integrates with your favorite tools, customizable, and expandable. Support our mission and become a part of our open-source community.';
|
||||
|
||||
const resolvedTitle = typeof title === 'string' ? title : title ? i18n._(title) : undefined;
|
||||
|
||||
return [
|
||||
{
|
||||
title: resolvedTitle ? `${resolvedTitle} - Documenso` : 'Documenso',
|
||||
title: title ? `${i18n._(title)} - Documenso` : 'Documenso',
|
||||
},
|
||||
{
|
||||
name: 'description',
|
||||
|
||||
@@ -36,8 +36,8 @@
|
||||
"@lingui/react": "^5.6.0",
|
||||
"@oslojs/crypto": "^1.0.1",
|
||||
"@oslojs/encoding": "^1.1.0",
|
||||
"@react-router/node": "^7.12.0",
|
||||
"@react-router/serve": "^7.12.0",
|
||||
"@react-router/node": "^7.18.1",
|
||||
"@react-router/serve": "^7.18.1",
|
||||
"@simplewebauthn/browser": "^13.2.2",
|
||||
"@simplewebauthn/server": "^13.2.2",
|
||||
"@tanstack/react-query": "5.90.10",
|
||||
@@ -81,8 +81,8 @@
|
||||
"@babel/preset-typescript": "^7.28.5",
|
||||
"@lingui/babel-plugin-lingui-macro": "^5.6.0",
|
||||
"@lingui/vite-plugin": "^5.6.0",
|
||||
"@react-router/dev": "^7.12.0",
|
||||
"@react-router/remix-routes-option-adapter": "^7.12.0",
|
||||
"@react-router/dev": "^7.18.1",
|
||||
"@react-router/remix-routes-option-adapter": "^7.18.1",
|
||||
"@rollup/plugin-babel": "^6.1.0",
|
||||
"@rollup/plugin-commonjs": "^28.0.9",
|
||||
"@rollup/plugin-json": "^6.1.0",
|
||||
|
||||
@@ -2,16 +2,11 @@ import { getOptionalSession } from '@documenso/auth/server/lib/utils/get-session
|
||||
import { APP_DOCUMENT_UPLOAD_SIZE_LIMIT } from '@documenso/lib/constants/app';
|
||||
import { AppError } from '@documenso/lib/errors/app-error';
|
||||
import { verifyEmbeddingPresignToken } from '@documenso/lib/server-only/embedding-presign/verify-embedding-presign-token';
|
||||
import { rateLimitResponse } from '@documenso/lib/server-only/rate-limit/rate-limit-middleware';
|
||||
import { qrShareViewRateLimit } from '@documenso/lib/server-only/rate-limit/rate-limits';
|
||||
import { tokenFingerprint } from '@documenso/lib/universal/crypto';
|
||||
import { isPublicDocumentAccessEnabled } from '@documenso/lib/universal/document-access';
|
||||
import { getIpAddress } from '@documenso/lib/universal/get-ip-address';
|
||||
import { putNormalizedPdfFileServerSide } from '@documenso/lib/universal/upload/put-file.server';
|
||||
import { prisma } from '@documenso/prisma';
|
||||
import { sValidator } from '@hono/standard-validator';
|
||||
import { DocumentStatus, type Prisma } from '@prisma/client';
|
||||
import { type Context, Hono } from 'hono';
|
||||
import type { Prisma } from '@prisma/client';
|
||||
import { Hono } from 'hono';
|
||||
|
||||
import type { HonoEnv } from '../../router';
|
||||
import { checkEnvelopeFileAccess, handleEnvelopeItemFileRequest, resolveFileUploadUserId } from './files.helpers';
|
||||
@@ -26,101 +21,6 @@ import {
|
||||
import getEnvelopeItemPdfRoute from './routes/get-envelope-item-pdf';
|
||||
import getEnvelopeItemPdfByTokenRoute from './routes/get-envelope-item-pdf-by-token';
|
||||
|
||||
const envelopeItemTokenInclude = {
|
||||
envelope: {
|
||||
include: {
|
||||
team: {
|
||||
include: {
|
||||
teamGlobalSettings: {
|
||||
select: {
|
||||
allowPublicCompletedDocumentAccess: true,
|
||||
},
|
||||
},
|
||||
organisation: {
|
||||
include: {
|
||||
organisationGlobalSettings: {
|
||||
select: {
|
||||
allowPublicCompletedDocumentAccess: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
documentData: true,
|
||||
} as const;
|
||||
|
||||
const maybeApplyQrRateLimit = async (c: Context<HonoEnv>, token: string) => {
|
||||
let ip: string;
|
||||
|
||||
try {
|
||||
ip = getIpAddress(c.req.raw);
|
||||
} catch {
|
||||
ip = 'unknown';
|
||||
}
|
||||
|
||||
const result = await qrShareViewRateLimit.check({
|
||||
ip,
|
||||
identifier: tokenFingerprint(token),
|
||||
});
|
||||
|
||||
return rateLimitResponse(c, result);
|
||||
};
|
||||
|
||||
const getEnvelopeItemByToken = async (c: Context<HonoEnv>, token: string, envelopeItemId: string) => {
|
||||
const isQrToken = token.startsWith('qr_');
|
||||
|
||||
if (isQrToken) {
|
||||
const limited = await maybeApplyQrRateLimit(c, token);
|
||||
|
||||
if (limited) {
|
||||
return { limited } as const;
|
||||
}
|
||||
}
|
||||
|
||||
const envelopeWhereQuery: Prisma.EnvelopeItemWhereUniqueInput = isQrToken
|
||||
? {
|
||||
id: envelopeItemId,
|
||||
envelope: {
|
||||
qrToken: token,
|
||||
status: DocumentStatus.COMPLETED,
|
||||
},
|
||||
}
|
||||
: {
|
||||
id: envelopeItemId,
|
||||
envelope: {
|
||||
recipients: {
|
||||
some: {
|
||||
token,
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
const envelopeItem = await prisma.envelopeItem.findUnique({
|
||||
where: envelopeWhereQuery,
|
||||
include: envelopeItemTokenInclude,
|
||||
});
|
||||
|
||||
if (!envelopeItem) {
|
||||
return { error: c.json({ error: 'Envelope item not found' }, 404) } as const;
|
||||
}
|
||||
|
||||
if (isQrToken && !isPublicDocumentAccessEnabled(envelopeItem.envelope.team)) {
|
||||
return {
|
||||
error: c.json({ error: 'Public completed-document access is disabled for this document' }, 403),
|
||||
} as const;
|
||||
}
|
||||
|
||||
if (!envelopeItem.documentData) {
|
||||
return { error: c.json({ error: 'Document data not found' }, 404) } as const;
|
||||
}
|
||||
|
||||
return { envelopeItem, isQrToken } as const;
|
||||
};
|
||||
|
||||
export const filesRoute = new Hono<HonoEnv>()
|
||||
/**
|
||||
* Uploads a document file to the appropriate storage location and creates
|
||||
@@ -339,20 +239,46 @@ export const filesRoute = new Hono<HonoEnv>()
|
||||
async (c) => {
|
||||
const { token, envelopeItemId } = c.req.valid('param');
|
||||
|
||||
const result = await getEnvelopeItemByToken(c, token, envelopeItemId);
|
||||
let envelopeWhereQuery: Prisma.EnvelopeItemWhereUniqueInput = {
|
||||
id: envelopeItemId,
|
||||
envelope: {
|
||||
recipients: {
|
||||
some: {
|
||||
token,
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
if ('limited' in result) {
|
||||
return result.limited;
|
||||
if (token.startsWith('qr_')) {
|
||||
envelopeWhereQuery = {
|
||||
id: envelopeItemId,
|
||||
envelope: {
|
||||
qrToken: token,
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
if ('error' in result) {
|
||||
return result.error;
|
||||
const envelopeItem = await prisma.envelopeItem.findUnique({
|
||||
where: envelopeWhereQuery,
|
||||
include: {
|
||||
envelope: true,
|
||||
documentData: true,
|
||||
},
|
||||
});
|
||||
|
||||
if (!envelopeItem) {
|
||||
return c.json({ error: 'Envelope item not found' }, 404);
|
||||
}
|
||||
|
||||
if (!envelopeItem.documentData) {
|
||||
return c.json({ error: 'Document data not found' }, 404);
|
||||
}
|
||||
|
||||
return await handleEnvelopeItemFileRequest({
|
||||
title: result.envelopeItem.title,
|
||||
status: result.envelopeItem.envelope.status,
|
||||
documentData: result.envelopeItem.documentData!,
|
||||
title: envelopeItem.title,
|
||||
status: envelopeItem.envelope.status,
|
||||
documentData: envelopeItem.documentData,
|
||||
version: 'signed',
|
||||
isDownload: false,
|
||||
context: c,
|
||||
@@ -365,23 +291,47 @@ export const filesRoute = new Hono<HonoEnv>()
|
||||
async (c) => {
|
||||
const { token, envelopeItemId, version } = c.req.valid('param');
|
||||
|
||||
const result = await getEnvelopeItemByToken(c, token, envelopeItemId);
|
||||
let envelopeWhereQuery: Prisma.EnvelopeItemWhereUniqueInput = {
|
||||
id: envelopeItemId,
|
||||
envelope: {
|
||||
recipients: {
|
||||
some: {
|
||||
token,
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
if ('limited' in result) {
|
||||
return result.limited;
|
||||
if (token.startsWith('qr_')) {
|
||||
envelopeWhereQuery = {
|
||||
id: envelopeItemId,
|
||||
envelope: {
|
||||
qrToken: token,
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
if ('error' in result) {
|
||||
return result.error;
|
||||
const envelopeItem = await prisma.envelopeItem.findUnique({
|
||||
where: envelopeWhereQuery,
|
||||
include: {
|
||||
envelope: true,
|
||||
documentData: true,
|
||||
},
|
||||
});
|
||||
|
||||
if (!envelopeItem) {
|
||||
return c.json({ error: 'Envelope item not found' }, 404);
|
||||
}
|
||||
|
||||
const effectiveVersion = result.isQrToken ? 'signed' : version;
|
||||
if (!envelopeItem.documentData) {
|
||||
return c.json({ error: 'Document data not found' }, 404);
|
||||
}
|
||||
|
||||
return await handleEnvelopeItemFileRequest({
|
||||
title: result.envelopeItem.title,
|
||||
status: result.envelopeItem.envelope.status,
|
||||
documentData: result.envelopeItem.documentData!,
|
||||
version: effectiveVersion,
|
||||
title: envelopeItem.title,
|
||||
status: envelopeItem.envelope.status,
|
||||
documentData: envelopeItem.documentData,
|
||||
version,
|
||||
isDownload: true,
|
||||
context: c,
|
||||
});
|
||||
|
||||
Generated
+2048
-1264
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,3 @@
|
||||
import { AppError, AppErrorCode } from '@documenso/lib/errors/app-error';
|
||||
import { isPublicDocumentAccessEnabled } from '@documenso/lib/universal/document-access';
|
||||
import { prisma } from '@documenso/prisma';
|
||||
import { DocumentStatus, EnvelopeType } from '@prisma/client';
|
||||
|
||||
@@ -11,41 +9,25 @@ export type GetDocumentByAccessTokenOptions = {
|
||||
|
||||
export const getDocumentByAccessToken = async ({ token }: GetDocumentByAccessTokenOptions) => {
|
||||
if (!token) {
|
||||
throw new AppError(AppErrorCode.UNAUTHORIZED, {
|
||||
message: 'Missing QR access token',
|
||||
statusCode: 401,
|
||||
});
|
||||
throw new Error('Missing token');
|
||||
}
|
||||
|
||||
const result = await prisma.envelope.findFirst({
|
||||
where: {
|
||||
type: EnvelopeType.DOCUMENT,
|
||||
status: DocumentStatus.COMPLETED,
|
||||
qrToken: token,
|
||||
},
|
||||
// Do not provide extra information that is not needed.
|
||||
select: {
|
||||
id: true,
|
||||
secondaryId: true,
|
||||
status: true,
|
||||
internalVersion: true,
|
||||
title: true,
|
||||
completedAt: true,
|
||||
team: {
|
||||
select: {
|
||||
url: true,
|
||||
organisation: {
|
||||
select: {
|
||||
organisationGlobalSettings: {
|
||||
select: {
|
||||
allowPublicCompletedDocumentAccess: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
teamGlobalSettings: {
|
||||
select: {
|
||||
allowPublicCompletedDocumentAccess: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
envelopeItems: {
|
||||
@@ -74,33 +56,17 @@ export const getDocumentByAccessToken = async ({ token }: GetDocumentByAccessTok
|
||||
});
|
||||
|
||||
if (!result) {
|
||||
throw new AppError(AppErrorCode.NOT_FOUND, {
|
||||
message: 'QR token not found',
|
||||
statusCode: 404,
|
||||
});
|
||||
return null;
|
||||
}
|
||||
|
||||
if (result.status !== DocumentStatus.COMPLETED) {
|
||||
throw new AppError(AppErrorCode.INVALID_REQUEST, {
|
||||
message: 'Document is not fully completed',
|
||||
statusCode: 409,
|
||||
});
|
||||
if (result.envelopeItems.length === 0) {
|
||||
throw new Error('Completed envelope has no items');
|
||||
}
|
||||
|
||||
if (!isPublicDocumentAccessEnabled(result.team)) {
|
||||
throw new AppError(AppErrorCode.UNAUTHORIZED, {
|
||||
message: 'Public completed-document access is disabled for this document',
|
||||
statusCode: 403,
|
||||
});
|
||||
}
|
||||
const firstDocumentData = result.envelopeItems[0].documentData;
|
||||
|
||||
const firstEnvelopeItem = result.envelopeItems[0];
|
||||
|
||||
if (!firstEnvelopeItem?.documentData) {
|
||||
throw new AppError(AppErrorCode.NOT_FOUND, {
|
||||
message: 'Missing document data for QR token',
|
||||
statusCode: 404,
|
||||
});
|
||||
if (!firstDocumentData) {
|
||||
throw new Error('Missing document data');
|
||||
}
|
||||
|
||||
return {
|
||||
|
||||
@@ -111,10 +111,3 @@ export const fileUploadRateLimit = createRateLimit({
|
||||
max: 20,
|
||||
window: '1m',
|
||||
});
|
||||
|
||||
export const qrShareViewRateLimit = createRateLimit({
|
||||
action: 'app.qr-share-view',
|
||||
max: 20,
|
||||
globalMax: 120,
|
||||
window: '1m',
|
||||
});
|
||||
|
||||
@@ -1416,8 +1416,8 @@ msgid "Add Placeholders"
|
||||
msgstr "Platzhalter hinzufügen"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Add rate limit"
|
||||
msgstr "Rate-Limit hinzufügen"
|
||||
msgid "Add rate limit window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Add recipients"
|
||||
@@ -2008,6 +2008,7 @@ msgstr "Jede Quelle"
|
||||
msgid "Any Status"
|
||||
msgstr "Jeder Status"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "API"
|
||||
msgstr "API"
|
||||
@@ -2017,10 +2018,6 @@ msgstr "API"
|
||||
msgid "API key"
|
||||
msgstr "API-Schlüssel"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "API rate limits"
|
||||
msgstr "API-Rate-Limits"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "API requests"
|
||||
msgstr "API-Anfragen"
|
||||
@@ -2681,6 +2678,10 @@ msgstr "Unterzeichner kann nicht entfernt werden"
|
||||
msgid "Cannot upload items after the document has been sent"
|
||||
msgstr "Artikel können nicht hochgeladen werden, nachdem das Dokument versendet wurde."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Capabilities enabled for this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/constants/recipient-roles.ts
|
||||
msgctxt "Recipient role name"
|
||||
msgid "Cc"
|
||||
@@ -4407,10 +4408,6 @@ msgstr "Dokumenteinstellungen"
|
||||
msgid "Document preferences updated"
|
||||
msgstr "Dokumentpräferenzen aktualisiert"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Document rate limits"
|
||||
msgstr "Dokumenten-Rate-Limits"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-status.tsx
|
||||
msgid "Document rejected"
|
||||
@@ -4546,6 +4543,7 @@ msgstr "Dokumentation"
|
||||
#: apps/remix/app/components/general/app-command-menu.tsx
|
||||
#: apps/remix/app/components/general/app-nav-desktop.tsx
|
||||
#: apps/remix/app/components/general/app-nav-mobile.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
|
||||
@@ -4995,10 +4993,6 @@ msgstr "E-Mail-Präferenzen"
|
||||
msgid "Email preferences updated"
|
||||
msgstr "E-Mail-Präferenzen aktualisiert"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Email rate limits"
|
||||
msgstr "E-Mail-Rate-Limits"
|
||||
|
||||
#: packages/ui/components/document/document-email-checkboxes.tsx
|
||||
msgid "Email recipients when a pending document is deleted"
|
||||
msgstr "Empfänger per E-Mail benachrichtigen, wenn ein ausstehendes Dokument gelöscht wird"
|
||||
@@ -5094,6 +5088,7 @@ msgstr "E-Mail-Verifizierung wurde entfernt"
|
||||
msgid "Email verification has been resent"
|
||||
msgstr "E-Mail-Verifizierung wurde erneut gesendet"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
|
||||
@@ -5107,16 +5102,14 @@ msgstr "E-Mails"
|
||||
msgid "Embedding, 5 members included and more"
|
||||
msgstr "Einbettung, 5 Mitglieder enthalten und mehr"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty = Unlimited, 0 = Blocked"
|
||||
msgstr "Leer = Unbegrenzt, 0 = Blockiert"
|
||||
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
msgid "Empty field"
|
||||
msgstr "Leeres Feld"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty quota means unlimited, 0 blocks the resource. Rate limit windows accept values like 5m, 1h or 24h."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
|
||||
msgid "Enable"
|
||||
msgstr "Aktivieren"
|
||||
@@ -5236,6 +5229,10 @@ msgstr "Stellen Sie sicher, dass Sie das Embedding-Token verwenden und nicht das
|
||||
msgid "Enter"
|
||||
msgstr "Eingeben"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a max request count greater than 0"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
|
||||
msgid "Enter a name for your new folder. Folders help you organise your items."
|
||||
msgstr "Geben Sie einen Namen für Ihren neuen Ordner ein. Ordner helfen Ihnen, Ihre Dateien zu organisieren."
|
||||
@@ -5244,6 +5241,10 @@ msgstr "Geben Sie einen Namen für Ihren neuen Ordner ein. Ordner helfen Ihnen,
|
||||
msgid "Enter a new title"
|
||||
msgstr "Neuen Titel eingeben"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a window, e.g. 5m"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/subscription-claim-form.tsx
|
||||
msgid "Enter claim name"
|
||||
msgstr "Anspruchsname eingeben"
|
||||
@@ -5502,6 +5503,10 @@ msgstr "Alle haben unterschrieben"
|
||||
msgid "Everyone has signed! You will receive an email copy of the signed document."
|
||||
msgstr "Alle haben unterschrieben! Sie erhalten eine Kopie des unterschriebenen Dokuments per E-Mail."
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Exceeded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
|
||||
msgid "Exceeded timeout"
|
||||
msgstr "Zeitüberschreitung überschritten"
|
||||
@@ -6765,6 +6770,10 @@ msgstr "Lichtmodus"
|
||||
msgid "Like to have your own public profile with agreements?"
|
||||
msgstr "Möchten Sie Ihr eigenes öffentliches Profil mit Vereinbarungen haben?"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Limit reached"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Limits"
|
||||
msgstr "Limits"
|
||||
@@ -7070,6 +7079,10 @@ msgstr "MAU (angemeldet)"
|
||||
msgid "Max"
|
||||
msgstr "Max"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Max requests"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
|
||||
msgstr "Maximale Dateigröße: 4MB. Maximal 100 Zeilen pro Upload. Leere Werte verwenden die Vorlagenstandards."
|
||||
@@ -7116,12 +7129,12 @@ msgstr "Mitglied seit"
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-groups-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/team-groups-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -7190,16 +7203,12 @@ msgid "Monthly Active Users: Users that had at least one of their documents comp
|
||||
msgstr "Monatlich aktive Benutzer: Benutzer, die mindestens eines ihrer Dokumente abgeschlossen haben"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly API quota"
|
||||
msgstr "Monatliches API-Kontingent"
|
||||
msgid "Monthly quota"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly document quota"
|
||||
msgstr "Monatliches Dokumentenkontingent"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly email quota"
|
||||
msgstr "Monatliches E-Mail-Kontingent"
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Monthly usage"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-move-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
|
||||
@@ -7290,7 +7299,6 @@ msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Name is required"
|
||||
msgstr "Name ist erforderlich"
|
||||
|
||||
@@ -7298,6 +7306,10 @@ msgstr "Name ist erforderlich"
|
||||
msgid "Name Settings"
|
||||
msgstr "Einstellungen für Namen"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Near limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
|
||||
msgid "Need to sign documents?"
|
||||
msgstr "Müssen Dokumente signieren?"
|
||||
@@ -7437,6 +7449,10 @@ msgstr "Es sind derzeit keine weiteren Maßnahmen Ihrerseits erforderlich."
|
||||
msgid "No groups found"
|
||||
msgstr "Keine Gruppen gefunden"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "No inherited claim"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
msgid "No License Configured"
|
||||
msgstr "Keine Lizenz konfiguriert"
|
||||
@@ -8153,6 +8169,10 @@ msgstr "Ausstehende Organisationseinladungen"
|
||||
msgid "Pending since"
|
||||
msgstr "Ausstehend seit"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "People with access to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/billing-plans.tsx
|
||||
msgid "per month"
|
||||
@@ -8315,10 +8335,6 @@ msgstr "Bitte geben Sie einen aussagekräftigen Namen für Ihr Token ein. Dies w
|
||||
msgid "Please enter a number"
|
||||
msgstr "Bitte gib eine Zahl ein"
|
||||
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
msgid "Please enter a valid name."
|
||||
msgstr "Bitte geben Sie einen gültigen Namen ein."
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a valid number"
|
||||
msgstr "Bitte geben Sie eine gültige Nummer ein."
|
||||
@@ -9057,6 +9073,10 @@ msgstr "Organisationsmitglied entfernen"
|
||||
msgid "Remove Organisation Member"
|
||||
msgstr "Organisationsmitglied entfernen"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Remove rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Remove recipient"
|
||||
msgstr "Empfänger entfernen"
|
||||
@@ -9247,6 +9267,10 @@ msgstr "Zahlung klären"
|
||||
msgid "Resolve payment"
|
||||
msgstr "Zahlung klären"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Resource blocked"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/webhook-logs-sheet.tsx
|
||||
msgid "Response"
|
||||
msgstr "Antwort"
|
||||
@@ -9823,6 +9847,10 @@ msgstr "Senden..."
|
||||
msgid "Sent"
|
||||
msgstr "Gesendet"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Sent this period"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
msgid "Session revoked"
|
||||
msgstr "Sitzung widerrufen"
|
||||
@@ -10805,10 +10833,10 @@ msgid "Team URL"
|
||||
msgstr "Team-URL"
|
||||
|
||||
#: apps/remix/app/components/general/org-menu-switcher.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
|
||||
@@ -10819,6 +10847,10 @@ msgstr "Teams"
|
||||
msgid "Teams help you organise your work and collaborate with others. Create your first team to get started."
|
||||
msgstr "Teams helfen Ihnen, Ihre Arbeit zu organisieren und mit anderen zusammenzuarbeiten. Erstellen Sie Ihr erstes Team, um loszulegen."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Teams that belong to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Teams that this organisation group is currently assigned to"
|
||||
msgstr "Teams, denen diese Organisationsgruppe derzeit zugewiesen ist"
|
||||
@@ -12297,8 +12329,6 @@ msgstr "Unbekannter Name"
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Unlimited"
|
||||
msgstr "Unbegrenzt"
|
||||
|
||||
@@ -12591,15 +12621,18 @@ msgstr "Hochladen"
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
#. placeholder {0}: selectedStat?.period || 'N/A'
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Usage for period: {0}"
|
||||
msgstr "Nutzung für Zeitraum: {0}"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
|
||||
msgid "Use"
|
||||
msgstr "Verwenden"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a duration with a unit, e.g. 5m, 1h, or 24h"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13501,10 +13534,18 @@ msgstr "Whitelabeling, unbegrenzte Mitglieder und mehr"
|
||||
msgid "Width:"
|
||||
msgstr "Breite:"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
|
||||
msgid "Withdrawing Consent"
|
||||
msgstr "Zustimmung widerrufen"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Within limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/public-profile-form.tsx
|
||||
msgid "Write a description to display on your public profile"
|
||||
msgstr "Schreiben Sie eine Beschreibung, die in Ihrem öffentlichen Profil angezeigt wird"
|
||||
|
||||
@@ -1411,8 +1411,8 @@ msgid "Add Placeholders"
|
||||
msgstr "Add Placeholders"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Add rate limit"
|
||||
msgstr "Add rate limit"
|
||||
msgid "Add rate limit window"
|
||||
msgstr "Add rate limit window"
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Add recipients"
|
||||
@@ -2003,6 +2003,7 @@ msgstr "Any Source"
|
||||
msgid "Any Status"
|
||||
msgstr "Any Status"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "API"
|
||||
msgstr "API"
|
||||
@@ -2012,10 +2013,6 @@ msgstr "API"
|
||||
msgid "API key"
|
||||
msgstr "API key"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "API rate limits"
|
||||
msgstr "API rate limits"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "API requests"
|
||||
msgstr "API requests"
|
||||
@@ -2676,6 +2673,10 @@ msgstr "Cannot remove signer"
|
||||
msgid "Cannot upload items after the document has been sent"
|
||||
msgstr "Cannot upload items after the document has been sent"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Capabilities enabled for this organisation."
|
||||
msgstr "Capabilities enabled for this organisation."
|
||||
|
||||
#: packages/lib/constants/recipient-roles.ts
|
||||
msgctxt "Recipient role name"
|
||||
msgid "Cc"
|
||||
@@ -4402,10 +4403,6 @@ msgstr "Document Preferences"
|
||||
msgid "Document preferences updated"
|
||||
msgstr "Document preferences updated"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Document rate limits"
|
||||
msgstr "Document rate limits"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-status.tsx
|
||||
msgid "Document rejected"
|
||||
@@ -4541,6 +4538,7 @@ msgstr "Documentation"
|
||||
#: apps/remix/app/components/general/app-command-menu.tsx
|
||||
#: apps/remix/app/components/general/app-nav-desktop.tsx
|
||||
#: apps/remix/app/components/general/app-nav-mobile.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
|
||||
@@ -4990,10 +4988,6 @@ msgstr "Email Preferences"
|
||||
msgid "Email preferences updated"
|
||||
msgstr "Email preferences updated"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Email rate limits"
|
||||
msgstr "Email rate limits"
|
||||
|
||||
#: packages/ui/components/document/document-email-checkboxes.tsx
|
||||
msgid "Email recipients when a pending document is deleted"
|
||||
msgstr "Email recipients when a pending document is deleted"
|
||||
@@ -5089,6 +5083,7 @@ msgstr "Email verification has been removed"
|
||||
msgid "Email verification has been resent"
|
||||
msgstr "Email verification has been resent"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
|
||||
@@ -5102,16 +5097,14 @@ msgstr "Emails"
|
||||
msgid "Embedding, 5 members included and more"
|
||||
msgstr "Embedding, 5 members included and more"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty = Unlimited, 0 = Blocked"
|
||||
msgstr "Empty = Unlimited, 0 = Blocked"
|
||||
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
msgid "Empty field"
|
||||
msgstr "Empty field"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty quota means unlimited, 0 blocks the resource. Rate limit windows accept values like 5m, 1h or 24h."
|
||||
msgstr "Empty quota means unlimited, 0 blocks the resource. Rate limit windows accept values like 5m, 1h or 24h."
|
||||
|
||||
#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
|
||||
msgid "Enable"
|
||||
msgstr "Enable"
|
||||
@@ -5231,6 +5224,10 @@ msgstr "Ensure that you are using the embedding token, not the API token"
|
||||
msgid "Enter"
|
||||
msgstr "Enter"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a max request count greater than 0"
|
||||
msgstr "Enter a max request count greater than 0"
|
||||
|
||||
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
|
||||
msgid "Enter a name for your new folder. Folders help you organise your items."
|
||||
msgstr "Enter a name for your new folder. Folders help you organise your items."
|
||||
@@ -5239,6 +5236,10 @@ msgstr "Enter a name for your new folder. Folders help you organise your items."
|
||||
msgid "Enter a new title"
|
||||
msgstr "Enter a new title"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a window, e.g. 5m"
|
||||
msgstr "Enter a window, e.g. 5m"
|
||||
|
||||
#: apps/remix/app/components/forms/subscription-claim-form.tsx
|
||||
msgid "Enter claim name"
|
||||
msgstr "Enter claim name"
|
||||
@@ -5497,6 +5498,10 @@ msgstr "Everyone has signed"
|
||||
msgid "Everyone has signed! You will receive an email copy of the signed document."
|
||||
msgstr "Everyone has signed! You will receive an email copy of the signed document."
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Exceeded"
|
||||
msgstr "Exceeded"
|
||||
|
||||
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
|
||||
msgid "Exceeded timeout"
|
||||
msgstr "Exceeded timeout"
|
||||
@@ -6760,6 +6765,10 @@ msgstr "Light Mode"
|
||||
msgid "Like to have your own public profile with agreements?"
|
||||
msgstr "Like to have your own public profile with agreements?"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Limit reached"
|
||||
msgstr "Limit reached"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Limits"
|
||||
msgstr "Limits"
|
||||
@@ -7065,6 +7074,10 @@ msgstr "MAU (signed in)"
|
||||
msgid "Max"
|
||||
msgstr "Max"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Max requests"
|
||||
msgstr "Max requests"
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
|
||||
msgstr "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
|
||||
@@ -7111,12 +7124,12 @@ msgstr "Member Since"
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-groups-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/team-groups-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -7185,16 +7198,12 @@ msgid "Monthly Active Users: Users that had at least one of their documents comp
|
||||
msgstr "Monthly Active Users: Users that had at least one of their documents completed"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly API quota"
|
||||
msgstr "Monthly API quota"
|
||||
msgid "Monthly quota"
|
||||
msgstr "Monthly quota"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly document quota"
|
||||
msgstr "Monthly document quota"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly email quota"
|
||||
msgstr "Monthly email quota"
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Monthly usage"
|
||||
msgstr "Monthly usage"
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-move-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
|
||||
@@ -7285,7 +7294,6 @@ msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Name is required"
|
||||
msgstr "Name is required"
|
||||
|
||||
@@ -7293,6 +7301,10 @@ msgstr "Name is required"
|
||||
msgid "Name Settings"
|
||||
msgstr "Name Settings"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Near limit"
|
||||
msgstr "Near limit"
|
||||
|
||||
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
|
||||
msgid "Need to sign documents?"
|
||||
msgstr "Need to sign documents?"
|
||||
@@ -7432,6 +7444,10 @@ msgstr "No further action is required from you at this time."
|
||||
msgid "No groups found"
|
||||
msgstr "No groups found"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "No inherited claim"
|
||||
msgstr "No inherited claim"
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
msgid "No License Configured"
|
||||
msgstr "No License Configured"
|
||||
@@ -8148,6 +8164,10 @@ msgstr "Pending Organisation Invites"
|
||||
msgid "Pending since"
|
||||
msgstr "Pending since"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "People with access to this organisation."
|
||||
msgstr "People with access to this organisation."
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/billing-plans.tsx
|
||||
msgid "per month"
|
||||
@@ -8310,10 +8330,6 @@ msgstr "Please enter a meaningful name for your token. This will help you identi
|
||||
msgid "Please enter a number"
|
||||
msgstr "Please enter a number"
|
||||
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
msgid "Please enter a valid name."
|
||||
msgstr "Please enter a valid name."
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a valid number"
|
||||
msgstr "Please enter a valid number"
|
||||
@@ -9052,6 +9068,10 @@ msgstr "Remove organisation member"
|
||||
msgid "Remove Organisation Member"
|
||||
msgstr "Remove Organisation Member"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Remove rate limit"
|
||||
msgstr "Remove rate limit"
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Remove recipient"
|
||||
msgstr "Remove recipient"
|
||||
@@ -9242,6 +9262,10 @@ msgstr "Resolve"
|
||||
msgid "Resolve payment"
|
||||
msgstr "Resolve payment"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Resource blocked"
|
||||
msgstr "Resource blocked"
|
||||
|
||||
#: apps/remix/app/components/general/webhook-logs-sheet.tsx
|
||||
msgid "Response"
|
||||
msgstr "Response"
|
||||
@@ -9818,6 +9842,10 @@ msgstr "Sending..."
|
||||
msgid "Sent"
|
||||
msgstr "Sent"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Sent this period"
|
||||
msgstr "Sent this period"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
msgid "Session revoked"
|
||||
msgstr "Session revoked"
|
||||
@@ -10800,10 +10828,10 @@ msgid "Team URL"
|
||||
msgstr "Team URL"
|
||||
|
||||
#: apps/remix/app/components/general/org-menu-switcher.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
|
||||
@@ -10814,6 +10842,10 @@ msgstr "Teams"
|
||||
msgid "Teams help you organise your work and collaborate with others. Create your first team to get started."
|
||||
msgstr "Teams help you organise your work and collaborate with others. Create your first team to get started."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Teams that belong to this organisation."
|
||||
msgstr "Teams that belong to this organisation."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Teams that this organisation group is currently assigned to"
|
||||
msgstr "Teams that this organisation group is currently assigned to"
|
||||
@@ -12292,8 +12324,6 @@ msgstr "Unknown name"
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Unlimited"
|
||||
msgstr "Unlimited"
|
||||
|
||||
@@ -12586,15 +12616,18 @@ msgstr "Uploading"
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
#. placeholder {0}: selectedStat?.period || 'N/A'
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Usage for period: {0}"
|
||||
msgstr "Usage for period: {0}"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
|
||||
msgid "Use"
|
||||
msgstr "Use"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a duration with a unit, e.g. 5m, 1h, or 24h"
|
||||
msgstr "Use a duration with a unit, e.g. 5m, 1h, or 24h"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr "Use a unique window for each rate limit"
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13496,10 +13529,18 @@ msgstr "Whitelabeling, unlimited members and more"
|
||||
msgid "Width:"
|
||||
msgstr "Width:"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Window"
|
||||
msgstr "Window"
|
||||
|
||||
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
|
||||
msgid "Withdrawing Consent"
|
||||
msgstr "Withdrawing Consent"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Within limit"
|
||||
msgstr "Within limit"
|
||||
|
||||
#: apps/remix/app/components/forms/public-profile-form.tsx
|
||||
msgid "Write a description to display on your public profile"
|
||||
msgstr "Write a description to display on your public profile"
|
||||
|
||||
@@ -1416,8 +1416,8 @@ msgid "Add Placeholders"
|
||||
msgstr "Agregar Marcadores de posición"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Add rate limit"
|
||||
msgstr "Agregar límite de velocidad"
|
||||
msgid "Add rate limit window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Add recipients"
|
||||
@@ -2008,6 +2008,7 @@ msgstr "Cualquier fuente"
|
||||
msgid "Any Status"
|
||||
msgstr "Cualquier estado"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "API"
|
||||
msgstr "API"
|
||||
@@ -2017,10 +2018,6 @@ msgstr "API"
|
||||
msgid "API key"
|
||||
msgstr "Clave API"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "API rate limits"
|
||||
msgstr "Límites de velocidad de la API"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "API requests"
|
||||
msgstr "Solicitudes de API"
|
||||
@@ -2681,6 +2678,10 @@ msgstr "No se puede eliminar el firmante"
|
||||
msgid "Cannot upload items after the document has been sent"
|
||||
msgstr "No se pueden cargar elementos después de que el documento ha sido enviado"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Capabilities enabled for this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/constants/recipient-roles.ts
|
||||
msgctxt "Recipient role name"
|
||||
msgid "Cc"
|
||||
@@ -4407,10 +4408,6 @@ msgstr "Preferencias del documento"
|
||||
msgid "Document preferences updated"
|
||||
msgstr "Preferencias del documento actualizadas"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Document rate limits"
|
||||
msgstr "Límites de velocidad de documentos"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-status.tsx
|
||||
msgid "Document rejected"
|
||||
@@ -4546,6 +4543,7 @@ msgstr "Documentación"
|
||||
#: apps/remix/app/components/general/app-command-menu.tsx
|
||||
#: apps/remix/app/components/general/app-nav-desktop.tsx
|
||||
#: apps/remix/app/components/general/app-nav-mobile.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
|
||||
@@ -4995,10 +4993,6 @@ msgstr "Preferencias de correo electrónico"
|
||||
msgid "Email preferences updated"
|
||||
msgstr "Preferencias de correo electrónico actualizadas"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Email rate limits"
|
||||
msgstr "Límites de velocidad de correo electrónico"
|
||||
|
||||
#: packages/ui/components/document/document-email-checkboxes.tsx
|
||||
msgid "Email recipients when a pending document is deleted"
|
||||
msgstr "Enviar un correo electrónico a los destinatarios cuando se elimine un documento pendiente"
|
||||
@@ -5094,6 +5088,7 @@ msgstr "La verificación de correo electrónico ha sido eliminada"
|
||||
msgid "Email verification has been resent"
|
||||
msgstr "La verificación de correo electrónico ha sido reenviada"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
|
||||
@@ -5107,16 +5102,14 @@ msgstr "Correos electrónicos"
|
||||
msgid "Embedding, 5 members included and more"
|
||||
msgstr "Incrustación, 5 miembros incluidos y más"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty = Unlimited, 0 = Blocked"
|
||||
msgstr "Vacío = Ilimitado, 0 = Bloqueado"
|
||||
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
msgid "Empty field"
|
||||
msgstr "Campo vacío"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty quota means unlimited, 0 blocks the resource. Rate limit windows accept values like 5m, 1h or 24h."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
|
||||
msgid "Enable"
|
||||
msgstr "Habilitar"
|
||||
@@ -5236,6 +5229,10 @@ msgstr "Asegúrate de que estás utilizando el token de incrustación, no el tok
|
||||
msgid "Enter"
|
||||
msgstr "Ingresar"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a max request count greater than 0"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
|
||||
msgid "Enter a name for your new folder. Folders help you organise your items."
|
||||
msgstr "Ingrese un nombre para su nueva carpeta. Las carpetas le ayudan a organizar sus elementos."
|
||||
@@ -5244,6 +5241,10 @@ msgstr "Ingrese un nombre para su nueva carpeta. Las carpetas le ayudan a organi
|
||||
msgid "Enter a new title"
|
||||
msgstr "Introduce un nuevo título"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a window, e.g. 5m"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/subscription-claim-form.tsx
|
||||
msgid "Enter claim name"
|
||||
msgstr "Ingresar nombre de la reclamación"
|
||||
@@ -5502,6 +5503,10 @@ msgstr "Todos han firmado"
|
||||
msgid "Everyone has signed! You will receive an email copy of the signed document."
|
||||
msgstr "¡Todos han firmado! Recibirás una copia del documento firmado por correo electrónico."
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Exceeded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
|
||||
msgid "Exceeded timeout"
|
||||
msgstr "Tiempo de espera excedido"
|
||||
@@ -6765,6 +6770,10 @@ msgstr "Modo claro"
|
||||
msgid "Like to have your own public profile with agreements?"
|
||||
msgstr "¿Te gustaría tener tu propio perfil público con acuerdos?"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Limit reached"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Limits"
|
||||
msgstr "Límites"
|
||||
@@ -7070,6 +7079,10 @@ msgstr "MAU (con sesión iniciada)"
|
||||
msgid "Max"
|
||||
msgstr "Máx"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Max requests"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
|
||||
msgstr "Tamaño máximo de archivo: 4MB. Máximo 100 filas por carga. Los valores en blanco usarán los valores predeterminados de la plantilla."
|
||||
@@ -7116,12 +7129,12 @@ msgstr "Miembro desde"
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-groups-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/team-groups-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -7190,16 +7203,12 @@ msgid "Monthly Active Users: Users that had at least one of their documents comp
|
||||
msgstr "Usuarios activos mensuales: Usuarios que completaron al menos uno de sus documentos"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly API quota"
|
||||
msgstr "Cuota mensual de API"
|
||||
msgid "Monthly quota"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly document quota"
|
||||
msgstr "Cuota mensual de documentos"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly email quota"
|
||||
msgstr "Cuota mensual de correos electrónicos"
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Monthly usage"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-move-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
|
||||
@@ -7290,7 +7299,6 @@ msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Name is required"
|
||||
msgstr "Se requiere el nombre"
|
||||
|
||||
@@ -7298,6 +7306,10 @@ msgstr "Se requiere el nombre"
|
||||
msgid "Name Settings"
|
||||
msgstr "Configuración de Nombre"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Near limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
|
||||
msgid "Need to sign documents?"
|
||||
msgstr "¿Necesitas firmar documentos?"
|
||||
@@ -7437,6 +7449,10 @@ msgstr "No further action is required from you at this time."
|
||||
msgid "No groups found"
|
||||
msgstr "No se encontraron grupos"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "No inherited claim"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
msgid "No License Configured"
|
||||
msgstr "Licencia no configurada"
|
||||
@@ -8153,6 +8169,10 @@ msgstr "Invitaciones pendientes de la organización"
|
||||
msgid "Pending since"
|
||||
msgstr "Pendiente desde"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "People with access to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/billing-plans.tsx
|
||||
msgid "per month"
|
||||
@@ -8315,10 +8335,6 @@ msgstr "Por favor, ingresa un nombre significativo para tu token. Esto te ayudar
|
||||
msgid "Please enter a number"
|
||||
msgstr "Por favor ingresa un número"
|
||||
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
msgid "Please enter a valid name."
|
||||
msgstr "Por favor, introduce un nombre válido."
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a valid number"
|
||||
msgstr "Por favor, ingresa un número válido"
|
||||
@@ -9057,6 +9073,10 @@ msgstr "Eliminar miembro de la organización"
|
||||
msgid "Remove Organisation Member"
|
||||
msgstr "Eliminar miembro de la organización"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Remove rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Remove recipient"
|
||||
msgstr "Eliminar destinatario"
|
||||
@@ -9247,6 +9267,10 @@ msgstr "Resolver"
|
||||
msgid "Resolve payment"
|
||||
msgstr "Resolver pago"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Resource blocked"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/webhook-logs-sheet.tsx
|
||||
msgid "Response"
|
||||
msgstr "Respuesta"
|
||||
@@ -9823,6 +9847,10 @@ msgstr "Enviando..."
|
||||
msgid "Sent"
|
||||
msgstr "Enviado"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Sent this period"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
msgid "Session revoked"
|
||||
msgstr "Sesión revocada"
|
||||
@@ -10805,10 +10833,10 @@ msgid "Team URL"
|
||||
msgstr "URL del equipo"
|
||||
|
||||
#: apps/remix/app/components/general/org-menu-switcher.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
|
||||
@@ -10819,6 +10847,10 @@ msgstr "Equipos"
|
||||
msgid "Teams help you organise your work and collaborate with others. Create your first team to get started."
|
||||
msgstr "Los equipos te ayudan a organizar tu trabajo y colaborar con otros. Crea tu primer equipo para comenzar."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Teams that belong to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Teams that this organisation group is currently assigned to"
|
||||
msgstr "Equipos a los que actualmente está asignado este grupo de organización"
|
||||
@@ -12297,8 +12329,6 @@ msgstr "Nombre desconocido"
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Unlimited"
|
||||
msgstr "Ilimitado"
|
||||
|
||||
@@ -12591,15 +12621,18 @@ msgstr "Subiendo"
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
#. placeholder {0}: selectedStat?.period || 'N/A'
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Usage for period: {0}"
|
||||
msgstr "Uso para el período: {0}"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
|
||||
msgid "Use"
|
||||
msgstr "Usar"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a duration with a unit, e.g. 5m, 1h, or 24h"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13501,10 +13534,18 @@ msgstr "Etiqueta blanca, miembros ilimitados y más"
|
||||
msgid "Width:"
|
||||
msgstr "Ancho:"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
|
||||
msgid "Withdrawing Consent"
|
||||
msgstr "Retirar Consentimiento"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Within limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/public-profile-form.tsx
|
||||
msgid "Write a description to display on your public profile"
|
||||
msgstr "Escribe una descripción para mostrar en tu perfil público"
|
||||
|
||||
@@ -1416,8 +1416,8 @@ msgid "Add Placeholders"
|
||||
msgstr "Ajouter des espaces réservés"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Add rate limit"
|
||||
msgstr "Ajouter une limite de fréquence"
|
||||
msgid "Add rate limit window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Add recipients"
|
||||
@@ -2008,6 +2008,7 @@ msgstr "Toute source"
|
||||
msgid "Any Status"
|
||||
msgstr "Tout statut"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "API"
|
||||
msgstr "API"
|
||||
@@ -2017,10 +2018,6 @@ msgstr "API"
|
||||
msgid "API key"
|
||||
msgstr "Clé d’API"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "API rate limits"
|
||||
msgstr "Limites de fréquence de l’API"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "API requests"
|
||||
msgstr "Requêtes API"
|
||||
@@ -2681,6 +2678,10 @@ msgstr "Impossible de supprimer le signataire"
|
||||
msgid "Cannot upload items after the document has been sent"
|
||||
msgstr "Impossible de télécharger des éléments après l'envoi du document"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Capabilities enabled for this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/constants/recipient-roles.ts
|
||||
msgctxt "Recipient role name"
|
||||
msgid "Cc"
|
||||
@@ -4407,10 +4408,6 @@ msgstr "Préférences de document"
|
||||
msgid "Document preferences updated"
|
||||
msgstr "Préférences de document mises à jour"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Document rate limits"
|
||||
msgstr "Limites de fréquence des documents"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-status.tsx
|
||||
msgid "Document rejected"
|
||||
@@ -4546,6 +4543,7 @@ msgstr "Documentation"
|
||||
#: apps/remix/app/components/general/app-command-menu.tsx
|
||||
#: apps/remix/app/components/general/app-nav-desktop.tsx
|
||||
#: apps/remix/app/components/general/app-nav-mobile.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
|
||||
@@ -4995,10 +4993,6 @@ msgstr "Préférences de messagerie"
|
||||
msgid "Email preferences updated"
|
||||
msgstr "Préférences de messagerie mises à jour"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Email rate limits"
|
||||
msgstr "Limites de fréquence des e-mails"
|
||||
|
||||
#: packages/ui/components/document/document-email-checkboxes.tsx
|
||||
msgid "Email recipients when a pending document is deleted"
|
||||
msgstr "Envoyer un e-mail aux destinataires lorsqu’un document en attente est supprimé"
|
||||
@@ -5094,6 +5088,7 @@ msgstr "La vérification par email a été supprimée"
|
||||
msgid "Email verification has been resent"
|
||||
msgstr "La vérification par email a été renvoyée"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
|
||||
@@ -5107,16 +5102,14 @@ msgstr "E-mails"
|
||||
msgid "Embedding, 5 members included and more"
|
||||
msgstr "Intégration, 5 membres inclus et plus"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty = Unlimited, 0 = Blocked"
|
||||
msgstr "Vide = Illimité, 0 = Bloqué"
|
||||
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
msgid "Empty field"
|
||||
msgstr "Champ vide"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty quota means unlimited, 0 blocks the resource. Rate limit windows accept values like 5m, 1h or 24h."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
|
||||
msgid "Enable"
|
||||
msgstr "Activer"
|
||||
@@ -5236,6 +5229,10 @@ msgstr "Assurez-vous d’utiliser le jeton d’intégration, et non le jeton d
|
||||
msgid "Enter"
|
||||
msgstr "Entrer"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a max request count greater than 0"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
|
||||
msgid "Enter a name for your new folder. Folders help you organise your items."
|
||||
msgstr "Entrez un nom pour votre nouveau dossier. Les dossiers vous aident à organiser vos éléments."
|
||||
@@ -5244,6 +5241,10 @@ msgstr "Entrez un nom pour votre nouveau dossier. Les dossiers vous aident à or
|
||||
msgid "Enter a new title"
|
||||
msgstr "Saisissez un nouveau titre"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a window, e.g. 5m"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/subscription-claim-form.tsx
|
||||
msgid "Enter claim name"
|
||||
msgstr "Entrez le nom de la réclamation"
|
||||
@@ -5502,6 +5503,10 @@ msgstr "Tout le monde a signé"
|
||||
msgid "Everyone has signed! You will receive an email copy of the signed document."
|
||||
msgstr "Tout le monde a signé ! Vous recevrez une copie du document signé par e-mail."
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Exceeded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
|
||||
msgid "Exceeded timeout"
|
||||
msgstr "Délai dépassé"
|
||||
@@ -6765,6 +6770,10 @@ msgstr "Mode clair"
|
||||
msgid "Like to have your own public profile with agreements?"
|
||||
msgstr "Vous voulez avoir votre propre profil public avec des accords ?"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Limit reached"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Limits"
|
||||
msgstr "Limites"
|
||||
@@ -7070,6 +7079,10 @@ msgstr "MAU (connecté)"
|
||||
msgid "Max"
|
||||
msgstr "Maximum"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Max requests"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
|
||||
msgstr "Taille maximale du fichier : 4 Mo. Maximum de 100 lignes par importation. Les valeurs vides utiliseront les valeurs par défaut du modèle."
|
||||
@@ -7116,12 +7129,12 @@ msgstr "Membre depuis"
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-groups-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/team-groups-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -7190,16 +7203,12 @@ msgid "Monthly Active Users: Users that had at least one of their documents comp
|
||||
msgstr "Utilisateurs actifs mensuels : utilisateurs ayant terminé au moins un de leurs documents"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly API quota"
|
||||
msgstr "Quota d’API mensuel"
|
||||
msgid "Monthly quota"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly document quota"
|
||||
msgstr "Quota de documents mensuel"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly email quota"
|
||||
msgstr "Quota d’e-mails mensuel"
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Monthly usage"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-move-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
|
||||
@@ -7290,7 +7299,6 @@ msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Name is required"
|
||||
msgstr "Le nom est requis"
|
||||
|
||||
@@ -7298,6 +7306,10 @@ msgstr "Le nom est requis"
|
||||
msgid "Name Settings"
|
||||
msgstr "Paramètres du nom"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Near limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
|
||||
msgid "Need to sign documents?"
|
||||
msgstr "Besoin de signer des documents ?"
|
||||
@@ -7437,6 +7449,10 @@ msgstr "Aucune autre action n'est requise de votre part pour le moment."
|
||||
msgid "No groups found"
|
||||
msgstr "Aucun groupe trouvé"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "No inherited claim"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
msgid "No License Configured"
|
||||
msgstr "Aucune licence configurée"
|
||||
@@ -8153,6 +8169,10 @@ msgstr "Invitations à l’organisation en attente"
|
||||
msgid "Pending since"
|
||||
msgstr "En attente depuis"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "People with access to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/billing-plans.tsx
|
||||
msgid "per month"
|
||||
@@ -8315,10 +8335,6 @@ msgstr "Veuillez entrer un nom significatif pour votre token. Cela vous aidera
|
||||
msgid "Please enter a number"
|
||||
msgstr "Veuillez entrer un nombre"
|
||||
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
msgid "Please enter a valid name."
|
||||
msgstr "Veuiillez entrer un nom valide."
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a valid number"
|
||||
msgstr "Veuillez entrer un numéro valide"
|
||||
@@ -9057,6 +9073,10 @@ msgstr "Supprimer le membre de l'organisation"
|
||||
msgid "Remove Organisation Member"
|
||||
msgstr "Supprimer un membre de l’organisation"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Remove rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Remove recipient"
|
||||
msgstr "Supprimer le destinataire"
|
||||
@@ -9247,6 +9267,10 @@ msgstr "Résoudre"
|
||||
msgid "Resolve payment"
|
||||
msgstr "Résoudre le paiement"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Resource blocked"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/webhook-logs-sheet.tsx
|
||||
msgid "Response"
|
||||
msgstr "Réponse"
|
||||
@@ -9823,6 +9847,10 @@ msgstr "Envoi..."
|
||||
msgid "Sent"
|
||||
msgstr "Envoyé"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Sent this period"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
msgid "Session revoked"
|
||||
msgstr "Session révoquée"
|
||||
@@ -10805,10 +10833,10 @@ msgid "Team URL"
|
||||
msgstr "URL de l'équipe"
|
||||
|
||||
#: apps/remix/app/components/general/org-menu-switcher.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
|
||||
@@ -10819,6 +10847,10 @@ msgstr "Équipes"
|
||||
msgid "Teams help you organise your work and collaborate with others. Create your first team to get started."
|
||||
msgstr "Les équipes vous aident à organiser votre travail et à collaborer avec d'autres. Créez votre première équipe pour commencer."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Teams that belong to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Teams that this organisation group is currently assigned to"
|
||||
msgstr "Équipes auxquelles ce groupe d'organisation est actuellement attribué"
|
||||
@@ -12297,8 +12329,6 @@ msgstr "Nom inconnu"
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Unlimited"
|
||||
msgstr "Illimité"
|
||||
|
||||
@@ -12591,15 +12621,18 @@ msgstr "Importation en cours"
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
#. placeholder {0}: selectedStat?.period || 'N/A'
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Usage for period: {0}"
|
||||
msgstr "Utilisation pour la période : {0}"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
|
||||
msgid "Use"
|
||||
msgstr "Utiliser"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a duration with a unit, e.g. 5m, 1h, or 24h"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13501,10 +13534,18 @@ msgstr "Marque blanche, membres illimités et plus"
|
||||
msgid "Width:"
|
||||
msgstr "Largeur :"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
|
||||
msgid "Withdrawing Consent"
|
||||
msgstr "Retrait du consentement"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Within limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/public-profile-form.tsx
|
||||
msgid "Write a description to display on your public profile"
|
||||
msgstr "Écrivez une description à afficher sur votre profil public"
|
||||
|
||||
@@ -1416,8 +1416,8 @@ msgid "Add Placeholders"
|
||||
msgstr "Aggiungi segnaposto"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Add rate limit"
|
||||
msgstr "Aggiungi limite di velocità"
|
||||
msgid "Add rate limit window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Add recipients"
|
||||
@@ -2008,6 +2008,7 @@ msgstr "Qualsiasi fonte"
|
||||
msgid "Any Status"
|
||||
msgstr "Qualsiasi stato"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "API"
|
||||
msgstr "API"
|
||||
@@ -2017,10 +2018,6 @@ msgstr "API"
|
||||
msgid "API key"
|
||||
msgstr "Chiave API"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "API rate limits"
|
||||
msgstr "Limiti di velocità API"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "API requests"
|
||||
msgstr "Richieste API"
|
||||
@@ -2681,6 +2678,10 @@ msgstr "Impossibile rimuovere il firmatario"
|
||||
msgid "Cannot upload items after the document has been sent"
|
||||
msgstr "Non è possibile caricare gli elementi dopo che il documento è stato inviato"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Capabilities enabled for this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/constants/recipient-roles.ts
|
||||
msgctxt "Recipient role name"
|
||||
msgid "Cc"
|
||||
@@ -4407,10 +4408,6 @@ msgstr "Preferenze Documento"
|
||||
msgid "Document preferences updated"
|
||||
msgstr "Preferenze del documento aggiornate"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Document rate limits"
|
||||
msgstr "Limiti di velocità documento"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-status.tsx
|
||||
msgid "Document rejected"
|
||||
@@ -4546,6 +4543,7 @@ msgstr "Documentazione"
|
||||
#: apps/remix/app/components/general/app-command-menu.tsx
|
||||
#: apps/remix/app/components/general/app-nav-desktop.tsx
|
||||
#: apps/remix/app/components/general/app-nav-mobile.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
|
||||
@@ -4995,10 +4993,6 @@ msgstr "Preferenze Email"
|
||||
msgid "Email preferences updated"
|
||||
msgstr "Preferenze email aggiornate"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Email rate limits"
|
||||
msgstr "Limiti di velocità email"
|
||||
|
||||
#: packages/ui/components/document/document-email-checkboxes.tsx
|
||||
msgid "Email recipients when a pending document is deleted"
|
||||
msgstr "Invia un'email ai destinatari quando un documento in sospeso viene eliminato"
|
||||
@@ -5094,6 +5088,7 @@ msgstr "Verifica email rimossa"
|
||||
msgid "Email verification has been resent"
|
||||
msgstr "Verifica email rinviata"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
|
||||
@@ -5107,16 +5102,14 @@ msgstr "Email"
|
||||
msgid "Embedding, 5 members included and more"
|
||||
msgstr "Incorporamento, 5 membri inclusi e altro"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty = Unlimited, 0 = Blocked"
|
||||
msgstr "Vuoto = Illimitato, 0 = Bloccato"
|
||||
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
msgid "Empty field"
|
||||
msgstr "Campo vuoto"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty quota means unlimited, 0 blocks the resource. Rate limit windows accept values like 5m, 1h or 24h."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
|
||||
msgid "Enable"
|
||||
msgstr "Abilita"
|
||||
@@ -5236,6 +5229,10 @@ msgstr "Assicurati di utilizzare il token di embedding, e non il token API"
|
||||
msgid "Enter"
|
||||
msgstr "Inserisci"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a max request count greater than 0"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
|
||||
msgid "Enter a name for your new folder. Folders help you organise your items."
|
||||
msgstr "Inserisci un nome per la tua nuova cartella. Le cartelle ti aiutano a organizzare i tuoi elementi."
|
||||
@@ -5244,6 +5241,10 @@ msgstr "Inserisci un nome per la tua nuova cartella. Le cartelle ti aiutano a or
|
||||
msgid "Enter a new title"
|
||||
msgstr "Inserisci un nuovo titolo"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a window, e.g. 5m"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/subscription-claim-form.tsx
|
||||
msgid "Enter claim name"
|
||||
msgstr "Inserisci nome richiesta"
|
||||
@@ -5502,6 +5503,10 @@ msgstr "Hanno firmato tutti"
|
||||
msgid "Everyone has signed! You will receive an email copy of the signed document."
|
||||
msgstr "Tutti hanno firmato! Riceverai una copia del documento firmato via email."
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Exceeded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
|
||||
msgid "Exceeded timeout"
|
||||
msgstr "Tempo scaduto"
|
||||
@@ -6765,6 +6770,10 @@ msgstr "Modalità chiara"
|
||||
msgid "Like to have your own public profile with agreements?"
|
||||
msgstr "Ti piacerebbe avere il tuo profilo pubblico con accordi?"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Limit reached"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Limits"
|
||||
msgstr "Limiti"
|
||||
@@ -7070,6 +7079,10 @@ msgstr "MAU (autenticati)"
|
||||
msgid "Max"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Max requests"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
|
||||
msgstr "Dimensione massima del file: 4MB. Massimo 100 righe per caricamento. I valori vuoti utilizzeranno i valori predefiniti del modello."
|
||||
@@ -7116,12 +7129,12 @@ msgstr "Membro dal"
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-groups-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/team-groups-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -7190,16 +7203,12 @@ msgid "Monthly Active Users: Users that had at least one of their documents comp
|
||||
msgstr "Utenti attivi mensili: Utenti con almeno uno dei loro documenti completati"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly API quota"
|
||||
msgstr "Quota API mensile"
|
||||
msgid "Monthly quota"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly document quota"
|
||||
msgstr "Quota documenti mensile"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly email quota"
|
||||
msgstr "Quota email mensile"
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Monthly usage"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-move-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
|
||||
@@ -7290,7 +7299,6 @@ msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Name is required"
|
||||
msgstr "Nome richiesto"
|
||||
|
||||
@@ -7298,6 +7306,10 @@ msgstr "Nome richiesto"
|
||||
msgid "Name Settings"
|
||||
msgstr "Impostazioni Nome"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Near limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
|
||||
msgid "Need to sign documents?"
|
||||
msgstr "Hai bisogno di firmare documenti?"
|
||||
@@ -7437,6 +7449,10 @@ msgstr "Non sono richieste ulteriori azioni da parte tua in questo momento."
|
||||
msgid "No groups found"
|
||||
msgstr "Nessun gruppo trovato"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "No inherited claim"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
msgid "No License Configured"
|
||||
msgstr "Nessuna licenza configurata"
|
||||
@@ -8153,6 +8169,10 @@ msgstr "Inviti all’organizzazione in sospeso"
|
||||
msgid "Pending since"
|
||||
msgstr "In sospeso dal"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "People with access to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/billing-plans.tsx
|
||||
msgid "per month"
|
||||
@@ -8315,10 +8335,6 @@ msgstr "Si prega di inserire un nome significativo per il proprio token. Questo
|
||||
msgid "Please enter a number"
|
||||
msgstr "Inserisci un numero"
|
||||
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
msgid "Please enter a valid name."
|
||||
msgstr "Per favore inserisci un nome valido."
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a valid number"
|
||||
msgstr "Per favore inserisci un numero valido"
|
||||
@@ -9057,6 +9073,10 @@ msgstr "Rimuovere membro dell'organizzazione"
|
||||
msgid "Remove Organisation Member"
|
||||
msgstr "Rimuovi membro dell'organizzazione"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Remove rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Remove recipient"
|
||||
msgstr "Rimuovi destinatario"
|
||||
@@ -9247,6 +9267,10 @@ msgstr "Risolvi"
|
||||
msgid "Resolve payment"
|
||||
msgstr "Risolvere il pagamento"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Resource blocked"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/webhook-logs-sheet.tsx
|
||||
msgid "Response"
|
||||
msgstr "Risposta"
|
||||
@@ -9823,6 +9847,10 @@ msgstr "Invio..."
|
||||
msgid "Sent"
|
||||
msgstr "Inviato"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Sent this period"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
msgid "Session revoked"
|
||||
msgstr "Sessione revocata"
|
||||
@@ -10805,10 +10833,10 @@ msgid "Team URL"
|
||||
msgstr "URL del team"
|
||||
|
||||
#: apps/remix/app/components/general/org-menu-switcher.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
|
||||
@@ -10819,6 +10847,10 @@ msgstr "Team"
|
||||
msgid "Teams help you organise your work and collaborate with others. Create your first team to get started."
|
||||
msgstr "I team ti aiutano a organizzare il tuo lavoro e collaborare con altri. Crea il tuo primo team per iniziare."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Teams that belong to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Teams that this organisation group is currently assigned to"
|
||||
msgstr "Team a cui è attualmente assegnato questo gruppo di organizzazione"
|
||||
@@ -12297,8 +12329,6 @@ msgstr "Nome sconosciuto"
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Unlimited"
|
||||
msgstr "Illimitato"
|
||||
|
||||
@@ -12591,15 +12621,18 @@ msgstr "Caricamento in corso"
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
#. placeholder {0}: selectedStat?.period || 'N/A'
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Usage for period: {0}"
|
||||
msgstr "Utilizzo per il periodo: {0}"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
|
||||
msgid "Use"
|
||||
msgstr "Utilizza"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a duration with a unit, e.g. 5m, 1h, or 24h"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13501,10 +13534,18 @@ msgstr "White label, membri illimitati e altro"
|
||||
msgid "Width:"
|
||||
msgstr "Larghezza:"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
|
||||
msgid "Withdrawing Consent"
|
||||
msgstr "Ritiro del consenso"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Within limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/public-profile-form.tsx
|
||||
msgid "Write a description to display on your public profile"
|
||||
msgstr "Scrivi una descrizione da mostrare sul tuo profilo pubblico"
|
||||
|
||||
@@ -1416,8 +1416,8 @@ msgid "Add Placeholders"
|
||||
msgstr "プレースホルダーを追加"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Add rate limit"
|
||||
msgstr "レート制限を追加"
|
||||
msgid "Add rate limit window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Add recipients"
|
||||
@@ -2008,6 +2008,7 @@ msgstr "すべてのソース"
|
||||
msgid "Any Status"
|
||||
msgstr "すべてのステータス"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "API"
|
||||
msgstr "API"
|
||||
@@ -2017,10 +2018,6 @@ msgstr "API"
|
||||
msgid "API key"
|
||||
msgstr "API キー"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "API rate limits"
|
||||
msgstr "API レート制限"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "API requests"
|
||||
msgstr "API リクエスト"
|
||||
@@ -2681,6 +2678,10 @@ msgstr "署名者を削除できません"
|
||||
msgid "Cannot upload items after the document has been sent"
|
||||
msgstr "ドキュメント送信後はアイテムをアップロードできません"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Capabilities enabled for this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/constants/recipient-roles.ts
|
||||
msgctxt "Recipient role name"
|
||||
msgid "Cc"
|
||||
@@ -4407,10 +4408,6 @@ msgstr "ドキュメント設定"
|
||||
msgid "Document preferences updated"
|
||||
msgstr "文書設定を更新しました"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Document rate limits"
|
||||
msgstr "ドキュメントのレート制限"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-status.tsx
|
||||
msgid "Document rejected"
|
||||
@@ -4546,6 +4543,7 @@ msgstr "ドキュメント"
|
||||
#: apps/remix/app/components/general/app-command-menu.tsx
|
||||
#: apps/remix/app/components/general/app-nav-desktop.tsx
|
||||
#: apps/remix/app/components/general/app-nav-mobile.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
|
||||
@@ -4995,10 +4993,6 @@ msgstr "メール設定"
|
||||
msgid "Email preferences updated"
|
||||
msgstr "メール設定を更新しました"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Email rate limits"
|
||||
msgstr "メールのレート制限"
|
||||
|
||||
#: packages/ui/components/document/document-email-checkboxes.tsx
|
||||
msgid "Email recipients when a pending document is deleted"
|
||||
msgstr "保留中のドキュメントが削除されたときに受信者へメール通知する"
|
||||
@@ -5094,6 +5088,7 @@ msgstr "メール認証を削除しました"
|
||||
msgid "Email verification has been resent"
|
||||
msgstr "メール認証を再送しました"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
|
||||
@@ -5107,16 +5102,14 @@ msgstr "メール"
|
||||
msgid "Embedding, 5 members included and more"
|
||||
msgstr "埋め込み、5 メンバー含む など"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty = Unlimited, 0 = Blocked"
|
||||
msgstr "空欄 = 無制限、0 = ブロックされます"
|
||||
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
msgid "Empty field"
|
||||
msgstr "空のフィールド"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty quota means unlimited, 0 blocks the resource. Rate limit windows accept values like 5m, 1h or 24h."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
|
||||
msgid "Enable"
|
||||
msgstr "有効化"
|
||||
@@ -5236,6 +5229,10 @@ msgstr "埋め込みトークンを使用していることを確認し、API
|
||||
msgid "Enter"
|
||||
msgstr "入力してください"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a max request count greater than 0"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
|
||||
msgid "Enter a name for your new folder. Folders help you organise your items."
|
||||
msgstr "新しいフォルダ名を入力してください。フォルダを使うとアイテムを整理できます。"
|
||||
@@ -5244,6 +5241,10 @@ msgstr "新しいフォルダ名を入力してください。フォルダを使
|
||||
msgid "Enter a new title"
|
||||
msgstr "新しいタイトルを入力してください"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a window, e.g. 5m"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/subscription-claim-form.tsx
|
||||
msgid "Enter claim name"
|
||||
msgstr "クレーム名を入力"
|
||||
@@ -5502,6 +5503,10 @@ msgstr "全員が署名しました"
|
||||
msgid "Everyone has signed! You will receive an email copy of the signed document."
|
||||
msgstr "全員が署名しました。署名済みドキュメントのコピーがメールで送信されます。"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Exceeded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
|
||||
msgid "Exceeded timeout"
|
||||
msgstr "タイムアウトを超えました"
|
||||
@@ -6765,6 +6770,10 @@ msgstr "ライトモード"
|
||||
msgid "Like to have your own public profile with agreements?"
|
||||
msgstr "自分の合意書付き公開プロフィールが欲しいですか?"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Limit reached"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Limits"
|
||||
msgstr "上限"
|
||||
@@ -7070,6 +7079,10 @@ msgstr "MAU(サインイン済み)"
|
||||
msgid "Max"
|
||||
msgstr "最大"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Max requests"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
|
||||
msgstr "最大ファイルサイズ: 4MB。アップロードあたり最大 100 行。空の値はテンプレートのデフォルトが使用されます。"
|
||||
@@ -7116,12 +7129,12 @@ msgstr "メンバー登録日"
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-groups-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/team-groups-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -7190,16 +7203,12 @@ msgid "Monthly Active Users: Users that had at least one of their documents comp
|
||||
msgstr "月間アクティブユーザー:1 つ以上の文書が完了したユーザー"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly API quota"
|
||||
msgstr "月間 API クォータ"
|
||||
msgid "Monthly quota"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly document quota"
|
||||
msgstr "月間ドキュメントクォータ"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly email quota"
|
||||
msgstr "月間メールクォータ"
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Monthly usage"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-move-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
|
||||
@@ -7290,7 +7299,6 @@ msgid "Name"
|
||||
msgstr "名前"
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Name is required"
|
||||
msgstr "名前は必須です"
|
||||
|
||||
@@ -7298,6 +7306,10 @@ msgstr "名前は必須です"
|
||||
msgid "Name Settings"
|
||||
msgstr "名前の設定"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Near limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
|
||||
msgid "Need to sign documents?"
|
||||
msgstr "文書への署名が必要ですか?"
|
||||
@@ -7437,6 +7449,10 @@ msgstr "現在、お客様が行う必要のある操作はありません。"
|
||||
msgid "No groups found"
|
||||
msgstr "グループが見つかりません"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "No inherited claim"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
msgid "No License Configured"
|
||||
msgstr "ライセンスが設定されていません"
|
||||
@@ -8153,6 +8169,10 @@ msgstr "保留中の組織招待"
|
||||
msgid "Pending since"
|
||||
msgstr "保留開始日時"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "People with access to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/billing-plans.tsx
|
||||
msgid "per month"
|
||||
@@ -8315,10 +8335,6 @@ msgstr "トークンの用途が分かる名前を入力してください。後
|
||||
msgid "Please enter a number"
|
||||
msgstr "数値を入力してください"
|
||||
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
msgid "Please enter a valid name."
|
||||
msgstr "有効な名前を入力してください。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a valid number"
|
||||
msgstr "有効な数値を入力してください"
|
||||
@@ -9057,6 +9073,10 @@ msgstr "組織メンバーを削除"
|
||||
msgid "Remove Organisation Member"
|
||||
msgstr "組織メンバーを削除"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Remove rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Remove recipient"
|
||||
msgstr "受信者を削除"
|
||||
@@ -9247,6 +9267,10 @@ msgstr "解決"
|
||||
msgid "Resolve payment"
|
||||
msgstr "支払いを解決"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Resource blocked"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/webhook-logs-sheet.tsx
|
||||
msgid "Response"
|
||||
msgstr "レスポンス"
|
||||
@@ -9823,6 +9847,10 @@ msgstr "送信中..."
|
||||
msgid "Sent"
|
||||
msgstr "送信日時"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Sent this period"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
msgid "Session revoked"
|
||||
msgstr "セッションを取り消しました"
|
||||
@@ -10805,10 +10833,10 @@ msgid "Team URL"
|
||||
msgstr "チーム URL"
|
||||
|
||||
#: apps/remix/app/components/general/org-menu-switcher.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
|
||||
@@ -10819,6 +10847,10 @@ msgstr "チーム"
|
||||
msgid "Teams help you organise your work and collaborate with others. Create your first team to get started."
|
||||
msgstr "チームは作業を整理し、他のメンバーとコラボレーションするのに役立ちます。最初のチームを作成して始めましょう。"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Teams that belong to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Teams that this organisation group is currently assigned to"
|
||||
msgstr "この組織グループが現在割り当てられているチーム"
|
||||
@@ -12297,8 +12329,6 @@ msgstr "不明な名前"
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Unlimited"
|
||||
msgstr "無制限"
|
||||
|
||||
@@ -12591,15 +12621,18 @@ msgstr "アップロード中"
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
#. placeholder {0}: selectedStat?.period || 'N/A'
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Usage for period: {0}"
|
||||
msgstr "期間内の利用状況: {0}"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
|
||||
msgid "Use"
|
||||
msgstr "使用"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a duration with a unit, e.g. 5m, 1h, or 24h"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13501,10 +13534,18 @@ msgstr "ホワイトラベリング、メンバー無制限など"
|
||||
msgid "Width:"
|
||||
msgstr "幅:"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
|
||||
msgid "Withdrawing Consent"
|
||||
msgstr "同意の撤回"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Within limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/public-profile-form.tsx
|
||||
msgid "Write a description to display on your public profile"
|
||||
msgstr "公開プロフィールに表示する説明文を入力してください"
|
||||
|
||||
@@ -1416,8 +1416,8 @@ msgid "Add Placeholders"
|
||||
msgstr "플레이스홀더 추가"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Add rate limit"
|
||||
msgstr "요청 한도 추가"
|
||||
msgid "Add rate limit window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Add recipients"
|
||||
@@ -2008,6 +2008,7 @@ msgstr "모든 소스"
|
||||
msgid "Any Status"
|
||||
msgstr "모든 상태"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "API"
|
||||
msgstr "API"
|
||||
@@ -2017,10 +2018,6 @@ msgstr "API"
|
||||
msgid "API key"
|
||||
msgstr "API 키"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "API rate limits"
|
||||
msgstr "API 요청 한도"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "API requests"
|
||||
msgstr "API 요청"
|
||||
@@ -2681,6 +2678,10 @@ msgstr "서명자를 제거할 수 없습니다."
|
||||
msgid "Cannot upload items after the document has been sent"
|
||||
msgstr "문서를 전송한 이후에는 항목을 업로드할 수 없습니다."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Capabilities enabled for this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/constants/recipient-roles.ts
|
||||
msgctxt "Recipient role name"
|
||||
msgid "Cc"
|
||||
@@ -4407,10 +4408,6 @@ msgstr "문서 기본 설정"
|
||||
msgid "Document preferences updated"
|
||||
msgstr "문서 환경설정이 업데이트되었습니다"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Document rate limits"
|
||||
msgstr "문서 요청 한도"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-status.tsx
|
||||
msgid "Document rejected"
|
||||
@@ -4546,6 +4543,7 @@ msgstr "문서"
|
||||
#: apps/remix/app/components/general/app-command-menu.tsx
|
||||
#: apps/remix/app/components/general/app-nav-desktop.tsx
|
||||
#: apps/remix/app/components/general/app-nav-mobile.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
|
||||
@@ -4995,10 +4993,6 @@ msgstr "이메일 기본 설정"
|
||||
msgid "Email preferences updated"
|
||||
msgstr "이메일 기본 설정이 업데이트되었습니다."
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Email rate limits"
|
||||
msgstr "이메일 요청 한도"
|
||||
|
||||
#: packages/ui/components/document/document-email-checkboxes.tsx
|
||||
msgid "Email recipients when a pending document is deleted"
|
||||
msgstr "보류 중인 문서가 삭제되면 수신자에게 이메일 보내기"
|
||||
@@ -5094,6 +5088,7 @@ msgstr "이메일 인증이 제거되었습니다"
|
||||
msgid "Email verification has been resent"
|
||||
msgstr "이메일 인증이 다시 전송되었습니다"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
|
||||
@@ -5107,16 +5102,14 @@ msgstr "이메일"
|
||||
msgid "Embedding, 5 members included and more"
|
||||
msgstr "임베딩, 5명의 구성원 포함 등"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty = Unlimited, 0 = Blocked"
|
||||
msgstr "비워 두기 = 무제한, 0 = 차단됨"
|
||||
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
msgid "Empty field"
|
||||
msgstr "빈 필드"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty quota means unlimited, 0 blocks the resource. Rate limit windows accept values like 5m, 1h or 24h."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
|
||||
msgid "Enable"
|
||||
msgstr "활성화"
|
||||
@@ -5236,6 +5229,10 @@ msgstr "임베딩 토큰이 아닌 API 토큰을 사용하고 있지 않은지
|
||||
msgid "Enter"
|
||||
msgstr "입력하세요"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a max request count greater than 0"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
|
||||
msgid "Enter a name for your new folder. Folders help you organise your items."
|
||||
msgstr "새 폴더 이름을 입력하세요. 폴더는 항목을 정리하는 데 도움이 됩니다."
|
||||
@@ -5244,6 +5241,10 @@ msgstr "새 폴더 이름을 입력하세요. 폴더는 항목을 정리하는
|
||||
msgid "Enter a new title"
|
||||
msgstr "새 제목을 입력하세요."
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a window, e.g. 5m"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/subscription-claim-form.tsx
|
||||
msgid "Enter claim name"
|
||||
msgstr "클레임 이름 입력"
|
||||
@@ -5502,6 +5503,10 @@ msgstr "모든 사람이 서명했습니다"
|
||||
msgid "Everyone has signed! You will receive an email copy of the signed document."
|
||||
msgstr "모두 서명했습니다! 서명된 문서의 사본이 이메일로 전송됩니다."
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Exceeded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
|
||||
msgid "Exceeded timeout"
|
||||
msgstr "시간 초과됨"
|
||||
@@ -6765,6 +6770,10 @@ msgstr "라이트 모드"
|
||||
msgid "Like to have your own public profile with agreements?"
|
||||
msgstr "계약이 포함된 나만의 공개 프로필을 원하시나요?"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Limit reached"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Limits"
|
||||
msgstr "제한"
|
||||
@@ -7070,6 +7079,10 @@ msgstr "MAU(로그인 기준)"
|
||||
msgid "Max"
|
||||
msgstr "최대"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Max requests"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
|
||||
msgstr "최대 파일 크기: 4MB. 업로드당 최대 100행. 비어 있는 값은 템플릿 기본값이 사용됩니다."
|
||||
@@ -7116,12 +7129,12 @@ msgstr "가입일"
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-groups-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/team-groups-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -7190,16 +7203,12 @@ msgid "Monthly Active Users: Users that had at least one of their documents comp
|
||||
msgstr "월간 활성 사용자: 문서가 하나 이상 완료된 사용자"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly API quota"
|
||||
msgstr "월간 API 할당량"
|
||||
msgid "Monthly quota"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly document quota"
|
||||
msgstr "월간 문서 할당량"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly email quota"
|
||||
msgstr "월간 이메일 할당량"
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Monthly usage"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-move-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
|
||||
@@ -7290,7 +7299,6 @@ msgid "Name"
|
||||
msgstr "이름"
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Name is required"
|
||||
msgstr "이름은 필수 항목입니다."
|
||||
|
||||
@@ -7298,6 +7306,10 @@ msgstr "이름은 필수 항목입니다."
|
||||
msgid "Name Settings"
|
||||
msgstr "이름 설정"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Near limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
|
||||
msgid "Need to sign documents?"
|
||||
msgstr "문서에 서명이 필요하신가요?"
|
||||
@@ -7437,6 +7449,10 @@ msgstr "현재 추가로 수행해야 할 작업은 없습니다."
|
||||
msgid "No groups found"
|
||||
msgstr "그룹을 찾을 수 없습니다."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "No inherited claim"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
msgid "No License Configured"
|
||||
msgstr "라이선스가 구성되지 않았습니다"
|
||||
@@ -8153,6 +8169,10 @@ msgstr "보류 중인 조직 초대"
|
||||
msgid "Pending since"
|
||||
msgstr "다음 시점부터 보류 중"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "People with access to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/billing-plans.tsx
|
||||
msgid "per month"
|
||||
@@ -8315,10 +8335,6 @@ msgstr "토큰을 나중에 식별할 수 있도록 의미 있는 이름을 입
|
||||
msgid "Please enter a number"
|
||||
msgstr "숫자를 입력하세요"
|
||||
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
msgid "Please enter a valid name."
|
||||
msgstr "올바른 이름을 입력해 주세요."
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a valid number"
|
||||
msgstr "올바른 숫자를 입력하세요"
|
||||
@@ -9057,6 +9073,10 @@ msgstr "조직 구성원 제거"
|
||||
msgid "Remove Organisation Member"
|
||||
msgstr "조직 구성원 제거"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Remove rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Remove recipient"
|
||||
msgstr "수신자 제거"
|
||||
@@ -9247,6 +9267,10 @@ msgstr "해결"
|
||||
msgid "Resolve payment"
|
||||
msgstr "결제 해결"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Resource blocked"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/webhook-logs-sheet.tsx
|
||||
msgid "Response"
|
||||
msgstr "응답"
|
||||
@@ -9823,6 +9847,10 @@ msgstr "전송 중..."
|
||||
msgid "Sent"
|
||||
msgstr "발송됨"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Sent this period"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
msgid "Session revoked"
|
||||
msgstr "세션이 해지되었습니다."
|
||||
@@ -10805,10 +10833,10 @@ msgid "Team URL"
|
||||
msgstr "팀 URL"
|
||||
|
||||
#: apps/remix/app/components/general/org-menu-switcher.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
|
||||
@@ -10819,6 +10847,10 @@ msgstr "팀"
|
||||
msgid "Teams help you organise your work and collaborate with others. Create your first team to get started."
|
||||
msgstr "팀은 작업을 조직하고 다른 사람과 협업하는 데 도움이 됩니다. 첫 번째 팀을 생성하여 시작하세요."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Teams that belong to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Teams that this organisation group is currently assigned to"
|
||||
msgstr "이 조직 그룹이 현재 할당된 팀"
|
||||
@@ -12297,8 +12329,6 @@ msgstr "이름을 알 수 없음"
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Unlimited"
|
||||
msgstr "무제한"
|
||||
|
||||
@@ -12591,15 +12621,18 @@ msgstr "업로드 중"
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
#. placeholder {0}: selectedStat?.period || 'N/A'
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Usage for period: {0}"
|
||||
msgstr "기간별 사용량: {0}"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
|
||||
msgid "Use"
|
||||
msgstr "사용"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a duration with a unit, e.g. 5m, 1h, or 24h"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13501,10 +13534,18 @@ msgstr "화이트라벨, 무제한 구성원 등"
|
||||
msgid "Width:"
|
||||
msgstr "너비:"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
|
||||
msgid "Withdrawing Consent"
|
||||
msgstr "동의 철회"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Within limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/public-profile-form.tsx
|
||||
msgid "Write a description to display on your public profile"
|
||||
msgstr "공개 프로필에 표시될 설명을 작성하세요."
|
||||
|
||||
@@ -1416,8 +1416,8 @@ msgid "Add Placeholders"
|
||||
msgstr "Placeholders toevoegen"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Add rate limit"
|
||||
msgstr "Snelheidslimiet toevoegen"
|
||||
msgid "Add rate limit window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Add recipients"
|
||||
@@ -2008,6 +2008,7 @@ msgstr "Elke bron"
|
||||
msgid "Any Status"
|
||||
msgstr "Elke status"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "API"
|
||||
msgstr "API"
|
||||
@@ -2017,10 +2018,6 @@ msgstr "API"
|
||||
msgid "API key"
|
||||
msgstr "API-sleutel"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "API rate limits"
|
||||
msgstr "API-snelheidslimieten"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "API requests"
|
||||
msgstr "API-verzoeken"
|
||||
@@ -2681,6 +2678,10 @@ msgstr "Ondertekenaar kan niet worden verwijderd"
|
||||
msgid "Cannot upload items after the document has been sent"
|
||||
msgstr "Items kunnen niet worden geüpload nadat het document is verzonden"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Capabilities enabled for this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/constants/recipient-roles.ts
|
||||
msgctxt "Recipient role name"
|
||||
msgid "Cc"
|
||||
@@ -4407,10 +4408,6 @@ msgstr "Documentvoorkeuren"
|
||||
msgid "Document preferences updated"
|
||||
msgstr "Documentvoorkeuren bijgewerkt"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Document rate limits"
|
||||
msgstr "Documentsnelheidslimieten"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-status.tsx
|
||||
msgid "Document rejected"
|
||||
@@ -4546,6 +4543,7 @@ msgstr "Documentatie"
|
||||
#: apps/remix/app/components/general/app-command-menu.tsx
|
||||
#: apps/remix/app/components/general/app-nav-desktop.tsx
|
||||
#: apps/remix/app/components/general/app-nav-mobile.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
|
||||
@@ -4995,10 +4993,6 @@ msgstr "E-mailvoorkeuren"
|
||||
msgid "Email preferences updated"
|
||||
msgstr "E-mailvoorkeuren bijgewerkt"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Email rate limits"
|
||||
msgstr "E-mailsnelheidslimieten"
|
||||
|
||||
#: packages/ui/components/document/document-email-checkboxes.tsx
|
||||
msgid "Email recipients when a pending document is deleted"
|
||||
msgstr "E-mail ontvangers wanneer een in behandeling zijnd document wordt verwijderd"
|
||||
@@ -5094,6 +5088,7 @@ msgstr "E‑mailverificatie is verwijderd"
|
||||
msgid "Email verification has been resent"
|
||||
msgstr "E‑mailverificatie is opnieuw verzonden"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
|
||||
@@ -5107,16 +5102,14 @@ msgstr "E-mails"
|
||||
msgid "Embedding, 5 members included and more"
|
||||
msgstr "Inbedding, 5 leden inbegrepen en meer"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty = Unlimited, 0 = Blocked"
|
||||
msgstr "Leeg = Onbeperkt, 0 = Geblokkeerd"
|
||||
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
msgid "Empty field"
|
||||
msgstr "Leeg veld"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty quota means unlimited, 0 blocks the resource. Rate limit windows accept values like 5m, 1h or 24h."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
|
||||
msgid "Enable"
|
||||
msgstr "Inschakelen"
|
||||
@@ -5236,6 +5229,10 @@ msgstr "Zorg ervoor dat je het embedding-token gebruikt en niet het API-token"
|
||||
msgid "Enter"
|
||||
msgstr "Invoeren"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a max request count greater than 0"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
|
||||
msgid "Enter a name for your new folder. Folders help you organise your items."
|
||||
msgstr "Voer een naam in voor je nieuwe map. Mappen helpen je je items te organiseren."
|
||||
@@ -5244,6 +5241,10 @@ msgstr "Voer een naam in voor je nieuwe map. Mappen helpen je je items te organi
|
||||
msgid "Enter a new title"
|
||||
msgstr "Voer een nieuwe titel in"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a window, e.g. 5m"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/subscription-claim-form.tsx
|
||||
msgid "Enter claim name"
|
||||
msgstr "Voer claimnaam in"
|
||||
@@ -5502,6 +5503,10 @@ msgstr "Iedereen heeft getekend"
|
||||
msgid "Everyone has signed! You will receive an email copy of the signed document."
|
||||
msgstr "Iedereen heeft ondertekend! U ontvangt een kopie van het ondertekende document per e-mail."
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Exceeded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
|
||||
msgid "Exceeded timeout"
|
||||
msgstr "Time‑out overschreden"
|
||||
@@ -6765,6 +6770,10 @@ msgstr "Lichte modus"
|
||||
msgid "Like to have your own public profile with agreements?"
|
||||
msgstr "Wil je een eigen openbaar profiel met overeenkomsten?"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Limit reached"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Limits"
|
||||
msgstr "Limieten"
|
||||
@@ -7070,6 +7079,10 @@ msgstr "MAU (ingelogd)"
|
||||
msgid "Max"
|
||||
msgstr "Max"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Max requests"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
|
||||
msgstr "Maximale bestandsgrootte: 4 MB. Maximaal 100 rijen per upload. Lege waarden gebruiken de standaardwaarden van de sjabloon."
|
||||
@@ -7116,12 +7129,12 @@ msgstr "Lid sinds"
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-groups-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/team-groups-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -7190,16 +7203,12 @@ msgid "Monthly Active Users: Users that had at least one of their documents comp
|
||||
msgstr "Maandelijks actieve gebruikers: gebruikers van wie ten minste één document is voltooid"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly API quota"
|
||||
msgstr "Maandelijkse API-limiet"
|
||||
msgid "Monthly quota"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly document quota"
|
||||
msgstr "Maandelijkse documentlimiet"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly email quota"
|
||||
msgstr "Maandelijkse e-maillimiet"
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Monthly usage"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-move-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
|
||||
@@ -7290,7 +7299,6 @@ msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Name is required"
|
||||
msgstr "Naam is verplicht"
|
||||
|
||||
@@ -7298,6 +7306,10 @@ msgstr "Naam is verplicht"
|
||||
msgid "Name Settings"
|
||||
msgstr "Naam-instellingen"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Near limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
|
||||
msgid "Need to sign documents?"
|
||||
msgstr "Moet je documenten ondertekenen?"
|
||||
@@ -7437,6 +7449,10 @@ msgstr "Er is op dit moment geen verdere actie van jou vereist."
|
||||
msgid "No groups found"
|
||||
msgstr "Geen groepen gevonden"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "No inherited claim"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
msgid "No License Configured"
|
||||
msgstr "Geen licentie geconfigureerd"
|
||||
@@ -8153,6 +8169,10 @@ msgstr "Openstaande organisatie-uitnodigingen"
|
||||
msgid "Pending since"
|
||||
msgstr "In behandeling sinds"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "People with access to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/billing-plans.tsx
|
||||
msgid "per month"
|
||||
@@ -8315,10 +8335,6 @@ msgstr "Voer een betekenisvolle naam in voor je token. Hiermee kun je het later
|
||||
msgid "Please enter a number"
|
||||
msgstr "Voer een nummer in"
|
||||
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
msgid "Please enter a valid name."
|
||||
msgstr "Voer een geldige naam in."
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a valid number"
|
||||
msgstr "Voer een geldig nummer in"
|
||||
@@ -9057,6 +9073,10 @@ msgstr "Organisatielid verwijderen"
|
||||
msgid "Remove Organisation Member"
|
||||
msgstr "Organisatielid verwijderen"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Remove rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Remove recipient"
|
||||
msgstr "Ontvanger verwijderen"
|
||||
@@ -9247,6 +9267,10 @@ msgstr "Oplossen"
|
||||
msgid "Resolve payment"
|
||||
msgstr "Betaling oplossen"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Resource blocked"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/webhook-logs-sheet.tsx
|
||||
msgid "Response"
|
||||
msgstr "Antwoord"
|
||||
@@ -9823,6 +9847,10 @@ msgstr "Verzenden..."
|
||||
msgid "Sent"
|
||||
msgstr "Verzonden"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Sent this period"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
msgid "Session revoked"
|
||||
msgstr "Sessie ingetrokken"
|
||||
@@ -10805,10 +10833,10 @@ msgid "Team URL"
|
||||
msgstr "Team‑URL"
|
||||
|
||||
#: apps/remix/app/components/general/org-menu-switcher.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
|
||||
@@ -10819,6 +10847,10 @@ msgstr "Teams"
|
||||
msgid "Teams help you organise your work and collaborate with others. Create your first team to get started."
|
||||
msgstr "Teams helpen je je werk te organiseren en samen te werken met anderen. Maak je eerste team aan om te beginnen."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Teams that belong to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Teams that this organisation group is currently assigned to"
|
||||
msgstr "Teams waaraan deze organisatiegroep momenteel is toegewezen"
|
||||
@@ -12297,8 +12329,6 @@ msgstr "Onbekende naam"
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Unlimited"
|
||||
msgstr "Onbeperkt"
|
||||
|
||||
@@ -12591,15 +12621,18 @@ msgstr "Uploaden"
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
#. placeholder {0}: selectedStat?.period || 'N/A'
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Usage for period: {0}"
|
||||
msgstr "Gebruik voor periode: {0}"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
|
||||
msgid "Use"
|
||||
msgstr "Gebruiken"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a duration with a unit, e.g. 5m, 1h, or 24h"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13501,10 +13534,18 @@ msgstr "Whitelabeling, onbeperkte leden en meer"
|
||||
msgid "Width:"
|
||||
msgstr "Breedte:"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
|
||||
msgid "Withdrawing Consent"
|
||||
msgstr "Toestemming intrekken"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Within limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/public-profile-form.tsx
|
||||
msgid "Write a description to display on your public profile"
|
||||
msgstr "Schrijf een beschrijving die op je openbare profiel wordt weergegeven"
|
||||
|
||||
@@ -1416,8 +1416,8 @@ msgid "Add Placeholders"
|
||||
msgstr "Dodaj domyślny tekst"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Add rate limit"
|
||||
msgstr "Dodaj limit przepustowości"
|
||||
msgid "Add rate limit window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Add recipients"
|
||||
@@ -2008,6 +2008,7 @@ msgstr "Dowolne źródło"
|
||||
msgid "Any Status"
|
||||
msgstr "Dowolny status"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "API"
|
||||
msgstr "API"
|
||||
@@ -2017,10 +2018,6 @@ msgstr "API"
|
||||
msgid "API key"
|
||||
msgstr "Klucz API"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "API rate limits"
|
||||
msgstr "Limit przepustowości API"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "API requests"
|
||||
msgstr "Żądania API"
|
||||
@@ -2681,6 +2678,10 @@ msgstr "Nie można usunąć podpisującego"
|
||||
msgid "Cannot upload items after the document has been sent"
|
||||
msgstr "Nie możesz przesłać elementów po wysłaniu dokumentu"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Capabilities enabled for this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/constants/recipient-roles.ts
|
||||
msgctxt "Recipient role name"
|
||||
msgid "Cc"
|
||||
@@ -4407,10 +4408,6 @@ msgstr "Ustawienia dokumentu"
|
||||
msgid "Document preferences updated"
|
||||
msgstr "Ustawienia dokumentu zostały zaktualizowane"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Document rate limits"
|
||||
msgstr "Limit przepustowości dokumentów"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-status.tsx
|
||||
msgid "Document rejected"
|
||||
@@ -4546,6 +4543,7 @@ msgstr "Dokumentacja"
|
||||
#: apps/remix/app/components/general/app-command-menu.tsx
|
||||
#: apps/remix/app/components/general/app-nav-desktop.tsx
|
||||
#: apps/remix/app/components/general/app-nav-mobile.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
|
||||
@@ -4995,10 +4993,6 @@ msgstr "Ustawienia adresu e-mail"
|
||||
msgid "Email preferences updated"
|
||||
msgstr "Ustawienia adresu e-mail zostały zaktualizowane"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Email rate limits"
|
||||
msgstr "Limit przepustowości wiadomości"
|
||||
|
||||
#: packages/ui/components/document/document-email-checkboxes.tsx
|
||||
msgid "Email recipients when a pending document is deleted"
|
||||
msgstr "Wyślij odbiorcom wiadomość, gdy oczekujący dokument zostanie usunięty"
|
||||
@@ -5094,6 +5088,7 @@ msgstr "Weryfikacja adresu e-mail została usunięta"
|
||||
msgid "Email verification has been resent"
|
||||
msgstr "Weryfikacja adresu e-mail została ponownie wysłana"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
|
||||
@@ -5107,16 +5102,14 @@ msgstr "Adresy e-mail"
|
||||
msgid "Embedding, 5 members included and more"
|
||||
msgstr "Osadzanie dokumentów, 5 użytkowników i więcej"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty = Unlimited, 0 = Blocked"
|
||||
msgstr "Puste = bez ograniczeń, 0 = zablokowane"
|
||||
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
msgid "Empty field"
|
||||
msgstr "Puste pole"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty quota means unlimited, 0 blocks the resource. Rate limit windows accept values like 5m, 1h or 24h."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
|
||||
msgid "Enable"
|
||||
msgstr "Włącz"
|
||||
@@ -5236,6 +5229,10 @@ msgstr "Upewnij się, że używasz tokena osadzania, a nie tokenu API."
|
||||
msgid "Enter"
|
||||
msgstr "Wpisz"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a max request count greater than 0"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
|
||||
msgid "Enter a name for your new folder. Folders help you organise your items."
|
||||
msgstr "Wpisz nazwę nowego folderu. Foldery pomagają uporządkować elementy."
|
||||
@@ -5244,6 +5241,10 @@ msgstr "Wpisz nazwę nowego folderu. Foldery pomagają uporządkować elementy."
|
||||
msgid "Enter a new title"
|
||||
msgstr "Wpisz nowy tytuł"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a window, e.g. 5m"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/subscription-claim-form.tsx
|
||||
msgid "Enter claim name"
|
||||
msgstr "Wpisz nazwę"
|
||||
@@ -5502,6 +5503,10 @@ msgstr "Wszyscy podpisali"
|
||||
msgid "Everyone has signed! You will receive an email copy of the signed document."
|
||||
msgstr "Wszyscy podpisali! Otrzymasz wiadomość z podpisanym dokumentem."
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Exceeded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
|
||||
msgid "Exceeded timeout"
|
||||
msgstr "Przekroczono limit czasu"
|
||||
@@ -6765,6 +6770,10 @@ msgstr "Tryb jasny"
|
||||
msgid "Like to have your own public profile with agreements?"
|
||||
msgstr "Czy chcesz mieć własny profil publiczny z umowami?"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Limit reached"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Limits"
|
||||
msgstr "Limity"
|
||||
@@ -7070,6 +7079,10 @@ msgstr "MAU (zalogowani)"
|
||||
msgid "Max"
|
||||
msgstr "Maks."
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Max requests"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
|
||||
msgstr "Maksymalny rozmiar pliku to 4 MB. Możesz przesłać maksymalnie 100 wierszy na raz. Puste wartości zostaną zastąpione domyślnymi z szablonu."
|
||||
@@ -7116,12 +7129,12 @@ msgstr "Data dołączenia"
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-groups-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/team-groups-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -7190,16 +7203,12 @@ msgid "Monthly Active Users: Users that had at least one of their documents comp
|
||||
msgstr "Miesięczna liczba aktywnych użytkowników: Użytkownicy, którzy zakończyli co najmniej jeden dokument"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly API quota"
|
||||
msgstr "Miesięczny limit API"
|
||||
msgid "Monthly quota"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly document quota"
|
||||
msgstr "Miesięczny limit dokumentów"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly email quota"
|
||||
msgstr "Miesięczny limit wiadomości"
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Monthly usage"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-move-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
|
||||
@@ -7290,7 +7299,6 @@ msgid "Name"
|
||||
msgstr "Nazwa"
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Name is required"
|
||||
msgstr "Nazwa jest wymagana"
|
||||
|
||||
@@ -7298,6 +7306,10 @@ msgstr "Nazwa jest wymagana"
|
||||
msgid "Name Settings"
|
||||
msgstr "Ustawienia nazwy"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Near limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
|
||||
msgid "Need to sign documents?"
|
||||
msgstr "Potrzebujesz podpisywać dokumenty?"
|
||||
@@ -7437,6 +7449,10 @@ msgstr "Nie musisz nic więcej robić."
|
||||
msgid "No groups found"
|
||||
msgstr "Nie znaleziono grup"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "No inherited claim"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
msgid "No License Configured"
|
||||
msgstr "Brak skonfigurowanej licencji"
|
||||
@@ -8153,6 +8169,10 @@ msgstr "Oczekujące zaproszenia do organizacji"
|
||||
msgid "Pending since"
|
||||
msgstr "Oczekuje od"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "People with access to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/billing-plans.tsx
|
||||
msgid "per month"
|
||||
@@ -8315,10 +8335,6 @@ msgstr "Wpisz nazwę tokena. Pomoże to później w jego identyfikacji."
|
||||
msgid "Please enter a number"
|
||||
msgstr "Wpisz liczbę"
|
||||
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
msgid "Please enter a valid name."
|
||||
msgstr "Wpisz prawidłową nazwę."
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a valid number"
|
||||
msgstr "Wpisz prawidłową liczbę"
|
||||
@@ -9057,6 +9073,10 @@ msgstr "Usuń użytkownika organizacji"
|
||||
msgid "Remove Organisation Member"
|
||||
msgstr "Usuń użytkownika organizacji"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Remove rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Remove recipient"
|
||||
msgstr "Usuń odbiorcę"
|
||||
@@ -9247,6 +9267,10 @@ msgstr "Rozwiąż"
|
||||
msgid "Resolve payment"
|
||||
msgstr "Rozwiąż płatność"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Resource blocked"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/webhook-logs-sheet.tsx
|
||||
msgid "Response"
|
||||
msgstr "Odpowiedź"
|
||||
@@ -9823,6 +9847,10 @@ msgstr "Wysyłanie..."
|
||||
msgid "Sent"
|
||||
msgstr "Wysłano"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Sent this period"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
msgid "Session revoked"
|
||||
msgstr "Sesja została unieważniona"
|
||||
@@ -10805,10 +10833,10 @@ msgid "Team URL"
|
||||
msgstr "Adres URL zespołu"
|
||||
|
||||
#: apps/remix/app/components/general/org-menu-switcher.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
|
||||
@@ -10819,6 +10847,10 @@ msgstr "Zespoły"
|
||||
msgid "Teams help you organise your work and collaborate with others. Create your first team to get started."
|
||||
msgstr "Zespoły pomagają organizować pracę i współpracować z innymi. Utwórz swój pierwszy zespół, aby rozpocząć."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Teams that belong to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Teams that this organisation group is currently assigned to"
|
||||
msgstr "Zespoły, do których przypisana jest grupa organizacji"
|
||||
@@ -12297,8 +12329,6 @@ msgstr "Nieznana nazwa"
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Unlimited"
|
||||
msgstr "Bez ograniczeń"
|
||||
|
||||
@@ -12591,15 +12621,18 @@ msgstr "Przesyłanie"
|
||||
msgid "URL"
|
||||
msgstr "Adres URL"
|
||||
|
||||
#. placeholder {0}: selectedStat?.period || 'N/A'
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Usage for period: {0}"
|
||||
msgstr "Okres: {0}"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
|
||||
msgid "Use"
|
||||
msgstr "Użyj"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a duration with a unit, e.g. 5m, 1h, or 24h"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13501,10 +13534,18 @@ msgstr "Własny branding, nieograniczona liczba użytkowników i więcej"
|
||||
msgid "Width:"
|
||||
msgstr "Szerokość:"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
|
||||
msgid "Withdrawing Consent"
|
||||
msgstr "Wycofanie zgody"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Within limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/public-profile-form.tsx
|
||||
msgid "Write a description to display on your public profile"
|
||||
msgstr "Wpisz opis, który będzie wyświetlany w profilu publicznym"
|
||||
|
||||
@@ -1411,7 +1411,7 @@ msgid "Add Placeholders"
|
||||
msgstr "Adicionar Espaços Reservados"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Add rate limit"
|
||||
msgid "Add rate limit window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
@@ -2003,6 +2003,7 @@ msgstr "Qualquer Origem"
|
||||
msgid "Any Status"
|
||||
msgstr "Qualquer Status"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "API"
|
||||
msgstr ""
|
||||
@@ -2012,10 +2013,6 @@ msgstr ""
|
||||
msgid "API key"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "API rate limits"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "API requests"
|
||||
msgstr ""
|
||||
@@ -2676,6 +2673,10 @@ msgstr "Não é possível remover o signatário"
|
||||
msgid "Cannot upload items after the document has been sent"
|
||||
msgstr "Não é possível fazer upload de itens após o envio do documento"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Capabilities enabled for this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/constants/recipient-roles.ts
|
||||
msgctxt "Recipient role name"
|
||||
msgid "Cc"
|
||||
@@ -4402,10 +4403,6 @@ msgstr "Preferências de Documento"
|
||||
msgid "Document preferences updated"
|
||||
msgstr "Preferências de documento atualizadas"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Document rate limits"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-status.tsx
|
||||
msgid "Document rejected"
|
||||
@@ -4541,6 +4538,7 @@ msgstr "Documentação"
|
||||
#: apps/remix/app/components/general/app-command-menu.tsx
|
||||
#: apps/remix/app/components/general/app-nav-desktop.tsx
|
||||
#: apps/remix/app/components/general/app-nav-mobile.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
|
||||
@@ -4990,10 +4988,6 @@ msgstr "Preferências de E-mail"
|
||||
msgid "Email preferences updated"
|
||||
msgstr "Preferências de e-mail atualizadas"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Email rate limits"
|
||||
msgstr ""
|
||||
|
||||
#: packages/ui/components/document/document-email-checkboxes.tsx
|
||||
msgid "Email recipients when a pending document is deleted"
|
||||
msgstr ""
|
||||
@@ -5089,6 +5083,7 @@ msgstr "A verificação de e-mail foi removida"
|
||||
msgid "Email verification has been resent"
|
||||
msgstr "A verificação de e-mail foi reenviada"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
|
||||
@@ -5102,16 +5097,14 @@ msgstr "E-mails"
|
||||
msgid "Embedding, 5 members included and more"
|
||||
msgstr "Incorporação, 5 membros incluídos e mais"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty = Unlimited, 0 = Blocked"
|
||||
msgstr ""
|
||||
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
msgid "Empty field"
|
||||
msgstr "Campo vazio"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty quota means unlimited, 0 blocks the resource. Rate limit windows accept values like 5m, 1h or 24h."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
|
||||
msgid "Enable"
|
||||
msgstr "Ativar"
|
||||
@@ -5231,6 +5224,10 @@ msgstr ""
|
||||
msgid "Enter"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a max request count greater than 0"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
|
||||
msgid "Enter a name for your new folder. Folders help you organise your items."
|
||||
msgstr "Digite um nome para sua nova pasta. As pastas ajudam você a organizar seus itens."
|
||||
@@ -5239,6 +5236,10 @@ msgstr "Digite um nome para sua nova pasta. As pastas ajudam você a organizar s
|
||||
msgid "Enter a new title"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a window, e.g. 5m"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/subscription-claim-form.tsx
|
||||
msgid "Enter claim name"
|
||||
msgstr "Digite o nome da reivindicação"
|
||||
@@ -5497,6 +5498,10 @@ msgstr "Todos assinaram"
|
||||
msgid "Everyone has signed! You will receive an email copy of the signed document."
|
||||
msgstr "Todos assinaram! Você receberá uma cópia do documento assinado por e-mail."
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Exceeded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
|
||||
msgid "Exceeded timeout"
|
||||
msgstr "Tempo limite excedido"
|
||||
@@ -6760,6 +6765,10 @@ msgstr "Modo Claro"
|
||||
msgid "Like to have your own public profile with agreements?"
|
||||
msgstr "Gostaria de ter seu próprio perfil público com contratos?"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Limit reached"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Limits"
|
||||
msgstr ""
|
||||
@@ -7065,6 +7074,10 @@ msgstr "MAU (entrou)"
|
||||
msgid "Max"
|
||||
msgstr "Máx"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Max requests"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
|
||||
msgstr "Tamanho máximo do arquivo: 4MB. Máximo de 100 linhas por upload. Valores em branco usarão os padrões do modelo."
|
||||
@@ -7111,12 +7124,12 @@ msgstr "Membro Desde"
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-groups-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/team-groups-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -7185,15 +7198,11 @@ msgid "Monthly Active Users: Users that had at least one of their documents comp
|
||||
msgstr "Usuários Ativos Mensais: Usuários que tiveram pelo menos um de seus documentos concluídos"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly API quota"
|
||||
msgid "Monthly quota"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly document quota"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly email quota"
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Monthly usage"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-move-dialog.tsx
|
||||
@@ -7285,7 +7294,6 @@ msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Name is required"
|
||||
msgstr "O nome é obrigatório"
|
||||
|
||||
@@ -7293,6 +7301,10 @@ msgstr "O nome é obrigatório"
|
||||
msgid "Name Settings"
|
||||
msgstr "Configurações de Nome"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Near limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
|
||||
msgid "Need to sign documents?"
|
||||
msgstr "Precisa assinar documentos?"
|
||||
@@ -7432,6 +7444,10 @@ msgstr "Nenhuma ação adicional é necessária de sua parte neste momento."
|
||||
msgid "No groups found"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "No inherited claim"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
msgid "No License Configured"
|
||||
msgstr ""
|
||||
@@ -8148,6 +8164,10 @@ msgstr ""
|
||||
msgid "Pending since"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "People with access to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/billing-plans.tsx
|
||||
msgid "per month"
|
||||
@@ -8310,10 +8330,6 @@ msgstr "Por favor, insira um nome significativo para seu token. Isso ajudará vo
|
||||
msgid "Please enter a number"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
msgid "Please enter a valid name."
|
||||
msgstr "Por favor, insira um nome válido."
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a valid number"
|
||||
msgstr "Por favor, insira um número válido"
|
||||
@@ -9052,6 +9068,10 @@ msgstr "Remover membro da organização"
|
||||
msgid "Remove Organisation Member"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Remove rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Remove recipient"
|
||||
msgstr "Remover destinatário"
|
||||
@@ -9242,6 +9262,10 @@ msgstr "Resolver"
|
||||
msgid "Resolve payment"
|
||||
msgstr "Resolver pagamento"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Resource blocked"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/webhook-logs-sheet.tsx
|
||||
msgid "Response"
|
||||
msgstr "Resposta"
|
||||
@@ -9818,6 +9842,10 @@ msgstr "Enviando..."
|
||||
msgid "Sent"
|
||||
msgstr "Enviado"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Sent this period"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
msgid "Session revoked"
|
||||
msgstr "Sessão revogada"
|
||||
@@ -10800,10 +10828,10 @@ msgid "Team URL"
|
||||
msgstr "URL da Equipe"
|
||||
|
||||
#: apps/remix/app/components/general/org-menu-switcher.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
|
||||
@@ -10814,6 +10842,10 @@ msgstr "Equipes"
|
||||
msgid "Teams help you organise your work and collaborate with others. Create your first team to get started."
|
||||
msgstr "Equipes ajudam você a organizar seu trabalho e colaborar com outros. Crie sua primeira equipe para começar."
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Teams that belong to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Teams that this organisation group is currently assigned to"
|
||||
msgstr "Equipes às quais este grupo da organização está atualmente atribuído"
|
||||
@@ -12292,8 +12324,6 @@ msgstr "Nome desconhecido"
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Unlimited"
|
||||
msgstr "Ilimitado"
|
||||
|
||||
@@ -12586,15 +12616,18 @@ msgstr "Enviando"
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
#. placeholder {0}: selectedStat?.period || 'N/A'
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Usage for period: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
|
||||
msgid "Use"
|
||||
msgstr "Usar"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a duration with a unit, e.g. 5m, 1h, or 24h"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13496,10 +13529,18 @@ msgstr "Whitelabeling, membros ilimitados e mais"
|
||||
msgid "Width:"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
|
||||
msgid "Withdrawing Consent"
|
||||
msgstr "Retirada de Consentimento"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Within limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/public-profile-form.tsx
|
||||
msgid "Write a description to display on your public profile"
|
||||
msgstr "Escreva uma descrição para exibir em seu perfil público"
|
||||
|
||||
@@ -1416,8 +1416,8 @@ msgid "Add Placeholders"
|
||||
msgstr "添加占位符"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Add rate limit"
|
||||
msgstr "添加速率限制"
|
||||
msgid "Add rate limit window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Add recipients"
|
||||
@@ -2008,6 +2008,7 @@ msgstr "任意来源"
|
||||
msgid "Any Status"
|
||||
msgstr "任意状态"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
msgid "API"
|
||||
msgstr "API"
|
||||
@@ -2017,10 +2018,6 @@ msgstr "API"
|
||||
msgid "API key"
|
||||
msgstr "API 密钥"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "API rate limits"
|
||||
msgstr "API 速率限制"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "API requests"
|
||||
msgstr "API 请求"
|
||||
@@ -2681,6 +2678,10 @@ msgstr "无法移除签署人"
|
||||
msgid "Cannot upload items after the document has been sent"
|
||||
msgstr "文档发送后无法再上传项目"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Capabilities enabled for this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: packages/lib/constants/recipient-roles.ts
|
||||
msgctxt "Recipient role name"
|
||||
msgid "Cc"
|
||||
@@ -4407,10 +4408,6 @@ msgstr "文档偏好"
|
||||
msgid "Document preferences updated"
|
||||
msgstr "文档偏好设置已更新"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Document rate limits"
|
||||
msgstr "文档速率限制"
|
||||
|
||||
#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx
|
||||
#: apps/remix/app/components/general/document/document-status.tsx
|
||||
msgid "Document rejected"
|
||||
@@ -4546,6 +4543,7 @@ msgstr "文档"
|
||||
#: apps/remix/app/components/general/app-command-menu.tsx
|
||||
#: apps/remix/app/components/general/app-nav-desktop.tsx
|
||||
#: apps/remix/app/components/general/app-nav-mobile.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/envelope-editor/envelope-editor-upload-page.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/general/skeletons/document-edit-skeleton.tsx
|
||||
@@ -4995,10 +4993,6 @@ msgstr "邮件偏好"
|
||||
msgid "Email preferences updated"
|
||||
msgstr "邮件偏好已更新"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Email rate limits"
|
||||
msgstr "电子邮件速率限制"
|
||||
|
||||
#: packages/ui/components/document/document-email-checkboxes.tsx
|
||||
msgid "Email recipients when a pending document is deleted"
|
||||
msgstr "在待处理文档被删除时向收件人发送电子邮件通知"
|
||||
@@ -5094,6 +5088,7 @@ msgstr "邮箱验证已移除"
|
||||
msgid "Email verification has been resent"
|
||||
msgstr "验证邮件已重新发送"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-stats-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-email-domains-table.tsx
|
||||
@@ -5107,16 +5102,14 @@ msgstr "邮箱"
|
||||
msgid "Embedding, 5 members included and more"
|
||||
msgstr "内嵌、包含 5 名成员等更多功能"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty = Unlimited, 0 = Blocked"
|
||||
msgstr "留空 = 不限,0 = 禁用"
|
||||
|
||||
#: packages/ui/primitives/document-flow/add-fields.tsx
|
||||
msgid "Empty field"
|
||||
msgstr "空字段"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Empty quota means unlimited, 0 blocks the resource. Rate limit windows accept values like 5m, 1h or 24h."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/team-inherit-member-enable-dialog.tsx
|
||||
msgid "Enable"
|
||||
msgstr "启用"
|
||||
@@ -5236,6 +5229,10 @@ msgstr "请确保您使用的是嵌入令牌,而不是 API 令牌"
|
||||
msgid "Enter"
|
||||
msgstr "输入"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a max request count greater than 0"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/folder-create-dialog.tsx
|
||||
msgid "Enter a name for your new folder. Folders help you organise your items."
|
||||
msgstr "为新文件夹输入名称。文件夹可以帮助您整理项目。"
|
||||
@@ -5244,6 +5241,10 @@ msgstr "为新文件夹输入名称。文件夹可以帮助您整理项目。"
|
||||
msgid "Enter a new title"
|
||||
msgstr "输入新标题"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Enter a window, e.g. 5m"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/subscription-claim-form.tsx
|
||||
msgid "Enter claim name"
|
||||
msgstr "输入声明名称"
|
||||
@@ -5502,6 +5503,10 @@ msgstr "所有人都已签署"
|
||||
msgid "Everyone has signed! You will receive an email copy of the signed document."
|
||||
msgstr "所有人都已签署!您将收到一份已签署文档的电子邮件副本。"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Exceeded"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/passkey-create-dialog.tsx
|
||||
msgid "Exceeded timeout"
|
||||
msgstr "超时"
|
||||
@@ -6765,6 +6770,10 @@ msgstr "浅色模式"
|
||||
msgid "Like to have your own public profile with agreements?"
|
||||
msgstr "想拥有属于自己的公开协议页面吗?"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Limit reached"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Limits"
|
||||
msgstr "限制"
|
||||
@@ -7070,6 +7079,10 @@ msgstr "月活跃用户(已登录)"
|
||||
msgid "Max"
|
||||
msgstr "最大值"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Max requests"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/template-bulk-send-dialog.tsx
|
||||
msgid "Maximum file size: 4MB. Maximum 100 rows per upload. Blank values will use template defaults."
|
||||
msgstr "最大文件大小:4MB。每次上传最多 100 行。空值将使用模板默认值。"
|
||||
@@ -7116,12 +7129,12 @@ msgstr "加入时间"
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-group-create-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/team-member-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-groups-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/team-groups-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/teams.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl._index.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
@@ -7190,16 +7203,12 @@ msgid "Monthly Active Users: Users that had at least one of their documents comp
|
||||
msgstr "月活跃用户:至少有一份文档被完成的用户"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly API quota"
|
||||
msgstr "每月 API 配额"
|
||||
msgid "Monthly quota"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly document quota"
|
||||
msgstr "每月文档配额"
|
||||
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
msgid "Monthly email quota"
|
||||
msgstr "每月邮件配额"
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Monthly usage"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/envelopes-bulk-move-dialog.tsx
|
||||
#: apps/remix/app/components/dialogs/folder-move-dialog.tsx
|
||||
@@ -7290,7 +7299,6 @@ msgid "Name"
|
||||
msgstr "姓名"
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-name-dialog.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Name is required"
|
||||
msgstr "名称为必填项"
|
||||
|
||||
@@ -7298,6 +7306,10 @@ msgstr "名称为必填项"
|
||||
msgid "Name Settings"
|
||||
msgstr "姓名设置"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Near limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_recipient+/sign.$token+/complete.tsx
|
||||
msgid "Need to sign documents?"
|
||||
msgstr "需要签署文档?"
|
||||
@@ -7437,6 +7449,10 @@ msgstr "目前您无需再执行任何操作。"
|
||||
msgid "No groups found"
|
||||
msgstr "未找到群组"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "No inherited claim"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/admin-license-card.tsx
|
||||
msgid "No License Configured"
|
||||
msgstr "未配置许可证"
|
||||
@@ -8153,6 +8169,10 @@ msgstr "待处理的组织邀请"
|
||||
msgid "Pending since"
|
||||
msgstr "待处理起始时间"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "People with access to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/organisation-create-dialog.tsx
|
||||
#: apps/remix/app/components/general/billing-plans.tsx
|
||||
msgid "per month"
|
||||
@@ -8315,10 +8335,6 @@ msgstr "请输入一个有意义的令牌名称,以便日后识别。"
|
||||
msgid "Please enter a number"
|
||||
msgstr "请输入一个数字"
|
||||
|
||||
#: apps/remix/app/components/general/claim-account.tsx
|
||||
msgid "Please enter a valid name."
|
||||
msgstr "请输入有效姓名。"
|
||||
|
||||
#: apps/remix/app/components/dialogs/sign-field-number-dialog.tsx
|
||||
msgid "Please enter a valid number"
|
||||
msgstr "请输入有效的数字"
|
||||
@@ -9057,6 +9073,10 @@ msgstr "移除组织成员"
|
||||
msgid "Remove Organisation Member"
|
||||
msgstr "移除组织成员"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Remove rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/dialogs/ai-recipient-detection-dialog.tsx
|
||||
msgid "Remove recipient"
|
||||
msgstr "移除收件人"
|
||||
@@ -9247,6 +9267,10 @@ msgstr "解决"
|
||||
msgid "Resolve payment"
|
||||
msgstr "解决付款问题"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Resource blocked"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/webhook-logs-sheet.tsx
|
||||
msgid "Response"
|
||||
msgstr "响应"
|
||||
@@ -9823,6 +9847,10 @@ msgstr "正在发送..."
|
||||
msgid "Sent"
|
||||
msgstr "已发送"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Sent this period"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/settings+/security.sessions.tsx
|
||||
msgid "Session revoked"
|
||||
msgstr "会话已撤销"
|
||||
@@ -10805,10 +10833,10 @@ msgid "Team URL"
|
||||
msgstr "团队 URL"
|
||||
|
||||
#: apps/remix/app/components/general/org-menu-switcher.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-organisation-overview-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/components/tables/organisation-insights-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/dashboard.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings._layout.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.teams.tsx
|
||||
@@ -10819,6 +10847,10 @@ msgstr "团队"
|
||||
msgid "Teams help you organise your work and collaborate with others. Create your first team to get started."
|
||||
msgstr "团队帮助您组织工作并与他人协作。创建您的第一个团队以开始使用。"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Teams that belong to this organisation."
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/o.$orgUrl.settings.groups.$id.tsx
|
||||
msgid "Teams that this organisation group is currently assigned to"
|
||||
msgstr "当前已将此组织组分配给以下团队"
|
||||
@@ -12297,8 +12329,6 @@ msgstr "未知姓名"
|
||||
#: apps/remix/app/components/general/claim-limit-fields.tsx
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
#: apps/remix/app/components/tables/admin-claims-table.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
#: apps/remix/app/routes/_authenticated+/admin+/organisations.$id.tsx
|
||||
msgid "Unlimited"
|
||||
msgstr "不限"
|
||||
|
||||
@@ -12591,15 +12621,18 @@ msgstr "正在上传"
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
#. placeholder {0}: selectedStat?.period || 'N/A'
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Usage for period: {0}"
|
||||
msgstr "周期用量:{0}"
|
||||
|
||||
#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx
|
||||
msgid "Use"
|
||||
msgstr "使用"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a duration with a unit, e.g. 5m, 1h, or 24h"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Use a unique window for each rate limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/2fa/disable-authenticator-app-dialog.tsx
|
||||
#: apps/remix/app/components/forms/signin.tsx
|
||||
msgid "Use Authenticator"
|
||||
@@ -13501,10 +13534,18 @@ msgstr "白标、自定义域、无限成员等更多功能"
|
||||
msgid "Width:"
|
||||
msgstr "宽度:"
|
||||
|
||||
#: apps/remix/app/components/general/rate-limit-array-input.tsx
|
||||
msgid "Window"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx
|
||||
msgid "Withdrawing Consent"
|
||||
msgstr "撤回同意"
|
||||
|
||||
#: apps/remix/app/components/general/organisation-usage-panel.tsx
|
||||
msgid "Within limit"
|
||||
msgstr ""
|
||||
|
||||
#: apps/remix/app/components/forms/public-profile-form.tsx
|
||||
msgid "Write a description to display on your public profile"
|
||||
msgstr "撰写将在您的公共主页上展示的简介"
|
||||
|
||||
@@ -31,8 +31,4 @@ export const symmetricDecrypt = ({ key, data }: SymmetricDecryptOptions) => {
|
||||
return chacha.decrypt(dataAsBytes);
|
||||
};
|
||||
|
||||
export const tokenFingerprint = (token: string): string => {
|
||||
return bytesToHex(sha256(token)).slice(0, 16);
|
||||
};
|
||||
|
||||
export { sha256 };
|
||||
|
||||
@@ -1,21 +0,0 @@
|
||||
type PublicAccessTeam = {
|
||||
teamGlobalSettings?: {
|
||||
allowPublicCompletedDocumentAccess: boolean | null;
|
||||
} | null;
|
||||
organisation: {
|
||||
organisationGlobalSettings: {
|
||||
allowPublicCompletedDocumentAccess: boolean;
|
||||
};
|
||||
};
|
||||
} | null;
|
||||
|
||||
export const isPublicDocumentAccessEnabled = (team: PublicAccessTeam): boolean => {
|
||||
if (!team) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return (
|
||||
team.teamGlobalSettings?.allowPublicCompletedDocumentAccess ??
|
||||
team.organisation.organisationGlobalSettings.allowPublicCompletedDocumentAccess
|
||||
);
|
||||
};
|
||||
@@ -114,7 +114,6 @@ export const generateDefaultOrganisationSettings = (): Omit<OrganisationGlobalSe
|
||||
|
||||
includeSenderDetails: true,
|
||||
includeSigningCertificate: true,
|
||||
allowPublicCompletedDocumentAccess: true,
|
||||
includeAuditLog: false,
|
||||
|
||||
typedSignatureEnabled: true,
|
||||
|
||||
@@ -181,7 +181,6 @@ export const generateDefaultTeamSettings = (): Omit<TeamGlobalSettings, 'id' | '
|
||||
|
||||
includeSenderDetails: null,
|
||||
includeSigningCertificate: null,
|
||||
allowPublicCompletedDocumentAccess: null,
|
||||
includeAuditLog: null,
|
||||
|
||||
typedSignatureEnabled: null,
|
||||
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
ALTER TABLE "OrganisationGlobalSettings"
|
||||
ADD COLUMN "allowPublicCompletedDocumentAccess" BOOLEAN NOT NULL DEFAULT true;
|
||||
|
||||
ALTER TABLE "TeamGlobalSettings"
|
||||
ADD COLUMN "allowPublicCompletedDocumentAccess" BOOLEAN;
|
||||
@@ -1 +0,0 @@
|
||||
CREATE INDEX "Envelope_qrToken_idx" ON "Envelope"("qrToken");
|
||||
@@ -492,7 +492,6 @@ model Envelope {
|
||||
@@index([teamId])
|
||||
@@index([folderId])
|
||||
@@index([createdAt])
|
||||
@@index([qrToken])
|
||||
}
|
||||
|
||||
model EnvelopeItem {
|
||||
@@ -962,7 +961,6 @@ model OrganisationGlobalSettings {
|
||||
documentLanguage String @default("en")
|
||||
includeSenderDetails Boolean @default(true)
|
||||
includeSigningCertificate Boolean @default(true)
|
||||
allowPublicCompletedDocumentAccess Boolean @default(true)
|
||||
includeAuditLog Boolean @default(false)
|
||||
documentTimezone String? // Nullable to allow using local timezones if not set.
|
||||
documentDateFormat String @default("yyyy-MM-dd hh:mm a")
|
||||
@@ -1009,7 +1007,6 @@ model TeamGlobalSettings {
|
||||
|
||||
includeSenderDetails Boolean?
|
||||
includeSigningCertificate Boolean?
|
||||
allowPublicCompletedDocumentAccess Boolean?
|
||||
includeAuditLog Boolean?
|
||||
|
||||
typedSignatureEnabled Boolean?
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
import { AppError, AppErrorCode } from '@documenso/lib/errors/app-error';
|
||||
import { getEnvelopeWhereInput } from '@documenso/lib/server-only/envelope/get-envelope-by-id';
|
||||
import { getOrganisationTemplateWhereInput } from '@documenso/lib/server-only/template/get-organisation-template-by-id';
|
||||
import { isPublicDocumentAccessEnabled } from '@documenso/lib/universal/document-access';
|
||||
import { prisma } from '@documenso/prisma';
|
||||
import { DocumentStatus, EnvelopeType } from '@prisma/client';
|
||||
import { EnvelopeType } from '@prisma/client';
|
||||
|
||||
import { maybeAuthenticatedProcedure } from '../trpc';
|
||||
import {
|
||||
@@ -57,13 +56,15 @@ export const getEnvelopeItemsByTokenRoute = maybeAuthenticatedProcedure
|
||||
});
|
||||
|
||||
const handleGetEnvelopeItemsByToken = async ({ envelopeId, token }: { envelopeId: string; token: string }) => {
|
||||
const isQrToken = token.startsWith('qr_');
|
||||
|
||||
const envelope = await prisma.envelope.findFirst({
|
||||
where: {
|
||||
id: envelopeId,
|
||||
type: EnvelopeType.DOCUMENT,
|
||||
...(isQrToken ? { qrToken: token, status: DocumentStatus.COMPLETED } : { recipients: { some: { token } } }),
|
||||
type: EnvelopeType.DOCUMENT, // You cannot get template envelope items by token.
|
||||
recipients: {
|
||||
some: {
|
||||
token,
|
||||
},
|
||||
},
|
||||
},
|
||||
include: {
|
||||
envelopeItems: {
|
||||
@@ -71,20 +72,6 @@ const handleGetEnvelopeItemsByToken = async ({ envelopeId, token }: { envelopeId
|
||||
documentData: true,
|
||||
},
|
||||
},
|
||||
team: {
|
||||
include: {
|
||||
teamGlobalSettings: {
|
||||
select: { allowPublicCompletedDocumentAccess: true },
|
||||
},
|
||||
organisation: {
|
||||
include: {
|
||||
organisationGlobalSettings: {
|
||||
select: { allowPublicCompletedDocumentAccess: true },
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
@@ -94,12 +81,6 @@ const handleGetEnvelopeItemsByToken = async ({ envelopeId, token }: { envelopeId
|
||||
});
|
||||
}
|
||||
|
||||
if (isQrToken && !isPublicDocumentAccessEnabled(envelope.team)) {
|
||||
throw new AppError(AppErrorCode.UNAUTHORIZED, {
|
||||
message: 'Public completed-document access is disabled',
|
||||
});
|
||||
}
|
||||
|
||||
return {
|
||||
envelopeItems: envelope.envelopeItems,
|
||||
};
|
||||
|
||||
@@ -33,7 +33,6 @@ export const updateOrganisationSettingsRoute = authenticatedProcedure
|
||||
documentDateFormat,
|
||||
includeSenderDetails,
|
||||
includeSigningCertificate,
|
||||
allowPublicCompletedDocumentAccess,
|
||||
includeAuditLog,
|
||||
typedSignatureEnabled,
|
||||
uploadSignatureEnabled,
|
||||
@@ -163,7 +162,6 @@ export const updateOrganisationSettingsRoute = authenticatedProcedure
|
||||
documentDateFormat,
|
||||
includeSenderDetails,
|
||||
includeSigningCertificate,
|
||||
allowPublicCompletedDocumentAccess,
|
||||
includeAuditLog,
|
||||
typedSignatureEnabled,
|
||||
uploadSignatureEnabled,
|
||||
|
||||
@@ -21,7 +21,6 @@ export const ZUpdateOrganisationSettingsRequestSchema = z.object({
|
||||
documentDateFormat: ZDocumentMetaDateFormatSchema.optional(),
|
||||
includeSenderDetails: z.boolean().optional(),
|
||||
includeSigningCertificate: z.boolean().optional(),
|
||||
allowPublicCompletedDocumentAccess: z.boolean().optional(),
|
||||
includeAuditLog: z.boolean().optional(),
|
||||
typedSignatureEnabled: z.boolean().optional(),
|
||||
uploadSignatureEnabled: z.boolean().optional(),
|
||||
|
||||
@@ -32,7 +32,6 @@ export const updateTeamSettingsRoute = authenticatedProcedure
|
||||
documentDateFormat,
|
||||
includeSenderDetails,
|
||||
includeSigningCertificate,
|
||||
allowPublicCompletedDocumentAccess,
|
||||
includeAuditLog,
|
||||
typedSignatureEnabled,
|
||||
uploadSignatureEnabled,
|
||||
@@ -166,7 +165,6 @@ export const updateTeamSettingsRoute = authenticatedProcedure
|
||||
documentDateFormat,
|
||||
includeSenderDetails,
|
||||
includeSigningCertificate,
|
||||
allowPublicCompletedDocumentAccess,
|
||||
includeAuditLog,
|
||||
typedSignatureEnabled,
|
||||
uploadSignatureEnabled,
|
||||
|
||||
@@ -25,7 +25,6 @@ export const ZUpdateTeamSettingsRequestSchema = z.object({
|
||||
documentDateFormat: ZDocumentMetaDateFormatSchema.nullish(),
|
||||
includeSenderDetails: z.boolean().nullish(),
|
||||
includeSigningCertificate: z.boolean().nullish(),
|
||||
allowPublicCompletedDocumentAccess: z.boolean().nullish(),
|
||||
includeAuditLog: z.boolean().nullish(),
|
||||
typedSignatureEnabled: z.boolean().nullish(),
|
||||
uploadSignatureEnabled: z.boolean().nullish(),
|
||||
|
||||
Reference in New Issue
Block a user