diff --git a/apps/remix/app/components/general/generic-error-layout.tsx b/apps/remix/app/components/general/generic-error-layout.tsx index 792c8f2f9..75c9af0b0 100644 --- a/apps/remix/app/components/general/generic-error-layout.tsx +++ b/apps/remix/app/components/general/generic-error-layout.tsx @@ -38,7 +38,7 @@ export type GenericErrorLayoutProps = { export const defaultErrorCodeMap: ErrorCodeMap = { 404: { - subHeading: msg`404 Page not found`, + subHeading: msg`404 not found`, heading: msg`Oops! Something went wrong.`, message: msg`The page you are looking for was moved, removed, renamed or might never have existed.`, }, diff --git a/apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx b/apps/remix/app/components/general/teams/team-email-usage.tsx similarity index 100% rename from apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx rename to apps/remix/app/components/general/teams/team-email-usage.tsx diff --git a/apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx b/apps/remix/app/components/general/teams/team-invitations.tsx similarity index 100% rename from apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx rename to apps/remix/app/components/general/teams/team-invitations.tsx diff --git a/apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx b/apps/remix/app/routes/_authenticated+/documents.$id._index.tsx similarity index 99% rename from apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx rename to apps/remix/app/routes/_authenticated+/documents.$id._index.tsx index d700368b0..2331ebb71 100644 --- a/apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx +++ b/apps/remix/app/routes/_authenticated+/documents.$id._index.tsx @@ -33,7 +33,7 @@ import { import { StackAvatarsWithTooltip } from '~/components/general/stack-avatars-with-tooltip'; import { superLoaderJson, useSuperLoaderData } from '~/utils/super-json-loader'; -import type { Route } from './+types/$id._index'; +import type { Route } from './+types/documents.$id._index'; export async function loader({ params, request }: Route.LoaderArgs) { const { user } = await getSession(request); diff --git a/apps/remix/app/routes/_authenticated+/documents+/$id.edit.tsx b/apps/remix/app/routes/_authenticated+/documents.$id.edit.tsx similarity index 98% rename from apps/remix/app/routes/_authenticated+/documents+/$id.edit.tsx rename to apps/remix/app/routes/_authenticated+/documents.$id.edit.tsx index d623c45df..2acfdc88d 100644 --- a/apps/remix/app/routes/_authenticated+/documents+/$id.edit.tsx +++ b/apps/remix/app/routes/_authenticated+/documents.$id.edit.tsx @@ -16,7 +16,7 @@ import { DocumentStatus } from '~/components/general/document/document-status'; import { StackAvatarsWithTooltip } from '~/components/general/stack-avatars-with-tooltip'; import { superLoaderJson, useSuperLoaderData } from '~/utils/super-json-loader'; -import type { Route } from './+types/$id.edit'; +import type { Route } from './+types/documents.$id.edit'; export async function loader({ params, request }: Route.LoaderArgs) { const { user } = await getSession(request); diff --git a/apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx b/apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx similarity index 99% rename from apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx rename to apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx index 7e3fa4502..8be1a843b 100644 --- a/apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx +++ b/apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx @@ -22,7 +22,7 @@ import { } from '~/components/general/document/document-status'; import { DocumentLogsTable } from '~/components/tables/document-logs-table'; -import type { Route } from './+types/$id.logs'; +import type { Route } from './+types/documents.$id.logs'; export async function loader({ params, request }: Route.LoaderArgs) { const { user } = await getSession(request); diff --git a/apps/remix/app/routes/_authenticated+/documents+/_index.tsx b/apps/remix/app/routes/_authenticated+/documents._index.tsx similarity index 100% rename from apps/remix/app/routes/_authenticated+/documents+/_index.tsx rename to apps/remix/app/routes/_authenticated+/documents._index.tsx diff --git a/apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx b/apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx similarity index 97% rename from apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx rename to apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx index 8123cc8d5..345eb9d2e 100644 --- a/apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx +++ b/apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx @@ -21,10 +21,10 @@ import { ManagePublicTemplateDialog } from '~/components/dialogs/public-profile- import type { TPublicProfileFormSchema } from '~/components/forms/public-profile-form'; import { PublicProfileForm } from '~/components/forms/public-profile-form'; import { SettingsHeader } from '~/components/general/settings-header'; +import { SettingsPublicProfileTemplatesTable } from '~/components/tables/settings-public-profile-templates-table'; import { useOptionalCurrentTeam } from '~/providers/team'; -import { SettingsPublicProfileTemplatesTable } from '../../../../components/tables/settings-public-profile-templates-table'; -import type { Route } from './+types/index'; +import type { Route } from './+types/public-profile'; type DirectTemplate = FindTemplateRow & { directLink: Pick; diff --git a/apps/remix/app/routes/_authenticated+/settings+/security+/activity+/index.tsx b/apps/remix/app/routes/_authenticated+/settings+/security.activity.tsx similarity index 100% rename from apps/remix/app/routes/_authenticated+/settings+/security+/activity+/index.tsx rename to apps/remix/app/routes/_authenticated+/settings+/security.activity.tsx diff --git a/apps/remix/app/routes/_authenticated+/settings+/security+/passkeys+/index.tsx b/apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx similarity index 100% rename from apps/remix/app/routes/_authenticated+/settings+/security+/passkeys+/index.tsx rename to apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx diff --git a/apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx b/apps/remix/app/routes/_authenticated+/settings+/security.tsx similarity index 99% rename from apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx rename to apps/remix/app/routes/_authenticated+/settings+/security.tsx index 3ad06de54..fd5506c26 100644 --- a/apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx +++ b/apps/remix/app/routes/_authenticated+/settings+/security.tsx @@ -16,7 +16,7 @@ import { PasswordForm } from '~/components/forms/password'; import { SettingsHeader } from '~/components/general/settings-header'; import { appMetaTags } from '~/utils/meta'; -import type { Route } from './+types'; +import type { Route } from './+types/security'; export function meta() { return appMetaTags('Security'); diff --git a/apps/remix/app/routes/_authenticated+/settings+/teams+/index.tsx b/apps/remix/app/routes/_authenticated+/settings+/teams.tsx similarity index 88% rename from apps/remix/app/routes/_authenticated+/settings+/teams+/index.tsx rename to apps/remix/app/routes/_authenticated+/settings+/teams.tsx index ff639fc7c..618ce31ac 100644 --- a/apps/remix/app/routes/_authenticated+/settings+/teams+/index.tsx +++ b/apps/remix/app/routes/_authenticated+/settings+/teams.tsx @@ -7,11 +7,10 @@ import { AnimateGenericFadeInOut } from '@documenso/ui/components/animate/animat import { TeamCreateDialog } from '~/components/dialogs/team-create-dialog'; import { SettingsHeader } from '~/components/general/settings-header'; +import { TeamEmailUsage } from '~/components/general/teams/team-email-usage'; +import { TeamInvitations } from '~/components/general/teams/team-invitations'; import { UserSettingsTeamsPageDataTable } from '~/components/tables/user-settings-teams-page-table'; -import { TeamEmailUsage } from './team-email-usage'; -import { TeamInvitations } from './team-invitations'; - export default function TeamsSettingsPage() { const { _ } = useLingui(); diff --git a/apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx b/apps/remix/app/routes/_authenticated+/settings+/tokens.tsx similarity index 100% rename from apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx rename to apps/remix/app/routes/_authenticated+/settings+/tokens.tsx diff --git a/apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx b/apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx similarity index 100% rename from apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx rename to apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx diff --git a/apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx b/apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx similarity index 100% rename from apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx rename to apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx diff --git a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx index a898bbff3..220a0f5b7 100644 --- a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx +++ b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id._index.tsx @@ -1,4 +1,4 @@ -import DocumentPage, { loader } from '~/routes/_authenticated+/documents+/$id._index'; +import DocumentPage, { loader } from '~/routes/_authenticated+/documents.$id._index'; export { loader }; diff --git a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx index 275962cfb..7cf0ef436 100644 --- a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx +++ b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.edit.tsx @@ -1,4 +1,4 @@ -import DocumentEditPage, { loader } from '~/routes/_authenticated+/documents+/$id.edit'; +import DocumentEditPage, { loader } from '~/routes/_authenticated+/documents.$id.edit'; export { loader }; diff --git a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx index c4dfb7965..fb91a9cd8 100644 --- a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx +++ b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents.$id.logs.tsx @@ -1,4 +1,4 @@ -import DocumentLogsPage, { loader } from '~/routes/_authenticated+/documents+/$id.logs'; +import DocumentLogsPage, { loader } from '~/routes/_authenticated+/documents.$id.logs'; export { loader }; diff --git a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx index 095d136cf..90f7289be 100644 --- a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx +++ b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/documents._index.tsx @@ -1,4 +1,4 @@ -import DocumentsPage, { meta } from '~/routes/_authenticated+/documents+/_index'; +import DocumentsPage, { meta } from '~/routes/_authenticated+/documents._index'; export { meta }; diff --git a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx similarity index 99% rename from apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx rename to apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx index ebd72f6c2..04d7bf668 100644 --- a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx +++ b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx @@ -20,7 +20,7 @@ import { SettingsHeader } from '~/components/general/settings-header'; import { TeamEmailDropdown } from '~/components/general/teams/team-email-dropdown'; import { TeamTransferStatus } from '~/components/general/teams/team-transfer-status'; -import type { Route } from './+types/_index'; +import type { Route } from './+types/settings._index'; export async function loader({ request, params }: Route.LoaderArgs) { const { user } = await getSession(request); diff --git a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_layout.tsx b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx similarity index 96% rename from apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_layout.tsx rename to apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx index dad1a8791..9996d96c8 100644 --- a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_layout.tsx +++ b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx @@ -9,7 +9,7 @@ import { TeamSettingsNavDesktop } from '~/components/general/teams/team-settings import { TeamSettingsNavMobile } from '~/components/general/teams/team-settings-nav-mobile'; import { appMetaTags } from '~/utils/meta'; -import type { Route } from './+types/_layout'; +import type { Route } from './+types/settings._layout'; export function meta() { return appMetaTags('Team Settings'); diff --git a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx similarity index 98% rename from apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx rename to apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx index ff0cd4693..ef40ef8aa 100644 --- a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx +++ b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx @@ -15,7 +15,7 @@ import { SettingsHeader } from '~/components/general/settings-header'; import { TeamBillingPortalButton } from '~/components/general/teams/team-billing-portal-button'; import { TeamSettingsBillingInvoicesTable } from '~/components/tables/team-settings-billing-invoices-table'; -import type { Route } from './+types/billing'; +import type { Route } from './+types/settings.billing'; export async function loader({ request, params }: Route.LoaderArgs) { const session = await getSession(request); diff --git a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx similarity index 100% rename from apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx rename to apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx diff --git a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx similarity index 96% rename from apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx rename to apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx index 54c0d70d6..5bd2b692e 100644 --- a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx +++ b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx @@ -8,7 +8,7 @@ import { TeamBrandingPreferencesForm } from '~/components/forms/team-branding-pr import { TeamDocumentPreferencesForm } from '~/components/forms/team-document-preferences-form'; import { SettingsHeader } from '~/components/general/settings-header'; -import type { Route } from './+types/preferences'; +import type { Route } from './+types/settings.preferences'; export async function loader({ request, params }: Route.LoaderArgs) { const { user } = await getSession(request); diff --git a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/public-profile.tsx b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx similarity index 90% rename from apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/public-profile.tsx rename to apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx index ae0987170..91fd962da 100644 --- a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/public-profile.tsx +++ b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.public-profile.tsx @@ -2,9 +2,9 @@ import { getSession } from '@documenso/auth/server/lib/utils/get-session'; import { getTeamByUrl } from '@documenso/lib/server-only/team/get-team'; import { getTeamPublicProfile } from '@documenso/lib/server-only/team/get-team-public-profile'; -import PublicProfilePage from '~/routes/_authenticated+/settings+/public-profile+/index'; +import PublicProfilePage from '~/routes/_authenticated+/settings+/public-profile'; -import type { Route } from './+types/public-profile'; +import type { Route } from './+types/settings.public-profile'; // Todo: This can be optimized. export async function loader({ request, params }: Route.LoaderArgs) { diff --git a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx similarity index 87% rename from apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx rename to apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx index 8e9c9e1b7..b9fb2e4f6 100644 --- a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx +++ b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.tokens.tsx @@ -1,3 +1,3 @@ -import ApiTokensPage from '~/routes/_authenticated+/settings+/tokens+/index'; +import ApiTokensPage from '~/routes/_authenticated+/settings+/tokens'; export default ApiTokensPage; diff --git a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx similarity index 99% rename from apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx rename to apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx index 02a8b2e93..21e1ff1c7 100644 --- a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx +++ b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx @@ -28,7 +28,7 @@ import { SettingsHeader } from '~/components/general/settings-header'; import { WebhookMultiSelectCombobox } from '~/components/general/webhook-multiselect-combobox'; import { useCurrentTeam } from '~/providers/team'; -import type { Route } from './+types/webhooks.$id'; +import type { Route } from './+types/settings.webhooks.$id'; const ZEditWebhookFormSchema = ZEditWebhookMutationSchema.omit({ id: true }); diff --git a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx similarity index 100% rename from apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx rename to apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx diff --git a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx index cc4f35687..7d207d34f 100644 --- a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx +++ b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id._index.tsx @@ -1,4 +1,4 @@ -import TemplatePage, { loader } from '~/routes/_authenticated+/templates+/$id._index'; +import TemplatePage, { loader } from '~/routes/_authenticated+/templates.$id._index'; export { loader }; diff --git a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.edit.tsx b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.edit.tsx index 08ca13e80..7f4b0b459 100644 --- a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.edit.tsx +++ b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates.$id.edit.tsx @@ -1,4 +1,4 @@ -import TemplateEditPage, { loader } from '~/routes/_authenticated+/templates+/$id.edit'; +import TemplateEditPage, { loader } from '~/routes/_authenticated+/templates.$id.edit'; export { loader }; diff --git a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx index ab50d57dc..7781ededd 100644 --- a/apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx +++ b/apps/remix/app/routes/_authenticated+/t.$teamUrl+/templates._index.tsx @@ -1,4 +1,4 @@ -import TemplatesPage, { meta } from '~/routes/_authenticated+/templates+/_index'; +import TemplatesPage, { meta } from '~/routes/_authenticated+/templates._index'; export { meta }; diff --git a/apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx b/apps/remix/app/routes/_authenticated+/templates.$id._index.tsx similarity index 99% rename from apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx rename to apps/remix/app/routes/_authenticated+/templates.$id._index.tsx index 46cab03f4..84c97fc86 100644 --- a/apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx +++ b/apps/remix/app/routes/_authenticated+/templates.$id._index.tsx @@ -24,7 +24,7 @@ import { TemplateType } from '~/components/general/template/template-type'; import { TemplatesTableActionDropdown } from '~/components/tables/templates-table-action-dropdown'; import { superLoaderJson, useSuperLoaderData } from '~/utils/super-json-loader'; -import type { Route } from './+types/$id._index'; +import type { Route } from './+types/templates.$id._index'; export async function loader({ params, request }: Route.LoaderArgs) { const { user } = await getSession(request); diff --git a/apps/remix/app/routes/_authenticated+/templates+/$id.edit.tsx b/apps/remix/app/routes/_authenticated+/templates.$id.edit.tsx similarity index 95% rename from apps/remix/app/routes/_authenticated+/templates+/$id.edit.tsx rename to apps/remix/app/routes/_authenticated+/templates.$id.edit.tsx index ffc22ca6c..0ecd61813 100644 --- a/apps/remix/app/routes/_authenticated+/templates+/$id.edit.tsx +++ b/apps/remix/app/routes/_authenticated+/templates.$id.edit.tsx @@ -13,8 +13,8 @@ import { TemplateEditForm } from '~/components/general/template/template-edit-fo import { TemplateType } from '~/components/general/template/template-type'; import { superLoaderJson, useSuperLoaderData } from '~/utils/super-json-loader'; -import { TemplateDirectLinkDialogWrapper } from '../../../components/dialogs/template-direct-link-dialog-wrapper'; -import type { Route } from './+types/$id.edit'; +import { TemplateDirectLinkDialogWrapper } from '../../components/dialogs/template-direct-link-dialog-wrapper'; +import type { Route } from './+types/templates.$id.edit'; export async function loader({ params, request }: Route.LoaderArgs) { const { user } = await getSession(request); diff --git a/apps/remix/app/routes/_authenticated+/templates+/_index.tsx b/apps/remix/app/routes/_authenticated+/templates._index.tsx similarity index 100% rename from apps/remix/app/routes/_authenticated+/templates+/_index.tsx rename to apps/remix/app/routes/_authenticated+/templates._index.tsx diff --git a/packages/lib/translations/de/web.po b/packages/lib/translations/de/web.po index e266aaa0d..475637fb7 100644 --- a/packages/lib/translations/de/web.po +++ b/packages/lib/translations/de/web.po @@ -22,7 +22,7 @@ msgstr "" msgid " Enable direct link signing" msgstr "" -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:171 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:171 msgid " The events that will trigger a webhook to be sent to your URL." msgstr "" @@ -59,7 +59,7 @@ msgid "\"{placeholderEmail}\" on behalf of \"{0}\" has invited you to sign \"exa msgstr "\"{placeholderEmail}\" im Namen von \"{0}\" hat Sie eingeladen, \"Beispieldokument\" zu unterzeichnen." #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:273 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:325 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:372 msgid "(You)" msgstr "" @@ -85,8 +85,8 @@ msgid "{0, plural, one {# Seat} other {# Seats}}" msgstr "{0, plural, one {# Sitz} other {# Sitze}}" #. placeholder {0}: data.length -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:36 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:65 +#: apps/remix/app/components/general/teams/team-invitations.tsx:36 +#: apps/remix/app/components/general/teams/team-invitations.tsx:65 msgid "{0, plural, one {<0>You have <1>1 pending team invitation} other {<2>You have <3># pending team invitations}}" msgstr "{0, plural, one {<0>Du hast <1>1 ausstehende Team-Einladung} other {<2>Du hast <3># ausstehende Team-Einladungen}}" @@ -96,12 +96,12 @@ msgid "{0, plural, one {1 matching field} other {# matching fields}}" msgstr "{0, plural, one {1 passendes Feld} other {# passende Felder}}" #. placeholder {0}: recipients.length -#: apps/remix/app/routes/_authenticated+/documents+/$id.edit.tsx:122 +#: apps/remix/app/routes/_authenticated+/documents.$id.edit.tsx:122 msgid "{0, plural, one {1 Recipient} other {# Recipients}}" msgstr "{0, plural, one {1 Empfänger} other {# Empfänger}}" #. placeholder {0}: pendingRecipients.length -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:232 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:232 msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}" msgstr "{0, plural, one {Warte auf 1 Empfänger} other {Warte auf # Empfänger}}" @@ -161,7 +161,7 @@ msgid "{0} on behalf of \"{1}\" has invited you to {recipientActionVerb} the doc msgstr "{0} im Namen von \"{1}\" hat Sie eingeladen, das Dokument \"{2}\" {recipientActionVerb}." #. placeholder {0}: recipients.length -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:167 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:167 msgid "{0} Recipient(s)" msgstr "{0} Empfänger(in)" @@ -225,7 +225,7 @@ msgstr "{memberEmail} ist dem folgenden Team beigetreten" msgid "{memberEmail} left the following team" msgstr "{memberEmail} hat das folgende Team verlassen" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:65 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:65 msgid "{numberOfSeats, plural, one {# member} other {# members}}" msgstr "{numberOfSeats, plural, one {# Mitglied} other {# Mitglieder}}" @@ -477,21 +477,21 @@ msgstr "<0>Sie sind dabei, die Unterzeichnung von \"<1>{documentTitle}\" abz msgid "<0>You are about to complete viewing \"<1>{documentTitle}\".<2/> Are you sure?" msgstr "<0>Sie sind dabei, die Ansicht von \"<1>{documentTitle}\" abzuschließen.<2/> Sind Sie sicher?" -#: apps/remix/app/components/forms/token.tsx:43 +#: apps/remix/app/components/forms/token.tsx:45 msgid "1 month" msgstr "1 Monat" -#: apps/remix/app/components/forms/token.tsx:46 +#: apps/remix/app/components/forms/token.tsx:48 msgid "12 months" msgstr "12 Monate" -#: apps/remix/app/components/forms/token.tsx:44 +#: apps/remix/app/components/forms/token.tsx:46 msgid "3 months" msgstr "3 Monate" #: apps/remix/app/components/general/generic-error-layout.tsx:41 -msgid "404 Page not found" -msgstr "404 Seite nicht gefunden" +msgid "404 not found" +msgstr "" #: apps/remix/app/routes/_profile+/_layout.tsx:102 msgid "404 Profile not found" @@ -505,11 +505,11 @@ msgstr "404 Team nicht gefunden" msgid "500 Internal Server Error" msgstr "" -#: apps/remix/app/components/forms/token.tsx:45 +#: apps/remix/app/components/forms/token.tsx:47 msgid "6 months" msgstr "6 Monate" -#: apps/remix/app/components/forms/token.tsx:42 +#: apps/remix/app/components/forms/token.tsx:44 msgid "7 days" msgstr "7 Tage" @@ -549,7 +549,7 @@ msgstr "Ein Mittel, um Dokumente für Ihre Unterlagen zu drucken oder herunterzu msgid "A new member has joined your team" msgstr "Ein neues Mitglied ist deinem Team beigetreten" -#: apps/remix/app/components/forms/token.tsx:123 +#: apps/remix/app/components/forms/token.tsx:124 msgid "A new token was created successfully." msgstr "Ein neuer Token wurde erfolgreich erstellt." @@ -585,8 +585,8 @@ msgstr "Eine Anfrage zur Verwendung Ihrer E-Mail wurde von {0} auf Documenso ini msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso" msgstr "Ein Geheimnis, das an deine URL gesendet wird, damit du überprüfen kannst, dass die Anfrage von Documenso gesendet wurde" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:191 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:192 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:191 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:192 msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso." msgstr "Ein Geheimnis, das an deine URL gesendet wird, damit du überprüfen kannst, dass die Anfrage von Documenso gesendet wurde." @@ -625,7 +625,7 @@ msgstr "Eine eindeutige URL, um dein Team zu identifizieren" msgid "A verification email will be sent to the provided email." msgstr "Eine Bestätigungs-E-Mail wird an die angegebene E-Mail-Adresse gesendet." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:146 +#: apps/remix/app/components/general/teams/team-invitations.tsx:146 #: packages/email/templates/team-transfer-request.tsx:82 #: packages/email/templates/team-invite.tsx:95 #: packages/email/templates/confirm-team-email.tsx:119 @@ -648,7 +648,7 @@ msgstr "Übertragungsanfrage des Teams auf Documenso annehmen" msgid "Acceptance and Consent" msgstr "Zustimmung und Einverständnis" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:126 +#: apps/remix/app/components/general/teams/team-invitations.tsx:126 msgid "Accepted team invitation" msgstr "Team-Einladung akzeptiert" @@ -696,8 +696,8 @@ msgstr "Aktion" msgid "Actions" msgstr "Aktionen" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:70 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:105 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:70 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:105 #: apps/remix/app/components/tables/user-settings-teams-page-table.tsx:64 msgid "Active" msgstr "Aktiv" @@ -728,11 +728,11 @@ msgstr "Fügen Sie alle relevanten Felder für jeden Empfänger hinzu." msgid "Add all relevant placeholders for each recipient." msgstr "Fügen Sie alle relevanten Platzhalter für jeden Empfänger hinzu." -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:94 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:94 msgid "Add an authenticator to serve as a secondary authentication method for signing documents." msgstr "Fügen Sie einen Authenticator hinzu, um als sekundäre Authentifizierungsmethode für die Unterzeichnung von Dokumenten zu dienen." -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:89 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:89 msgid "Add an authenticator to serve as a secondary authentication method when signing in, or when signing documents." msgstr "Fügen Sie einen Authenticator hinzu, um als sekundäre Authentifizierungsmethode beim Einloggen oder bei der Unterzeichnung von Dokumenten zu dienen." @@ -897,7 +897,7 @@ msgstr "Alle Zeiten" msgid "Allow document recipients to reply directly to this email address" msgstr "Erlauben Sie den Dokumentempfängern, direkt an diese E-Mail-Adresse zu antworten" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:141 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:141 msgid "Allows authenticating using biometrics, password managers, hardware keys, etc." msgstr "Erlaubt die Authentifizierung mit biometrischen Daten, Passwort-Managern, Hardware-Schlüsseln usw." @@ -930,7 +930,7 @@ msgid "An email requesting the transfer of this team has been sent." msgstr "Eine E-Mail, in der die Übertragung dieses Teams angefordert wird, wurde gesendet." #: apps/remix/app/components/general/claim-account.tsx:96 -#: apps/remix/app/components/forms/token.tsx:139 +#: apps/remix/app/components/forms/token.tsx:140 #: apps/remix/app/components/forms/signup.tsx:160 #: apps/remix/app/components/forms/reset-password.tsx:91 #: apps/remix/app/components/forms/password.tsx:89 @@ -1062,6 +1062,10 @@ msgstr "" msgid "An error occurred while signing the document." msgstr "Ein Fehler ist aufgetreten, während das Dokument unterzeichnet wurde." +#: apps/remix/app/components/general/billing-plans.tsx:63 +msgid "An error occurred while trying to create a checkout session." +msgstr "" + #: apps/remix/app/components/general/template/template-edit-form.tsx:149 #: apps/remix/app/components/general/document/document-edit-form.tsx:205 msgid "An error occurred while updating the document settings." @@ -1096,7 +1100,7 @@ msgstr "" #: apps/remix/app/components/forms/profile.tsx:74 #: apps/remix/app/components/forms/avatar-image.tsx:94 #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:81 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:90 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:88 #: apps/remix/app/components/dialogs/team-transfer-dialog.tsx:114 #: apps/remix/app/components/dialogs/team-member-update-dialog.tsx:99 #: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx:154 @@ -1125,9 +1129,7 @@ msgstr "Jede Quelle" msgid "Any Status" msgstr "Jeder Status" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:43 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:55 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:19 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:26 #: apps/remix/app/components/general/settings-nav-mobile.tsx:84 #: apps/remix/app/components/general/settings-nav-desktop.tsx:82 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:94 @@ -1173,11 +1175,11 @@ msgstr "Genehmigung" msgid "Are you sure you want to complete the document? This action cannot be undone. Please ensure that you have completed prefilling all relevant fields before proceeding." msgstr "" -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:122 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:120 msgid "Are you sure you want to delete this token?" msgstr "Bist du sicher, dass du dieses Token löschen möchtest?" -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:118 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:127 msgid "Are you sure you want to reject this document? This action cannot be undone." msgstr "Sind Sie sicher, dass Sie dieses Dokument ablehnen möchten? Diese Aktion kann nicht rückgängig gemacht werden." @@ -1189,7 +1191,7 @@ msgstr "Bist du sicher, dass du den <0>{passkeyName} Passkey entfernen möch msgid "Are you sure you wish to delete this team?" msgstr "Bist du dir sicher, dass du dieses Team löschen möchtest?" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:93 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:93 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:455 #: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx:80 #: apps/remix/app/components/dialogs/team-leave-dialog.tsx:80 @@ -1208,7 +1210,7 @@ msgstr "" msgid "Assist Document" msgstr "" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:252 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:299 msgid "Assist with signing" msgstr "" @@ -1258,7 +1260,7 @@ msgstr "Avatar" msgid "Avatar Updated" msgstr "Avatar aktualisiert" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:125 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:125 msgid "Awaiting email confirmation" msgstr "Warte auf E-Mail-Bestätigung" @@ -1296,7 +1298,8 @@ msgstr "Basisdetails" msgid "Before you get started, please confirm your email address by clicking the button below:" msgstr "Bitte bestätige vor dem Start deine E-Mail-Adresse, indem du auf den Button unten klickst:" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:77 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:77 +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:84 #: apps/remix/app/components/general/settings-nav-mobile.tsx:111 #: apps/remix/app/components/general/settings-nav-desktop.tsx:109 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:121 @@ -1312,7 +1315,7 @@ msgstr "Schwarz" msgid "Blue" msgstr "Blau" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:40 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:40 msgid "Branding Preferences" msgstr "Markenpräferenzen" @@ -1387,13 +1390,13 @@ msgstr "Durch die Verwendung der elektronischen Unterschriftsfunktion stimmen Si msgid "Can prepare" msgstr "" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:108 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:162 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:203 #: apps/remix/app/components/general/teams/team-transfer-status.tsx:118 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:108 #: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx:364 #: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx:315 -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:151 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:160 #: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx:349 #: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx:234 #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:208 @@ -1408,7 +1411,7 @@ msgstr "" #: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx:263 #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:156 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:235 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:169 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:167 #: apps/remix/app/components/dialogs/template-move-dialog.tsx:145 #: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx:71 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:472 @@ -1493,7 +1496,7 @@ msgstr "Wählen Sie den direkten Link Empfänger" msgid "Choose how the document will reach recipients" msgstr "Wählen Sie, wie das Dokument die Empfänger erreichen soll" -#: apps/remix/app/components/forms/token.tsx:193 +#: apps/remix/app/components/forms/token.tsx:194 msgid "Choose..." msgstr "Wählen..." @@ -1543,7 +1546,7 @@ msgstr "Klicken Sie, um den Signatur-Link zu kopieren, um ihn an den Empfänger #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:176 #: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx:181 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:439 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:486 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:479 msgid "Click to insert field" msgstr "Klicken, um das Feld auszufüllen" @@ -1564,7 +1567,7 @@ msgstr "Schließen" #: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx:61 #: apps/remix/app/components/forms/signup.tsx:528 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:429 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:476 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:469 msgid "Complete" msgstr "Abschließen" @@ -1648,7 +1651,7 @@ msgid "Confirm by typing <0>{deleteMessage}" msgstr "Bestätigen Sie durch Eingabe von <0>{deleteMessage}" #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:133 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:145 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:143 msgid "Confirm by typing: <0>{deleteMessage}" msgstr "Bestätigen Sie durch Eingabe: <0>{deleteMessage}" @@ -1773,7 +1776,7 @@ msgstr "Kopiere den teilbaren Link" msgid "Copy Signing Links" msgstr "Signierlinks kopieren" -#: apps/remix/app/components/forms/token.tsx:283 +#: apps/remix/app/components/forms/token.tsx:284 msgid "Copy token" msgstr "Token kopieren" @@ -1851,8 +1854,8 @@ msgstr "Team erstellen" msgid "Create the document as pending and ready to sign." msgstr "Erstellen Sie das Dokument als ausstehend und bereit zur Unterschrift." -#: apps/remix/app/components/forms/token.tsx:243 -#: apps/remix/app/components/forms/token.tsx:252 +#: apps/remix/app/components/forms/token.tsx:244 +#: apps/remix/app/components/forms/token.tsx:253 msgid "Create token" msgstr "Token erstellen" @@ -1889,7 +1892,7 @@ msgstr "Erstellt" msgid "Created At" msgstr "Erstellt am" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:90 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:90 msgid "Created by" msgstr "Erstellt von" @@ -1900,10 +1903,9 @@ msgstr "Erstellt am" #. placeholder {0}: i18n.date(webhook.createdAt, DateTime.DATETIME_FULL) #. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL) -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:88 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:99 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:83 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:64 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:88 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:83 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:83 msgid "Created on {0}" msgstr "Erstellt am {0}" @@ -1923,6 +1925,10 @@ msgstr "Aktuelles Passwort ist falsch." msgid "Current recipients:" msgstr "Aktuelle Empfänger:" +#: apps/remix/app/components/general/billing-plans.tsx:26 +msgid "Daily" +msgstr "" + #: apps/remix/app/components/general/app-command-menu.tsx:261 msgid "Dark Mode" msgstr "Dunkelmodus" @@ -1935,7 +1941,7 @@ msgstr "Dunkelmodus" msgid "Date" msgstr "Datum" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:96 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:96 msgid "Date created" msgstr "Erstellungsdatum" @@ -1944,12 +1950,12 @@ msgstr "Erstellungsdatum" msgid "Date Format" msgstr "Datumsformat" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:184 +#: apps/remix/app/components/general/teams/team-invitations.tsx:184 #: packages/email/templates/team-invite.tsx:101 msgid "Decline" msgstr "Ablehnen" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:163 +#: apps/remix/app/components/general/teams/team-invitations.tsx:163 msgid "Declined team invitation" msgstr "Team-Einladung abgelehnt" @@ -1965,17 +1971,16 @@ msgstr "Standard Sichtbarkeit des Dokuments" msgid "delete" msgstr "löschen" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:100 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:115 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:95 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:80 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:100 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:95 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:103 #: apps/remix/app/components/tables/templates-table-action-dropdown.tsx:109 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:182 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:216 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:175 #: apps/remix/app/components/general/document/document-page-view-dropdown.tsx:144 #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:102 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:114 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:112 #: apps/remix/app/components/dialogs/template-delete-dialog.tsx:87 #: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx:112 #: apps/remix/app/components/dialogs/team-delete-dialog.tsx:165 @@ -1986,7 +1991,7 @@ msgstr "Löschen" #. placeholder {0}: webhook.webhookUrl #. placeholder {0}: token.name #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:49 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:51 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:49 msgid "delete {0}" msgstr "löschen {0}" @@ -2020,7 +2025,7 @@ msgstr "Dokument löschen" msgid "Delete passkey" msgstr "Passkey löschen" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:195 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:195 #: apps/remix/app/components/dialogs/team-delete-dialog.tsx:116 msgid "Delete team" msgstr "Team löschen" @@ -2139,8 +2144,8 @@ msgstr "Konto Deaktivieren" msgid "Disable Two Factor Authentication before deleting your account." msgstr "Deaktivieren Sie die Zwei-Faktor-Authentifizierung, bevor Sie Ihr Konto löschen." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:74 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:69 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:74 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:69 msgid "Disabled" msgstr "Deaktiviert" @@ -2152,7 +2157,7 @@ msgstr "Das Deaktivieren der direkten Link-Signatur verhindert, dass jemand auf msgid "Disabling the user results in the user not being able to use the account. It also disables all the related contents such as subscription, webhooks, teams, and API keys." msgstr "Das Deaktivieren des Benutzers führt dazu, dass der Benutzer das Konto nicht mehr nutzen kann. Es werden auch alle zugehörigen Inhalte wie Abonnements, Webhooks, Teams und API-Schlüssel deaktiviert." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:74 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:74 msgid "Display your name and email in documents" msgstr "Zeigen Sie Ihren Namen und Ihre E-Mail in Dokumenten an" @@ -2172,7 +2177,7 @@ msgstr "Möchten Sie diese Vorlage duplizieren?" msgid "Documenso will delete <0>all of your documents, along with all of your completed documents, signatures, and all other resources belonging to your Account." msgstr "Documenso wird <0>alle Ihre Dokumente löschen, zusammen mit allen abgeschlossenen Dokumenten, Unterschriften und allen anderen Ressourcen, die zu Ihrem Konto gehören." -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:129 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:129 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:36 msgid "Document" msgstr "Dokument" @@ -2250,7 +2255,7 @@ msgstr "Dokument erstellt mit einem <0>direkten Link" msgid "Document Creation" msgstr "Dokumenterstellung" -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:175 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:175 #: apps/remix/app/components/dialogs/document-delete-dialog.tsx:58 #: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx:48 #: packages/lib/utils/document-audit-logs.ts:305 @@ -2282,13 +2287,13 @@ msgstr "Dokument dupliziert" msgid "Document external ID updated" msgstr "Externe ID des Dokuments aktualisiert" -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:186 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:186 #: apps/remix/app/components/general/document/document-history-sheet.tsx:102 msgid "Document history" msgstr "Dokumentverlauf" #: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx:86 -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:82 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:82 msgid "Document ID" msgstr "Dokument-ID" @@ -2337,6 +2342,7 @@ msgid "Document re-sent" msgstr "Dokument erneut gesendet" #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:97 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:12 #: packages/email/template-components/template-document-rejected.tsx:21 msgid "Document Rejected" msgstr "Dokument Abgelehnt" @@ -2362,11 +2368,11 @@ msgstr "Dokument unterzeichnen Authentifizierung aktualisiert" msgid "Document signing process will be cancelled" msgstr "Der Dokumentenunterzeichnungsprozess wird abgebrochen" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:86 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:86 msgid "Document status" msgstr "Dokumentenstatus" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:78 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:78 msgid "Document title" msgstr "Dokumenttitel" @@ -2399,9 +2405,9 @@ msgid "Document will be permanently deleted" msgstr "Dokument wird dauerhaft gelöscht" #: apps/remix/app/routes/_profile+/p.$url.tsx:163 -#: apps/remix/app/routes/_authenticated+/documents+/_index.tsx:111 -#: apps/remix/app/routes/_authenticated+/documents+/$id.edit.tsx:99 -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:138 +#: apps/remix/app/routes/_authenticated+/documents._index.tsx:111 +#: apps/remix/app/routes/_authenticated+/documents.$id.edit.tsx:99 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:138 #: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx:69 #: apps/remix/app/components/tables/admin-dashboard-users-table.tsx:89 #: apps/remix/app/components/general/user-profile-timur.tsx:56 @@ -2413,7 +2419,7 @@ msgstr "Dokument wird dauerhaft gelöscht" msgid "Documents" msgstr "Dokumente" -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:218 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:218 msgid "Documents created from template" msgstr "Dokumente erstellt aus Vorlage" @@ -2494,8 +2500,8 @@ msgstr "Aufgrund einer unbezahlten Rechnung wurde Ihrem Team der Zugriff eingesc msgid "Duplicate" msgstr "Duplizieren" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:95 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:90 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:95 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:90 #: apps/remix/app/components/tables/templates-table-action-dropdown.tsx:69 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:116 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:145 @@ -2506,12 +2512,12 @@ msgstr "Duplizieren" msgid "Edit" msgstr "Bearbeiten" -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:135 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:135 msgid "Edit Template" msgstr "Vorlage bearbeiten" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:93 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:90 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:93 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:90 msgid "Edit webhook" msgstr "Webhook bearbeiten" @@ -2533,7 +2539,7 @@ msgstr "Offenlegung der elektronischen Unterschrift" #: apps/remix/app/components/forms/signin.tsx:318 #: apps/remix/app/components/forms/profile.tsx:108 #: apps/remix/app/components/forms/forgot-password.tsx:77 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:362 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:409 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:405 #: apps/remix/app/components/dialogs/template-use-dialog.tsx:275 #: apps/remix/app/components/dialogs/template-use-dialog.tsx:282 @@ -2641,10 +2647,10 @@ msgstr "Getippte Unterschrift aktivieren" msgid "Enable Typed Signatures" msgstr "Aktivieren Sie getippte Unterschriften" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:74 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:135 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:69 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:134 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:74 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:135 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:69 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:134 #: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx:128 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:159 msgid "Enabled" @@ -2749,13 +2755,12 @@ msgstr "Alle haben unterschrieben! Sie werden eine E-Mail-Kopie des unterzeichne msgid "Exceeded timeout" msgstr "Zeitüberschreitung überschritten" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:118 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:118 msgid "Expired" msgstr "Abgelaufen" #. placeholder {0}: i18n.date(token.expires, DateTime.DATETIME_FULL) -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:103 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:68 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:89 msgid "Expires on {0}" msgstr "Läuft ab am {0}" @@ -2776,8 +2781,8 @@ msgstr "Einstellungen konnten nicht gespeichert werden." msgid "Failed to update recipient" msgstr "Empfänger konnte nicht aktualisiert werden" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:81 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:78 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:81 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:78 msgid "Failed to update webhook" msgstr "Webhook konnte nicht aktualisiert werden" @@ -2870,7 +2875,7 @@ msgstr "Freie Unterschrift" #: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx:323 #: apps/remix/app/components/forms/signup.tsx:309 #: apps/remix/app/components/forms/profile.tsx:96 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:347 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:394 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:390 msgid "Full Name" msgstr "Vollständiger Name" @@ -2947,7 +2952,7 @@ msgstr "hat Sie eingeladen, dieses Dokument anzusehen" msgid "Having an assistant as the last signer means they will be unable to take any action as there are no subsequent signers to assist." msgstr "" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:277 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:324 msgid "Help complete the document for other signers." msgstr "" @@ -2955,15 +2960,15 @@ msgstr "" msgid "Here you can edit your personal details." msgstr "Hier können Sie Ihre persönlichen Daten bearbeiten." -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:68 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:68 msgid "Here you can manage your password and security settings." msgstr "Hier können Sie Ihre Passwort- und Sicherheitseinstellungen verwalten." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:41 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:41 msgid "Here you can set preferences and defaults for branding." msgstr "Hier können Sie Präferenzen und Voreinstellungen für das Branding festlegen." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:32 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:32 msgid "Here you can set preferences and defaults for your team." msgstr "Hier können Sie Präferenzen und Voreinstellungen für Ihr Team festlegen." @@ -2983,7 +2988,7 @@ msgstr "Hallo, {userName}," msgid "Hi, {userName} <0>({userEmail})" msgstr "Hallo, {userName} <0>({userEmail})" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:164 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:164 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:175 #: apps/remix/app/components/dialogs/document-delete-dialog.tsx:196 msgid "Hide" @@ -3018,7 +3023,7 @@ msgid "I am the owner of this document" msgstr "Ich bin der Besitzer dieses Dokuments" #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:166 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:179 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:177 msgid "I'm sure! Delete it" msgstr "Ich bin mir sicher! Löschen" @@ -3198,7 +3203,7 @@ msgstr "Die letzten 7 Tage" msgid "Last modified" msgstr "Zuletzt geändert" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:102 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:102 msgid "Last updated" msgstr "Zuletzt aktualisiert" @@ -3244,7 +3249,7 @@ msgstr "Möchten Sie Ihr eigenes öffentliches Profil mit Vereinbarungen haben?" msgid "Link expires in 1 hour." msgstr "Link läuft in 1 Stunde ab." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:225 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:225 msgid "Link template" msgstr "Vorlage verlinken" @@ -3253,8 +3258,8 @@ msgid "Links Generated" msgstr "Links generiert" #. placeholder {0}: webhook.eventTriggers .map((trigger) => toFriendlyWebhookEventName(trigger)) .join(', ') -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:79 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:74 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:79 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:74 msgid "Listening to {0}" msgstr "Anhören von {0}" @@ -3297,14 +3302,18 @@ msgstr "Verwalten" msgid "Manage {0}'s profile" msgstr "Verwalten Sie das Profil von {0}" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/index.tsx:24 +#: apps/remix/app/routes/_authenticated+/settings+/teams.tsx:23 msgid "Manage all teams you are currently associated with." msgstr "Verwalten Sie alle Teams, mit denen Sie derzeit verbunden sind." -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:183 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:183 msgid "Manage and view template" msgstr "Vorlage verwalten und anzeigen" +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:146 +msgid "Manage billing" +msgstr "" + #: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx:338 msgid "Manage details for this public template" msgstr "Details für diese öffentliche Vorlage verwalten" @@ -3317,7 +3326,7 @@ msgstr "Direktlink verwalten" msgid "Manage documents" msgstr "Dokumente verwalten" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:149 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:149 msgid "Manage passkeys" msgstr "Passkeys verwalten" @@ -3325,11 +3334,15 @@ msgstr "Passkeys verwalten" msgid "Manage subscription" msgstr "Abonnement verwalten" +#: apps/remix/app/components/general/billing-portal-button.tsx:45 +msgid "Manage Subscription" +msgstr "" + #: apps/remix/app/routes/_authenticated+/admin+/subscriptions.tsx:28 msgid "Manage subscriptions" msgstr "Abonnements verwalten" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:93 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:93 msgid "Manage team subscription." msgstr "Teamabonnement verwalten." @@ -3341,7 +3354,7 @@ msgstr "Teams verwalten" msgid "Manage the direct link signing for this template" msgstr "Die direkte Linkunterzeichnung für diese Vorlage verwalten" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:53 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:53 msgid "Manage the members or invite new members." msgstr "Die Mitglieder verwalten oder neue Mitglieder einladen." @@ -3349,7 +3362,7 @@ msgstr "Die Mitglieder verwalten oder neue Mitglieder einladen." msgid "Manage users" msgstr "Benutzer verwalten" -#: apps/remix/app/routes/_authenticated+/settings+/security+/passkeys+/index.tsx:20 +#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx:20 msgid "Manage your passkeys." msgstr "Verwalten Sie Ihre Passkeys." @@ -3390,7 +3403,7 @@ msgstr "Mitglied" msgid "Member Since" msgstr "Mitglied seit" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:52 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:52 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:84 #: apps/remix/app/components/general/teams/team-settings-nav-desktop.tsx:75 msgid "Members" @@ -3410,7 +3423,8 @@ msgstr "Min" msgid "Modify recipients" msgstr "Empfänger ändern" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:60 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:60 +#: apps/remix/app/components/general/billing-plans.tsx:28 msgid "Monthly" msgstr "Monatlich" @@ -3445,7 +3459,7 @@ msgstr "In Team verschieben" msgid "Moving..." msgstr "Verschieben..." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:36 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:36 msgid "My templates" msgstr "Meine Vorlagen" @@ -3491,7 +3505,7 @@ msgstr "Muss sehen" msgid "Never" msgstr "Niemals" -#: apps/remix/app/components/forms/token.tsx:217 +#: apps/remix/app/components/forms/token.tsx:218 msgid "Never expire" msgstr "Nie ablaufen" @@ -3509,7 +3523,7 @@ msgid "New Template" msgstr "Neue Vorlage" #: apps/remix/app/components/forms/signup.tsx:515 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:418 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:465 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:460 msgid "Next" msgstr "Nächster" @@ -3523,10 +3537,11 @@ msgid "No active drafts" msgstr "Keine aktiven Entwürfe" #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:113 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:28 msgid "No further action is required from you at this time." msgstr "Es sind derzeit keine weiteren Maßnahmen Ihrerseits erforderlich." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:49 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:49 msgid "No payment required" msgstr "Keine Zahlung erforderlich" @@ -3645,21 +3660,17 @@ msgstr "im Auftrag von \"{0}\" hat Sie eingeladen, dieses Dokument anzusehen" msgid "On this page, you can create a new webhook." msgstr "Auf dieser Seite können Sie einen neuen Webhook erstellen." -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:23 -msgid "On this page, you can create new API tokens and manage the existing ones. <0/>Also see our <1>Documentation." -msgstr "Auf dieser Seite können Sie neue API-Tokens erstellen und die vorhandenen verwalten. <0/>Siehe auch unsere <1>Dokumentation." +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:28 +msgid "On this page, you can create and manage API tokens. See our <0>Documentation for more information." +msgstr "" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:59 -msgid "On this page, you can create new API tokens and manage the existing ones. <0/>You can view our swagger docs <1>here" -msgstr "Auf dieser Seite können Sie neue API-Tokens erstellen und die vorhandenen verwalten. <0/>Sie können unsere Swagger-Dokumentation <1>hier einsehen" - -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:32 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:27 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:32 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:27 msgid "On this page, you can create new Webhooks and manage the existing ones." msgstr "Auf dieser Seite können Sie neue Webhooks erstellen und die vorhandenen verwalten." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:94 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:91 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:94 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:91 msgid "On this page, you can edit the webhook and its settings." msgstr "Auf dieser Seite können Sie den Webhook und seine Einstellungen bearbeiten." @@ -3765,8 +3776,8 @@ msgstr "Passkey-Name" msgid "Passkey Re-Authentication" msgstr "Passwortwiederauthentifizierung" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:137 -#: apps/remix/app/routes/_authenticated+/settings+/security+/passkeys+/index.tsx:19 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:137 +#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx:19 msgid "Passkeys" msgstr "Passkeys" @@ -3824,7 +3835,7 @@ msgstr "Zahlung ist erforderlich, um die Erstellung Ihres Teams abzuschließen." msgid "Payment overdue" msgstr "Zahlung überfällig" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:76 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:76 #: apps/remix/app/components/tables/user-settings-teams-page-table.tsx:70 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:203 #: apps/remix/app/components/general/document/document-status.tsx:22 @@ -3846,7 +3857,7 @@ msgstr "Ausstehende Dokumente" msgid "Pending Documents" msgstr "Ausstehende Dokumente" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:61 +#: apps/remix/app/components/general/teams/team-invitations.tsx:61 msgid "Pending invitations" msgstr "Ausstehende Einladungen" @@ -3929,7 +3940,7 @@ msgstr "Bitte bestätige deine E-Mail-Adresse" msgid "Please contact support if you would like to revert this action." msgstr "Bitte kontaktieren Sie den Support, wenn Sie diese Aktion rückgängig machen möchten." -#: apps/remix/app/components/forms/token.tsx:168 +#: apps/remix/app/components/forms/token.tsx:169 msgid "Please enter a meaningful name for your token. This will help you identify it later." msgstr "Bitte geben Sie einen aussagekräftigen Namen für Ihr Token ein. Dies wird Ihnen helfen, es später zu identifizieren." @@ -3958,7 +3969,7 @@ msgstr "Bitte beachten Sie, dass diese Aktion <0>irreversibel ist. Nachdem d msgid "Please note that this action is irreversible. Once confirmed, your template will be permanently deleted." msgstr "Bitte beachten Sie, dass diese Aktion irreversibel ist. Sobald sie bestätigt wird, wird Ihre Vorlage dauerhaft gelöscht." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:126 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:124 msgid "Please note that this action is irreversible. Once confirmed, your token will be permanently deleted." msgstr "Bitte beachten Sie, dass diese Aktion irreversibel ist. Sobald sie bestätigt wird, wird Ihr Token dauerhaft gelöscht." @@ -4047,11 +4058,11 @@ msgstr "Private Vorlagen können nur von Ihnen bearbeitet und angezeigt werden." msgid "Profile" msgstr "Profil" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:193 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:193 msgid "Profile is currently <0>hidden." msgstr "Profil ist derzeit <0>versteckt." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:181 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:181 msgid "Profile is currently <0>visible." msgstr "Profil ist derzeit <0>sichtbar." @@ -4065,7 +4076,7 @@ msgstr "Profil aktualisiert" msgid "Public" msgstr "Öffentlich" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:34 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:34 #: apps/remix/app/components/general/settings-nav-mobile.tsx:45 #: apps/remix/app/components/general/settings-nav-desktop.tsx:43 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:71 @@ -4137,7 +4148,7 @@ msgstr "Eine erneute Authentifizierung ist erforderlich, um dieses Feld zu unter msgid "Receives copy" msgstr "Erhält Kopie" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:160 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:160 #: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx:54 msgid "Recent activity" msgstr "Aktuelle Aktivitäten" @@ -4195,7 +4206,7 @@ msgstr "Empfänger behalten weiterhin ihre Kopie des Dokuments" msgid "Recovery code copied" msgstr "Wiederherstellungscode kopiert" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:116 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:116 msgid "Recovery codes" msgstr "Wiederherstellungscodes" @@ -4213,9 +4224,9 @@ msgstr "Weiterleitungs-URL" msgid "Registration Successful" msgstr "Registrierung erfolgreich" -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:107 -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:114 -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:160 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:116 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:123 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:169 #: packages/email/template-components/template-document-invite.tsx:98 msgid "Reject Document" msgstr "Dokument Ablehnen" @@ -4279,7 +4290,7 @@ msgstr "Team-E-Mail entfernen" msgid "Remove team member" msgstr "Teammitglied entfernen" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:69 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:69 msgid "Renews: {formattedDate}" msgstr "Erneuert: {formattedDate}" @@ -4378,11 +4389,11 @@ msgstr "Zurück zur Startseite" msgid "Return to sign in" msgstr "Zurück zur Anmeldung" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:117 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:117 msgid "Revoke" msgstr "Zugriff widerrufen" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:86 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:86 msgid "Revoke access" msgstr "Zugriff widerrufen" @@ -4417,7 +4428,7 @@ msgstr "Speichern" msgid "Save Template" msgstr "Vorlage speichern" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:63 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:63 #: apps/remix/app/components/tables/user-settings-teams-page-table.tsx:57 #: apps/remix/app/components/tables/documents-table-sender-filter.tsx:58 #: apps/remix/app/components/general/app-nav-desktop.tsx:84 @@ -4441,18 +4452,18 @@ msgstr "Dokumente suchen..." msgid "Search languages..." msgstr "Sprachen suchen..." -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:185 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:185 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:210 msgid "Secret" msgstr "Geheim" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:67 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:67 #: apps/remix/app/components/general/settings-nav-mobile.tsx:71 #: apps/remix/app/components/general/settings-nav-desktop.tsx:69 msgid "Security" msgstr "Sicherheit" -#: apps/remix/app/routes/_authenticated+/settings+/security+/activity+/index.tsx:18 +#: apps/remix/app/routes/_authenticated+/settings+/security.activity.tsx:18 msgid "Security activity" msgstr "Sicherheitsaktivität" @@ -4616,7 +4627,7 @@ msgstr "Link teilen" msgid "Share your signing experience!" msgstr "Teilen Sie Ihre Unterzeichnungserfahrung!" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:172 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:172 msgid "Show" msgstr "Anzeigen" @@ -4629,11 +4640,11 @@ msgstr "Zusätzliche Informationen anzeigen" msgid "Show advanced settings" msgstr "Erweiterte Einstellungen anzeigen" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:37 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:37 msgid "Show templates in your public profile for your audience to sign and get started quickly" msgstr "Vorlagen in Ihrem öffentlichen Profil anzeigen, damit Ihre Zielgruppe unterschreiben und schnell loslegen kann" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:44 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:44 msgid "Show templates in your team public profile for your audience to sign and get started quickly" msgstr "Vorlagen in Ihrem Team-Öffentliches Profil anzeigen, damit Ihre Zielgruppe unterschreiben und schnell loslegen kann" @@ -4664,7 +4675,7 @@ msgstr "Unterzeichnen als {0} <0>({1})" msgid "Sign as<0>{0} <1>({1})" msgstr "Unterzeichnen als<0>{0} <1>({1})" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:254 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:301 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:358 msgid "Sign document" msgstr "Dokument unterschreiben" @@ -4697,7 +4708,7 @@ msgstr "Melden Sie sich bei Ihrem Konto an" msgid "Sign Out" msgstr "Ausloggen" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:279 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:326 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:379 msgid "Sign the document to complete the process." msgstr "Unterschreiben Sie das Dokument, um den Vorgang abzuschließen." @@ -4721,7 +4732,7 @@ msgstr "Registrieren mit OIDC" #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:342 #: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx:335 #: apps/remix/app/components/forms/profile.tsx:118 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:376 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:423 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:420 #: packages/ui/primitives/template-flow/add-template-fields.tsx:711 #: packages/ui/primitives/document-flow/types.ts:49 @@ -4736,7 +4747,7 @@ msgstr "Signatur-ID" #: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx:297 #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:366 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:402 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:449 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:446 msgid "Signature is too small. Please provide a more complete signature." msgstr "Die Unterschrift ist zu klein. Bitte geben Sie eine vollständigere Unterschrift an." @@ -4789,7 +4800,7 @@ msgstr "Unterzeichnungszertifikat bereitgestellt von" msgid "Signing Complete!" msgstr "Unterzeichnung abgeschlossen!" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:292 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:339 msgid "Signing for" msgstr "" @@ -4841,10 +4852,7 @@ msgstr "Einige Unterzeichner haben noch kein Unterschriftsfeld zugewiesen bekomm #: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx:56 #: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx:88 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:132 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:169 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:43 -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:133 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:133 #: apps/remix/app/components/tables/user-settings-pending-teams-table-actions.tsx:34 #: apps/remix/app/components/tables/team-settings-member-invites-table.tsx:62 #: apps/remix/app/components/tables/team-settings-member-invites-table.tsx:79 @@ -4852,7 +4860,12 @@ msgstr "Einige Unterzeichner haben noch kein Unterschriftsfeld zugewiesen bekomm #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:98 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:95 #: apps/remix/app/components/tables/documents-table-action-button.tsx:73 +#: apps/remix/app/components/general/billing-portal-button.tsx:35 +#: apps/remix/app/components/general/billing-plans.tsx:62 #: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx:52 +#: apps/remix/app/components/general/teams/team-invitations.tsx:132 +#: apps/remix/app/components/general/teams/team-invitations.tsx:169 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:43 #: apps/remix/app/components/general/teams/team-email-dropdown.tsx:38 #: apps/remix/app/components/general/teams/team-billing-portal-button.tsx:28 #: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx:34 @@ -4864,7 +4877,7 @@ msgstr "Einige Unterzeichner haben noch kein Unterschriftsfeld zugewiesen bekomm #: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx:24 #: apps/remix/app/components/general/direct-template/direct-template-page.tsx:119 #: apps/remix/app/components/forms/team-branding-preferences-form.tsx:106 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:154 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:167 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:260 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:103 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:128 @@ -4914,12 +4927,11 @@ msgstr "Etwas ist schiefgelaufen beim Aktualisieren des Abonnements für die Tea msgid "Something went wrong!" msgstr "Etwas ist schiefgelaufen!" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:46 #: packages/ui/primitives/data-table.tsx:134 msgid "Something went wrong." msgstr "Etwas ist schief gelaufen." -#: apps/remix/app/components/forms/token.tsx:136 +#: apps/remix/app/components/forms/token.tsx:137 msgid "Something went wrong. Please try again later." msgstr "Etwas ist schiefgelaufen. Bitte versuchen Sie es später noch einmal." @@ -4970,6 +4982,10 @@ msgstr "Einreichen" msgid "Submitting..." msgstr "" +#: apps/remix/app/components/general/billing-plans.tsx:129 +msgid "Subscribe" +msgstr "" + #: apps/remix/app/components/tables/admin-dashboard-users-table.tsx:78 msgid "Subscription" msgstr "Abonnement" @@ -4978,9 +4994,6 @@ msgstr "Abonnement" msgid "Subscriptions" msgstr "Abonnements" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:125 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:162 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:36 #: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx:54 #: apps/remix/app/components/tables/user-settings-pending-teams-table-actions.tsx:28 #: apps/remix/app/components/tables/team-settings-member-invites-table.tsx:56 @@ -4989,6 +5002,9 @@ msgstr "Abonnements" #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:90 #: apps/remix/app/components/general/verify-email-banner.tsx:46 #: apps/remix/app/components/general/teams/team-transfer-status.tsx:41 +#: apps/remix/app/components/general/teams/team-invitations.tsx:125 +#: apps/remix/app/components/general/teams/team-invitations.tsx:162 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:36 #: apps/remix/app/components/general/teams/team-email-dropdown.tsx:31 #: apps/remix/app/components/forms/team-update-form.tsx:65 #: apps/remix/app/components/forms/public-profile-form.tsx:79 @@ -5045,12 +5061,12 @@ msgstr "Team \"{0}\" wurde auf Documenso gelöscht" msgid "Team checkout" msgstr "Teameinkaufs-Prüfung" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:65 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:144 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:65 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:144 msgid "Team email" msgstr "Team E-Mail" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:57 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:57 msgid "Team Email" msgstr "Team-E-Mail" @@ -5130,11 +5146,11 @@ msgstr "Team-Eigentumsübertragung bereits abgeschlossen!" msgid "Team ownership transferred!" msgstr "Team-Eigentum übertragen!" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:31 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:31 msgid "Team Preferences" msgstr "Teampräferenzen" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:41 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:41 msgid "Team Public Profile" msgstr "Öffentliches Profil des Teams" @@ -5142,11 +5158,11 @@ msgstr "Öffentliches Profil des Teams" msgid "Team settings" msgstr "Teameinstellungen" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_layout.tsx:39 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx:39 msgid "Team Settings" msgstr "Team-Einstellungen" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:43 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:43 msgid "Team templates" msgstr "Teamvorlagen" @@ -5163,7 +5179,7 @@ msgstr "Der Antrag auf Teamübertragung ist abgelaufen" msgid "Team URL" msgstr "Team-URL" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/index.tsx:23 +#: apps/remix/app/routes/_authenticated+/settings+/teams.tsx:22 #: apps/remix/app/components/general/settings-nav-mobile.tsx:58 #: apps/remix/app/components/general/settings-nav-desktop.tsx:56 #: apps/remix/app/components/general/menu-switcher.tsx:155 @@ -5175,8 +5191,8 @@ msgstr "Teams" msgid "Teams restricted" msgstr "Teams beschränkt" -#: apps/remix/app/routes/_authenticated+/templates+/$id.edit.tsx:71 -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:166 +#: apps/remix/app/routes/_authenticated+/templates.$id.edit.tsx:71 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:166 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:37 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:140 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:220 @@ -5221,8 +5237,8 @@ msgstr "Vorlage gespeichert" msgid "Template title" msgstr "Vorlagentitel" -#: apps/remix/app/routes/_authenticated+/templates+/_index.tsx:56 -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:102 +#: apps/remix/app/routes/_authenticated+/templates._index.tsx:56 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:102 #: apps/remix/app/components/general/app-nav-mobile.tsx:35 #: apps/remix/app/components/general/app-nav-desktop.tsx:21 #: apps/remix/app/components/general/app-command-menu.tsx:203 @@ -5309,6 +5325,7 @@ msgid "The document owner has been notified of this rejection. No further action msgstr "Der Dokumenteninhaber wurde über diese Ablehnung informiert. Es sind derzeit keine weiteren Maßnahmen von Ihnen erforderlich. Der Dokumenteninhaber kann Sie bei Fragen zu dieser Ablehnung kontaktieren." #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:106 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:21 msgid "The document owner has been notified of your decision. They may contact you with further instructions if necessary." msgstr "Der Dokumenteneigentümer wurde über Ihre Entscheidung informiert. Er kann Sie bei Bedarf mit weiteren Anweisungen kontaktieren." @@ -5332,7 +5349,7 @@ msgstr "Der Name des Dokuments" msgid "The email or password provided is incorrect" msgstr "" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:172 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:172 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:196 msgid "The events that will trigger a webhook to be sent to your URL." msgstr "Die Ereignisse, die einen Webhook auslösen, der an Ihre URL gesendet wird." @@ -5464,11 +5481,11 @@ msgstr "Die Vorlage wurde erfolgreich in das ausgewählte Team verschoben." msgid "The template will be removed from your profile" msgstr "Die Vorlage wird von Ihrem Profil entfernt" -#: apps/remix/app/components/forms/token.tsx:102 +#: apps/remix/app/components/forms/token.tsx:103 msgid "The token was copied to your clipboard." msgstr "Der Token wurde in die Zwischenablage kopiert." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:83 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:81 msgid "The token was deleted successfully." msgstr "Das Token wurde erfolgreich gelöscht." @@ -5480,8 +5497,8 @@ msgstr "Der Token, den Sie zur Zurücksetzung Ihres Passworts verwendet haben, i msgid "The two-factor authentication code provided is incorrect" msgstr "" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:121 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:120 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:121 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:120 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:145 msgid "The URL for Documenso to send webhook events to." msgstr "Die URL für Documenso, um Webhook-Ereignisse zu senden." @@ -5490,8 +5507,8 @@ msgstr "Die URL für Documenso, um Webhook-Ereignisse zu senden." msgid "The webhook has been successfully deleted." msgstr "Das Webhook wurde erfolgreich gelöscht." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:74 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:71 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:74 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:71 msgid "The webhook has been updated successfully." msgstr "Der Webhook wurde erfolgreich aktualisiert." @@ -5507,7 +5524,7 @@ msgstr "Es gibt derzeit keine aktiven Entwürfe. Sie können ein Dokument hochla msgid "There are no completed documents yet. Documents that you have created or received will appear here once completed." msgstr "Es gibt noch keine abgeschlossenen Dokumente. Dokumente, die Sie erstellt oder erhalten haben, werden hier angezeigt, sobald sie abgeschlossen sind." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:69 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:69 msgid "They have permission on your behalf to:" msgstr "Sie haben in Ihrem Namen die Erlaubnis, zu:" @@ -5561,11 +5578,11 @@ msgstr "Dieses Dokument wurde vom Eigentümer storniert und steht anderen nicht msgid "This document has been cancelled by the owner." msgstr "Dieses Dokument wurde vom Eigentümer storniert." -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:221 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:221 msgid "This document has been signed by all recipients" msgstr "Dieses Dokument wurde von allen Empfängern unterschrieben" -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:224 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:224 msgid "This document is currently a draft and has not been sent" msgstr "Dieses Dokument ist momentan ein Entwurf und wurde nicht gesendet" @@ -5649,7 +5666,7 @@ msgstr "Diese Sitzung ist abgelaufen. Bitte versuchen Sie es erneut." msgid "This signer has already signed the document." msgstr "Dieser Unterzeichner hat das Dokument bereits unterschrieben." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:199 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:199 msgid "This team, and any associated data excluding billing invoices will be permanently deleted." msgstr "Dieses Team und alle zugehörigen Daten, ausgenommen Rechnungen, werden permanent gelöscht." @@ -5695,7 +5712,7 @@ msgstr "Dies überschreibt alle globalen Einstellungen." msgid "Time" msgstr "Zeit" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:108 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:108 msgid "Time zone" msgstr "Zeitzone" @@ -5762,15 +5779,15 @@ msgstr "Um fortzufahren, legen Sie bitte mindestens einen Wert für das Feld {0} msgid "To use our electronic signature service, you must have access to:" msgstr "Um unseren elektronischen Signaturdienst nutzen zu können, müssen Sie Zugriff auf Folgendes haben:" -#: apps/remix/app/components/embed/embed-authentication-required.tsx:24 +#: apps/remix/app/components/embed/embed-authentication-required.tsx:30 msgid "To view this document you need to be signed into your account, please sign in to continue." msgstr "Um dieses Dokument anzusehen, müssen Sie in Ihr Konto eingeloggt sein. Bitte melden Sie sich an, um fortzufahren." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:187 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:187 msgid "Toggle the switch to hide your profile from the public." msgstr "Schalten Sie den Schalter um, um Ihr Profil vor der Öffentlichkeit zu verbergen." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:199 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:199 msgid "Toggle the switch to show your profile to the public." msgstr "Schalten Sie den Schalter um, um Ihr Profil der Öffentlichkeit anzuzeigen." @@ -5778,24 +5795,23 @@ msgstr "Schalten Sie den Schalter um, um Ihr Profil der Öffentlichkeit anzuzeig msgid "Token" msgstr "Token" -#: apps/remix/app/components/forms/token.tsx:101 +#: apps/remix/app/components/forms/token.tsx:102 msgid "Token copied to clipboard" msgstr "Token wurde in die Zwischenablage kopiert" -#: apps/remix/app/components/forms/token.tsx:122 +#: apps/remix/app/components/forms/token.tsx:123 msgid "Token created" msgstr "Token erstellt" -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:82 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:80 msgid "Token deleted" msgstr "Token gelöscht" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:107 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:72 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:95 msgid "Token doesn't have an expiration date" msgstr "Token hat kein Ablaufdatum" -#: apps/remix/app/components/forms/token.tsx:186 +#: apps/remix/app/components/forms/token.tsx:187 msgid "Token expiration date" msgstr "Ablaufdatum des Tokens" @@ -5803,7 +5819,7 @@ msgstr "Ablaufdatum des Tokens" msgid "Token has expired. Please try again." msgstr "Das Token ist abgelaufen. Bitte versuchen Sie es erneut." -#: apps/remix/app/components/forms/token.tsx:158 +#: apps/remix/app/components/forms/token.tsx:159 msgid "Token name" msgstr "Token-Name" @@ -5835,27 +5851,27 @@ msgstr "übertragen {teamName}" msgid "Transfer ownership of this team to a selected team member." msgstr "Übertragen Sie die Inhaberschaft dieses Teams auf ein ausgewähltes Teammitglied." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:173 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:173 #: apps/remix/app/components/dialogs/team-transfer-dialog.tsx:145 #: apps/remix/app/components/dialogs/team-transfer-dialog.tsx:154 msgid "Transfer team" msgstr "Team übertragen" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:177 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:177 msgid "Transfer the ownership of the team to another team member." msgstr "Übertragen Sie das Eigentum des Teams auf ein anderes Teammitglied." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:160 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:159 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:160 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:159 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:184 msgid "Triggers" msgstr "Auslöser" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:84 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:84 msgid "Two factor authentication" msgstr "Zwei-Faktor-Authentifizierung" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:120 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:120 msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app." msgstr "Wiederherstellungscodes für die Zwei-Faktor-Authentifizierung werden verwendet, um auf Ihr Konto zuzugreifen, falls Sie den Zugang zu Ihrer Authentifizierungs-App verlieren." @@ -5904,7 +5920,7 @@ msgstr "Zurzeit kann die Sprache nicht geändert werden. Bitte versuchen Sie es msgid "Unable to copy recovery code" msgstr "Kann Code zur Wiederherstellung nicht kopieren" -#: apps/remix/app/components/forms/token.tsx:106 +#: apps/remix/app/components/forms/token.tsx:107 msgid "Unable to copy token" msgstr "Token kann nicht kopiert werden" @@ -5912,7 +5928,7 @@ msgstr "Token kann nicht kopiert werden" msgid "Unable to create direct template access. Please try again later." msgstr "Direkter Zugriff auf die Vorlage kann nicht erstellt werden. Bitte versuche es später noch einmal." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:170 +#: apps/remix/app/components/general/teams/team-invitations.tsx:170 msgid "Unable to decline this team invitation at this time." msgstr "Zurzeit kann diese Teameinladung nicht abgelehnt werden." @@ -5928,7 +5944,7 @@ msgstr "Team konnte nicht gelöscht werden" msgid "Unable to disable two-factor authentication" msgstr "Zwei-Faktor-Authentifizierung kann nicht deaktiviert werden" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:133 +#: apps/remix/app/components/general/teams/team-invitations.tsx:133 msgid "Unable to join this team at this time." msgstr "Zurzeit kann diesem Team nicht beigetreten werden." @@ -5975,6 +5991,7 @@ msgstr "Zwei-Faktor-Authentifizierung kann nicht eingerichtet werden" msgid "Unable to sign in" msgstr "Anmeldung nicht möglich" +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:49 #: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx:163 msgid "Unauthorized" msgstr "Nicht autorisiert" @@ -5987,7 +6004,7 @@ msgstr "Unvollendet" #: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx:270 #: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx:281 #: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx:292 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:61 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:61 msgid "Unknown" msgstr "Unbekannt" @@ -6051,8 +6068,8 @@ msgstr "Aktualisieren Sie die Rolle und fügen Sie Felder nach Bedarf für den d msgid "Update user" msgstr "Benutzer aktualisieren" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:203 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:204 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:203 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:204 msgid "Update webhook" msgstr "Webhook aktualisieren" @@ -6125,7 +6142,7 @@ msgstr "Die hochgeladene Datei ist zu klein" msgid "Uploaded file not an allowed file type" msgstr "Die hochgeladene Datei ist kein zulässiger Dateityp" -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:194 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:194 msgid "Use" msgstr "Verwenden" @@ -6235,7 +6252,7 @@ msgstr "Versionsverlauf" msgid "View" msgstr "Betrachten" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:170 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:170 msgid "View activity" msgstr "Aktivität ansehen" @@ -6243,11 +6260,11 @@ msgstr "Aktivität ansehen" msgid "View all documents sent to and from this email address" msgstr "Sehen Sie sich alle Dokumente an, die an diese E-Mail-Adresse gesendet wurden und von dieser E-Mail-Adresse gesendet wurden" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:77 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:77 msgid "View all documents sent to your account" msgstr "Alle Dokumente anzeigen, die an Ihr Konto gesendet wurden" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:164 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:164 msgid "View all recent security activity related to your account." msgstr "Sehen Sie sich alle aktuellen Sicherheitsaktivitäten in Ihrem Konto an." @@ -6255,7 +6272,7 @@ msgstr "Sehen Sie sich alle aktuellen Sicherheitsaktivitäten in Ihrem Konto an. msgid "View all related documents" msgstr "Alle verwandten Dokumente anzeigen" -#: apps/remix/app/routes/_authenticated+/settings+/security+/activity+/index.tsx:19 +#: apps/remix/app/routes/_authenticated+/settings+/security.activity.tsx:19 msgid "View all security activity related to your account." msgstr "Sehen Sie sich alle Sicherheitsaktivitäten in Ihrem Konto an." @@ -6275,11 +6292,11 @@ msgstr "Dokument anzeigen" msgid "View Document" msgstr "Dokument ansehen" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:154 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:154 msgid "View documents associated with this email" msgstr "Dokumente ansehen, die mit dieser E-Mail verknüpft sind" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:54 +#: apps/remix/app/components/general/teams/team-invitations.tsx:54 msgid "View invites" msgstr "Einladungen ansehen" @@ -6360,6 +6377,7 @@ msgstr "Möchten Sie Ihr eigenes öffentliches Profil haben?" msgid "Warning: Assistant as last signer" msgstr "" +#: apps/remix/app/components/general/billing-portal-button.tsx:25 #: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx:54 #: apps/remix/app/components/general/teams/team-billing-portal-button.tsx:30 msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support." @@ -6377,8 +6395,8 @@ msgstr "Wir können diesen Schlüssel im Moment nicht aktualisieren. Bitte versu msgid "We encountered an error while removing the direct template link. Please try again later." msgstr "Wir sind auf einen Fehler gestoßen, während wir den direkten Vorlagenlink entfernt haben. Bitte versuchen Sie es später erneut." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:83 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:80 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:83 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:80 msgid "We encountered an error while updating the webhook. Please try again later." msgstr "Wir sind auf einen Fehler gestoßen, während wir den Webhook aktualisieren wollten. Bitte versuchen Sie es später erneut." @@ -6402,7 +6420,7 @@ msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht h msgid "We encountered an unknown error while attempting to delete this team. Please try again later." msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, dieses Team zu löschen. Bitte versuchen Sie es später erneut." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:92 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:90 msgid "We encountered an unknown error while attempting to delete this token. Please try again later." msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, dieses Token zu löschen. Bitte versuchen Sie es später erneut." @@ -6438,7 +6456,7 @@ msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht h msgid "We encountered an unknown error while attempting to reset your password. Please try again later." msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Ihr Passwort zurückzusetzen. Bitte versuchen Sie es später erneut." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:45 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:45 msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support." msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, den Zugriff zu widerrufen. Bitte versuchen Sie es später oder kontaktieren Sie den Support." @@ -6497,7 +6515,7 @@ msgstr "Wir benötigen einen Benutzernamen, um Ihr Profil zu erstellen" msgid "We need your signature to sign documents" msgstr "Wir benötigen Ihre Unterschrift, um Dokumente zu unterschreiben" -#: apps/remix/app/components/forms/token.tsx:107 +#: apps/remix/app/components/forms/token.tsx:108 msgid "We were unable to copy the token to your clipboard. Please try again." msgstr "Wir konnten das Token nicht in Ihre Zwischenablage kopieren. Bitte versuchen Sie es erneut." @@ -6523,7 +6541,7 @@ msgstr "Wir konnten die Zwei-Faktor-Authentifizierung für Ihr Konto nicht deakt msgid "We were unable to log you out at this time." msgstr "Wir konnten Sie zurzeit nicht abmelden." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:134 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:134 msgid "We were unable to set your public profile to public. Please try again." msgstr "Wir konnten Ihr öffentliches Profil nicht auf öffentlich setzen. Bitte versuchen Sie es erneut." @@ -6533,7 +6551,7 @@ msgid "We were unable to setup two-factor authentication for your account. Pleas msgstr "Wir konnten die Zwei-Faktor-Authentifizierung für Ihr Konto nicht einrichten. Bitte stellen Sie sicher, dass Sie den Code korrekt eingegeben haben und versuchen Sie es erneut." #: apps/remix/app/components/general/direct-template/direct-template-page.tsx:121 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:156 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:169 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:262 msgid "We were unable to submit this document at this time. Please try again later." msgstr "Wir konnten dieses Dokument zurzeit nicht einreichen. Bitte versuchen Sie es später erneut." @@ -6571,7 +6589,7 @@ msgstr "Wir werden Unterzeichnungslinks für Sie erstellen, die Sie an die Empf msgid "We won't send anything to notify recipients." msgstr "Wir werden nichts senden, um die Empfänger zu benachrichtigen." -#: apps/remix/app/routes/_authenticated+/templates+/_index.tsx:72 +#: apps/remix/app/routes/_authenticated+/templates._index.tsx:72 #: apps/remix/app/components/tables/documents-table-empty-state.tsx:29 msgid "We're all empty" msgstr "Wir sind alle leer" @@ -6596,18 +6614,18 @@ msgstr "Webhook erstellt" msgid "Webhook deleted" msgstr "Webhook gelöscht" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:73 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:70 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:73 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:70 msgid "Webhook updated" msgstr "Webhook aktualisiert" -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:113 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:113 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:138 msgid "Webhook URL" msgstr "Webhook-URL" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:31 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:26 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:31 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:26 #: apps/remix/app/components/general/settings-nav-mobile.tsx:97 #: apps/remix/app/components/general/settings-nav-desktop.tsx:95 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:107 @@ -6615,6 +6633,10 @@ msgstr "Webhook-URL" msgid "Webhooks" msgstr "Webhooks" +#: apps/remix/app/components/general/billing-plans.tsx:27 +msgid "Weekly" +msgstr "" + #: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx:17 msgid "Welcome" msgstr "Willkommen" @@ -6663,7 +6685,8 @@ msgstr "Schreiben Sie über das Team" msgid "Write about yourself" msgstr "Schreiben Sie über sich selbst" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:59 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:59 +#: apps/remix/app/components/general/billing-plans.tsx:29 msgid "Yearly" msgstr "Jährlich" @@ -6695,7 +6718,7 @@ msgstr "Sie stehen kurz davor, den folgenden Benutzer aus <0>{teamName} zu e #. placeholder {0}: teamEmail.team.name #. placeholder {1}: teamEmail.team.url -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:97 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:97 msgid "You are about to revoke access for team <0>{0} ({1}) to use your email." msgstr "Sie stehen kurz davor, den Zugriff für das Team <0>{0} ({1}) zu widerrufen." @@ -6703,6 +6726,10 @@ msgstr "Sie stehen kurz davor, den Zugriff für das Team <0>{0} ({1}) zu wid msgid "You are about to send this document to the recipients. Are you sure you want to continue?" msgstr "Sie sind dabei, dieses Dokument an die Empfänger zu senden. Sind Sie sicher, dass Sie fortfahren möchten?" +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:90 +msgid "You are currently on the <0>Free Plan." +msgstr "" + #: apps/remix/app/components/dialogs/team-member-update-dialog.tsx:147 msgid "You are currently updating <0>{teamMemberName}." msgstr "Sie aktualisieren derzeit <0>{teamMemberName}." @@ -6731,11 +6758,11 @@ msgstr "Sie sind nicht berechtigt, diesen Benutzer zu aktivieren." msgid "You can also copy and paste this link into your browser: {confirmationLink} (link expires in 1 hour)" msgstr "Du kannst diesen Link auch kopieren und in deinen Browser einfügen: {confirmationLink} (Link läuft in 1 Stunde ab)" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:35 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:35 msgid "You can choose to enable or disable your profile for public view." msgstr "Sie können wählen, ob Sie Ihr Profil für die öffentliche Ansicht aktivieren oder deaktivieren möchten." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:42 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:42 msgid "You can choose to enable or disable your team profile for public view." msgstr "Sie können wählen, ob Sie Ihr Teamprofil für die öffentliche Ansicht aktivieren oder deaktivieren möchten." @@ -6755,7 +6782,7 @@ msgstr "Sie können die Profil-URL aktualisieren, indem Sie die Team-URL auf der msgid "You can use the following variables in your message:" msgstr "Sie können die folgenden Variablen in Ihrer Nachricht verwenden:" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:69 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:69 msgid "You can view documents associated with this email and use this identity when sending documents." msgstr "Sie können Dokumente ansehen, die mit dieser E-Mail verknüpft sind, und diese Identität beim Senden von Dokumenten verwenden." @@ -6788,7 +6815,11 @@ msgstr "Sie können derzeit keine Dokumente hochladen." msgid "You cannot upload encrypted PDFs" msgstr "Sie können keine verschlüsselten PDFs hochladen" -#: apps/remix/app/components/forms/token.tsx:134 +#: apps/remix/app/components/general/billing-portal-button.tsx:30 +msgid "You do not currently have a customer record, this should not happen. Please contact support for assistance." +msgstr "" + +#: apps/remix/app/components/forms/token.tsx:135 msgid "You do not have permission to create a token for this team" msgstr "Sie haben keine Berechtigung, ein Token für dieses Team zu erstellen" @@ -6847,12 +6878,12 @@ msgstr "Sie haben die Einladung von <0>{0} abgelehnt, ihrem Team beizutreten msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it." msgstr "Du hast das Dokument {0} initiiert, das erfordert, dass du {recipientActionVerb}." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:45 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:40 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:45 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:40 msgid "You have no webhooks yet. Your webhooks will be shown here once you create them." msgstr "Sie haben noch keine Webhooks. Ihre Webhooks werden hier angezeigt, sobald Sie sie erstellt haben." -#: apps/remix/app/routes/_authenticated+/templates+/_index.tsx:76 +#: apps/remix/app/routes/_authenticated+/templates._index.tsx:76 msgid "You have not yet created any templates. To create a template please upload one." msgstr "Sie haben noch keine Vorlagen erstellt. Bitte laden Sie eine Datei hoch, um eine Vorlage zu erstellen." @@ -6883,6 +6914,7 @@ msgid "You have rejected the document '{documentName}'" msgstr "Sie haben das Dokument '{documentName}' abgelehnt" #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:102 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:17 msgid "You have rejected this document" msgstr "Sie haben dieses Dokument abgelehnt" @@ -6903,7 +6935,7 @@ msgstr "Sie haben sich erfolgreich registriert. Bitte bestätigen Sie Ihr Konto, msgid "You have successfully removed this user from the team." msgstr "Sie haben diesen Benutzer erfolgreich aus dem Team entfernt." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:37 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:37 msgid "You have successfully revoked access." msgstr "Sie haben den Zugriff erfolgreich widerrufen." @@ -6920,12 +6952,12 @@ msgstr "Sie haben {teamMemberName} aktualisiert." msgid "You have verified your email address for <0>{0}." msgstr "Sie haben Ihre E-Mail-Adresse für <0>{0} bestätigt." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:94 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:94 msgid "You must be an admin of this team to manage billing." msgstr "Sie müssen Administrator dieses Teams sein, um die Abrechnung zu verwalten." #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:53 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:55 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:53 #: apps/remix/app/components/dialogs/team-delete-dialog.tsx:52 msgid "You must enter '{deleteMessage}' to proceed" msgstr "Sie müssen '{deleteMessage}' eingeben, um fortzufahren" @@ -6934,10 +6966,14 @@ msgstr "Sie müssen '{deleteMessage}' eingeben, um fortzufahren" msgid "You must have at least one other team member to transfer ownership." msgstr "Sie müssen mindestens einen anderen Teamkollegen haben, um die Eigentumsübertragung durchzuführen." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:118 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:118 msgid "You must set a profile URL before enabling your public profile." msgstr "Sie müssen eine Profil-URL festlegen, bevor Sie Ihr öffentliches Profil aktivieren." +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:52 +msgid "You need to be an admin to manage API tokens." +msgstr "" + #: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx:52 msgid "You need to be logged in as <0>{email} to view this page." msgstr "Sie müssen als <0>{email} angemeldet sein, um diese Seite anzuzeigen." @@ -6990,6 +7026,10 @@ msgstr "Ihr Massenversand wurde gestartet. Sie erhalten eine E-Mail-Benachrichti msgid "Your bulk send operation for template \"{templateName}\" has completed." msgstr "Ihre Massenversandoperation für Vorlage \"{templateName}\" ist abgeschlossen." +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:135 +msgid "Your current plan is past due. Please update your payment information." +msgstr "" + #: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx:248 msgid "Your direct signing templates" msgstr "Ihre direkten Unterzeichnungsvorlagen" @@ -7044,12 +7084,11 @@ msgstr "Ihre E-Mail wurde erfolgreich bestätigt! Sie können jetzt alle Funktio #. placeholder {0}: teamEmail.team.name #. placeholder {1}: teamEmail.team.url -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:61 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:61 msgid "Your email is currently being used by team <0>{0} ({1})." msgstr "Ihre E-Mail wird derzeit von Team <0>{0} ({1}) verwendet." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:79 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:44 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:63 msgid "Your existing tokens" msgstr "Ihre vorhandenen Tokens" @@ -7092,7 +7131,7 @@ msgstr "Ihr Wiederherstellungscode wurde in die Zwischenablage kopiert." msgid "Your recovery codes are listed below. Please store them in a safe place." msgstr "Ihre Wiederherstellungscodes sind unten aufgeführt. Bitte bewahren Sie sie an einem sicheren Ort auf." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:78 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:78 msgid "Your subscription is currently active." msgstr "Ihr Abonnement ist derzeit aktiv." @@ -7133,11 +7172,10 @@ msgstr "Ihre Vorlagen wurden erfolgreich gespeichert." msgid "Your token has expired!" msgstr "Ihr Token ist abgelaufen!" -#: apps/remix/app/components/forms/token.tsx:272 +#: apps/remix/app/components/forms/token.tsx:273 msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!" msgstr "Ihr Token wurde erfolgreich erstellt! Stellen Sie sicher, dass Sie es kopieren, da Sie es später nicht mehr sehen können!" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:85 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:50 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:69 msgid "Your tokens will be shown here once you create them." msgstr "Ihre Tokens werden hier angezeigt, sobald Sie sie erstellt haben." diff --git a/packages/lib/translations/en/web.po b/packages/lib/translations/en/web.po index 486938bdf..dc5d11c3e 100644 --- a/packages/lib/translations/en/web.po +++ b/packages/lib/translations/en/web.po @@ -17,7 +17,7 @@ msgstr "" msgid " Enable direct link signing" msgstr " Enable direct link signing" -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:171 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:171 msgid " The events that will trigger a webhook to be sent to your URL." msgstr " The events that will trigger a webhook to be sent to your URL." @@ -54,7 +54,7 @@ msgid "\"{placeholderEmail}\" on behalf of \"{0}\" has invited you to sign \"exa msgstr "\"{placeholderEmail}\" on behalf of \"{0}\" has invited you to sign \"example document\"." #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:273 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:325 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:372 msgid "(You)" msgstr "(You)" @@ -80,8 +80,8 @@ msgid "{0, plural, one {# Seat} other {# Seats}}" msgstr "{0, plural, one {# Seat} other {# Seats}}" #. placeholder {0}: data.length -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:36 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:65 +#: apps/remix/app/components/general/teams/team-invitations.tsx:36 +#: apps/remix/app/components/general/teams/team-invitations.tsx:65 msgid "{0, plural, one {<0>You have <1>1 pending team invitation} other {<2>You have <3># pending team invitations}}" msgstr "{0, plural, one {<0>You have <1>1 pending team invitation} other {<2>You have <3># pending team invitations}}" @@ -91,12 +91,12 @@ msgid "{0, plural, one {1 matching field} other {# matching fields}}" msgstr "{0, plural, one {1 matching field} other {# matching fields}}" #. placeholder {0}: recipients.length -#: apps/remix/app/routes/_authenticated+/documents+/$id.edit.tsx:122 +#: apps/remix/app/routes/_authenticated+/documents.$id.edit.tsx:122 msgid "{0, plural, one {1 Recipient} other {# Recipients}}" msgstr "{0, plural, one {1 Recipient} other {# Recipients}}" #. placeholder {0}: pendingRecipients.length -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:232 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:232 msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}" msgstr "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}" @@ -156,7 +156,7 @@ msgid "{0} on behalf of \"{1}\" has invited you to {recipientActionVerb} the doc msgstr "{0} on behalf of \"{1}\" has invited you to {recipientActionVerb} the document \"{2}\"." #. placeholder {0}: recipients.length -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:167 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:167 msgid "{0} Recipient(s)" msgstr "{0} Recipient(s)" @@ -220,7 +220,7 @@ msgstr "{memberEmail} joined the following team" msgid "{memberEmail} left the following team" msgstr "{memberEmail} left the following team" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:65 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:65 msgid "{numberOfSeats, plural, one {# member} other {# members}}" msgstr "{numberOfSeats, plural, one {# member} other {# members}}" @@ -472,21 +472,21 @@ msgstr "<0>You are about to complete signing \"<1>{documentTitle}\".<2/> msgid "<0>You are about to complete viewing \"<1>{documentTitle}\".<2/> Are you sure?" msgstr "<0>You are about to complete viewing \"<1>{documentTitle}\".<2/> Are you sure?" -#: apps/remix/app/components/forms/token.tsx:43 +#: apps/remix/app/components/forms/token.tsx:45 msgid "1 month" msgstr "1 month" -#: apps/remix/app/components/forms/token.tsx:46 +#: apps/remix/app/components/forms/token.tsx:48 msgid "12 months" msgstr "12 months" -#: apps/remix/app/components/forms/token.tsx:44 +#: apps/remix/app/components/forms/token.tsx:46 msgid "3 months" msgstr "3 months" #: apps/remix/app/components/general/generic-error-layout.tsx:41 -msgid "404 Page not found" -msgstr "404 Page not found" +msgid "404 not found" +msgstr "404 not found" #: apps/remix/app/routes/_profile+/_layout.tsx:102 msgid "404 Profile not found" @@ -500,11 +500,11 @@ msgstr "404 Team not found" msgid "500 Internal Server Error" msgstr "500 Internal Server Error" -#: apps/remix/app/components/forms/token.tsx:45 +#: apps/remix/app/components/forms/token.tsx:47 msgid "6 months" msgstr "6 months" -#: apps/remix/app/components/forms/token.tsx:42 +#: apps/remix/app/components/forms/token.tsx:44 msgid "7 days" msgstr "7 days" @@ -544,7 +544,7 @@ msgstr "A means to print or download documents for your records" msgid "A new member has joined your team" msgstr "A new member has joined your team" -#: apps/remix/app/components/forms/token.tsx:123 +#: apps/remix/app/components/forms/token.tsx:124 msgid "A new token was created successfully." msgstr "A new token was created successfully." @@ -580,8 +580,8 @@ msgstr "A request to use your email has been initiated by {0} on Documenso" msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso" msgstr "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:191 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:192 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:191 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:192 msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso." msgstr "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso." @@ -620,7 +620,7 @@ msgstr "A unique URL to identify your team" msgid "A verification email will be sent to the provided email." msgstr "A verification email will be sent to the provided email." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:146 +#: apps/remix/app/components/general/teams/team-invitations.tsx:146 #: packages/email/templates/team-transfer-request.tsx:82 #: packages/email/templates/team-invite.tsx:95 #: packages/email/templates/confirm-team-email.tsx:119 @@ -643,7 +643,7 @@ msgstr "Accept team transfer request on Documenso" msgid "Acceptance and Consent" msgstr "Acceptance and Consent" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:126 +#: apps/remix/app/components/general/teams/team-invitations.tsx:126 msgid "Accepted team invitation" msgstr "Accepted team invitation" @@ -691,8 +691,8 @@ msgstr "Action" msgid "Actions" msgstr "Actions" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:70 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:105 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:70 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:105 #: apps/remix/app/components/tables/user-settings-teams-page-table.tsx:64 msgid "Active" msgstr "Active" @@ -723,11 +723,11 @@ msgstr "Add all relevant fields for each recipient." msgid "Add all relevant placeholders for each recipient." msgstr "Add all relevant placeholders for each recipient." -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:94 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:94 msgid "Add an authenticator to serve as a secondary authentication method for signing documents." msgstr "Add an authenticator to serve as a secondary authentication method for signing documents." -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:89 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:89 msgid "Add an authenticator to serve as a secondary authentication method when signing in, or when signing documents." msgstr "Add an authenticator to serve as a secondary authentication method when signing in, or when signing documents." @@ -892,7 +892,7 @@ msgstr "All Time" msgid "Allow document recipients to reply directly to this email address" msgstr "Allow document recipients to reply directly to this email address" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:141 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:141 msgid "Allows authenticating using biometrics, password managers, hardware keys, etc." msgstr "Allows authenticating using biometrics, password managers, hardware keys, etc." @@ -925,7 +925,7 @@ msgid "An email requesting the transfer of this team has been sent." msgstr "An email requesting the transfer of this team has been sent." #: apps/remix/app/components/general/claim-account.tsx:96 -#: apps/remix/app/components/forms/token.tsx:139 +#: apps/remix/app/components/forms/token.tsx:140 #: apps/remix/app/components/forms/signup.tsx:160 #: apps/remix/app/components/forms/reset-password.tsx:91 #: apps/remix/app/components/forms/password.tsx:89 @@ -1057,6 +1057,10 @@ msgstr "An error occurred while signing as assistant." msgid "An error occurred while signing the document." msgstr "An error occurred while signing the document." +#: apps/remix/app/components/general/billing-plans.tsx:63 +msgid "An error occurred while trying to create a checkout session." +msgstr "An error occurred while trying to create a checkout session." + #: apps/remix/app/components/general/template/template-edit-form.tsx:149 #: apps/remix/app/components/general/document/document-edit-form.tsx:205 msgid "An error occurred while updating the document settings." @@ -1091,7 +1095,7 @@ msgstr "An unexpected error occurred." #: apps/remix/app/components/forms/profile.tsx:74 #: apps/remix/app/components/forms/avatar-image.tsx:94 #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:81 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:90 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:88 #: apps/remix/app/components/dialogs/team-transfer-dialog.tsx:114 #: apps/remix/app/components/dialogs/team-member-update-dialog.tsx:99 #: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx:154 @@ -1120,9 +1124,7 @@ msgstr "Any Source" msgid "Any Status" msgstr "Any Status" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:43 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:55 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:19 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:26 #: apps/remix/app/components/general/settings-nav-mobile.tsx:84 #: apps/remix/app/components/general/settings-nav-desktop.tsx:82 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:94 @@ -1168,11 +1170,11 @@ msgstr "Approving" msgid "Are you sure you want to complete the document? This action cannot be undone. Please ensure that you have completed prefilling all relevant fields before proceeding." msgstr "Are you sure you want to complete the document? This action cannot be undone. Please ensure that you have completed prefilling all relevant fields before proceeding." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:122 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:120 msgid "Are you sure you want to delete this token?" msgstr "Are you sure you want to delete this token?" -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:118 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:127 msgid "Are you sure you want to reject this document? This action cannot be undone." msgstr "Are you sure you want to reject this document? This action cannot be undone." @@ -1184,7 +1186,7 @@ msgstr "Are you sure you want to remove the <0>{passkeyName} passkey." msgid "Are you sure you wish to delete this team?" msgstr "Are you sure you wish to delete this team?" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:93 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:93 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:455 #: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx:80 #: apps/remix/app/components/dialogs/team-leave-dialog.tsx:80 @@ -1203,7 +1205,7 @@ msgstr "Assist" msgid "Assist Document" msgstr "Assist Document" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:252 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:299 msgid "Assist with signing" msgstr "Assist with signing" @@ -1253,7 +1255,7 @@ msgstr "Avatar" msgid "Avatar Updated" msgstr "Avatar Updated" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:125 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:125 msgid "Awaiting email confirmation" msgstr "Awaiting email confirmation" @@ -1291,7 +1293,8 @@ msgstr "Basic details" msgid "Before you get started, please confirm your email address by clicking the button below:" msgstr "Before you get started, please confirm your email address by clicking the button below:" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:77 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:77 +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:84 #: apps/remix/app/components/general/settings-nav-mobile.tsx:111 #: apps/remix/app/components/general/settings-nav-desktop.tsx:109 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:121 @@ -1307,7 +1310,7 @@ msgstr "Black" msgid "Blue" msgstr "Blue" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:40 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:40 msgid "Branding Preferences" msgstr "Branding Preferences" @@ -1382,13 +1385,13 @@ msgstr "By using the electronic signature feature, you are consenting to conduct msgid "Can prepare" msgstr "Can prepare" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:108 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:162 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:203 #: apps/remix/app/components/general/teams/team-transfer-status.tsx:118 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:108 #: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx:364 #: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx:315 -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:151 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:160 #: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx:349 #: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx:234 #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:208 @@ -1403,7 +1406,7 @@ msgstr "Can prepare" #: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx:263 #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:156 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:235 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:169 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:167 #: apps/remix/app/components/dialogs/template-move-dialog.tsx:145 #: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx:71 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:472 @@ -1488,7 +1491,7 @@ msgstr "Choose Direct Link Recipient" msgid "Choose how the document will reach recipients" msgstr "Choose how the document will reach recipients" -#: apps/remix/app/components/forms/token.tsx:193 +#: apps/remix/app/components/forms/token.tsx:194 msgid "Choose..." msgstr "Choose..." @@ -1538,7 +1541,7 @@ msgstr "Click to copy signing link for sending to recipient" #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:176 #: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx:181 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:439 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:486 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:479 msgid "Click to insert field" msgstr "Click to insert field" @@ -1559,7 +1562,7 @@ msgstr "Close" #: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx:61 #: apps/remix/app/components/forms/signup.tsx:528 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:429 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:476 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:469 msgid "Complete" msgstr "Complete" @@ -1643,7 +1646,7 @@ msgid "Confirm by typing <0>{deleteMessage}" msgstr "Confirm by typing <0>{deleteMessage}" #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:133 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:145 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:143 msgid "Confirm by typing: <0>{deleteMessage}" msgstr "Confirm by typing: <0>{deleteMessage}" @@ -1768,7 +1771,7 @@ msgstr "Copy Shareable Link" msgid "Copy Signing Links" msgstr "Copy Signing Links" -#: apps/remix/app/components/forms/token.tsx:283 +#: apps/remix/app/components/forms/token.tsx:284 msgid "Copy token" msgstr "Copy token" @@ -1846,8 +1849,8 @@ msgstr "Create Team" msgid "Create the document as pending and ready to sign." msgstr "Create the document as pending and ready to sign." -#: apps/remix/app/components/forms/token.tsx:243 -#: apps/remix/app/components/forms/token.tsx:252 +#: apps/remix/app/components/forms/token.tsx:244 +#: apps/remix/app/components/forms/token.tsx:253 msgid "Create token" msgstr "Create token" @@ -1884,7 +1887,7 @@ msgstr "Created" msgid "Created At" msgstr "Created At" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:90 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:90 msgid "Created by" msgstr "Created by" @@ -1895,10 +1898,9 @@ msgstr "Created on" #. placeholder {0}: i18n.date(webhook.createdAt, DateTime.DATETIME_FULL) #. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL) -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:88 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:99 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:83 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:64 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:88 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:83 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:83 msgid "Created on {0}" msgstr "Created on {0}" @@ -1918,6 +1920,10 @@ msgstr "Current password is incorrect." msgid "Current recipients:" msgstr "Current recipients:" +#: apps/remix/app/components/general/billing-plans.tsx:26 +msgid "Daily" +msgstr "Daily" + #: apps/remix/app/components/general/app-command-menu.tsx:261 msgid "Dark Mode" msgstr "Dark Mode" @@ -1930,7 +1936,7 @@ msgstr "Dark Mode" msgid "Date" msgstr "Date" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:96 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:96 msgid "Date created" msgstr "Date created" @@ -1939,12 +1945,12 @@ msgstr "Date created" msgid "Date Format" msgstr "Date Format" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:184 +#: apps/remix/app/components/general/teams/team-invitations.tsx:184 #: packages/email/templates/team-invite.tsx:101 msgid "Decline" msgstr "Decline" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:163 +#: apps/remix/app/components/general/teams/team-invitations.tsx:163 msgid "Declined team invitation" msgstr "Declined team invitation" @@ -1960,17 +1966,16 @@ msgstr "Default Document Visibility" msgid "delete" msgstr "delete" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:100 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:115 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:95 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:80 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:100 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:95 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:103 #: apps/remix/app/components/tables/templates-table-action-dropdown.tsx:109 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:182 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:216 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:175 #: apps/remix/app/components/general/document/document-page-view-dropdown.tsx:144 #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:102 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:114 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:112 #: apps/remix/app/components/dialogs/template-delete-dialog.tsx:87 #: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx:112 #: apps/remix/app/components/dialogs/team-delete-dialog.tsx:165 @@ -1981,7 +1986,7 @@ msgstr "Delete" #. placeholder {0}: webhook.webhookUrl #. placeholder {0}: token.name #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:49 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:51 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:49 msgid "delete {0}" msgstr "delete {0}" @@ -2015,7 +2020,7 @@ msgstr "Delete Document" msgid "Delete passkey" msgstr "Delete passkey" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:195 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:195 #: apps/remix/app/components/dialogs/team-delete-dialog.tsx:116 msgid "Delete team" msgstr "Delete team" @@ -2134,8 +2139,8 @@ msgstr "Disable Account" msgid "Disable Two Factor Authentication before deleting your account." msgstr "Disable Two Factor Authentication before deleting your account." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:74 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:69 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:74 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:69 msgid "Disabled" msgstr "Disabled" @@ -2147,7 +2152,7 @@ msgstr "Disabling direct link signing will prevent anyone from accessing the lin msgid "Disabling the user results in the user not being able to use the account. It also disables all the related contents such as subscription, webhooks, teams, and API keys." msgstr "Disabling the user results in the user not being able to use the account. It also disables all the related contents such as subscription, webhooks, teams, and API keys." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:74 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:74 msgid "Display your name and email in documents" msgstr "Display your name and email in documents" @@ -2167,7 +2172,7 @@ msgstr "Do you want to duplicate this template?" msgid "Documenso will delete <0>all of your documents, along with all of your completed documents, signatures, and all other resources belonging to your Account." msgstr "Documenso will delete <0>all of your documents, along with all of your completed documents, signatures, and all other resources belonging to your Account." -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:129 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:129 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:36 msgid "Document" msgstr "Document" @@ -2245,7 +2250,7 @@ msgstr "Document created using a <0>direct link" msgid "Document Creation" msgstr "Document Creation" -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:175 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:175 #: apps/remix/app/components/dialogs/document-delete-dialog.tsx:58 #: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx:48 #: packages/lib/utils/document-audit-logs.ts:305 @@ -2277,13 +2282,13 @@ msgstr "Document Duplicated" msgid "Document external ID updated" msgstr "Document external ID updated" -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:186 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:186 #: apps/remix/app/components/general/document/document-history-sheet.tsx:102 msgid "Document history" msgstr "Document history" #: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx:86 -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:82 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:82 msgid "Document ID" msgstr "Document ID" @@ -2332,6 +2337,7 @@ msgid "Document re-sent" msgstr "Document re-sent" #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:97 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:12 #: packages/email/template-components/template-document-rejected.tsx:21 msgid "Document Rejected" msgstr "Document Rejected" @@ -2357,11 +2363,11 @@ msgstr "Document signing auth updated" msgid "Document signing process will be cancelled" msgstr "Document signing process will be cancelled" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:86 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:86 msgid "Document status" msgstr "Document status" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:78 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:78 msgid "Document title" msgstr "Document title" @@ -2394,9 +2400,9 @@ msgid "Document will be permanently deleted" msgstr "Document will be permanently deleted" #: apps/remix/app/routes/_profile+/p.$url.tsx:163 -#: apps/remix/app/routes/_authenticated+/documents+/_index.tsx:111 -#: apps/remix/app/routes/_authenticated+/documents+/$id.edit.tsx:99 -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:138 +#: apps/remix/app/routes/_authenticated+/documents._index.tsx:111 +#: apps/remix/app/routes/_authenticated+/documents.$id.edit.tsx:99 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:138 #: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx:69 #: apps/remix/app/components/tables/admin-dashboard-users-table.tsx:89 #: apps/remix/app/components/general/user-profile-timur.tsx:56 @@ -2408,7 +2414,7 @@ msgstr "Document will be permanently deleted" msgid "Documents" msgstr "Documents" -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:218 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:218 msgid "Documents created from template" msgstr "Documents created from template" @@ -2489,8 +2495,8 @@ msgstr "Due to an unpaid invoice, your team has been restricted. Please settle t msgid "Duplicate" msgstr "Duplicate" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:95 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:90 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:95 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:90 #: apps/remix/app/components/tables/templates-table-action-dropdown.tsx:69 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:116 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:145 @@ -2501,12 +2507,12 @@ msgstr "Duplicate" msgid "Edit" msgstr "Edit" -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:135 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:135 msgid "Edit Template" msgstr "Edit Template" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:93 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:90 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:93 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:90 msgid "Edit webhook" msgstr "Edit webhook" @@ -2528,7 +2534,7 @@ msgstr "Electronic Signature Disclosure" #: apps/remix/app/components/forms/signin.tsx:318 #: apps/remix/app/components/forms/profile.tsx:108 #: apps/remix/app/components/forms/forgot-password.tsx:77 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:362 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:409 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:405 #: apps/remix/app/components/dialogs/template-use-dialog.tsx:275 #: apps/remix/app/components/dialogs/template-use-dialog.tsx:282 @@ -2636,10 +2642,10 @@ msgstr "Enable Typed Signature" msgid "Enable Typed Signatures" msgstr "Enable Typed Signatures" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:74 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:135 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:69 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:134 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:74 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:135 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:69 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:134 #: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx:128 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:159 msgid "Enabled" @@ -2744,13 +2750,12 @@ msgstr "Everyone has signed! You will receive an Email copy of the signed docume msgid "Exceeded timeout" msgstr "Exceeded timeout" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:118 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:118 msgid "Expired" msgstr "Expired" #. placeholder {0}: i18n.date(token.expires, DateTime.DATETIME_FULL) -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:103 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:68 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:89 msgid "Expires on {0}" msgstr "Expires on {0}" @@ -2771,8 +2776,8 @@ msgstr "Failed to save settings." msgid "Failed to update recipient" msgstr "Failed to update recipient" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:81 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:78 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:81 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:78 msgid "Failed to update webhook" msgstr "Failed to update webhook" @@ -2865,7 +2870,7 @@ msgstr "Free Signature" #: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx:323 #: apps/remix/app/components/forms/signup.tsx:309 #: apps/remix/app/components/forms/profile.tsx:96 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:347 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:394 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:390 msgid "Full Name" msgstr "Full Name" @@ -2942,7 +2947,7 @@ msgstr "has invited you to view this document" msgid "Having an assistant as the last signer means they will be unable to take any action as there are no subsequent signers to assist." msgstr "Having an assistant as the last signer means they will be unable to take any action as there are no subsequent signers to assist." -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:277 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:324 msgid "Help complete the document for other signers." msgstr "Help complete the document for other signers." @@ -2950,15 +2955,15 @@ msgstr "Help complete the document for other signers." msgid "Here you can edit your personal details." msgstr "Here you can edit your personal details." -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:68 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:68 msgid "Here you can manage your password and security settings." msgstr "Here you can manage your password and security settings." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:41 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:41 msgid "Here you can set preferences and defaults for branding." msgstr "Here you can set preferences and defaults for branding." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:32 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:32 msgid "Here you can set preferences and defaults for your team." msgstr "Here you can set preferences and defaults for your team." @@ -2978,7 +2983,7 @@ msgstr "Hi {userName}," msgid "Hi, {userName} <0>({userEmail})" msgstr "Hi, {userName} <0>({userEmail})" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:164 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:164 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:175 #: apps/remix/app/components/dialogs/document-delete-dialog.tsx:196 msgid "Hide" @@ -3013,7 +3018,7 @@ msgid "I am the owner of this document" msgstr "I am the owner of this document" #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:166 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:179 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:177 msgid "I'm sure! Delete it" msgstr "I'm sure! Delete it" @@ -3193,7 +3198,7 @@ msgstr "Last 7 days" msgid "Last modified" msgstr "Last modified" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:102 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:102 msgid "Last updated" msgstr "Last updated" @@ -3239,7 +3244,7 @@ msgstr "Like to have your own public profile with agreements?" msgid "Link expires in 1 hour." msgstr "Link expires in 1 hour." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:225 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:225 msgid "Link template" msgstr "Link template" @@ -3248,8 +3253,8 @@ msgid "Links Generated" msgstr "Links Generated" #. placeholder {0}: webhook.eventTriggers .map((trigger) => toFriendlyWebhookEventName(trigger)) .join(', ') -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:79 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:74 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:79 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:74 msgid "Listening to {0}" msgstr "Listening to {0}" @@ -3292,14 +3297,18 @@ msgstr "Manage" msgid "Manage {0}'s profile" msgstr "Manage {0}'s profile" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/index.tsx:24 +#: apps/remix/app/routes/_authenticated+/settings+/teams.tsx:23 msgid "Manage all teams you are currently associated with." msgstr "Manage all teams you are currently associated with." -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:183 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:183 msgid "Manage and view template" msgstr "Manage and view template" +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:146 +msgid "Manage billing" +msgstr "Manage billing" + #: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx:338 msgid "Manage details for this public template" msgstr "Manage details for this public template" @@ -3312,7 +3321,7 @@ msgstr "Manage Direct Link" msgid "Manage documents" msgstr "Manage documents" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:149 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:149 msgid "Manage passkeys" msgstr "Manage passkeys" @@ -3320,11 +3329,15 @@ msgstr "Manage passkeys" msgid "Manage subscription" msgstr "Manage subscription" +#: apps/remix/app/components/general/billing-portal-button.tsx:45 +msgid "Manage Subscription" +msgstr "Manage Subscription" + #: apps/remix/app/routes/_authenticated+/admin+/subscriptions.tsx:28 msgid "Manage subscriptions" msgstr "Manage subscriptions" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:93 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:93 msgid "Manage team subscription." msgstr "Manage team subscription." @@ -3336,7 +3349,7 @@ msgstr "Manage teams" msgid "Manage the direct link signing for this template" msgstr "Manage the direct link signing for this template" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:53 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:53 msgid "Manage the members or invite new members." msgstr "Manage the members or invite new members." @@ -3344,7 +3357,7 @@ msgstr "Manage the members or invite new members." msgid "Manage users" msgstr "Manage users" -#: apps/remix/app/routes/_authenticated+/settings+/security+/passkeys+/index.tsx:20 +#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx:20 msgid "Manage your passkeys." msgstr "Manage your passkeys." @@ -3385,7 +3398,7 @@ msgstr "Member" msgid "Member Since" msgstr "Member Since" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:52 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:52 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:84 #: apps/remix/app/components/general/teams/team-settings-nav-desktop.tsx:75 msgid "Members" @@ -3405,7 +3418,8 @@ msgstr "Min" msgid "Modify recipients" msgstr "Modify recipients" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:60 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:60 +#: apps/remix/app/components/general/billing-plans.tsx:28 msgid "Monthly" msgstr "Monthly" @@ -3440,7 +3454,7 @@ msgstr "Move to Team" msgid "Moving..." msgstr "Moving..." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:36 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:36 msgid "My templates" msgstr "My templates" @@ -3486,7 +3500,7 @@ msgstr "Needs to view" msgid "Never" msgstr "Never" -#: apps/remix/app/components/forms/token.tsx:217 +#: apps/remix/app/components/forms/token.tsx:218 msgid "Never expire" msgstr "Never expire" @@ -3504,7 +3518,7 @@ msgid "New Template" msgstr "New Template" #: apps/remix/app/components/forms/signup.tsx:515 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:418 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:465 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:460 msgid "Next" msgstr "Next" @@ -3518,10 +3532,11 @@ msgid "No active drafts" msgstr "No active drafts" #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:113 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:28 msgid "No further action is required from you at this time." msgstr "No further action is required from you at this time." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:49 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:49 msgid "No payment required" msgstr "No payment required" @@ -3640,21 +3655,17 @@ msgstr "on behalf of \"{0}\" has invited you to view this document" msgid "On this page, you can create a new webhook." msgstr "On this page, you can create a new webhook." -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:23 -msgid "On this page, you can create new API tokens and manage the existing ones. <0/>Also see our <1>Documentation." -msgstr "On this page, you can create new API tokens and manage the existing ones. <0/>Also see our <1>Documentation." +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:28 +msgid "On this page, you can create and manage API tokens. See our <0>Documentation for more information." +msgstr "On this page, you can create and manage API tokens. See our <0>Documentation for more information." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:59 -msgid "On this page, you can create new API tokens and manage the existing ones. <0/>You can view our swagger docs <1>here" -msgstr "On this page, you can create new API tokens and manage the existing ones. <0/>You can view our swagger docs <1>here" - -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:32 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:27 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:32 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:27 msgid "On this page, you can create new Webhooks and manage the existing ones." msgstr "On this page, you can create new Webhooks and manage the existing ones." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:94 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:91 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:94 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:91 msgid "On this page, you can edit the webhook and its settings." msgstr "On this page, you can edit the webhook and its settings." @@ -3760,8 +3771,8 @@ msgstr "Passkey name" msgid "Passkey Re-Authentication" msgstr "Passkey Re-Authentication" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:137 -#: apps/remix/app/routes/_authenticated+/settings+/security+/passkeys+/index.tsx:19 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:137 +#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx:19 msgid "Passkeys" msgstr "Passkeys" @@ -3819,7 +3830,7 @@ msgstr "Payment is required to finalise the creation of your team." msgid "Payment overdue" msgstr "Payment overdue" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:76 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:76 #: apps/remix/app/components/tables/user-settings-teams-page-table.tsx:70 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:203 #: apps/remix/app/components/general/document/document-status.tsx:22 @@ -3841,7 +3852,7 @@ msgstr "Pending documents" msgid "Pending Documents" msgstr "Pending Documents" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:61 +#: apps/remix/app/components/general/teams/team-invitations.tsx:61 msgid "Pending invitations" msgstr "Pending invitations" @@ -3924,7 +3935,7 @@ msgstr "Please confirm your email address" msgid "Please contact support if you would like to revert this action." msgstr "Please contact support if you would like to revert this action." -#: apps/remix/app/components/forms/token.tsx:168 +#: apps/remix/app/components/forms/token.tsx:169 msgid "Please enter a meaningful name for your token. This will help you identify it later." msgstr "Please enter a meaningful name for your token. This will help you identify it later." @@ -3953,7 +3964,7 @@ msgstr "Please note that this action is <0>irreversible. Once confirmed, thi msgid "Please note that this action is irreversible. Once confirmed, your template will be permanently deleted." msgstr "Please note that this action is irreversible. Once confirmed, your template will be permanently deleted." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:126 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:124 msgid "Please note that this action is irreversible. Once confirmed, your token will be permanently deleted." msgstr "Please note that this action is irreversible. Once confirmed, your token will be permanently deleted." @@ -4042,11 +4053,11 @@ msgstr "Private templates can only be modified and viewed by you." msgid "Profile" msgstr "Profile" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:193 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:193 msgid "Profile is currently <0>hidden." msgstr "Profile is currently <0>hidden." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:181 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:181 msgid "Profile is currently <0>visible." msgstr "Profile is currently <0>visible." @@ -4060,7 +4071,7 @@ msgstr "Profile updated" msgid "Public" msgstr "Public" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:34 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:34 #: apps/remix/app/components/general/settings-nav-mobile.tsx:45 #: apps/remix/app/components/general/settings-nav-desktop.tsx:43 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:71 @@ -4132,7 +4143,7 @@ msgstr "Reauthentication is required to sign this field" msgid "Receives copy" msgstr "Receives copy" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:160 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:160 #: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx:54 msgid "Recent activity" msgstr "Recent activity" @@ -4190,7 +4201,7 @@ msgstr "Recipients will still retain their copy of the document" msgid "Recovery code copied" msgstr "Recovery code copied" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:116 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:116 msgid "Recovery codes" msgstr "Recovery codes" @@ -4208,9 +4219,9 @@ msgstr "Redirect URL" msgid "Registration Successful" msgstr "Registration Successful" -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:107 -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:114 -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:160 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:116 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:123 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:169 #: packages/email/template-components/template-document-invite.tsx:98 msgid "Reject Document" msgstr "Reject Document" @@ -4274,7 +4285,7 @@ msgstr "Remove team email" msgid "Remove team member" msgstr "Remove team member" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:69 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:69 msgid "Renews: {formattedDate}" msgstr "Renews: {formattedDate}" @@ -4373,11 +4384,11 @@ msgstr "Return to Home" msgid "Return to sign in" msgstr "Return to sign in" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:117 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:117 msgid "Revoke" msgstr "Revoke" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:86 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:86 msgid "Revoke access" msgstr "Revoke access" @@ -4412,7 +4423,7 @@ msgstr "Save" msgid "Save Template" msgstr "Save Template" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:63 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:63 #: apps/remix/app/components/tables/user-settings-teams-page-table.tsx:57 #: apps/remix/app/components/tables/documents-table-sender-filter.tsx:58 #: apps/remix/app/components/general/app-nav-desktop.tsx:84 @@ -4436,18 +4447,18 @@ msgstr "Search documents..." msgid "Search languages..." msgstr "Search languages..." -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:185 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:185 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:210 msgid "Secret" msgstr "Secret" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:67 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:67 #: apps/remix/app/components/general/settings-nav-mobile.tsx:71 #: apps/remix/app/components/general/settings-nav-desktop.tsx:69 msgid "Security" msgstr "Security" -#: apps/remix/app/routes/_authenticated+/settings+/security+/activity+/index.tsx:18 +#: apps/remix/app/routes/_authenticated+/settings+/security.activity.tsx:18 msgid "Security activity" msgstr "Security activity" @@ -4611,7 +4622,7 @@ msgstr "Share the Link" msgid "Share your signing experience!" msgstr "Share your signing experience!" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:172 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:172 msgid "Show" msgstr "Show" @@ -4624,11 +4635,11 @@ msgstr "Show additional information" msgid "Show advanced settings" msgstr "Show advanced settings" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:37 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:37 msgid "Show templates in your public profile for your audience to sign and get started quickly" msgstr "Show templates in your public profile for your audience to sign and get started quickly" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:44 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:44 msgid "Show templates in your team public profile for your audience to sign and get started quickly" msgstr "Show templates in your team public profile for your audience to sign and get started quickly" @@ -4659,7 +4670,7 @@ msgstr "Sign as {0} <0>({1})" msgid "Sign as<0>{0} <1>({1})" msgstr "Sign as<0>{0} <1>({1})" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:254 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:301 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:358 msgid "Sign document" msgstr "Sign document" @@ -4692,7 +4703,7 @@ msgstr "Sign in to your account" msgid "Sign Out" msgstr "Sign Out" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:279 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:326 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:379 msgid "Sign the document to complete the process." msgstr "Sign the document to complete the process." @@ -4716,7 +4727,7 @@ msgstr "Sign Up with OIDC" #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:342 #: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx:335 #: apps/remix/app/components/forms/profile.tsx:118 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:376 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:423 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:420 #: packages/ui/primitives/template-flow/add-template-fields.tsx:711 #: packages/ui/primitives/document-flow/types.ts:49 @@ -4731,7 +4742,7 @@ msgstr "Signature ID" #: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx:297 #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:366 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:402 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:449 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:446 msgid "Signature is too small. Please provide a more complete signature." msgstr "Signature is too small. Please provide a more complete signature." @@ -4784,7 +4795,7 @@ msgstr "Signing certificate provided by" msgid "Signing Complete!" msgstr "Signing Complete!" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:292 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:339 msgid "Signing for" msgstr "Signing for" @@ -4836,10 +4847,7 @@ msgstr "Some signers have not been assigned a signature field. Please assign at #: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx:56 #: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx:88 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:132 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:169 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:43 -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:133 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:133 #: apps/remix/app/components/tables/user-settings-pending-teams-table-actions.tsx:34 #: apps/remix/app/components/tables/team-settings-member-invites-table.tsx:62 #: apps/remix/app/components/tables/team-settings-member-invites-table.tsx:79 @@ -4847,7 +4855,12 @@ msgstr "Some signers have not been assigned a signature field. Please assign at #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:98 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:95 #: apps/remix/app/components/tables/documents-table-action-button.tsx:73 +#: apps/remix/app/components/general/billing-portal-button.tsx:35 +#: apps/remix/app/components/general/billing-plans.tsx:62 #: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx:52 +#: apps/remix/app/components/general/teams/team-invitations.tsx:132 +#: apps/remix/app/components/general/teams/team-invitations.tsx:169 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:43 #: apps/remix/app/components/general/teams/team-email-dropdown.tsx:38 #: apps/remix/app/components/general/teams/team-billing-portal-button.tsx:28 #: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx:34 @@ -4859,7 +4872,7 @@ msgstr "Some signers have not been assigned a signature field. Please assign at #: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx:24 #: apps/remix/app/components/general/direct-template/direct-template-page.tsx:119 #: apps/remix/app/components/forms/team-branding-preferences-form.tsx:106 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:154 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:167 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:260 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:103 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:128 @@ -4909,12 +4922,11 @@ msgstr "Something went wrong while updating the team billing subscription, pleas msgid "Something went wrong!" msgstr "Something went wrong!" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:46 #: packages/ui/primitives/data-table.tsx:134 msgid "Something went wrong." msgstr "Something went wrong." -#: apps/remix/app/components/forms/token.tsx:136 +#: apps/remix/app/components/forms/token.tsx:137 msgid "Something went wrong. Please try again later." msgstr "Something went wrong. Please try again later." @@ -4965,6 +4977,10 @@ msgstr "Submit" msgid "Submitting..." msgstr "Submitting..." +#: apps/remix/app/components/general/billing-plans.tsx:129 +msgid "Subscribe" +msgstr "Subscribe" + #: apps/remix/app/components/tables/admin-dashboard-users-table.tsx:78 msgid "Subscription" msgstr "Subscription" @@ -4973,9 +4989,6 @@ msgstr "Subscription" msgid "Subscriptions" msgstr "Subscriptions" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:125 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:162 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:36 #: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx:54 #: apps/remix/app/components/tables/user-settings-pending-teams-table-actions.tsx:28 #: apps/remix/app/components/tables/team-settings-member-invites-table.tsx:56 @@ -4984,6 +4997,9 @@ msgstr "Subscriptions" #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:90 #: apps/remix/app/components/general/verify-email-banner.tsx:46 #: apps/remix/app/components/general/teams/team-transfer-status.tsx:41 +#: apps/remix/app/components/general/teams/team-invitations.tsx:125 +#: apps/remix/app/components/general/teams/team-invitations.tsx:162 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:36 #: apps/remix/app/components/general/teams/team-email-dropdown.tsx:31 #: apps/remix/app/components/forms/team-update-form.tsx:65 #: apps/remix/app/components/forms/public-profile-form.tsx:79 @@ -5040,12 +5056,12 @@ msgstr "Team \"{0}\" has been deleted on Documenso" msgid "Team checkout" msgstr "Team checkout" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:65 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:144 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:65 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:144 msgid "Team email" msgstr "Team email" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:57 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:57 msgid "Team Email" msgstr "Team Email" @@ -5125,11 +5141,11 @@ msgstr "Team ownership transfer already completed!" msgid "Team ownership transferred!" msgstr "Team ownership transferred!" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:31 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:31 msgid "Team Preferences" msgstr "Team Preferences" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:41 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:41 msgid "Team Public Profile" msgstr "Team Public Profile" @@ -5137,11 +5153,11 @@ msgstr "Team Public Profile" msgid "Team settings" msgstr "Team settings" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_layout.tsx:39 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx:39 msgid "Team Settings" msgstr "Team Settings" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:43 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:43 msgid "Team templates" msgstr "Team templates" @@ -5158,7 +5174,7 @@ msgstr "Team transfer request expired" msgid "Team URL" msgstr "Team URL" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/index.tsx:23 +#: apps/remix/app/routes/_authenticated+/settings+/teams.tsx:22 #: apps/remix/app/components/general/settings-nav-mobile.tsx:58 #: apps/remix/app/components/general/settings-nav-desktop.tsx:56 #: apps/remix/app/components/general/menu-switcher.tsx:155 @@ -5170,8 +5186,8 @@ msgstr "Teams" msgid "Teams restricted" msgstr "Teams restricted" -#: apps/remix/app/routes/_authenticated+/templates+/$id.edit.tsx:71 -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:166 +#: apps/remix/app/routes/_authenticated+/templates.$id.edit.tsx:71 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:166 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:37 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:140 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:220 @@ -5216,8 +5232,8 @@ msgstr "Template saved" msgid "Template title" msgstr "Template title" -#: apps/remix/app/routes/_authenticated+/templates+/_index.tsx:56 -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:102 +#: apps/remix/app/routes/_authenticated+/templates._index.tsx:56 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:102 #: apps/remix/app/components/general/app-nav-mobile.tsx:35 #: apps/remix/app/components/general/app-nav-desktop.tsx:21 #: apps/remix/app/components/general/app-command-menu.tsx:203 @@ -5304,6 +5320,7 @@ msgid "The document owner has been notified of this rejection. No further action msgstr "The document owner has been notified of this rejection. No further action is required from you at this time. The document owner may contact you with any questions regarding this rejection." #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:106 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:21 msgid "The document owner has been notified of your decision. They may contact you with further instructions if necessary." msgstr "The document owner has been notified of your decision. They may contact you with further instructions if necessary." @@ -5327,7 +5344,7 @@ msgstr "The document's name" msgid "The email or password provided is incorrect" msgstr "The email or password provided is incorrect" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:172 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:172 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:196 msgid "The events that will trigger a webhook to be sent to your URL." msgstr "The events that will trigger a webhook to be sent to your URL." @@ -5461,11 +5478,11 @@ msgstr "The template has been successfully moved to the selected team." msgid "The template will be removed from your profile" msgstr "The template will be removed from your profile" -#: apps/remix/app/components/forms/token.tsx:102 +#: apps/remix/app/components/forms/token.tsx:103 msgid "The token was copied to your clipboard." msgstr "The token was copied to your clipboard." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:83 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:81 msgid "The token was deleted successfully." msgstr "The token was deleted successfully." @@ -5477,8 +5494,8 @@ msgstr "The token you have used to reset your password is either expired or it n msgid "The two-factor authentication code provided is incorrect" msgstr "The two-factor authentication code provided is incorrect" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:121 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:120 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:121 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:120 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:145 msgid "The URL for Documenso to send webhook events to." msgstr "The URL for Documenso to send webhook events to." @@ -5487,8 +5504,8 @@ msgstr "The URL for Documenso to send webhook events to." msgid "The webhook has been successfully deleted." msgstr "The webhook has been successfully deleted." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:74 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:71 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:74 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:71 msgid "The webhook has been updated successfully." msgstr "The webhook has been updated successfully." @@ -5504,7 +5521,7 @@ msgstr "There are no active drafts at the current moment. You can upload a docum msgid "There are no completed documents yet. Documents that you have created or received will appear here once completed." msgstr "There are no completed documents yet. Documents that you have created or received will appear here once completed." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:69 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:69 msgid "They have permission on your behalf to:" msgstr "They have permission on your behalf to:" @@ -5558,11 +5575,11 @@ msgstr "This document has been cancelled by the owner and is no longer available msgid "This document has been cancelled by the owner." msgstr "This document has been cancelled by the owner." -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:221 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:221 msgid "This document has been signed by all recipients" msgstr "This document has been signed by all recipients" -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:224 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:224 msgid "This document is currently a draft and has not been sent" msgstr "This document is currently a draft and has not been sent" @@ -5646,7 +5663,7 @@ msgstr "This session has expired. Please try again." msgid "This signer has already signed the document." msgstr "This signer has already signed the document." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:199 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:199 msgid "This team, and any associated data excluding billing invoices will be permanently deleted." msgstr "This team, and any associated data excluding billing invoices will be permanently deleted." @@ -5692,7 +5709,7 @@ msgstr "This will override any global settings." msgid "Time" msgstr "Time" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:108 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:108 msgid "Time zone" msgstr "Time zone" @@ -5759,15 +5776,15 @@ msgstr "To proceed further, please set at least one value for the {0} field." msgid "To use our electronic signature service, you must have access to:" msgstr "To use our electronic signature service, you must have access to:" -#: apps/remix/app/components/embed/embed-authentication-required.tsx:24 +#: apps/remix/app/components/embed/embed-authentication-required.tsx:30 msgid "To view this document you need to be signed into your account, please sign in to continue." msgstr "To view this document you need to be signed into your account, please sign in to continue." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:187 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:187 msgid "Toggle the switch to hide your profile from the public." msgstr "Toggle the switch to hide your profile from the public." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:199 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:199 msgid "Toggle the switch to show your profile to the public." msgstr "Toggle the switch to show your profile to the public." @@ -5775,24 +5792,23 @@ msgstr "Toggle the switch to show your profile to the public." msgid "Token" msgstr "Token" -#: apps/remix/app/components/forms/token.tsx:101 +#: apps/remix/app/components/forms/token.tsx:102 msgid "Token copied to clipboard" msgstr "Token copied to clipboard" -#: apps/remix/app/components/forms/token.tsx:122 +#: apps/remix/app/components/forms/token.tsx:123 msgid "Token created" msgstr "Token created" -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:82 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:80 msgid "Token deleted" msgstr "Token deleted" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:107 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:72 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:95 msgid "Token doesn't have an expiration date" msgstr "Token doesn't have an expiration date" -#: apps/remix/app/components/forms/token.tsx:186 +#: apps/remix/app/components/forms/token.tsx:187 msgid "Token expiration date" msgstr "Token expiration date" @@ -5800,7 +5816,7 @@ msgstr "Token expiration date" msgid "Token has expired. Please try again." msgstr "Token has expired. Please try again." -#: apps/remix/app/components/forms/token.tsx:158 +#: apps/remix/app/components/forms/token.tsx:159 msgid "Token name" msgstr "Token name" @@ -5832,27 +5848,27 @@ msgstr "transfer {teamName}" msgid "Transfer ownership of this team to a selected team member." msgstr "Transfer ownership of this team to a selected team member." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:173 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:173 #: apps/remix/app/components/dialogs/team-transfer-dialog.tsx:145 #: apps/remix/app/components/dialogs/team-transfer-dialog.tsx:154 msgid "Transfer team" msgstr "Transfer team" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:177 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:177 msgid "Transfer the ownership of the team to another team member." msgstr "Transfer the ownership of the team to another team member." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:160 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:159 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:160 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:159 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:184 msgid "Triggers" msgstr "Triggers" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:84 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:84 msgid "Two factor authentication" msgstr "Two factor authentication" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:120 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:120 msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app." msgstr "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app." @@ -5901,7 +5917,7 @@ msgstr "Unable to change the language at this time. Please try again later." msgid "Unable to copy recovery code" msgstr "Unable to copy recovery code" -#: apps/remix/app/components/forms/token.tsx:106 +#: apps/remix/app/components/forms/token.tsx:107 msgid "Unable to copy token" msgstr "Unable to copy token" @@ -5909,7 +5925,7 @@ msgstr "Unable to copy token" msgid "Unable to create direct template access. Please try again later." msgstr "Unable to create direct template access. Please try again later." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:170 +#: apps/remix/app/components/general/teams/team-invitations.tsx:170 msgid "Unable to decline this team invitation at this time." msgstr "Unable to decline this team invitation at this time." @@ -5925,7 +5941,7 @@ msgstr "Unable to delete team" msgid "Unable to disable two-factor authentication" msgstr "Unable to disable two-factor authentication" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:133 +#: apps/remix/app/components/general/teams/team-invitations.tsx:133 msgid "Unable to join this team at this time." msgstr "Unable to join this team at this time." @@ -5972,6 +5988,7 @@ msgstr "Unable to setup two-factor authentication" msgid "Unable to sign in" msgstr "Unable to sign in" +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:49 #: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx:163 msgid "Unauthorized" msgstr "Unauthorized" @@ -5984,7 +6001,7 @@ msgstr "Uncompleted" #: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx:270 #: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx:281 #: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx:292 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:61 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:61 msgid "Unknown" msgstr "Unknown" @@ -6048,8 +6065,8 @@ msgstr "Update the role and add fields as required for the direct recipient. The msgid "Update user" msgstr "Update user" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:203 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:204 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:203 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:204 msgid "Update webhook" msgstr "Update webhook" @@ -6122,7 +6139,7 @@ msgstr "Uploaded file is too small" msgid "Uploaded file not an allowed file type" msgstr "Uploaded file not an allowed file type" -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:194 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:194 msgid "Use" msgstr "Use" @@ -6232,7 +6249,7 @@ msgstr "Version History" msgid "View" msgstr "View" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:170 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:170 msgid "View activity" msgstr "View activity" @@ -6240,11 +6257,11 @@ msgstr "View activity" msgid "View all documents sent to and from this email address" msgstr "View all documents sent to and from this email address" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:77 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:77 msgid "View all documents sent to your account" msgstr "View all documents sent to your account" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:164 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:164 msgid "View all recent security activity related to your account." msgstr "View all recent security activity related to your account." @@ -6252,7 +6269,7 @@ msgstr "View all recent security activity related to your account." msgid "View all related documents" msgstr "View all related documents" -#: apps/remix/app/routes/_authenticated+/settings+/security+/activity+/index.tsx:19 +#: apps/remix/app/routes/_authenticated+/settings+/security.activity.tsx:19 msgid "View all security activity related to your account." msgstr "View all security activity related to your account." @@ -6272,11 +6289,11 @@ msgstr "View document" msgid "View Document" msgstr "View Document" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:154 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:154 msgid "View documents associated with this email" msgstr "View documents associated with this email" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:54 +#: apps/remix/app/components/general/teams/team-invitations.tsx:54 msgid "View invites" msgstr "View invites" @@ -6357,6 +6374,7 @@ msgstr "Want your own public profile?" msgid "Warning: Assistant as last signer" msgstr "Warning: Assistant as last signer" +#: apps/remix/app/components/general/billing-portal-button.tsx:25 #: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx:54 #: apps/remix/app/components/general/teams/team-billing-portal-button.tsx:30 msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support." @@ -6374,8 +6392,8 @@ msgstr "We are unable to update this passkey at the moment. Please try again lat msgid "We encountered an error while removing the direct template link. Please try again later." msgstr "We encountered an error while removing the direct template link. Please try again later." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:83 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:80 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:83 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:80 msgid "We encountered an error while updating the webhook. Please try again later." msgstr "We encountered an error while updating the webhook. Please try again later." @@ -6399,7 +6417,7 @@ msgstr "We encountered an unknown error while attempting to delete the pending t msgid "We encountered an unknown error while attempting to delete this team. Please try again later." msgstr "We encountered an unknown error while attempting to delete this team. Please try again later." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:92 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:90 msgid "We encountered an unknown error while attempting to delete this token. Please try again later." msgstr "We encountered an unknown error while attempting to delete this token. Please try again later." @@ -6435,7 +6453,7 @@ msgstr "We encountered an unknown error while attempting to request a transfer o msgid "We encountered an unknown error while attempting to reset your password. Please try again later." msgstr "We encountered an unknown error while attempting to reset your password. Please try again later." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:45 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:45 msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support." msgstr "We encountered an unknown error while attempting to revoke access. Please try again or contact support." @@ -6494,7 +6512,7 @@ msgstr "We need a username to create your profile" msgid "We need your signature to sign documents" msgstr "We need your signature to sign documents" -#: apps/remix/app/components/forms/token.tsx:107 +#: apps/remix/app/components/forms/token.tsx:108 msgid "We were unable to copy the token to your clipboard. Please try again." msgstr "We were unable to copy the token to your clipboard. Please try again." @@ -6520,7 +6538,7 @@ msgstr "We were unable to disable two-factor authentication for your account. Pl msgid "We were unable to log you out at this time." msgstr "We were unable to log you out at this time." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:134 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:134 msgid "We were unable to set your public profile to public. Please try again." msgstr "We were unable to set your public profile to public. Please try again." @@ -6530,7 +6548,7 @@ msgid "We were unable to setup two-factor authentication for your account. Pleas msgstr "We were unable to setup two-factor authentication for your account. Please ensure that you have entered your code correctly and try again." #: apps/remix/app/components/general/direct-template/direct-template-page.tsx:121 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:156 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:169 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:262 msgid "We were unable to submit this document at this time. Please try again later." msgstr "We were unable to submit this document at this time. Please try again later." @@ -6568,7 +6586,7 @@ msgstr "We will generate signing links for you, which you can send to the recipi msgid "We won't send anything to notify recipients." msgstr "We won't send anything to notify recipients." -#: apps/remix/app/routes/_authenticated+/templates+/_index.tsx:72 +#: apps/remix/app/routes/_authenticated+/templates._index.tsx:72 #: apps/remix/app/components/tables/documents-table-empty-state.tsx:29 msgid "We're all empty" msgstr "We're all empty" @@ -6593,18 +6611,18 @@ msgstr "Webhook created" msgid "Webhook deleted" msgstr "Webhook deleted" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:73 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:70 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:73 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:70 msgid "Webhook updated" msgstr "Webhook updated" -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:113 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:113 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:138 msgid "Webhook URL" msgstr "Webhook URL" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:31 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:26 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:31 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:26 #: apps/remix/app/components/general/settings-nav-mobile.tsx:97 #: apps/remix/app/components/general/settings-nav-desktop.tsx:95 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:107 @@ -6612,6 +6630,10 @@ msgstr "Webhook URL" msgid "Webhooks" msgstr "Webhooks" +#: apps/remix/app/components/general/billing-plans.tsx:27 +msgid "Weekly" +msgstr "Weekly" + #: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx:17 msgid "Welcome" msgstr "Welcome" @@ -6660,7 +6682,8 @@ msgstr "Write about the team" msgid "Write about yourself" msgstr "Write about yourself" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:59 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:59 +#: apps/remix/app/components/general/billing-plans.tsx:29 msgid "Yearly" msgstr "Yearly" @@ -6692,7 +6715,7 @@ msgstr "You are about to remove the following user from <0>{teamName}." #. placeholder {0}: teamEmail.team.name #. placeholder {1}: teamEmail.team.url -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:97 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:97 msgid "You are about to revoke access for team <0>{0} ({1}) to use your email." msgstr "You are about to revoke access for team <0>{0} ({1}) to use your email." @@ -6700,6 +6723,10 @@ msgstr "You are about to revoke access for team <0>{0} ({1}) to use your ema msgid "You are about to send this document to the recipients. Are you sure you want to continue?" msgstr "You are about to send this document to the recipients. Are you sure you want to continue?" +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:90 +msgid "You are currently on the <0>Free Plan." +msgstr "You are currently on the <0>Free Plan." + #: apps/remix/app/components/dialogs/team-member-update-dialog.tsx:147 msgid "You are currently updating <0>{teamMemberName}." msgstr "You are currently updating <0>{teamMemberName}." @@ -6728,11 +6755,11 @@ msgstr "You are not authorized to enable this user." msgid "You can also copy and paste this link into your browser: {confirmationLink} (link expires in 1 hour)" msgstr "You can also copy and paste this link into your browser: {confirmationLink} (link expires in 1 hour)" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:35 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:35 msgid "You can choose to enable or disable your profile for public view." msgstr "You can choose to enable or disable your profile for public view." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:42 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:42 msgid "You can choose to enable or disable your team profile for public view." msgstr "You can choose to enable or disable your team profile for public view." @@ -6752,7 +6779,7 @@ msgstr "You can update the profile URL by updating the team URL in the general s msgid "You can use the following variables in your message:" msgstr "You can use the following variables in your message:" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:69 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:69 msgid "You can view documents associated with this email and use this identity when sending documents." msgstr "You can view documents associated with this email and use this identity when sending documents." @@ -6785,7 +6812,11 @@ msgstr "You cannot upload documents at this time." msgid "You cannot upload encrypted PDFs" msgstr "You cannot upload encrypted PDFs" -#: apps/remix/app/components/forms/token.tsx:134 +#: apps/remix/app/components/general/billing-portal-button.tsx:30 +msgid "You do not currently have a customer record, this should not happen. Please contact support for assistance." +msgstr "You do not currently have a customer record, this should not happen. Please contact support for assistance." + +#: apps/remix/app/components/forms/token.tsx:135 msgid "You do not have permission to create a token for this team" msgstr "You do not have permission to create a token for this team" @@ -6844,12 +6875,12 @@ msgstr "You have declined the invitation from <0>{0} to join their team." msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it." msgstr "You have initiated the document {0} that requires you to {recipientActionVerb} it." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:45 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:40 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:45 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:40 msgid "You have no webhooks yet. Your webhooks will be shown here once you create them." msgstr "You have no webhooks yet. Your webhooks will be shown here once you create them." -#: apps/remix/app/routes/_authenticated+/templates+/_index.tsx:76 +#: apps/remix/app/routes/_authenticated+/templates._index.tsx:76 msgid "You have not yet created any templates. To create a template please upload one." msgstr "You have not yet created any templates. To create a template please upload one." @@ -6880,6 +6911,7 @@ msgid "You have rejected the document '{documentName}'" msgstr "You have rejected the document '{documentName}'" #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:102 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:17 msgid "You have rejected this document" msgstr "You have rejected this document" @@ -6900,7 +6932,7 @@ msgstr "You have successfully registered. Please verify your account by clicking msgid "You have successfully removed this user from the team." msgstr "You have successfully removed this user from the team." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:37 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:37 msgid "You have successfully revoked access." msgstr "You have successfully revoked access." @@ -6917,12 +6949,12 @@ msgstr "You have updated {teamMemberName}." msgid "You have verified your email address for <0>{0}." msgstr "You have verified your email address for <0>{0}." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:94 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:94 msgid "You must be an admin of this team to manage billing." msgstr "You must be an admin of this team to manage billing." #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:53 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:55 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:53 #: apps/remix/app/components/dialogs/team-delete-dialog.tsx:52 msgid "You must enter '{deleteMessage}' to proceed" msgstr "You must enter '{deleteMessage}' to proceed" @@ -6931,10 +6963,14 @@ msgstr "You must enter '{deleteMessage}' to proceed" msgid "You must have at least one other team member to transfer ownership." msgstr "You must have at least one other team member to transfer ownership." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:118 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:118 msgid "You must set a profile URL before enabling your public profile." msgstr "You must set a profile URL before enabling your public profile." +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:52 +msgid "You need to be an admin to manage API tokens." +msgstr "You need to be an admin to manage API tokens." + #: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx:52 msgid "You need to be logged in as <0>{email} to view this page." msgstr "You need to be logged in as <0>{email} to view this page." @@ -6987,6 +7023,10 @@ msgstr "Your bulk send has been initiated. You will receive an email notificatio msgid "Your bulk send operation for template \"{templateName}\" has completed." msgstr "Your bulk send operation for template \"{templateName}\" has completed." +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:135 +msgid "Your current plan is past due. Please update your payment information." +msgstr "Your current plan is past due. Please update your payment information." + #: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx:248 msgid "Your direct signing templates" msgstr "Your direct signing templates" @@ -7041,12 +7081,11 @@ msgstr "Your email has been successfully confirmed! You can now use all features #. placeholder {0}: teamEmail.team.name #. placeholder {1}: teamEmail.team.url -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:61 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:61 msgid "Your email is currently being used by team <0>{0} ({1})." msgstr "Your email is currently being used by team <0>{0} ({1})." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:79 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:44 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:63 msgid "Your existing tokens" msgstr "Your existing tokens" @@ -7089,7 +7128,7 @@ msgstr "Your recovery code has been copied to your clipboard." msgid "Your recovery codes are listed below. Please store them in a safe place." msgstr "Your recovery codes are listed below. Please store them in a safe place." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:78 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:78 msgid "Your subscription is currently active." msgstr "Your subscription is currently active." @@ -7130,11 +7169,10 @@ msgstr "Your templates has been saved successfully." msgid "Your token has expired!" msgstr "Your token has expired!" -#: apps/remix/app/components/forms/token.tsx:272 +#: apps/remix/app/components/forms/token.tsx:273 msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!" msgstr "Your token was created successfully! Make sure to copy it because you won't be able to see it again!" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:85 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:50 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:69 msgid "Your tokens will be shown here once you create them." msgstr "Your tokens will be shown here once you create them." diff --git a/packages/lib/translations/es/web.po b/packages/lib/translations/es/web.po index e78efb4ad..e1ea270c5 100644 --- a/packages/lib/translations/es/web.po +++ b/packages/lib/translations/es/web.po @@ -22,7 +22,7 @@ msgstr "" msgid " Enable direct link signing" msgstr "" -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:171 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:171 msgid " The events that will trigger a webhook to be sent to your URL." msgstr "" @@ -59,7 +59,7 @@ msgid "\"{placeholderEmail}\" on behalf of \"{0}\" has invited you to sign \"exa msgstr "\"{placeholderEmail}\" en nombre de \"{0}\" te ha invitado a firmar \"documento de ejemplo\"." #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:273 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:325 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:372 msgid "(You)" msgstr "" @@ -85,8 +85,8 @@ msgid "{0, plural, one {# Seat} other {# Seats}}" msgstr "{0, plural, one {# Asiento} other {# Asientos}}" #. placeholder {0}: data.length -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:36 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:65 +#: apps/remix/app/components/general/teams/team-invitations.tsx:36 +#: apps/remix/app/components/general/teams/team-invitations.tsx:65 msgid "{0, plural, one {<0>You have <1>1 pending team invitation} other {<2>You have <3># pending team invitations}}" msgstr "{0, plural, one {<0>Tienes <1>1 invitación de equipo pendiente} other {<2>Tienes <3># invitaciones de equipo pendientes}}" @@ -96,12 +96,12 @@ msgid "{0, plural, one {1 matching field} other {# matching fields}}" msgstr "{0, plural, one {1 campo que coincide} other {# campos que coinciden}}" #. placeholder {0}: recipients.length -#: apps/remix/app/routes/_authenticated+/documents+/$id.edit.tsx:122 +#: apps/remix/app/routes/_authenticated+/documents.$id.edit.tsx:122 msgid "{0, plural, one {1 Recipient} other {# Recipients}}" msgstr "{0, plural, one {1 Destinatario} other {# Destinatarios}}" #. placeholder {0}: pendingRecipients.length -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:232 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:232 msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}" msgstr "{0, plural, one {Esperando 1 destinatario} other {Esperando # destinatarios}}" @@ -161,7 +161,7 @@ msgid "{0} on behalf of \"{1}\" has invited you to {recipientActionVerb} the doc msgstr "{0} en nombre de \"{1}\" te ha invitado a {recipientActionVerb} el documento \"{2}\"." #. placeholder {0}: recipients.length -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:167 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:167 msgid "{0} Recipient(s)" msgstr "{0} Destinatario(s)" @@ -225,7 +225,7 @@ msgstr "{memberEmail} se unió al siguiente equipo" msgid "{memberEmail} left the following team" msgstr "{memberEmail} dejó el siguiente equipo" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:65 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:65 msgid "{numberOfSeats, plural, one {# member} other {# members}}" msgstr "{numberOfSeats, plural, one {# miembro} other {# miembros}}" @@ -477,21 +477,21 @@ msgstr "<0>Está a punto de completar la firma de \"<1>{documentTitle}\".You are about to complete viewing \"<1>{documentTitle}\".<2/> Are you sure?" msgstr "<0>Está a punto de completar la visualización de \"<1>{documentTitle}\".<2/> ¿Está seguro?" -#: apps/remix/app/components/forms/token.tsx:43 +#: apps/remix/app/components/forms/token.tsx:45 msgid "1 month" msgstr "1 mes" -#: apps/remix/app/components/forms/token.tsx:46 +#: apps/remix/app/components/forms/token.tsx:48 msgid "12 months" msgstr "12 meses" -#: apps/remix/app/components/forms/token.tsx:44 +#: apps/remix/app/components/forms/token.tsx:46 msgid "3 months" msgstr "3 meses" #: apps/remix/app/components/general/generic-error-layout.tsx:41 -msgid "404 Page not found" -msgstr "404 Página no encontrada" +msgid "404 not found" +msgstr "" #: apps/remix/app/routes/_profile+/_layout.tsx:102 msgid "404 Profile not found" @@ -505,11 +505,11 @@ msgstr "404 Equipo no encontrado" msgid "500 Internal Server Error" msgstr "" -#: apps/remix/app/components/forms/token.tsx:45 +#: apps/remix/app/components/forms/token.tsx:47 msgid "6 months" msgstr "6 meses" -#: apps/remix/app/components/forms/token.tsx:42 +#: apps/remix/app/components/forms/token.tsx:44 msgid "7 days" msgstr "7 días" @@ -549,7 +549,7 @@ msgstr "Un medio para imprimir o descargar documentos para sus registros" msgid "A new member has joined your team" msgstr "Un nuevo miembro se ha unido a tu equipo" -#: apps/remix/app/components/forms/token.tsx:123 +#: apps/remix/app/components/forms/token.tsx:124 msgid "A new token was created successfully." msgstr "Un nuevo token se ha creado con éxito." @@ -585,8 +585,8 @@ msgstr "Se ha iniciado una solicitud para usar tu correo electrónico por {0} en msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso" msgstr "Un secreto que se enviará a tu URL para que puedas verificar que la solicitud ha sido enviada por Documenso" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:191 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:192 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:191 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:192 msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso." msgstr "Un secreto que se enviará a tu URL para que puedas verificar que la solicitud ha sido enviada por Documenso." @@ -625,7 +625,7 @@ msgstr "Una URL única para identificar tu equipo" msgid "A verification email will be sent to the provided email." msgstr "Se enviará un correo electrónico de verificación a la dirección proporcionada." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:146 +#: apps/remix/app/components/general/teams/team-invitations.tsx:146 #: packages/email/templates/team-transfer-request.tsx:82 #: packages/email/templates/team-invite.tsx:95 #: packages/email/templates/confirm-team-email.tsx:119 @@ -648,7 +648,7 @@ msgstr "Aceptar solicitud de transferencia de equipo en Documenso" msgid "Acceptance and Consent" msgstr "Aceptación y Consentimiento" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:126 +#: apps/remix/app/components/general/teams/team-invitations.tsx:126 msgid "Accepted team invitation" msgstr "Invitación de equipo aceptada" @@ -696,8 +696,8 @@ msgstr "Acción" msgid "Actions" msgstr "Acciones" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:70 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:105 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:70 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:105 #: apps/remix/app/components/tables/user-settings-teams-page-table.tsx:64 msgid "Active" msgstr "Activo" @@ -728,11 +728,11 @@ msgstr "Agrega todos los campos relevantes para cada destinatario." msgid "Add all relevant placeholders for each recipient." msgstr "Agrega todos los marcadores de posición relevantes para cada destinatario." -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:94 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:94 msgid "Add an authenticator to serve as a secondary authentication method for signing documents." msgstr "Agrega un autenticador para servir como método de autenticación secundario para firmar documentos." -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:89 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:89 msgid "Add an authenticator to serve as a secondary authentication method when signing in, or when signing documents." msgstr "Agrega un autenticador para servir como método de autenticación secundario al iniciar sesión o al firmar documentos." @@ -897,7 +897,7 @@ msgstr "Todo el Tiempo" msgid "Allow document recipients to reply directly to this email address" msgstr "Permitir que los destinatarios del documento respondan directamente a esta dirección de correo electrónico" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:141 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:141 msgid "Allows authenticating using biometrics, password managers, hardware keys, etc." msgstr "Permite autenticarse usando biometría, administradores de contraseñas, claves de hardware, etc." @@ -930,7 +930,7 @@ msgid "An email requesting the transfer of this team has been sent." msgstr "Se ha enviado un correo electrónico solicitando la transferencia de este equipo." #: apps/remix/app/components/general/claim-account.tsx:96 -#: apps/remix/app/components/forms/token.tsx:139 +#: apps/remix/app/components/forms/token.tsx:140 #: apps/remix/app/components/forms/signup.tsx:160 #: apps/remix/app/components/forms/reset-password.tsx:91 #: apps/remix/app/components/forms/password.tsx:89 @@ -1062,6 +1062,10 @@ msgstr "" msgid "An error occurred while signing the document." msgstr "Ocurrió un error al firmar el documento." +#: apps/remix/app/components/general/billing-plans.tsx:63 +msgid "An error occurred while trying to create a checkout session." +msgstr "" + #: apps/remix/app/components/general/template/template-edit-form.tsx:149 #: apps/remix/app/components/general/document/document-edit-form.tsx:205 msgid "An error occurred while updating the document settings." @@ -1096,7 +1100,7 @@ msgstr "" #: apps/remix/app/components/forms/profile.tsx:74 #: apps/remix/app/components/forms/avatar-image.tsx:94 #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:81 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:90 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:88 #: apps/remix/app/components/dialogs/team-transfer-dialog.tsx:114 #: apps/remix/app/components/dialogs/team-member-update-dialog.tsx:99 #: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx:154 @@ -1125,9 +1129,7 @@ msgstr "Cualquier fuente" msgid "Any Status" msgstr "Cualquier estado" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:43 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:55 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:19 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:26 #: apps/remix/app/components/general/settings-nav-mobile.tsx:84 #: apps/remix/app/components/general/settings-nav-desktop.tsx:82 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:94 @@ -1173,11 +1175,11 @@ msgstr "Aprobando" msgid "Are you sure you want to complete the document? This action cannot be undone. Please ensure that you have completed prefilling all relevant fields before proceeding." msgstr "" -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:122 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:120 msgid "Are you sure you want to delete this token?" msgstr "¿Estás seguro de que deseas eliminar este token?" -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:118 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:127 msgid "Are you sure you want to reject this document? This action cannot be undone." msgstr "Are you sure you want to reject this document? This action cannot be undone." @@ -1189,7 +1191,7 @@ msgstr "¿Está seguro de que desea eliminar la clave de acceso <0>{passkeyName} msgid "Are you sure you wish to delete this team?" msgstr "¿Estás seguro de que deseas eliminar este equipo?" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:93 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:93 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:455 #: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx:80 #: apps/remix/app/components/dialogs/team-leave-dialog.tsx:80 @@ -1208,7 +1210,7 @@ msgstr "" msgid "Assist Document" msgstr "" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:252 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:299 msgid "Assist with signing" msgstr "" @@ -1258,7 +1260,7 @@ msgstr "Avatar" msgid "Avatar Updated" msgstr "Avatar actualizado" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:125 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:125 msgid "Awaiting email confirmation" msgstr "Esperando confirmación de correo electrónico" @@ -1296,7 +1298,8 @@ msgstr "Detalles básicos" msgid "Before you get started, please confirm your email address by clicking the button below:" msgstr "Antes de comenzar, por favor confirma tu dirección de correo electrónico haciendo clic en el botón de abajo:" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:77 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:77 +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:84 #: apps/remix/app/components/general/settings-nav-mobile.tsx:111 #: apps/remix/app/components/general/settings-nav-desktop.tsx:109 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:121 @@ -1312,7 +1315,7 @@ msgstr "Negro" msgid "Blue" msgstr "Azul" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:40 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:40 msgid "Branding Preferences" msgstr "Preferencias de marca" @@ -1387,13 +1390,13 @@ msgstr "Al utilizar la función de firma electrónica, usted está consintiendo msgid "Can prepare" msgstr "" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:108 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:162 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:203 #: apps/remix/app/components/general/teams/team-transfer-status.tsx:118 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:108 #: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx:364 #: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx:315 -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:151 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:160 #: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx:349 #: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx:234 #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:208 @@ -1408,7 +1411,7 @@ msgstr "" #: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx:263 #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:156 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:235 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:169 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:167 #: apps/remix/app/components/dialogs/template-move-dialog.tsx:145 #: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx:71 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:472 @@ -1493,7 +1496,7 @@ msgstr "Elija el destinatario del enlace directo" msgid "Choose how the document will reach recipients" msgstr "Elige cómo el documento llegará a los destinatarios" -#: apps/remix/app/components/forms/token.tsx:193 +#: apps/remix/app/components/forms/token.tsx:194 msgid "Choose..." msgstr "Elija..." @@ -1543,7 +1546,7 @@ msgstr "Haga clic para copiar el enlace de firma para enviar al destinatario" #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:176 #: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx:181 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:439 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:486 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:479 msgid "Click to insert field" msgstr "Haga clic para insertar campo" @@ -1564,7 +1567,7 @@ msgstr "Cerrar" #: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx:61 #: apps/remix/app/components/forms/signup.tsx:528 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:429 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:476 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:469 msgid "Complete" msgstr "Completo" @@ -1648,7 +1651,7 @@ msgid "Confirm by typing <0>{deleteMessage}" msgstr "Confirme escribiendo <0>{deleteMessage}" #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:133 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:145 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:143 msgid "Confirm by typing: <0>{deleteMessage}" msgstr "Confirme escribiendo: <0>{deleteMessage}" @@ -1773,7 +1776,7 @@ msgstr "Copiar enlace compartible" msgid "Copy Signing Links" msgstr "Copiar enlaces de firma" -#: apps/remix/app/components/forms/token.tsx:283 +#: apps/remix/app/components/forms/token.tsx:284 msgid "Copy token" msgstr "Copiar token" @@ -1851,8 +1854,8 @@ msgstr "Crear Equipo" msgid "Create the document as pending and ready to sign." msgstr "Crear el documento como pendiente y listo para firmar." -#: apps/remix/app/components/forms/token.tsx:243 -#: apps/remix/app/components/forms/token.tsx:252 +#: apps/remix/app/components/forms/token.tsx:244 +#: apps/remix/app/components/forms/token.tsx:253 msgid "Create token" msgstr "Crear token" @@ -1889,7 +1892,7 @@ msgstr "Creado" msgid "Created At" msgstr "Creado En" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:90 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:90 msgid "Created by" msgstr "Creado por" @@ -1900,10 +1903,9 @@ msgstr "Creado el" #. placeholder {0}: i18n.date(webhook.createdAt, DateTime.DATETIME_FULL) #. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL) -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:88 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:99 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:83 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:64 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:88 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:83 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:83 msgid "Created on {0}" msgstr "Creado el {0}" @@ -1923,6 +1925,10 @@ msgstr "La contraseña actual es incorrecta." msgid "Current recipients:" msgstr "Destinatarios actuales:" +#: apps/remix/app/components/general/billing-plans.tsx:26 +msgid "Daily" +msgstr "" + #: apps/remix/app/components/general/app-command-menu.tsx:261 msgid "Dark Mode" msgstr "Modo Oscuro" @@ -1935,7 +1941,7 @@ msgstr "Modo Oscuro" msgid "Date" msgstr "Fecha" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:96 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:96 msgid "Date created" msgstr "Fecha de creación" @@ -1944,12 +1950,12 @@ msgstr "Fecha de creación" msgid "Date Format" msgstr "Formato de fecha" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:184 +#: apps/remix/app/components/general/teams/team-invitations.tsx:184 #: packages/email/templates/team-invite.tsx:101 msgid "Decline" msgstr "Rechazar" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:163 +#: apps/remix/app/components/general/teams/team-invitations.tsx:163 msgid "Declined team invitation" msgstr "Invitación de equipo rechazada" @@ -1965,17 +1971,16 @@ msgstr "Visibilidad predeterminada del documento" msgid "delete" msgstr "eliminar" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:100 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:115 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:95 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:80 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:100 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:95 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:103 #: apps/remix/app/components/tables/templates-table-action-dropdown.tsx:109 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:182 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:216 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:175 #: apps/remix/app/components/general/document/document-page-view-dropdown.tsx:144 #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:102 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:114 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:112 #: apps/remix/app/components/dialogs/template-delete-dialog.tsx:87 #: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx:112 #: apps/remix/app/components/dialogs/team-delete-dialog.tsx:165 @@ -1986,7 +1991,7 @@ msgstr "Eliminar" #. placeholder {0}: webhook.webhookUrl #. placeholder {0}: token.name #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:49 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:51 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:49 msgid "delete {0}" msgstr "eliminar {0}" @@ -2020,7 +2025,7 @@ msgstr "Eliminar Documento" msgid "Delete passkey" msgstr "Eliminar clave de paso" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:195 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:195 #: apps/remix/app/components/dialogs/team-delete-dialog.tsx:116 msgid "Delete team" msgstr "Eliminar equipo" @@ -2139,8 +2144,8 @@ msgstr "Deshabilitar Cuenta" msgid "Disable Two Factor Authentication before deleting your account." msgstr "Deshabilite la Autenticación de Dos Factores antes de eliminar su cuenta." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:74 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:69 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:74 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:69 msgid "Disabled" msgstr "Deshabilitado" @@ -2152,7 +2157,7 @@ msgstr "Deshabilitar la firma de enlace directo evitará que cualquiera acceda a msgid "Disabling the user results in the user not being able to use the account. It also disables all the related contents such as subscription, webhooks, teams, and API keys." msgstr "Deshabilitar al usuario implica que no podrá usar la cuenta. También desactiva todos los contenidos relacionados como suscripciones, webhooks, equipos y claves API." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:74 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:74 msgid "Display your name and email in documents" msgstr "Mostrar su nombre y correo electrónico en documentos" @@ -2172,7 +2177,7 @@ msgstr "¿Desea duplicar esta plantilla?" msgid "Documenso will delete <0>all of your documents, along with all of your completed documents, signatures, and all other resources belonging to your Account." msgstr "Documenso eliminará <0>todos sus documentos, junto con todos sus documentos completados, firmas y todos los demás recursos de su cuenta." -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:129 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:129 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:36 msgid "Document" msgstr "Documento" @@ -2250,7 +2255,7 @@ msgstr "Documento creado usando un <0>enlace directo" msgid "Document Creation" msgstr "Creación de documento" -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:175 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:175 #: apps/remix/app/components/dialogs/document-delete-dialog.tsx:58 #: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx:48 #: packages/lib/utils/document-audit-logs.ts:305 @@ -2282,13 +2287,13 @@ msgstr "Documento duplicado" msgid "Document external ID updated" msgstr "ID externo del documento actualizado" -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:186 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:186 #: apps/remix/app/components/general/document/document-history-sheet.tsx:102 msgid "Document history" msgstr "Historial de documentos" #: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx:86 -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:82 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:82 msgid "Document ID" msgstr "ID del documento" @@ -2337,6 +2342,7 @@ msgid "Document re-sent" msgstr "Documento reenviado" #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:97 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:12 #: packages/email/template-components/template-document-rejected.tsx:21 msgid "Document Rejected" msgstr "Documento Rechazado" @@ -2362,11 +2368,11 @@ msgstr "Se actualizó la autenticación de firma del documento" msgid "Document signing process will be cancelled" msgstr "El proceso de firma del documento será cancelado" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:86 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:86 msgid "Document status" msgstr "Estado del documento" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:78 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:78 msgid "Document title" msgstr "Título del documento" @@ -2399,9 +2405,9 @@ msgid "Document will be permanently deleted" msgstr "El documento será eliminado permanentemente" #: apps/remix/app/routes/_profile+/p.$url.tsx:163 -#: apps/remix/app/routes/_authenticated+/documents+/_index.tsx:111 -#: apps/remix/app/routes/_authenticated+/documents+/$id.edit.tsx:99 -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:138 +#: apps/remix/app/routes/_authenticated+/documents._index.tsx:111 +#: apps/remix/app/routes/_authenticated+/documents.$id.edit.tsx:99 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:138 #: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx:69 #: apps/remix/app/components/tables/admin-dashboard-users-table.tsx:89 #: apps/remix/app/components/general/user-profile-timur.tsx:56 @@ -2413,7 +2419,7 @@ msgstr "El documento será eliminado permanentemente" msgid "Documents" msgstr "Documentos" -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:218 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:218 msgid "Documents created from template" msgstr "Documentos creados a partir de la plantilla" @@ -2494,8 +2500,8 @@ msgstr "Debido a una factura impaga, tu equipo ha sido restringido. Realiza el p msgid "Duplicate" msgstr "Duplicar" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:95 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:90 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:95 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:90 #: apps/remix/app/components/tables/templates-table-action-dropdown.tsx:69 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:116 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:145 @@ -2506,12 +2512,12 @@ msgstr "Duplicar" msgid "Edit" msgstr "Editar" -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:135 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:135 msgid "Edit Template" msgstr "Editar plantilla" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:93 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:90 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:93 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:90 msgid "Edit webhook" msgstr "Editar webhook" @@ -2533,7 +2539,7 @@ msgstr "Divulgación de Firma Electrónica" #: apps/remix/app/components/forms/signin.tsx:318 #: apps/remix/app/components/forms/profile.tsx:108 #: apps/remix/app/components/forms/forgot-password.tsx:77 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:362 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:409 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:405 #: apps/remix/app/components/dialogs/template-use-dialog.tsx:275 #: apps/remix/app/components/dialogs/template-use-dialog.tsx:282 @@ -2641,10 +2647,10 @@ msgstr "Habilitar firma mecanografiada" msgid "Enable Typed Signatures" msgstr "Habilitar firmas escritas" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:74 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:135 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:69 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:134 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:74 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:135 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:69 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:134 #: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx:128 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:159 msgid "Enabled" @@ -2749,13 +2755,12 @@ msgstr "¡Todos han firmado! Recibirás una copia por correo electrónico del do msgid "Exceeded timeout" msgstr "Tiempo de espera excedido" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:118 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:118 msgid "Expired" msgstr "Expirado" #. placeholder {0}: i18n.date(token.expires, DateTime.DATETIME_FULL) -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:103 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:68 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:89 msgid "Expires on {0}" msgstr "Expira el {0}" @@ -2776,8 +2781,8 @@ msgstr "Fallo al guardar configuraciones." msgid "Failed to update recipient" msgstr "Falló al actualizar el destinatario" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:81 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:78 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:81 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:78 msgid "Failed to update webhook" msgstr "Falló al actualizar el webhook" @@ -2870,7 +2875,7 @@ msgstr "Firma gratuita" #: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx:323 #: apps/remix/app/components/forms/signup.tsx:309 #: apps/remix/app/components/forms/profile.tsx:96 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:347 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:394 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:390 msgid "Full Name" msgstr "Nombre completo" @@ -2947,7 +2952,7 @@ msgstr "te ha invitado a ver este documento" msgid "Having an assistant as the last signer means they will be unable to take any action as there are no subsequent signers to assist." msgstr "" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:277 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:324 msgid "Help complete the document for other signers." msgstr "" @@ -2955,15 +2960,15 @@ msgstr "" msgid "Here you can edit your personal details." msgstr "Aquí puedes editar tus datos personales." -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:68 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:68 msgid "Here you can manage your password and security settings." msgstr "Aquí puedes gestionar tu contraseña y la configuración de seguridad." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:41 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:41 msgid "Here you can set preferences and defaults for branding." msgstr "Aquí puedes establecer preferencias y valores predeterminados para la marca." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:32 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:32 msgid "Here you can set preferences and defaults for your team." msgstr "Aquí puedes establecer preferencias y valores predeterminados para tu equipo." @@ -2983,7 +2988,7 @@ msgstr "Hola, {userName}," msgid "Hi, {userName} <0>({userEmail})" msgstr "Hola, {userName} <0>({userEmail})" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:164 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:164 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:175 #: apps/remix/app/components/dialogs/document-delete-dialog.tsx:196 msgid "Hide" @@ -3018,7 +3023,7 @@ msgid "I am the owner of this document" msgstr "Soy el propietario de este documento" #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:166 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:179 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:177 msgid "I'm sure! Delete it" msgstr "¡Estoy seguro! Elimínalo" @@ -3198,7 +3203,7 @@ msgstr "Últimos 7 días" msgid "Last modified" msgstr "Última modificación" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:102 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:102 msgid "Last updated" msgstr "Última actualización" @@ -3244,7 +3249,7 @@ msgstr "¿Te gustaría tener tu propio perfil público con acuerdos?" msgid "Link expires in 1 hour." msgstr "El enlace expira en 1 hora." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:225 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:225 msgid "Link template" msgstr "Enlace de plantilla" @@ -3253,8 +3258,8 @@ msgid "Links Generated" msgstr "Enlaces generados" #. placeholder {0}: webhook.eventTriggers .map((trigger) => toFriendlyWebhookEventName(trigger)) .join(', ') -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:79 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:74 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:79 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:74 msgid "Listening to {0}" msgstr "Escuchando a {0}" @@ -3297,14 +3302,18 @@ msgstr "Gestionar" msgid "Manage {0}'s profile" msgstr "Gestionar el perfil de {0}" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/index.tsx:24 +#: apps/remix/app/routes/_authenticated+/settings+/teams.tsx:23 msgid "Manage all teams you are currently associated with." msgstr "Gestionar todos los equipos con los que estás asociado actualmente." -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:183 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:183 msgid "Manage and view template" msgstr "Gestionar y ver plantilla" +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:146 +msgid "Manage billing" +msgstr "" + #: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx:338 msgid "Manage details for this public template" msgstr "Gestionar detalles de esta plantilla pública" @@ -3317,7 +3326,7 @@ msgstr "Gestionar enlace directo" msgid "Manage documents" msgstr "Gestionar documentos" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:149 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:149 msgid "Manage passkeys" msgstr "Gestionar claves de acceso" @@ -3325,11 +3334,15 @@ msgstr "Gestionar claves de acceso" msgid "Manage subscription" msgstr "Gestionar suscripción" +#: apps/remix/app/components/general/billing-portal-button.tsx:45 +msgid "Manage Subscription" +msgstr "" + #: apps/remix/app/routes/_authenticated+/admin+/subscriptions.tsx:28 msgid "Manage subscriptions" msgstr "Gestionar suscripciones" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:93 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:93 msgid "Manage team subscription." msgstr "Gestionar suscripción de equipo." @@ -3341,7 +3354,7 @@ msgstr "Gestionar equipos" msgid "Manage the direct link signing for this template" msgstr "Gestionar la firma de enlace directo para esta plantilla" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:53 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:53 msgid "Manage the members or invite new members." msgstr "Gestionar los miembros o invitar nuevos miembros." @@ -3349,7 +3362,7 @@ msgstr "Gestionar los miembros o invitar nuevos miembros." msgid "Manage users" msgstr "Gestionar usuarios" -#: apps/remix/app/routes/_authenticated+/settings+/security+/passkeys+/index.tsx:20 +#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx:20 msgid "Manage your passkeys." msgstr "Gestionar tus claves de acceso." @@ -3390,7 +3403,7 @@ msgstr "Miembro" msgid "Member Since" msgstr "Miembro desde" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:52 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:52 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:84 #: apps/remix/app/components/general/teams/team-settings-nav-desktop.tsx:75 msgid "Members" @@ -3410,7 +3423,8 @@ msgstr "Mín" msgid "Modify recipients" msgstr "Modificar destinatarios" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:60 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:60 +#: apps/remix/app/components/general/billing-plans.tsx:28 msgid "Monthly" msgstr "Mensual" @@ -3445,7 +3459,7 @@ msgstr "Mover al equipo" msgid "Moving..." msgstr "Moviendo..." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:36 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:36 msgid "My templates" msgstr "Mis plantillas" @@ -3491,7 +3505,7 @@ msgstr "Necesita ver" msgid "Never" msgstr "Nunca" -#: apps/remix/app/components/forms/token.tsx:217 +#: apps/remix/app/components/forms/token.tsx:218 msgid "Never expire" msgstr "Nunca expira" @@ -3509,7 +3523,7 @@ msgid "New Template" msgstr "Nueva plantilla" #: apps/remix/app/components/forms/signup.tsx:515 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:418 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:465 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:460 msgid "Next" msgstr "Siguiente" @@ -3523,10 +3537,11 @@ msgid "No active drafts" msgstr "No hay borradores activos" #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:113 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:28 msgid "No further action is required from you at this time." msgstr "No further action is required from you at this time." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:49 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:49 msgid "No payment required" msgstr "No se requiere pago" @@ -3645,21 +3660,17 @@ msgstr "en nombre de \"{0}\" te ha invitado a ver este documento" msgid "On this page, you can create a new webhook." msgstr "En esta página, puedes crear un nuevo webhook." -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:23 -msgid "On this page, you can create new API tokens and manage the existing ones. <0/>Also see our <1>Documentation." -msgstr "En esta página, puedes crear nuevos tokens de API y gestionar los existentes. <0/>También consulta nuestra <1>Documentación." +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:28 +msgid "On this page, you can create and manage API tokens. See our <0>Documentation for more information." +msgstr "" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:59 -msgid "On this page, you can create new API tokens and manage the existing ones. <0/>You can view our swagger docs <1>here" -msgstr "En esta página, puedes crear nuevos tokens de API y gestionar los existentes. <0/>Puedes ver nuestra documentación de swagger <1>aquí" - -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:32 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:27 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:32 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:27 msgid "On this page, you can create new Webhooks and manage the existing ones." msgstr "En esta página, puedes editar el webhook y sus configuraciones." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:94 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:91 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:94 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:91 msgid "On this page, you can edit the webhook and its settings." msgstr "En esta página, puedes editar el webhook y su configuración." @@ -3765,8 +3776,8 @@ msgstr "Nombre de clave de acceso" msgid "Passkey Re-Authentication" msgstr "Re-autenticación de Passkey" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:137 -#: apps/remix/app/routes/_authenticated+/settings+/security+/passkeys+/index.tsx:19 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:137 +#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx:19 msgid "Passkeys" msgstr "Claves de acceso" @@ -3824,7 +3835,7 @@ msgstr "Se requiere pago para finalizar la creación de tu equipo." msgid "Payment overdue" msgstr "Pago atrasado" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:76 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:76 #: apps/remix/app/components/tables/user-settings-teams-page-table.tsx:70 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:203 #: apps/remix/app/components/general/document/document-status.tsx:22 @@ -3846,7 +3857,7 @@ msgstr "Documentos pendientes" msgid "Pending Documents" msgstr "Documentos Pendientes" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:61 +#: apps/remix/app/components/general/teams/team-invitations.tsx:61 msgid "Pending invitations" msgstr "Invitaciones pendientes" @@ -3929,7 +3940,7 @@ msgstr "Por favor confirma tu dirección de correo electrónico" msgid "Please contact support if you would like to revert this action." msgstr "Por favor, contacta al soporte si deseas revertir esta acción." -#: apps/remix/app/components/forms/token.tsx:168 +#: apps/remix/app/components/forms/token.tsx:169 msgid "Please enter a meaningful name for your token. This will help you identify it later." msgstr "Por favor, ingresa un nombre significativo para tu token. Esto te ayudará a identificarlo más tarde." @@ -3958,7 +3969,7 @@ msgstr "Por favor, ten en cuenta que esta acción es <0>irreversible. Una ve msgid "Please note that this action is irreversible. Once confirmed, your template will be permanently deleted." msgstr "Por favor, ten en cuenta que esta acción es irreversible. Una vez confirmada, tu plantilla será eliminada permanentemente." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:126 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:124 msgid "Please note that this action is irreversible. Once confirmed, your token will be permanently deleted." msgstr "Por favor, ten en cuenta que esta acción es irreversible. Una vez confirmada, tu token será eliminado permanentemente." @@ -4047,11 +4058,11 @@ msgstr "Las plantillas privadas solo pueden ser modificadas y vistas por ti." msgid "Profile" msgstr "Perfil" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:193 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:193 msgid "Profile is currently <0>hidden." msgstr "El perfil está actualmente <0>oculto." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:181 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:181 msgid "Profile is currently <0>visible." msgstr "El perfil está actualmente <0>visible." @@ -4065,7 +4076,7 @@ msgstr "Perfil actualizado" msgid "Public" msgstr "Público" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:34 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:34 #: apps/remix/app/components/general/settings-nav-mobile.tsx:45 #: apps/remix/app/components/general/settings-nav-desktop.tsx:43 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:71 @@ -4137,7 +4148,7 @@ msgstr "Se requiere reautenticación para firmar este campo" msgid "Receives copy" msgstr "Recibe copia" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:160 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:160 #: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx:54 msgid "Recent activity" msgstr "Actividad reciente" @@ -4195,7 +4206,7 @@ msgstr "Los destinatarios aún conservarán su copia del documento" msgid "Recovery code copied" msgstr "Código de recuperación copiado" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:116 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:116 msgid "Recovery codes" msgstr "Códigos de recuperación" @@ -4213,9 +4224,9 @@ msgstr "URL de redirección" msgid "Registration Successful" msgstr "Registro exitoso" -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:107 -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:114 -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:160 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:116 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:123 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:169 #: packages/email/template-components/template-document-invite.tsx:98 msgid "Reject Document" msgstr "Rechazar Documento" @@ -4279,7 +4290,7 @@ msgstr "Eliminar correo electrónico del equipo" msgid "Remove team member" msgstr "Eliminar miembro del equipo" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:69 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:69 msgid "Renews: {formattedDate}" msgstr "Renueva: {formattedDate}" @@ -4378,11 +4389,11 @@ msgstr "Regresar a la página de inicio" msgid "Return to sign in" msgstr "Regresar para iniciar sesión" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:117 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:117 msgid "Revoke" msgstr "Revocar" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:86 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:86 msgid "Revoke access" msgstr "Revocar acceso" @@ -4417,7 +4428,7 @@ msgstr "Guardar" msgid "Save Template" msgstr "Guardar plantilla" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:63 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:63 #: apps/remix/app/components/tables/user-settings-teams-page-table.tsx:57 #: apps/remix/app/components/tables/documents-table-sender-filter.tsx:58 #: apps/remix/app/components/general/app-nav-desktop.tsx:84 @@ -4441,18 +4452,18 @@ msgstr "Buscar documentos..." msgid "Search languages..." msgstr "Buscar idiomas..." -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:185 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:185 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:210 msgid "Secret" msgstr "Secreto" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:67 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:67 #: apps/remix/app/components/general/settings-nav-mobile.tsx:71 #: apps/remix/app/components/general/settings-nav-desktop.tsx:69 msgid "Security" msgstr "Seguridad" -#: apps/remix/app/routes/_authenticated+/settings+/security+/activity+/index.tsx:18 +#: apps/remix/app/routes/_authenticated+/settings+/security.activity.tsx:18 msgid "Security activity" msgstr "Actividad de seguridad" @@ -4616,7 +4627,7 @@ msgstr "Compartir el enlace" msgid "Share your signing experience!" msgstr "¡Comparte tu experiencia de firma!" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:172 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:172 msgid "Show" msgstr "Mostrar" @@ -4629,11 +4640,11 @@ msgstr "Mostrar información adicional" msgid "Show advanced settings" msgstr "Mostrar configuraciones avanzadas" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:37 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:37 msgid "Show templates in your public profile for your audience to sign and get started quickly" msgstr "Mostrar plantillas en tu perfil público para que tu audiencia firme y comience rápidamente" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:44 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:44 msgid "Show templates in your team public profile for your audience to sign and get started quickly" msgstr "Mostrar plantillas en el perfil público de tu equipo para que tu audiencia firme y comience rápidamente" @@ -4664,7 +4675,7 @@ msgstr "Firmar como {0} <0>({1})" msgid "Sign as<0>{0} <1>({1})" msgstr "Firmar como<0>{0} <1>({1})" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:254 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:301 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:358 msgid "Sign document" msgstr "Firmar documento" @@ -4697,7 +4708,7 @@ msgstr "Inicia sesión en tu cuenta" msgid "Sign Out" msgstr "Cerrar sesión" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:279 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:326 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:379 msgid "Sign the document to complete the process." msgstr "Firma el documento para completar el proceso." @@ -4721,7 +4732,7 @@ msgstr "Regístrate con OIDC" #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:342 #: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx:335 #: apps/remix/app/components/forms/profile.tsx:118 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:376 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:423 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:420 #: packages/ui/primitives/template-flow/add-template-fields.tsx:711 #: packages/ui/primitives/document-flow/types.ts:49 @@ -4736,7 +4747,7 @@ msgstr "ID de Firma" #: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx:297 #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:366 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:402 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:449 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:446 msgid "Signature is too small. Please provide a more complete signature." msgstr "La firma es demasiado pequeña. Proporcione una firma más completa." @@ -4789,7 +4800,7 @@ msgstr "Certificado de firma proporcionado por" msgid "Signing Complete!" msgstr "¡Firma completa!" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:292 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:339 msgid "Signing for" msgstr "" @@ -4841,10 +4852,7 @@ msgstr "Algunos firmantes no han sido asignados a un campo de firma. Asigne al m #: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx:56 #: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx:88 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:132 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:169 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:43 -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:133 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:133 #: apps/remix/app/components/tables/user-settings-pending-teams-table-actions.tsx:34 #: apps/remix/app/components/tables/team-settings-member-invites-table.tsx:62 #: apps/remix/app/components/tables/team-settings-member-invites-table.tsx:79 @@ -4852,7 +4860,12 @@ msgstr "Algunos firmantes no han sido asignados a un campo de firma. Asigne al m #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:98 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:95 #: apps/remix/app/components/tables/documents-table-action-button.tsx:73 +#: apps/remix/app/components/general/billing-portal-button.tsx:35 +#: apps/remix/app/components/general/billing-plans.tsx:62 #: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx:52 +#: apps/remix/app/components/general/teams/team-invitations.tsx:132 +#: apps/remix/app/components/general/teams/team-invitations.tsx:169 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:43 #: apps/remix/app/components/general/teams/team-email-dropdown.tsx:38 #: apps/remix/app/components/general/teams/team-billing-portal-button.tsx:28 #: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx:34 @@ -4864,7 +4877,7 @@ msgstr "Algunos firmantes no han sido asignados a un campo de firma. Asigne al m #: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx:24 #: apps/remix/app/components/general/direct-template/direct-template-page.tsx:119 #: apps/remix/app/components/forms/team-branding-preferences-form.tsx:106 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:154 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:167 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:260 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:103 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:128 @@ -4914,12 +4927,11 @@ msgstr "Algo salió mal al actualizar la suscripción de facturación del equipo msgid "Something went wrong!" msgstr "¡Algo salió mal!" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:46 #: packages/ui/primitives/data-table.tsx:134 msgid "Something went wrong." msgstr "Algo salió mal." -#: apps/remix/app/components/forms/token.tsx:136 +#: apps/remix/app/components/forms/token.tsx:137 msgid "Something went wrong. Please try again later." msgstr "Algo salió mal. Por favor, inténtelo de nuevo más tarde." @@ -4970,6 +4982,10 @@ msgstr "Enviar" msgid "Submitting..." msgstr "" +#: apps/remix/app/components/general/billing-plans.tsx:129 +msgid "Subscribe" +msgstr "" + #: apps/remix/app/components/tables/admin-dashboard-users-table.tsx:78 msgid "Subscription" msgstr "Suscripción" @@ -4978,9 +4994,6 @@ msgstr "Suscripción" msgid "Subscriptions" msgstr "Suscripciones" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:125 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:162 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:36 #: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx:54 #: apps/remix/app/components/tables/user-settings-pending-teams-table-actions.tsx:28 #: apps/remix/app/components/tables/team-settings-member-invites-table.tsx:56 @@ -4989,6 +5002,9 @@ msgstr "Suscripciones" #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:90 #: apps/remix/app/components/general/verify-email-banner.tsx:46 #: apps/remix/app/components/general/teams/team-transfer-status.tsx:41 +#: apps/remix/app/components/general/teams/team-invitations.tsx:125 +#: apps/remix/app/components/general/teams/team-invitations.tsx:162 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:36 #: apps/remix/app/components/general/teams/team-email-dropdown.tsx:31 #: apps/remix/app/components/forms/team-update-form.tsx:65 #: apps/remix/app/components/forms/public-profile-form.tsx:79 @@ -5045,12 +5061,12 @@ msgstr "El equipo \"{0}\" ha sido eliminado en Documenso" msgid "Team checkout" msgstr "Checkout del equipo" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:65 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:144 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:65 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:144 msgid "Team email" msgstr "Correo del equipo" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:57 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:57 msgid "Team Email" msgstr "Correo del equipo" @@ -5130,11 +5146,11 @@ msgstr "¡La transferencia de propiedad del equipo ya se ha completado!" msgid "Team ownership transferred!" msgstr "¡Propiedad del equipo transferida!" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:31 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:31 msgid "Team Preferences" msgstr "Preferencias del equipo" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:41 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:41 msgid "Team Public Profile" msgstr "Perfil público del equipo" @@ -5142,11 +5158,11 @@ msgstr "Perfil público del equipo" msgid "Team settings" msgstr "Configuraciones del equipo" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_layout.tsx:39 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx:39 msgid "Team Settings" msgstr "Configuraciones del equipo" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:43 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:43 msgid "Team templates" msgstr "Plantillas del equipo" @@ -5163,7 +5179,7 @@ msgstr "Solicitud de transferencia del equipo expirada" msgid "Team URL" msgstr "URL del equipo" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/index.tsx:23 +#: apps/remix/app/routes/_authenticated+/settings+/teams.tsx:22 #: apps/remix/app/components/general/settings-nav-mobile.tsx:58 #: apps/remix/app/components/general/settings-nav-desktop.tsx:56 #: apps/remix/app/components/general/menu-switcher.tsx:155 @@ -5175,8 +5191,8 @@ msgstr "Equipos" msgid "Teams restricted" msgstr "Equipos restringidos" -#: apps/remix/app/routes/_authenticated+/templates+/$id.edit.tsx:71 -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:166 +#: apps/remix/app/routes/_authenticated+/templates.$id.edit.tsx:71 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:166 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:37 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:140 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:220 @@ -5221,8 +5237,8 @@ msgstr "Plantilla guardada" msgid "Template title" msgstr "Título de plantilla" -#: apps/remix/app/routes/_authenticated+/templates+/_index.tsx:56 -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:102 +#: apps/remix/app/routes/_authenticated+/templates._index.tsx:56 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:102 #: apps/remix/app/components/general/app-nav-mobile.tsx:35 #: apps/remix/app/components/general/app-nav-desktop.tsx:21 #: apps/remix/app/components/general/app-command-menu.tsx:203 @@ -5309,6 +5325,7 @@ msgid "The document owner has been notified of this rejection. No further action msgstr "El propietario del documento ha sido notificado de este rechazo. No se requiere ninguna acción adicional de su parte en este momento. El propietario del documento puede contactarlo con cualquier pregunta relacionada con este rechazo." #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:106 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:21 msgid "The document owner has been notified of your decision. They may contact you with further instructions if necessary." msgstr "The document owner has been notified of your decision. They may contact you with further instructions if necessary." @@ -5332,7 +5349,7 @@ msgstr "El nombre del documento" msgid "The email or password provided is incorrect" msgstr "" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:172 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:172 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:196 msgid "The events that will trigger a webhook to be sent to your URL." msgstr "Los eventos que activarán un webhook para ser enviado a tu URL." @@ -5464,11 +5481,11 @@ msgstr "La plantilla ha sido movida con éxito al equipo seleccionado." msgid "The template will be removed from your profile" msgstr "La plantilla será eliminada de tu perfil" -#: apps/remix/app/components/forms/token.tsx:102 +#: apps/remix/app/components/forms/token.tsx:103 msgid "The token was copied to your clipboard." msgstr "El token fue copiado a tu portapapeles." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:83 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:81 msgid "The token was deleted successfully." msgstr "El token fue eliminado con éxito." @@ -5480,8 +5497,8 @@ msgstr "El token que has utilizado para restablecer tu contraseña ha expirado o msgid "The two-factor authentication code provided is incorrect" msgstr "" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:121 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:120 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:121 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:120 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:145 msgid "The URL for Documenso to send webhook events to." msgstr "La URL para Documenso para enviar eventos de webhook." @@ -5490,8 +5507,8 @@ msgstr "La URL para Documenso para enviar eventos de webhook." msgid "The webhook has been successfully deleted." msgstr "El webhook ha sido eliminado con éxito." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:74 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:71 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:74 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:71 msgid "The webhook has been updated successfully." msgstr "El webhook ha sido actualizado con éxito." @@ -5507,7 +5524,7 @@ msgstr "No hay borradores activos en este momento. Puedes subir un documento par msgid "There are no completed documents yet. Documents that you have created or received will appear here once completed." msgstr "Aún no hay documentos completados. Los documentos que hayas creado o recibido aparecerán aquí una vez completados." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:69 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:69 msgid "They have permission on your behalf to:" msgstr "Tienen permiso en tu nombre para:" @@ -5561,11 +5578,11 @@ msgstr "Este documento ha sido cancelado por el propietario y ya no está dispon msgid "This document has been cancelled by the owner." msgstr "Este documento ha sido cancelado por el propietario." -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:221 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:221 msgid "This document has been signed by all recipients" msgstr "Este documento ha sido firmado por todos los destinatarios" -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:224 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:224 msgid "This document is currently a draft and has not been sent" msgstr "Este documento es actualmente un borrador y no ha sido enviado" @@ -5649,7 +5666,7 @@ msgstr "Esta sesión ha expirado. Por favor, inténtalo de nuevo." msgid "This signer has already signed the document." msgstr "Este firmante ya ha firmado el documento." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:199 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:199 msgid "This team, and any associated data excluding billing invoices will be permanently deleted." msgstr "Este equipo, y cualquier dato asociado, excluyendo las facturas de facturación, serán eliminados permanentemente." @@ -5695,7 +5712,7 @@ msgstr "Esto anulará cualquier configuración global." msgid "Time" msgstr "Hora" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:108 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:108 msgid "Time zone" msgstr "Zona horaria" @@ -5762,15 +5779,15 @@ msgstr "Para continuar, por favor establezca al menos un valor para el campo {0} msgid "To use our electronic signature service, you must have access to:" msgstr "Para usar nuestro servicio de firma electrónica, debe tener acceso a:" -#: apps/remix/app/components/embed/embed-authentication-required.tsx:24 +#: apps/remix/app/components/embed/embed-authentication-required.tsx:30 msgid "To view this document you need to be signed into your account, please sign in to continue." msgstr "Para ver este documento debes iniciar sesión en tu cuenta, por favor inicia sesión para continuar." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:187 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:187 msgid "Toggle the switch to hide your profile from the public." msgstr "Activa el interruptor para ocultar tu perfil del público." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:199 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:199 msgid "Toggle the switch to show your profile to the public." msgstr "Activa el interruptor para mostrar tu perfil al público." @@ -5778,24 +5795,23 @@ msgstr "Activa el interruptor para mostrar tu perfil al público." msgid "Token" msgstr "Token" -#: apps/remix/app/components/forms/token.tsx:101 +#: apps/remix/app/components/forms/token.tsx:102 msgid "Token copied to clipboard" msgstr "Token copiado al portapapeles" -#: apps/remix/app/components/forms/token.tsx:122 +#: apps/remix/app/components/forms/token.tsx:123 msgid "Token created" msgstr "Token creado" -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:82 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:80 msgid "Token deleted" msgstr "Token eliminado" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:107 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:72 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:95 msgid "Token doesn't have an expiration date" msgstr "El token no tiene una fecha de expiración" -#: apps/remix/app/components/forms/token.tsx:186 +#: apps/remix/app/components/forms/token.tsx:187 msgid "Token expiration date" msgstr "Fecha de expiración del token" @@ -5803,7 +5819,7 @@ msgstr "Fecha de expiración del token" msgid "Token has expired. Please try again." msgstr "El token ha expirado. Por favor, inténtelo de nuevo." -#: apps/remix/app/components/forms/token.tsx:158 +#: apps/remix/app/components/forms/token.tsx:159 msgid "Token name" msgstr "Nombre del token" @@ -5835,27 +5851,27 @@ msgstr "transferir {teamName}" msgid "Transfer ownership of this team to a selected team member." msgstr "Transferir la propiedad de este equipo a un miembro del equipo seleccionado." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:173 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:173 #: apps/remix/app/components/dialogs/team-transfer-dialog.tsx:145 #: apps/remix/app/components/dialogs/team-transfer-dialog.tsx:154 msgid "Transfer team" msgstr "Transferir equipo" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:177 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:177 msgid "Transfer the ownership of the team to another team member." msgstr "Transferir la propiedad del equipo a otro miembro del equipo." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:160 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:159 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:160 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:159 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:184 msgid "Triggers" msgstr "Desencadenadores" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:84 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:84 msgid "Two factor authentication" msgstr "Autenticación de dos factores" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:120 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:120 msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app." msgstr "Los códigos de recuperación de autenticación de dos factores se utilizan para acceder a tu cuenta en caso de perder el acceso a tu aplicación de autenticador." @@ -5904,7 +5920,7 @@ msgstr "No se puede cambiar el idioma en este momento. Por favor intenta nuevame msgid "Unable to copy recovery code" msgstr "No se pudo copiar el código de recuperación" -#: apps/remix/app/components/forms/token.tsx:106 +#: apps/remix/app/components/forms/token.tsx:107 msgid "Unable to copy token" msgstr "No se pudo copiar el token" @@ -5912,7 +5928,7 @@ msgstr "No se pudo copiar el token" msgid "Unable to create direct template access. Please try again later." msgstr "No se pudo crear acceso directo a la plantilla. Por favor, inténtalo de nuevo más tarde." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:170 +#: apps/remix/app/components/general/teams/team-invitations.tsx:170 msgid "Unable to decline this team invitation at this time." msgstr "No se pudo rechazar esta invitación al equipo en este momento." @@ -5928,7 +5944,7 @@ msgstr "No se pudo eliminar el equipo" msgid "Unable to disable two-factor authentication" msgstr "No se pudo desactivar la autenticación de dos factores" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:133 +#: apps/remix/app/components/general/teams/team-invitations.tsx:133 msgid "Unable to join this team at this time." msgstr "No se pudo unirte a este equipo en este momento." @@ -5975,6 +5991,7 @@ msgstr "No se pudo configurar la autenticación de dos factores" msgid "Unable to sign in" msgstr "No se pudo iniciar sesión" +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:49 #: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx:163 msgid "Unauthorized" msgstr "No autorizado" @@ -5987,7 +6004,7 @@ msgstr "Incompleto" #: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx:270 #: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx:281 #: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx:292 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:61 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:61 msgid "Unknown" msgstr "Desconocido" @@ -6051,8 +6068,8 @@ msgstr "Actualizar el rol y agregar campos según sea necesario para el destinat msgid "Update user" msgstr "Actualizar usuario" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:203 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:204 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:203 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:204 msgid "Update webhook" msgstr "Actualizar webhook" @@ -6125,7 +6142,7 @@ msgstr "El archivo subido es demasiado pequeño" msgid "Uploaded file not an allowed file type" msgstr "El archivo subido no es un tipo de archivo permitido" -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:194 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:194 msgid "Use" msgstr "Usar" @@ -6235,7 +6252,7 @@ msgstr "Historial de Versiones" msgid "View" msgstr "Ver" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:170 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:170 msgid "View activity" msgstr "Ver actividad" @@ -6243,11 +6260,11 @@ msgstr "Ver actividad" msgid "View all documents sent to and from this email address" msgstr "Ver todos los documentos enviados hacia y desde esta dirección de correo electrónico" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:77 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:77 msgid "View all documents sent to your account" msgstr "Ver todos los documentos enviados a tu cuenta" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:164 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:164 msgid "View all recent security activity related to your account." msgstr "Ver toda la actividad de seguridad reciente relacionada con tu cuenta." @@ -6255,7 +6272,7 @@ msgstr "Ver toda la actividad de seguridad reciente relacionada con tu cuenta." msgid "View all related documents" msgstr "Ver todos los documentos relacionados" -#: apps/remix/app/routes/_authenticated+/settings+/security+/activity+/index.tsx:19 +#: apps/remix/app/routes/_authenticated+/settings+/security.activity.tsx:19 msgid "View all security activity related to your account." msgstr "Ver toda la actividad de seguridad relacionada con tu cuenta." @@ -6275,11 +6292,11 @@ msgstr "Ver documento" msgid "View Document" msgstr "Ver Documento" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:154 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:154 msgid "View documents associated with this email" msgstr "Ver documentos asociados con este correo electrónico" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:54 +#: apps/remix/app/components/general/teams/team-invitations.tsx:54 msgid "View invites" msgstr "Ver invitaciones" @@ -6360,6 +6377,7 @@ msgstr "¿Quieres tu propio perfil público?" msgid "Warning: Assistant as last signer" msgstr "" +#: apps/remix/app/components/general/billing-portal-button.tsx:25 #: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx:54 #: apps/remix/app/components/general/teams/team-billing-portal-button.tsx:30 msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support." @@ -6377,8 +6395,8 @@ msgstr "No podemos actualizar esta clave de acceso en este momento. Por favor, i msgid "We encountered an error while removing the direct template link. Please try again later." msgstr "Encontramos un error al eliminar el enlace directo de la plantilla. Por favor, inténtalo de nuevo más tarde." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:83 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:80 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:83 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:80 msgid "We encountered an error while updating the webhook. Please try again later." msgstr "Encontramos un error al actualizar el webhook. Por favor, inténtalo de nuevo más tarde." @@ -6402,7 +6420,7 @@ msgstr "Encontramos un error desconocido al intentar eliminar el equipo pendient msgid "We encountered an unknown error while attempting to delete this team. Please try again later." msgstr "Encontramos un error desconocido al intentar eliminar este equipo. Por favor, inténtalo de nuevo más tarde." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:92 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:90 msgid "We encountered an unknown error while attempting to delete this token. Please try again later." msgstr "Encontramos un error desconocido al intentar eliminar este token. Por favor, inténtalo de nuevo más tarde." @@ -6438,7 +6456,7 @@ msgstr "Encontramos un error desconocido al intentar solicitar una transferencia msgid "We encountered an unknown error while attempting to reset your password. Please try again later." msgstr "Encontramos un error desconocido al intentar restablecer tu contraseña. Por favor, inténtalo de nuevo más tarde." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:45 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:45 msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support." msgstr "Encontramos un error desconocido al intentar revocar el acceso. Por favor, inténtalo de nuevo o contacta con soporte." @@ -6497,7 +6515,7 @@ msgstr "Necesitamos un nombre de usuario para crear tu perfil" msgid "We need your signature to sign documents" msgstr "Necesitamos su firma para firmar documentos" -#: apps/remix/app/components/forms/token.tsx:107 +#: apps/remix/app/components/forms/token.tsx:108 msgid "We were unable to copy the token to your clipboard. Please try again." msgstr "No pudimos copiar el token en tu portapapeles. Por favor, inténtalo de nuevo." @@ -6523,7 +6541,7 @@ msgstr "No pudimos desactivar la autenticación de dos factores para tu cuenta. msgid "We were unable to log you out at this time." msgstr "No pudimos cerrar sesión en este momento." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:134 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:134 msgid "We were unable to set your public profile to public. Please try again." msgstr "No pudimos configurar tu perfil público como público. Por favor, inténtalo de nuevo." @@ -6533,7 +6551,7 @@ msgid "We were unable to setup two-factor authentication for your account. Pleas msgstr "No pudimos configurar la autenticación de dos factores para tu cuenta. Asegúrate de haber ingresado correctamente tu código e inténtalo de nuevo." #: apps/remix/app/components/general/direct-template/direct-template-page.tsx:121 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:156 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:169 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:262 msgid "We were unable to submit this document at this time. Please try again later." msgstr "No pudimos enviar este documento en este momento. Por favor, inténtalo de nuevo más tarde." @@ -6571,7 +6589,7 @@ msgstr "Generaremos enlaces de firma para ti, que podrás enviar a los destinata msgid "We won't send anything to notify recipients." msgstr "No enviaremos nada para notificar a los destinatarios." -#: apps/remix/app/routes/_authenticated+/templates+/_index.tsx:72 +#: apps/remix/app/routes/_authenticated+/templates._index.tsx:72 #: apps/remix/app/components/tables/documents-table-empty-state.tsx:29 msgid "We're all empty" msgstr "No hay nada aquí" @@ -6596,18 +6614,18 @@ msgstr "Webhook creado" msgid "Webhook deleted" msgstr "Webhook eliminado" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:73 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:70 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:73 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:70 msgid "Webhook updated" msgstr "Webhook actualizado" -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:113 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:113 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:138 msgid "Webhook URL" msgstr "URL del Webhook" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:31 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:26 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:31 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:26 #: apps/remix/app/components/general/settings-nav-mobile.tsx:97 #: apps/remix/app/components/general/settings-nav-desktop.tsx:95 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:107 @@ -6615,6 +6633,10 @@ msgstr "URL del Webhook" msgid "Webhooks" msgstr "Webhooks" +#: apps/remix/app/components/general/billing-plans.tsx:27 +msgid "Weekly" +msgstr "" + #: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx:17 msgid "Welcome" msgstr "Bienvenido" @@ -6663,7 +6685,8 @@ msgstr "Escribe sobre el equipo" msgid "Write about yourself" msgstr "Escribe sobre ti mismo" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:59 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:59 +#: apps/remix/app/components/general/billing-plans.tsx:29 msgid "Yearly" msgstr "Anual" @@ -6695,7 +6718,7 @@ msgstr "Estás a punto de eliminar al siguiente usuario de <0>{teamName}." #. placeholder {0}: teamEmail.team.name #. placeholder {1}: teamEmail.team.url -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:97 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:97 msgid "You are about to revoke access for team <0>{0} ({1}) to use your email." msgstr "Estás a punto de revocar el acceso para el equipo <0>{0} ({1}) para usar tu correo electrónico." @@ -6703,6 +6726,10 @@ msgstr "Estás a punto de revocar el acceso para el equipo <0>{0} ({1}) para msgid "You are about to send this document to the recipients. Are you sure you want to continue?" msgstr "Está a punto de enviar este documento a los destinatarios. ¿Está seguro de que desea continuar?" +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:90 +msgid "You are currently on the <0>Free Plan." +msgstr "" + #: apps/remix/app/components/dialogs/team-member-update-dialog.tsx:147 msgid "You are currently updating <0>{teamMemberName}." msgstr "Actualmente estás actualizando <0>{teamMemberName}." @@ -6731,11 +6758,11 @@ msgstr "No estás autorizado para habilitar a este usuario." msgid "You can also copy and paste this link into your browser: {confirmationLink} (link expires in 1 hour)" msgstr "También puedes copiar y pegar este enlace en tu navegador: {confirmationLink} (el enlace expira en 1 hora)" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:35 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:35 msgid "You can choose to enable or disable your profile for public view." msgstr "Puedes elegir habilitar o deshabilitar tu perfil para la vista pública." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:42 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:42 msgid "You can choose to enable or disable your team profile for public view." msgstr "Puedes elegir habilitar o deshabilitar el perfil de tu equipo para la vista pública." @@ -6755,7 +6782,7 @@ msgstr "Puedes actualizar la URL del perfil actualizando la URL del equipo en la msgid "You can use the following variables in your message:" msgstr "Puede usar las siguientes variables en su mensaje:" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:69 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:69 msgid "You can view documents associated with this email and use this identity when sending documents." msgstr "Puedes ver documentos asociados a este correo electrónico y usar esta identidad al enviar documentos." @@ -6788,7 +6815,11 @@ msgstr "No puede cargar documentos en este momento." msgid "You cannot upload encrypted PDFs" msgstr "No puedes subir PDFs encriptados" -#: apps/remix/app/components/forms/token.tsx:134 +#: apps/remix/app/components/general/billing-portal-button.tsx:30 +msgid "You do not currently have a customer record, this should not happen. Please contact support for assistance." +msgstr "" + +#: apps/remix/app/components/forms/token.tsx:135 msgid "You do not have permission to create a token for this team" msgstr "No tiene permiso para crear un token para este equipo" @@ -6847,12 +6878,12 @@ msgstr "Has rechazado la invitación de <0>{0} para unirte a su equipo." msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it." msgstr "Has iniciado el documento {0} que requiere que {recipientActionVerb}." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:45 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:40 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:45 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:40 msgid "You have no webhooks yet. Your webhooks will be shown here once you create them." msgstr "Aún no tienes webhooks. Tus webhooks se mostrarán aquí una vez que los crees." -#: apps/remix/app/routes/_authenticated+/templates+/_index.tsx:76 +#: apps/remix/app/routes/_authenticated+/templates._index.tsx:76 msgid "You have not yet created any templates. To create a template please upload one." msgstr "Aún no has creado plantillas. Para crear una plantilla, por favor carga una." @@ -6883,6 +6914,7 @@ msgid "You have rejected the document '{documentName}'" msgstr "Ha rechazado el documento '{documentName}'" #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:102 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:17 msgid "You have rejected this document" msgstr "You have rejected this document" @@ -6903,7 +6935,7 @@ msgstr "Te has registrado con éxito. Por favor verifica tu cuenta haciendo clic msgid "You have successfully removed this user from the team." msgstr "Has eliminado a este usuario del equipo con éxito." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:37 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:37 msgid "You have successfully revoked access." msgstr "Has revocado el acceso con éxito." @@ -6920,12 +6952,12 @@ msgstr "Has actualizado a {teamMemberName}." msgid "You have verified your email address for <0>{0}." msgstr "Has verificado tu dirección de correo electrónico para <0>{0}." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:94 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:94 msgid "You must be an admin of this team to manage billing." msgstr "Debes ser un administrador de este equipo para gestionar la facturación." #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:53 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:55 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:53 #: apps/remix/app/components/dialogs/team-delete-dialog.tsx:52 msgid "You must enter '{deleteMessage}' to proceed" msgstr "Debes ingresar '{deleteMessage}' para continuar" @@ -6934,10 +6966,14 @@ msgstr "Debes ingresar '{deleteMessage}' para continuar" msgid "You must have at least one other team member to transfer ownership." msgstr "Debes tener al menos otro miembro del equipo para transferir la propiedad." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:118 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:118 msgid "You must set a profile URL before enabling your public profile." msgstr "Debes establecer una URL de perfil antes de habilitar tu perfil público." +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:52 +msgid "You need to be an admin to manage API tokens." +msgstr "" + #: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx:52 msgid "You need to be logged in as <0>{email} to view this page." msgstr "Debes iniciar sesión como <0>{email} para ver esta página." @@ -6990,6 +7026,10 @@ msgstr "Tu envío masivo ha sido iniciado. Recibirás una notificación por corr msgid "Your bulk send operation for template \"{templateName}\" has completed." msgstr "Tu operación de envío masivo para la plantilla \"{templateName}\" ha sido completada." +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:135 +msgid "Your current plan is past due. Please update your payment information." +msgstr "" + #: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx:248 msgid "Your direct signing templates" msgstr "Tus {0} plantillas de firma directa" @@ -7044,12 +7084,11 @@ msgstr "¡Tu correo electrónico ha sido confirmado con éxito! Ahora puedes usa #. placeholder {0}: teamEmail.team.name #. placeholder {1}: teamEmail.team.url -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:61 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:61 msgid "Your email is currently being used by team <0>{0} ({1})." msgstr "Tu correo electrónico está siendo utilizado actualmente por el equipo <0>{0} ({1})." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:79 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:44 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:63 msgid "Your existing tokens" msgstr "Tus tokens existentes" @@ -7092,7 +7131,7 @@ msgstr "Tu código de recuperación ha sido copiado en tu portapapeles." msgid "Your recovery codes are listed below. Please store them in a safe place." msgstr "Tus códigos de recuperación se enumeran a continuación. Por favor, guárdalos en un lugar seguro." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:78 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:78 msgid "Your subscription is currently active." msgstr "Tu suscripción está actualmente activa." @@ -7133,11 +7172,10 @@ msgstr "Tus plantillas han sido guardadas con éxito." msgid "Your token has expired!" msgstr "¡Tu token ha expirado!" -#: apps/remix/app/components/forms/token.tsx:272 +#: apps/remix/app/components/forms/token.tsx:273 msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!" msgstr "¡Tu token se creó con éxito! ¡Asegúrate de copiarlo porque no podrás verlo de nuevo!" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:85 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:50 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:69 msgid "Your tokens will be shown here once you create them." msgstr "Tus tokens se mostrarán aquí una vez que los crees." diff --git a/packages/lib/translations/fr/web.po b/packages/lib/translations/fr/web.po index 1526b53ba..a4d239c09 100644 --- a/packages/lib/translations/fr/web.po +++ b/packages/lib/translations/fr/web.po @@ -22,7 +22,7 @@ msgstr "" msgid " Enable direct link signing" msgstr "" -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:171 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:171 msgid " The events that will trigger a webhook to be sent to your URL." msgstr "" @@ -59,7 +59,7 @@ msgid "\"{placeholderEmail}\" on behalf of \"{0}\" has invited you to sign \"exa msgstr "\"{placeholderEmail}\" au nom de \"{0}\" vous a invité à signer \"exemple de document\"." #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:273 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:325 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:372 msgid "(You)" msgstr "" @@ -85,8 +85,8 @@ msgid "{0, plural, one {# Seat} other {# Seats}}" msgstr "{0, plural, one {# siège} other {# sièges}}" #. placeholder {0}: data.length -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:36 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:65 +#: apps/remix/app/components/general/teams/team-invitations.tsx:36 +#: apps/remix/app/components/general/teams/team-invitations.tsx:65 msgid "{0, plural, one {<0>You have <1>1 pending team invitation} other {<2>You have <3># pending team invitations}}" msgstr "{0, plural, one {<0>Vous avez <1>1 invitation d'équipe en attente} other {<2>Vous avez <3># invitations d'équipe en attente}}" @@ -96,12 +96,12 @@ msgid "{0, plural, one {1 matching field} other {# matching fields}}" msgstr "{0, plural, one {1 champ correspondant} other {# champs correspondants}}" #. placeholder {0}: recipients.length -#: apps/remix/app/routes/_authenticated+/documents+/$id.edit.tsx:122 +#: apps/remix/app/routes/_authenticated+/documents.$id.edit.tsx:122 msgid "{0, plural, one {1 Recipient} other {# Recipients}}" msgstr "{0, plural, one {1 Destinataire} other {# Destinataires}}" #. placeholder {0}: pendingRecipients.length -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:232 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:232 msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}" msgstr "{0, plural, one {En attente d'1 destinataire} other {En attente de # destinataires}}" @@ -161,7 +161,7 @@ msgid "{0} on behalf of \"{1}\" has invited you to {recipientActionVerb} the doc msgstr "{0} représentant \"{1}\" vous a invité à {recipientActionVerb} le document \"{2}\"." #. placeholder {0}: recipients.length -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:167 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:167 msgid "{0} Recipient(s)" msgstr "{0} Destinataire(s)" @@ -225,7 +225,7 @@ msgstr "{memberEmail} a rejoint l'équipe suivante" msgid "{memberEmail} left the following team" msgstr "{memberEmail} a quitté l'équipe suivante" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:65 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:65 msgid "{numberOfSeats, plural, one {# member} other {# members}}" msgstr "{numberOfSeats, plural, one {# membre} other {# membres}}" @@ -477,21 +477,21 @@ msgstr "<0>Vous êtes sur le point de terminer la signature de \"<1>{documentTit msgid "<0>You are about to complete viewing \"<1>{documentTitle}\".<2/> Are you sure?" msgstr "<0>Vous êtes sur le point de terminer la visualisation de \"<1>{documentTitle}\".<2/> Êtes-vous sûr ?" -#: apps/remix/app/components/forms/token.tsx:43 +#: apps/remix/app/components/forms/token.tsx:45 msgid "1 month" msgstr "1 mois" -#: apps/remix/app/components/forms/token.tsx:46 +#: apps/remix/app/components/forms/token.tsx:48 msgid "12 months" msgstr "12 mois" -#: apps/remix/app/components/forms/token.tsx:44 +#: apps/remix/app/components/forms/token.tsx:46 msgid "3 months" msgstr "3 mois" #: apps/remix/app/components/general/generic-error-layout.tsx:41 -msgid "404 Page not found" -msgstr "404 Page non trouvée" +msgid "404 not found" +msgstr "" #: apps/remix/app/routes/_profile+/_layout.tsx:102 msgid "404 Profile not found" @@ -505,11 +505,11 @@ msgstr "404 Équipe non trouvée" msgid "500 Internal Server Error" msgstr "" -#: apps/remix/app/components/forms/token.tsx:45 +#: apps/remix/app/components/forms/token.tsx:47 msgid "6 months" msgstr "6 mois" -#: apps/remix/app/components/forms/token.tsx:42 +#: apps/remix/app/components/forms/token.tsx:44 msgid "7 days" msgstr "7 jours" @@ -549,7 +549,7 @@ msgstr "Un moyen d'imprimer ou de télécharger des documents pour vos dossiers" msgid "A new member has joined your team" msgstr "Un nouveau membre a rejoint votre équipe" -#: apps/remix/app/components/forms/token.tsx:123 +#: apps/remix/app/components/forms/token.tsx:124 msgid "A new token was created successfully." msgstr "Un nouveau token a été créé avec succès." @@ -585,8 +585,8 @@ msgstr "Une demande pour l'utiliser votre e-mail a été initiée par {0} sur Do msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso" msgstr "Un secret qui sera envoyé à votre URL afin que vous puissiez vérifier que la demande a été envoyée par Documenso" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:191 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:192 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:191 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:192 msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso." msgstr "Un secret qui sera envoyé à votre URL afin que vous puissiez vérifier que la demande a été envoyée par Documenso." @@ -625,7 +625,7 @@ msgstr "Une URL unique pour identifier votre équipe" msgid "A verification email will be sent to the provided email." msgstr "Un e-mail de vérification sera envoyé à l'adresse e-mail fournie." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:146 +#: apps/remix/app/components/general/teams/team-invitations.tsx:146 #: packages/email/templates/team-transfer-request.tsx:82 #: packages/email/templates/team-invite.tsx:95 #: packages/email/templates/confirm-team-email.tsx:119 @@ -648,7 +648,7 @@ msgstr "Accepter la demande de transfert d'équipe sur Documenso" msgid "Acceptance and Consent" msgstr "Acceptation et consentement" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:126 +#: apps/remix/app/components/general/teams/team-invitations.tsx:126 msgid "Accepted team invitation" msgstr "Invitation d'équipe acceptée" @@ -696,8 +696,8 @@ msgstr "Action" msgid "Actions" msgstr "Actions" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:70 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:105 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:70 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:105 #: apps/remix/app/components/tables/user-settings-teams-page-table.tsx:64 msgid "Active" msgstr "Actif" @@ -728,11 +728,11 @@ msgstr "Ajouter tous les champs pertinents pour chaque destinataire." msgid "Add all relevant placeholders for each recipient." msgstr "Ajouter tous les espaces réservés pertinents pour chaque destinataire." -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:94 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:94 msgid "Add an authenticator to serve as a secondary authentication method for signing documents." msgstr "Ajouter un authentificateur pour servir de méthode d'authentification secondaire pour signer des documents." -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:89 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:89 msgid "Add an authenticator to serve as a secondary authentication method when signing in, or when signing documents." msgstr "Ajouter un authentificateur pour servir de méthode d'authentification secondaire lors de la connexion ou lors de la signature de documents." @@ -897,7 +897,7 @@ msgstr "Depuis toujours" msgid "Allow document recipients to reply directly to this email address" msgstr "Autoriser les destinataires du document à répondre directement à cette adresse e-mail" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:141 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:141 msgid "Allows authenticating using biometrics, password managers, hardware keys, etc." msgstr "Permet d'authentifier en utilisant des biométries, des gestionnaires de mots de passe, des clés matérielles, etc." @@ -930,7 +930,7 @@ msgid "An email requesting the transfer of this team has been sent." msgstr "Un e-mail demandant le transfert de cette équipe a été envoyé." #: apps/remix/app/components/general/claim-account.tsx:96 -#: apps/remix/app/components/forms/token.tsx:139 +#: apps/remix/app/components/forms/token.tsx:140 #: apps/remix/app/components/forms/signup.tsx:160 #: apps/remix/app/components/forms/reset-password.tsx:91 #: apps/remix/app/components/forms/password.tsx:89 @@ -1062,6 +1062,10 @@ msgstr "" msgid "An error occurred while signing the document." msgstr "Une erreur est survenue lors de la signature du document." +#: apps/remix/app/components/general/billing-plans.tsx:63 +msgid "An error occurred while trying to create a checkout session." +msgstr "" + #: apps/remix/app/components/general/template/template-edit-form.tsx:149 #: apps/remix/app/components/general/document/document-edit-form.tsx:205 msgid "An error occurred while updating the document settings." @@ -1096,7 +1100,7 @@ msgstr "" #: apps/remix/app/components/forms/profile.tsx:74 #: apps/remix/app/components/forms/avatar-image.tsx:94 #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:81 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:90 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:88 #: apps/remix/app/components/dialogs/team-transfer-dialog.tsx:114 #: apps/remix/app/components/dialogs/team-member-update-dialog.tsx:99 #: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx:154 @@ -1125,9 +1129,7 @@ msgstr "Toute source" msgid "Any Status" msgstr "Tout statut" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:43 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:55 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:19 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:26 #: apps/remix/app/components/general/settings-nav-mobile.tsx:84 #: apps/remix/app/components/general/settings-nav-desktop.tsx:82 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:94 @@ -1173,11 +1175,11 @@ msgstr "Approval en cours" msgid "Are you sure you want to complete the document? This action cannot be undone. Please ensure that you have completed prefilling all relevant fields before proceeding." msgstr "" -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:122 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:120 msgid "Are you sure you want to delete this token?" msgstr "Êtes-vous sûr de vouloir supprimer ce token ?" -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:118 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:127 msgid "Are you sure you want to reject this document? This action cannot be undone." msgstr "Êtes-vous sûr de vouloir rejeter ce document ? Cette action ne peut pas être annulée." @@ -1189,7 +1191,7 @@ msgstr "Êtes-vous sûr de vouloir supprimer la clé de passe <0>{passkeyName}{deleteMessage}" msgstr "Confirmer en tapant <0>{deleteMessage}" #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:133 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:145 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:143 msgid "Confirm by typing: <0>{deleteMessage}" msgstr "Confirmer en tapant : <0>{deleteMessage}" @@ -1773,7 +1776,7 @@ msgstr "Copier le lien partageable" msgid "Copy Signing Links" msgstr "Copier les liens de signature" -#: apps/remix/app/components/forms/token.tsx:283 +#: apps/remix/app/components/forms/token.tsx:284 msgid "Copy token" msgstr "Copier le token" @@ -1851,8 +1854,8 @@ msgstr "Créer une équipe" msgid "Create the document as pending and ready to sign." msgstr "Créer le document comme en attente et prêt à signer." -#: apps/remix/app/components/forms/token.tsx:243 -#: apps/remix/app/components/forms/token.tsx:252 +#: apps/remix/app/components/forms/token.tsx:244 +#: apps/remix/app/components/forms/token.tsx:253 msgid "Create token" msgstr "Créer un token" @@ -1889,7 +1892,7 @@ msgstr "Créé" msgid "Created At" msgstr "Créé le" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:90 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:90 msgid "Created by" msgstr "Créé par" @@ -1900,10 +1903,9 @@ msgstr "Créé le" #. placeholder {0}: i18n.date(webhook.createdAt, DateTime.DATETIME_FULL) #. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL) -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:88 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:99 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:83 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:64 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:88 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:83 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:83 msgid "Created on {0}" msgstr "Créé le {0}" @@ -1923,6 +1925,10 @@ msgstr "Le mot de passe actuel est incorrect." msgid "Current recipients:" msgstr "Destinataires actuels :" +#: apps/remix/app/components/general/billing-plans.tsx:26 +msgid "Daily" +msgstr "" + #: apps/remix/app/components/general/app-command-menu.tsx:261 msgid "Dark Mode" msgstr "Mode sombre" @@ -1935,7 +1941,7 @@ msgstr "Mode sombre" msgid "Date" msgstr "Date" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:96 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:96 msgid "Date created" msgstr "Date de création" @@ -1944,12 +1950,12 @@ msgstr "Date de création" msgid "Date Format" msgstr "Format de date" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:184 +#: apps/remix/app/components/general/teams/team-invitations.tsx:184 #: packages/email/templates/team-invite.tsx:101 msgid "Decline" msgstr "Décliner" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:163 +#: apps/remix/app/components/general/teams/team-invitations.tsx:163 msgid "Declined team invitation" msgstr "Invitation d'équipe refusée" @@ -1965,17 +1971,16 @@ msgstr "Visibilité par défaut du document" msgid "delete" msgstr "supprimer" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:100 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:115 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:95 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:80 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:100 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:95 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:103 #: apps/remix/app/components/tables/templates-table-action-dropdown.tsx:109 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:182 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:216 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:175 #: apps/remix/app/components/general/document/document-page-view-dropdown.tsx:144 #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:102 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:114 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:112 #: apps/remix/app/components/dialogs/template-delete-dialog.tsx:87 #: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx:112 #: apps/remix/app/components/dialogs/team-delete-dialog.tsx:165 @@ -1986,7 +1991,7 @@ msgstr "Supprimer" #. placeholder {0}: webhook.webhookUrl #. placeholder {0}: token.name #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:49 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:51 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:49 msgid "delete {0}" msgstr "supprimer {0}" @@ -2020,7 +2025,7 @@ msgstr "Supprimer le document" msgid "Delete passkey" msgstr "Supprimer la clé d'accès" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:195 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:195 #: apps/remix/app/components/dialogs/team-delete-dialog.tsx:116 msgid "Delete team" msgstr "Supprimer l'équipe" @@ -2139,8 +2144,8 @@ msgstr "Désactiver le Compte" msgid "Disable Two Factor Authentication before deleting your account." msgstr "Désactiver l'authentification à deux facteurs avant de supprimer votre compte." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:74 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:69 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:74 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:69 msgid "Disabled" msgstr "Désactivé" @@ -2152,7 +2157,7 @@ msgstr "Désactiver la signature de lien direct empêchera quiconque d'accéder msgid "Disabling the user results in the user not being able to use the account. It also disables all the related contents such as subscription, webhooks, teams, and API keys." msgstr "Désactiver l'utilisateur a pour résultat que l'utilisateur ne peut pas utiliser le compte. Cela désactive également tous les contenus associés tels que l'abonnement, les webhooks, les équipes et les clés API." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:74 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:74 msgid "Display your name and email in documents" msgstr "Afficher votre nom et votre email dans les documents" @@ -2172,7 +2177,7 @@ msgstr "Voulez-vous dupliquer ce modèle ?" msgid "Documenso will delete <0>all of your documents, along with all of your completed documents, signatures, and all other resources belonging to your Account." msgstr "Documenso supprimera <0>tous vos documents, ainsi que tous vos documents complétés, signatures, et toutes les autres ressources appartenant à votre compte." -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:129 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:129 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:36 msgid "Document" msgstr "Document" @@ -2250,7 +2255,7 @@ msgstr "Document créé en utilisant un <0>lien direct" msgid "Document Creation" msgstr "Création de document" -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:175 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:175 #: apps/remix/app/components/dialogs/document-delete-dialog.tsx:58 #: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx:48 #: packages/lib/utils/document-audit-logs.ts:305 @@ -2282,13 +2287,13 @@ msgstr "Document dupliqué" msgid "Document external ID updated" msgstr "ID externe du document mis à jour" -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:186 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:186 #: apps/remix/app/components/general/document/document-history-sheet.tsx:102 msgid "Document history" msgstr "Historique du document" #: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx:86 -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:82 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:82 msgid "Document ID" msgstr "ID du document" @@ -2337,6 +2342,7 @@ msgid "Document re-sent" msgstr "Document renvoyé" #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:97 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:12 #: packages/email/template-components/template-document-rejected.tsx:21 msgid "Document Rejected" msgstr "Document Rejeté" @@ -2362,11 +2368,11 @@ msgstr "Authentification de signature de document mise à jour" msgid "Document signing process will be cancelled" msgstr "Le processus de signature du document sera annulé" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:86 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:86 msgid "Document status" msgstr "Statut du document" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:78 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:78 msgid "Document title" msgstr "Titre du document" @@ -2399,9 +2405,9 @@ msgid "Document will be permanently deleted" msgstr "Le document sera supprimé de manière permanente" #: apps/remix/app/routes/_profile+/p.$url.tsx:163 -#: apps/remix/app/routes/_authenticated+/documents+/_index.tsx:111 -#: apps/remix/app/routes/_authenticated+/documents+/$id.edit.tsx:99 -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:138 +#: apps/remix/app/routes/_authenticated+/documents._index.tsx:111 +#: apps/remix/app/routes/_authenticated+/documents.$id.edit.tsx:99 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:138 #: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx:69 #: apps/remix/app/components/tables/admin-dashboard-users-table.tsx:89 #: apps/remix/app/components/general/user-profile-timur.tsx:56 @@ -2413,7 +2419,7 @@ msgstr "Le document sera supprimé de manière permanente" msgid "Documents" msgstr "Documents" -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:218 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:218 msgid "Documents created from template" msgstr "Documents créés à partir du modèle" @@ -2494,8 +2500,8 @@ msgstr "En raison d'une facture impayée, votre équipe a été restreinte. Veui msgid "Duplicate" msgstr "Dupliquer" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:95 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:90 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:95 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:90 #: apps/remix/app/components/tables/templates-table-action-dropdown.tsx:69 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:116 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:145 @@ -2506,12 +2512,12 @@ msgstr "Dupliquer" msgid "Edit" msgstr "Modifier" -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:135 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:135 msgid "Edit Template" msgstr "Modifier le modèle" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:93 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:90 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:93 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:90 msgid "Edit webhook" msgstr "Modifier le webhook" @@ -2533,7 +2539,7 @@ msgstr "Divulgation de signature électronique" #: apps/remix/app/components/forms/signin.tsx:318 #: apps/remix/app/components/forms/profile.tsx:108 #: apps/remix/app/components/forms/forgot-password.tsx:77 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:362 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:409 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:405 #: apps/remix/app/components/dialogs/template-use-dialog.tsx:275 #: apps/remix/app/components/dialogs/template-use-dialog.tsx:282 @@ -2641,10 +2647,10 @@ msgstr "Activer la signature dactylographiée" msgid "Enable Typed Signatures" msgstr "Activer les signatures tapées" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:74 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:135 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:69 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:134 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:74 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:135 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:69 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:134 #: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx:128 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:159 msgid "Enabled" @@ -2749,13 +2755,12 @@ msgstr "Tout le monde a signé ! Vous recevrez une copie par email du document s msgid "Exceeded timeout" msgstr "Délai dépassé" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:118 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:118 msgid "Expired" msgstr "Expiré" #. placeholder {0}: i18n.date(token.expires, DateTime.DATETIME_FULL) -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:103 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:68 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:89 msgid "Expires on {0}" msgstr "Expire le {0}" @@ -2776,8 +2781,8 @@ msgstr "Échec de l'enregistrement des paramètres." msgid "Failed to update recipient" msgstr "Échec de la mise à jour du destinataire" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:81 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:78 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:81 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:78 msgid "Failed to update webhook" msgstr "Échec de la mise à jour du webhook" @@ -2870,7 +2875,7 @@ msgstr "Signature gratuite" #: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx:323 #: apps/remix/app/components/forms/signup.tsx:309 #: apps/remix/app/components/forms/profile.tsx:96 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:347 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:394 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:390 msgid "Full Name" msgstr "Nom complet" @@ -2947,7 +2952,7 @@ msgstr "t'a invité à voir ce document" msgid "Having an assistant as the last signer means they will be unable to take any action as there are no subsequent signers to assist." msgstr "" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:277 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:324 msgid "Help complete the document for other signers." msgstr "" @@ -2955,15 +2960,15 @@ msgstr "" msgid "Here you can edit your personal details." msgstr "Ici, vous pouvez modifier vos informations personnelles." -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:68 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:68 msgid "Here you can manage your password and security settings." msgstr "Ici, vous pouvez gérer votre mot de passe et vos paramètres de sécurité." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:41 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:41 msgid "Here you can set preferences and defaults for branding." msgstr "Ici, vous pouvez définir des préférences et des valeurs par défaut pour le branding." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:32 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:32 msgid "Here you can set preferences and defaults for your team." msgstr "Ici, vous pouvez définir des préférences et des valeurs par défaut pour votre équipe." @@ -2983,7 +2988,7 @@ msgstr "Bonjour, {userName}," msgid "Hi, {userName} <0>({userEmail})" msgstr "Bonjour, {userName} <0>({userEmail})" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:164 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:164 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:175 #: apps/remix/app/components/dialogs/document-delete-dialog.tsx:196 msgid "Hide" @@ -3018,7 +3023,7 @@ msgid "I am the owner of this document" msgstr "Je suis le propriétaire de ce document" #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:166 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:179 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:177 msgid "I'm sure! Delete it" msgstr "Je suis sûr ! Supprimez-le" @@ -3198,7 +3203,7 @@ msgstr "7 derniers jours" msgid "Last modified" msgstr "Dernière modification" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:102 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:102 msgid "Last updated" msgstr "Dernière mise à jour" @@ -3244,7 +3249,7 @@ msgstr "Vous voulez avoir votre propre profil public avec des accords ?" msgid "Link expires in 1 hour." msgstr "Le lien expire dans 1 heure." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:225 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:225 msgid "Link template" msgstr "Modèle de lien" @@ -3253,8 +3258,8 @@ msgid "Links Generated" msgstr "Liens générés" #. placeholder {0}: webhook.eventTriggers .map((trigger) => toFriendlyWebhookEventName(trigger)) .join(', ') -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:79 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:74 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:79 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:74 msgid "Listening to {0}" msgstr "Écoute {0}" @@ -3297,14 +3302,18 @@ msgstr "Gérer" msgid "Manage {0}'s profile" msgstr "Gérer le profil de {0}" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/index.tsx:24 +#: apps/remix/app/routes/_authenticated+/settings+/teams.tsx:23 msgid "Manage all teams you are currently associated with." msgstr "Gérer toutes les équipes avec lesquelles vous êtes actuellement associé." -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:183 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:183 msgid "Manage and view template" msgstr "Gérer et afficher le modèle" +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:146 +msgid "Manage billing" +msgstr "" + #: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx:338 msgid "Manage details for this public template" msgstr "Gérer les détails de ce modèle public" @@ -3317,7 +3326,7 @@ msgstr "Gérer le lien direct" msgid "Manage documents" msgstr "Gérer les documents" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:149 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:149 msgid "Manage passkeys" msgstr "Gérer les clés d'accès" @@ -3325,11 +3334,15 @@ msgstr "Gérer les clés d'accès" msgid "Manage subscription" msgstr "Gérer l'abonnement" +#: apps/remix/app/components/general/billing-portal-button.tsx:45 +msgid "Manage Subscription" +msgstr "" + #: apps/remix/app/routes/_authenticated+/admin+/subscriptions.tsx:28 msgid "Manage subscriptions" msgstr "Gérer les abonnements" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:93 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:93 msgid "Manage team subscription." msgstr "Gérer l'abonnement de l'équipe." @@ -3341,7 +3354,7 @@ msgstr "Gérer les équipes" msgid "Manage the direct link signing for this template" msgstr "Gérer la signature de lien direct pour ce modèle" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:53 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:53 msgid "Manage the members or invite new members." msgstr "Gérer les membres ou inviter de nouveaux membres." @@ -3349,7 +3362,7 @@ msgstr "Gérer les membres ou inviter de nouveaux membres." msgid "Manage users" msgstr "Gérer les utilisateurs" -#: apps/remix/app/routes/_authenticated+/settings+/security+/passkeys+/index.tsx:20 +#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx:20 msgid "Manage your passkeys." msgstr "Gérer vos clés d'accès." @@ -3390,7 +3403,7 @@ msgstr "Membre" msgid "Member Since" msgstr "Membre depuis" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:52 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:52 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:84 #: apps/remix/app/components/general/teams/team-settings-nav-desktop.tsx:75 msgid "Members" @@ -3410,7 +3423,8 @@ msgstr "" msgid "Modify recipients" msgstr "Modifier les destinataires" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:60 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:60 +#: apps/remix/app/components/general/billing-plans.tsx:28 msgid "Monthly" msgstr "Mensuel" @@ -3445,7 +3459,7 @@ msgstr "Déplacer vers l'équipe" msgid "Moving..." msgstr "Déplacement..." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:36 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:36 msgid "My templates" msgstr "Mes modèles" @@ -3491,7 +3505,7 @@ msgstr "Nécessite une visualisation" msgid "Never" msgstr "Jamais" -#: apps/remix/app/components/forms/token.tsx:217 +#: apps/remix/app/components/forms/token.tsx:218 msgid "Never expire" msgstr "Ne jamais expirer" @@ -3509,7 +3523,7 @@ msgid "New Template" msgstr "Nouveau modèle" #: apps/remix/app/components/forms/signup.tsx:515 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:418 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:465 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:460 msgid "Next" msgstr "Suivant" @@ -3523,10 +3537,11 @@ msgid "No active drafts" msgstr "Pas de brouillons actifs" #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:113 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:28 msgid "No further action is required from you at this time." msgstr "Aucune autre action n'est requise de votre part pour le moment." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:49 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:49 msgid "No payment required" msgstr "Aucun paiement requis" @@ -3645,21 +3660,17 @@ msgstr "au nom de \"{0}\" vous a invité à voir ce document" msgid "On this page, you can create a new webhook." msgstr "Sur cette page, vous pouvez créer un nouveau webhook." -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:23 -msgid "On this page, you can create new API tokens and manage the existing ones. <0/>Also see our <1>Documentation." -msgstr "Sur cette page, vous pouvez créer de nouveaux tokens API et gérer les existants. <0/>Voir aussi notre <1>Documentation." +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:28 +msgid "On this page, you can create and manage API tokens. See our <0>Documentation for more information." +msgstr "" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:59 -msgid "On this page, you can create new API tokens and manage the existing ones. <0/>You can view our swagger docs <1>here" -msgstr "Sur cette page, vous pouvez créer de nouveaux tokens API et gérer les existants. <0/>Vous pouvez voir notre documentation swagger <1>ici" - -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:32 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:27 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:32 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:27 msgid "On this page, you can create new Webhooks and manage the existing ones." msgstr "Sur cette page, vous pouvez créer de nouveaux webhooks et gérer ceux existants." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:94 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:91 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:94 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:91 msgid "On this page, you can edit the webhook and its settings." msgstr "Sur cette page, vous pouvez modifier le webhook et ses paramètres." @@ -3765,8 +3776,8 @@ msgstr "Nom de la clé d'accès" msgid "Passkey Re-Authentication" msgstr "Ré-authentification par clé d'accès" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:137 -#: apps/remix/app/routes/_authenticated+/settings+/security+/passkeys+/index.tsx:19 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:137 +#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx:19 msgid "Passkeys" msgstr "Clés d'accès" @@ -3824,7 +3835,7 @@ msgstr "Un paiement est requis pour finaliser la création de votre équipe." msgid "Payment overdue" msgstr "Paiement en retard" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:76 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:76 #: apps/remix/app/components/tables/user-settings-teams-page-table.tsx:70 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:203 #: apps/remix/app/components/general/document/document-status.tsx:22 @@ -3846,7 +3857,7 @@ msgstr "Documents en attente" msgid "Pending Documents" msgstr "Documents en attente" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:61 +#: apps/remix/app/components/general/teams/team-invitations.tsx:61 msgid "Pending invitations" msgstr "Invitations en attente" @@ -3929,7 +3940,7 @@ msgstr "Veuillez confirmer votre adresse email" msgid "Please contact support if you would like to revert this action." msgstr "Veuillez contacter le support si vous souhaitez annuler cette action." -#: apps/remix/app/components/forms/token.tsx:168 +#: apps/remix/app/components/forms/token.tsx:169 msgid "Please enter a meaningful name for your token. This will help you identify it later." msgstr "Veuillez entrer un nom significatif pour votre token. Cela vous aidera à l'identifier plus tard." @@ -3958,7 +3969,7 @@ msgstr "Veuillez noter que cette action est <0>irréversible. Une fois confi msgid "Please note that this action is irreversible. Once confirmed, your template will be permanently deleted." msgstr "Veuillez noter que cette action est irréversible. Une fois confirmée, votre modèle sera définitivement supprimé." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:126 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:124 msgid "Please note that this action is irreversible. Once confirmed, your token will be permanently deleted." msgstr "Veuillez noter que cette action est irréversible. Une fois confirmée, votre token sera définitivement supprimé." @@ -4047,11 +4058,11 @@ msgstr "Les modèles privés ne peuvent être modifiés et consultés que par vo msgid "Profile" msgstr "Profil" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:193 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:193 msgid "Profile is currently <0>hidden." msgstr "Le profil est actuellement <0>caché." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:181 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:181 msgid "Profile is currently <0>visible." msgstr "Le profil est actuellement <0>visible." @@ -4065,7 +4076,7 @@ msgstr "Profil mis à jour" msgid "Public" msgstr "Public" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:34 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:34 #: apps/remix/app/components/general/settings-nav-mobile.tsx:45 #: apps/remix/app/components/general/settings-nav-desktop.tsx:43 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:71 @@ -4137,7 +4148,7 @@ msgstr "Une nouvelle authentification est requise pour signer ce champ" msgid "Receives copy" msgstr "Recevoir une copie" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:160 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:160 #: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx:54 msgid "Recent activity" msgstr "Activité récente" @@ -4195,7 +4206,7 @@ msgstr "Les destinataires conservent toujours leur copie du document" msgid "Recovery code copied" msgstr "Code de récupération copié" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:116 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:116 msgid "Recovery codes" msgstr "Codes de récupération" @@ -4213,9 +4224,9 @@ msgstr "URL de redirection" msgid "Registration Successful" msgstr "Inscription réussie" -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:107 -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:114 -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:160 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:116 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:123 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:169 #: packages/email/template-components/template-document-invite.tsx:98 msgid "Reject Document" msgstr "Rejeter le Document" @@ -4279,7 +4290,7 @@ msgstr "Supprimer l'adresse e-mail de l'équipe" msgid "Remove team member" msgstr "Supprimer le membre de l'équipe" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:69 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:69 msgid "Renews: {formattedDate}" msgstr "Renouvelle : {formattedDate}" @@ -4378,11 +4389,11 @@ msgstr "Retour à l'accueil" msgid "Return to sign in" msgstr "Retour à la connexion" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:117 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:117 msgid "Revoke" msgstr "Révoquer" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:86 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:86 msgid "Revoke access" msgstr "Révoquer l'accès" @@ -4417,7 +4428,7 @@ msgstr "Sauvegarder" msgid "Save Template" msgstr "Sauvegarder le modèle" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:63 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:63 #: apps/remix/app/components/tables/user-settings-teams-page-table.tsx:57 #: apps/remix/app/components/tables/documents-table-sender-filter.tsx:58 #: apps/remix/app/components/general/app-nav-desktop.tsx:84 @@ -4441,18 +4452,18 @@ msgstr "Rechercher des documents..." msgid "Search languages..." msgstr "Rechercher des langues..." -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:185 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:185 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:210 msgid "Secret" msgstr "Secret" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:67 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:67 #: apps/remix/app/components/general/settings-nav-mobile.tsx:71 #: apps/remix/app/components/general/settings-nav-desktop.tsx:69 msgid "Security" msgstr "Sécurité" -#: apps/remix/app/routes/_authenticated+/settings+/security+/activity+/index.tsx:18 +#: apps/remix/app/routes/_authenticated+/settings+/security.activity.tsx:18 msgid "Security activity" msgstr "Activité de sécurité" @@ -4616,7 +4627,7 @@ msgstr "Partager le lien" msgid "Share your signing experience!" msgstr "Partagez votre expérience de signature !" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:172 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:172 msgid "Show" msgstr "Afficher" @@ -4629,11 +4640,11 @@ msgstr "Afficher des informations supplémentaires" msgid "Show advanced settings" msgstr "Afficher les paramètres avancés" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:37 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:37 msgid "Show templates in your public profile for your audience to sign and get started quickly" msgstr "Afficher des modèles dans votre profil public pour que votre audience puisse signer et commencer rapidement" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:44 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:44 msgid "Show templates in your team public profile for your audience to sign and get started quickly" msgstr "Afficher des modèles dans le profil public de votre équipe pour que votre audience puisse signer et commencer rapidement" @@ -4664,7 +4675,7 @@ msgstr "Signer comme {0} <0>({1})" msgid "Sign as<0>{0} <1>({1})" msgstr "Signer comme<0>{0} <1>({1})" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:254 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:301 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:358 msgid "Sign document" msgstr "Signer le document" @@ -4697,7 +4708,7 @@ msgstr "Connectez-vous à votre compte" msgid "Sign Out" msgstr "Déconnexion" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:279 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:326 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:379 msgid "Sign the document to complete the process." msgstr "Signez le document pour terminer le processus." @@ -4721,7 +4732,7 @@ msgstr "S'inscrire avec OIDC" #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:342 #: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx:335 #: apps/remix/app/components/forms/profile.tsx:118 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:376 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:423 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:420 #: packages/ui/primitives/template-flow/add-template-fields.tsx:711 #: packages/ui/primitives/document-flow/types.ts:49 @@ -4736,7 +4747,7 @@ msgstr "ID de signature" #: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx:297 #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:366 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:402 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:449 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:446 msgid "Signature is too small. Please provide a more complete signature." msgstr "La signature est trop petite. Veuillez fournir une signature plus grande." @@ -4789,7 +4800,7 @@ msgstr "Certificat de signature fourni par" msgid "Signing Complete!" msgstr "Signature Complète !" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:292 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:339 msgid "Signing for" msgstr "" @@ -4841,10 +4852,7 @@ msgstr "Certains signataires n'ont pas été assignés à un champ de signature. #: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx:56 #: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx:88 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:132 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:169 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:43 -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:133 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:133 #: apps/remix/app/components/tables/user-settings-pending-teams-table-actions.tsx:34 #: apps/remix/app/components/tables/team-settings-member-invites-table.tsx:62 #: apps/remix/app/components/tables/team-settings-member-invites-table.tsx:79 @@ -4852,7 +4860,12 @@ msgstr "Certains signataires n'ont pas été assignés à un champ de signature. #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:98 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:95 #: apps/remix/app/components/tables/documents-table-action-button.tsx:73 +#: apps/remix/app/components/general/billing-portal-button.tsx:35 +#: apps/remix/app/components/general/billing-plans.tsx:62 #: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx:52 +#: apps/remix/app/components/general/teams/team-invitations.tsx:132 +#: apps/remix/app/components/general/teams/team-invitations.tsx:169 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:43 #: apps/remix/app/components/general/teams/team-email-dropdown.tsx:38 #: apps/remix/app/components/general/teams/team-billing-portal-button.tsx:28 #: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx:34 @@ -4864,7 +4877,7 @@ msgstr "Certains signataires n'ont pas été assignés à un champ de signature. #: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx:24 #: apps/remix/app/components/general/direct-template/direct-template-page.tsx:119 #: apps/remix/app/components/forms/team-branding-preferences-form.tsx:106 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:154 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:167 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:260 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:103 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:128 @@ -4914,12 +4927,11 @@ msgstr "Quelque chose a mal tourné lors de la mise à jour de l'abonnement de l msgid "Something went wrong!" msgstr "Quelque chose a mal tourné !" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:46 #: packages/ui/primitives/data-table.tsx:134 msgid "Something went wrong." msgstr "Quelque chose a mal tourné." -#: apps/remix/app/components/forms/token.tsx:136 +#: apps/remix/app/components/forms/token.tsx:137 msgid "Something went wrong. Please try again later." msgstr "Quelque chose a mal tourné. Veuillez réessayer plus tard." @@ -4970,6 +4982,10 @@ msgstr "Soumettre" msgid "Submitting..." msgstr "" +#: apps/remix/app/components/general/billing-plans.tsx:129 +msgid "Subscribe" +msgstr "" + #: apps/remix/app/components/tables/admin-dashboard-users-table.tsx:78 msgid "Subscription" msgstr "Abonnement" @@ -4978,9 +4994,6 @@ msgstr "Abonnement" msgid "Subscriptions" msgstr "Abonnements" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:125 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:162 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:36 #: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx:54 #: apps/remix/app/components/tables/user-settings-pending-teams-table-actions.tsx:28 #: apps/remix/app/components/tables/team-settings-member-invites-table.tsx:56 @@ -4989,6 +5002,9 @@ msgstr "Abonnements" #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:90 #: apps/remix/app/components/general/verify-email-banner.tsx:46 #: apps/remix/app/components/general/teams/team-transfer-status.tsx:41 +#: apps/remix/app/components/general/teams/team-invitations.tsx:125 +#: apps/remix/app/components/general/teams/team-invitations.tsx:162 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:36 #: apps/remix/app/components/general/teams/team-email-dropdown.tsx:31 #: apps/remix/app/components/forms/team-update-form.tsx:65 #: apps/remix/app/components/forms/public-profile-form.tsx:79 @@ -5045,12 +5061,12 @@ msgstr "L'équipe \"{0}\" a été supprimée sur Documenso" msgid "Team checkout" msgstr "Vérification de l'équipe" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:65 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:144 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:65 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:144 msgid "Team email" msgstr "Adresse e-mail de l'équipe" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:57 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:57 msgid "Team Email" msgstr "E-mail d'équipe" @@ -5130,11 +5146,11 @@ msgstr "Le transfert de propriété de l'équipe a déjà été effectué !" msgid "Team ownership transferred!" msgstr "Propriété de l'équipe transférée !" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:31 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:31 msgid "Team Preferences" msgstr "Préférences de l'équipe" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:41 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:41 msgid "Team Public Profile" msgstr "Profil public de l'équipe" @@ -5142,11 +5158,11 @@ msgstr "Profil public de l'équipe" msgid "Team settings" msgstr "Paramètres de l'équipe" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_layout.tsx:39 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx:39 msgid "Team Settings" msgstr "Paramètres de l'équipe" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:43 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:43 msgid "Team templates" msgstr "Modèles d'équipe" @@ -5163,7 +5179,7 @@ msgstr "Demande de transfert d'équipe expirée" msgid "Team URL" msgstr "URL de l'équipe" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/index.tsx:23 +#: apps/remix/app/routes/_authenticated+/settings+/teams.tsx:22 #: apps/remix/app/components/general/settings-nav-mobile.tsx:58 #: apps/remix/app/components/general/settings-nav-desktop.tsx:56 #: apps/remix/app/components/general/menu-switcher.tsx:155 @@ -5175,8 +5191,8 @@ msgstr "Équipes" msgid "Teams restricted" msgstr "Équipes restreintes" -#: apps/remix/app/routes/_authenticated+/templates+/$id.edit.tsx:71 -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:166 +#: apps/remix/app/routes/_authenticated+/templates.$id.edit.tsx:71 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:166 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:37 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:140 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:220 @@ -5221,8 +5237,8 @@ msgstr "Modèle enregistré" msgid "Template title" msgstr "Titre du modèle" -#: apps/remix/app/routes/_authenticated+/templates+/_index.tsx:56 -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:102 +#: apps/remix/app/routes/_authenticated+/templates._index.tsx:56 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:102 #: apps/remix/app/components/general/app-nav-mobile.tsx:35 #: apps/remix/app/components/general/app-nav-desktop.tsx:21 #: apps/remix/app/components/general/app-command-menu.tsx:203 @@ -5309,6 +5325,7 @@ msgid "The document owner has been notified of this rejection. No further action msgstr "Le propriétaire du document a été informé de ce rejet. Aucune action supplémentaire n'est requise de votre part pour le moment. Le propriétaire du document peut vous contacter pour toute question concernant ce rejet." #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:106 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:21 msgid "The document owner has been notified of your decision. They may contact you with further instructions if necessary." msgstr "Le propriétaire du document a été informé de votre décision. Il peut vous contacter pour des instructions supplémentaires si nécessaire." @@ -5332,7 +5349,7 @@ msgstr "Le nom du document" msgid "The email or password provided is incorrect" msgstr "" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:172 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:172 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:196 msgid "The events that will trigger a webhook to be sent to your URL." msgstr "Les événements qui déclencheront un webhook à envoyer à votre URL." @@ -5464,11 +5481,11 @@ msgstr "Le modèle a été déplacé avec succès vers l'équipe sélectionnée. msgid "The template will be removed from your profile" msgstr "Le modèle sera retiré de votre profil" -#: apps/remix/app/components/forms/token.tsx:102 +#: apps/remix/app/components/forms/token.tsx:103 msgid "The token was copied to your clipboard." msgstr "Le token a été copié dans votre presse-papiers." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:83 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:81 msgid "The token was deleted successfully." msgstr "Le token a été supprimé avec succès." @@ -5480,8 +5497,8 @@ msgstr "Le token que vous avez utilisé pour réinitialiser votre mot de passe a msgid "The two-factor authentication code provided is incorrect" msgstr "" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:121 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:120 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:121 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:120 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:145 msgid "The URL for Documenso to send webhook events to." msgstr "L'URL pour Documenso pour envoyer des événements webhook." @@ -5490,8 +5507,8 @@ msgstr "L'URL pour Documenso pour envoyer des événements webhook." msgid "The webhook has been successfully deleted." msgstr "Le webhook a été supprimé avec succès." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:74 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:71 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:74 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:71 msgid "The webhook has been updated successfully." msgstr "Le webhook a été mis à jour avec succès." @@ -5507,7 +5524,7 @@ msgstr "Il n'y a pas de brouillons actifs pour le moment. Vous pouvez téléchar msgid "There are no completed documents yet. Documents that you have created or received will appear here once completed." msgstr "Il n'y a pas encore de documents complétés. Les documents que vous avez créés ou reçus apparaîtront ici une fois complétés." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:69 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:69 msgid "They have permission on your behalf to:" msgstr "Ils ont la permission en votre nom de:" @@ -5561,11 +5578,11 @@ msgstr "Ce document a été annulé par le propriétaire et n'est plus disponibl msgid "This document has been cancelled by the owner." msgstr "Ce document a été annulé par le propriétaire." -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:221 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:221 msgid "This document has been signed by all recipients" msgstr "Ce document a été signé par tous les destinataires" -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:224 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:224 msgid "This document is currently a draft and has not been sent" msgstr "Ce document est actuellement un brouillon et n'a pas été envoyé" @@ -5649,7 +5666,7 @@ msgstr "Cette session a expiré. Veuillez réessayer." msgid "This signer has already signed the document." msgstr "Ce signataire a déjà signé le document." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:199 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:199 msgid "This team, and any associated data excluding billing invoices will be permanently deleted." msgstr "Cette équipe, et toutes les données associées à l'exception des factures de facturation, seront définitivement supprimées." @@ -5695,7 +5712,7 @@ msgstr "Cela remplacera tous les paramètres globaux." msgid "Time" msgstr "Temps" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:108 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:108 msgid "Time zone" msgstr "Fuseau horaire" @@ -5762,15 +5779,15 @@ msgstr "Pour continuer, veuillez définir au moins une valeur pour le champ {0}. msgid "To use our electronic signature service, you must have access to:" msgstr "Pour utiliser notre service de signature électronique, vous devez avoir accès à :" -#: apps/remix/app/components/embed/embed-authentication-required.tsx:24 +#: apps/remix/app/components/embed/embed-authentication-required.tsx:30 msgid "To view this document you need to be signed into your account, please sign in to continue." msgstr "Pour afficher ce document, vous devez être connecté à votre compte, veuillez vous connecter pour continuer." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:187 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:187 msgid "Toggle the switch to hide your profile from the public." msgstr "Basculer l'interrupteur pour cacher votre profil du public." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:199 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:199 msgid "Toggle the switch to show your profile to the public." msgstr "Basculer l'interrupteur pour afficher votre profil au public." @@ -5778,24 +5795,23 @@ msgstr "Basculer l'interrupteur pour afficher votre profil au public." msgid "Token" msgstr "Jeton" -#: apps/remix/app/components/forms/token.tsx:101 +#: apps/remix/app/components/forms/token.tsx:102 msgid "Token copied to clipboard" msgstr "Token copié dans le presse-papiers" -#: apps/remix/app/components/forms/token.tsx:122 +#: apps/remix/app/components/forms/token.tsx:123 msgid "Token created" msgstr "Token créé" -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:82 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:80 msgid "Token deleted" msgstr "Token supprimé" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:107 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:72 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:95 msgid "Token doesn't have an expiration date" msgstr "Le token n'a pas de date d'expiration" -#: apps/remix/app/components/forms/token.tsx:186 +#: apps/remix/app/components/forms/token.tsx:187 msgid "Token expiration date" msgstr "Date d'expiration du token" @@ -5803,7 +5819,7 @@ msgstr "Date d'expiration du token" msgid "Token has expired. Please try again." msgstr "Le token a expiré. Veuillez réessayer." -#: apps/remix/app/components/forms/token.tsx:158 +#: apps/remix/app/components/forms/token.tsx:159 msgid "Token name" msgstr "Nom du token" @@ -5835,27 +5851,27 @@ msgstr "transférer {teamName}" msgid "Transfer ownership of this team to a selected team member." msgstr "Transférer la propriété de cette équipe à un membre d'équipe sélectionné." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:173 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:173 #: apps/remix/app/components/dialogs/team-transfer-dialog.tsx:145 #: apps/remix/app/components/dialogs/team-transfer-dialog.tsx:154 msgid "Transfer team" msgstr "Transférer l'équipe" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:177 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:177 msgid "Transfer the ownership of the team to another team member." msgstr "Transférer la propriété de l'équipe à un autre membre de l'équipe." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:160 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:159 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:160 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:159 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:184 msgid "Triggers" msgstr "Déclencheurs" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:84 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:84 msgid "Two factor authentication" msgstr "Authentification à deux facteurs" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:120 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:120 msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app." msgstr "Les codes de récupération de l'authentification à deux facteurs sont utilisés pour accéder à votre compte dans le cas où vous perdez l'accès à votre application d'authentification." @@ -5904,7 +5920,7 @@ msgstr "Impossible de changer la langue pour le moment. Veuillez réessayer plus msgid "Unable to copy recovery code" msgstr "Impossible de copier le code de récupération" -#: apps/remix/app/components/forms/token.tsx:106 +#: apps/remix/app/components/forms/token.tsx:107 msgid "Unable to copy token" msgstr "Impossible de copier le token" @@ -5912,7 +5928,7 @@ msgstr "Impossible de copier le token" msgid "Unable to create direct template access. Please try again later." msgstr "Impossible de créer un accès direct au modèle. Veuillez réessayer plus tard." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:170 +#: apps/remix/app/components/general/teams/team-invitations.tsx:170 msgid "Unable to decline this team invitation at this time." msgstr "Impossible de refuser cette invitation d'équipe pour le moment." @@ -5928,7 +5944,7 @@ msgstr "Impossible de supprimer l'équipe" msgid "Unable to disable two-factor authentication" msgstr "Impossible de désactiver l'authentification à deux facteurs" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:133 +#: apps/remix/app/components/general/teams/team-invitations.tsx:133 msgid "Unable to join this team at this time." msgstr "Impossible de rejoindre cette équipe pour le moment." @@ -5975,6 +5991,7 @@ msgstr "Impossible de configurer l'authentification à deux facteurs" msgid "Unable to sign in" msgstr "Impossible de se connecter" +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:49 #: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx:163 msgid "Unauthorized" msgstr "Non autorisé" @@ -5987,7 +6004,7 @@ msgstr "Non complet" #: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx:270 #: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx:281 #: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx:292 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:61 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:61 msgid "Unknown" msgstr "Inconnu" @@ -6051,8 +6068,8 @@ msgstr "Mettez à jour le rôle et ajoutez des champs selon les besoins pour le msgid "Update user" msgstr "Mettre à jour l'utilisateur" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:203 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:204 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:203 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:204 msgid "Update webhook" msgstr "Mettre à jour le webhook" @@ -6125,7 +6142,7 @@ msgstr "Le fichier téléchargé est trop petit" msgid "Uploaded file not an allowed file type" msgstr "Le fichier téléchargé n'est pas un type de fichier autorisé" -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:194 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:194 msgid "Use" msgstr "Utiliser" @@ -6235,7 +6252,7 @@ msgstr "Historique des versions" msgid "View" msgstr "Voir" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:170 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:170 msgid "View activity" msgstr "Voir l'activité" @@ -6243,11 +6260,11 @@ msgstr "Voir l'activité" msgid "View all documents sent to and from this email address" msgstr "Voir tous les documents envoyés à et depuis cette adresse e-mail" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:77 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:77 msgid "View all documents sent to your account" msgstr "Voir tous les documents envoyés à votre compte" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:164 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:164 msgid "View all recent security activity related to your account." msgstr "Voir toute l'activité de sécurité récente liée à votre compte." @@ -6255,7 +6272,7 @@ msgstr "Voir toute l'activité de sécurité récente liée à votre compte." msgid "View all related documents" msgstr "Voir tous les documents associés" -#: apps/remix/app/routes/_authenticated+/settings+/security+/activity+/index.tsx:19 +#: apps/remix/app/routes/_authenticated+/settings+/security.activity.tsx:19 msgid "View all security activity related to your account." msgstr "Voir toute l'activité de sécurité liée à votre compte." @@ -6275,11 +6292,11 @@ msgstr "Voir le document" msgid "View Document" msgstr "Voir le document" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:154 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:154 msgid "View documents associated with this email" msgstr "Voir les documents associés à cet e-mail" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:54 +#: apps/remix/app/components/general/teams/team-invitations.tsx:54 msgid "View invites" msgstr "Voir les invitations" @@ -6360,6 +6377,7 @@ msgstr "Vous voulez votre propre profil public ?" msgid "Warning: Assistant as last signer" msgstr "" +#: apps/remix/app/components/general/billing-portal-button.tsx:25 #: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx:54 #: apps/remix/app/components/general/teams/team-billing-portal-button.tsx:30 msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support." @@ -6377,8 +6395,8 @@ msgstr "Nous ne pouvons pas mettre à jour cette clé de passkey pour le moment. msgid "We encountered an error while removing the direct template link. Please try again later." msgstr "Une erreur s'est produite lors de la suppression du lien direct vers le modèle. Veuillez réessayer plus tard." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:83 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:80 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:83 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:80 msgid "We encountered an error while updating the webhook. Please try again later." msgstr "Une erreur s'est produite lors de la mise à jour du webhook. Veuillez réessayer plus tard." @@ -6402,7 +6420,7 @@ msgstr "Une erreur inconnue s'est produite lors de la suppression de l'équipe e msgid "We encountered an unknown error while attempting to delete this team. Please try again later." msgstr "Une erreur inconnue s'est produite lors de la suppression de cette équipe. Veuillez réessayer plus tard." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:92 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:90 msgid "We encountered an unknown error while attempting to delete this token. Please try again later." msgstr "Une erreur inconnue s'est produite lors de la suppression de ce token. Veuillez réessayer plus tard." @@ -6438,7 +6456,7 @@ msgstr "Une erreur inconnue s'est produite lors de la demande de transfert de ce msgid "We encountered an unknown error while attempting to reset your password. Please try again later." msgstr "Une erreur inconnue s'est produite lors de la réinitialisation de votre mot de passe. Veuillez réessayer plus tard." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:45 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:45 msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support." msgstr "Une erreur inconnue s'est produite lors de la révocation de l'accès. Veuillez réessayer ou contacter le support." @@ -6497,7 +6515,7 @@ msgstr "Nous avons besoin d'un nom d'utilisateur pour créer votre profil" msgid "We need your signature to sign documents" msgstr "Nous avons besoin de votre signature pour signer des documents" -#: apps/remix/app/components/forms/token.tsx:107 +#: apps/remix/app/components/forms/token.tsx:108 msgid "We were unable to copy the token to your clipboard. Please try again." msgstr "Nous n'avons pas pu copier le token dans votre presse-papiers. Veuillez réessayer." @@ -6523,7 +6541,7 @@ msgstr "Nous n'avons pas pu désactiver l'authentification à deux facteurs pour msgid "We were unable to log you out at this time." msgstr "Nous n'avons pas pu vous déconnecter pour le moment." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:134 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:134 msgid "We were unable to set your public profile to public. Please try again." msgstr "Nous n'avons pas pu définir votre profil public comme public. Veuillez réessayer." @@ -6533,7 +6551,7 @@ msgid "We were unable to setup two-factor authentication for your account. Pleas msgstr "Nous n'avons pas pu configurer l'authentification à deux facteurs pour votre compte. Veuillez vous assurer que vous avez correctement entré votre code et réessayez." #: apps/remix/app/components/general/direct-template/direct-template-page.tsx:121 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:156 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:169 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:262 msgid "We were unable to submit this document at this time. Please try again later." msgstr "Nous n'avons pas pu soumettre ce document pour le moment. Veuillez réessayer plus tard." @@ -6571,7 +6589,7 @@ msgstr "Nous allons générer des liens de signature pour vous, que vous pouvez msgid "We won't send anything to notify recipients." msgstr "Nous n'enverrons rien pour notifier les destinataires." -#: apps/remix/app/routes/_authenticated+/templates+/_index.tsx:72 +#: apps/remix/app/routes/_authenticated+/templates._index.tsx:72 #: apps/remix/app/components/tables/documents-table-empty-state.tsx:29 msgid "We're all empty" msgstr "Nous sommes tous vides" @@ -6596,18 +6614,18 @@ msgstr "Webhook créé" msgid "Webhook deleted" msgstr "Webhook supprimé" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:73 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:70 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:73 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:70 msgid "Webhook updated" msgstr "Webhook mis à jour" -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:113 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:113 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:138 msgid "Webhook URL" msgstr "URL du webhook" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:31 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:26 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:31 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:26 #: apps/remix/app/components/general/settings-nav-mobile.tsx:97 #: apps/remix/app/components/general/settings-nav-desktop.tsx:95 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:107 @@ -6615,6 +6633,10 @@ msgstr "URL du webhook" msgid "Webhooks" msgstr "Webhooks" +#: apps/remix/app/components/general/billing-plans.tsx:27 +msgid "Weekly" +msgstr "" + #: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx:17 msgid "Welcome" msgstr "Bienvenue" @@ -6663,7 +6685,8 @@ msgstr "Écrivez sur l'équipe" msgid "Write about yourself" msgstr "Écrivez sur vous-même" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:59 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:59 +#: apps/remix/app/components/general/billing-plans.tsx:29 msgid "Yearly" msgstr "Annuel" @@ -6695,7 +6718,7 @@ msgstr "Vous êtes sur le point de supprimer l'utilisateur suivant de <0>{teamNa #. placeholder {0}: teamEmail.team.name #. placeholder {1}: teamEmail.team.url -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:97 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:97 msgid "You are about to revoke access for team <0>{0} ({1}) to use your email." msgstr "Vous êtes sur le point de révoquer l'accès de l'équipe <0>{0} ({1}) à votre e-mail." @@ -6703,6 +6726,10 @@ msgstr "Vous êtes sur le point de révoquer l'accès de l'équipe <0>{0} ({ msgid "You are about to send this document to the recipients. Are you sure you want to continue?" msgstr "Vous êtes sur le point d'envoyer ce document aux destinataires. Êtes-vous sûr de vouloir continuer ?" +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:90 +msgid "You are currently on the <0>Free Plan." +msgstr "" + #: apps/remix/app/components/dialogs/team-member-update-dialog.tsx:147 msgid "You are currently updating <0>{teamMemberName}." msgstr "Vous mettez à jour actuellement <0>{teamMemberName}." @@ -6731,11 +6758,11 @@ msgstr "Vous n'êtes pas autorisé à activer cet utilisateur." msgid "You can also copy and paste this link into your browser: {confirmationLink} (link expires in 1 hour)" msgstr "Vous pouvez également copier et coller ce lien dans votre navigateur : {confirmationLink} (le lien expire dans 1 heure)" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:35 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:35 msgid "You can choose to enable or disable your profile for public view." msgstr "Vous pouvez choisir d'activer ou de désactiver votre profil pour la vue publique." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:42 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:42 msgid "You can choose to enable or disable your team profile for public view." msgstr "Vous pouvez choisir d'activer ou de désactiver le profil de votre équipe pour la vue publique." @@ -6755,7 +6782,7 @@ msgstr "Vous pouvez mettre à jour l'URL de profil en mettant à jour l'URL de l msgid "You can use the following variables in your message:" msgstr "Vous pouvez utiliser les variables suivantes dans votre message :" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:69 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:69 msgid "You can view documents associated with this email and use this identity when sending documents." msgstr "Vous pouvez voir les documents associés à cet e-mail et utiliser cette identité lors de l'envoi de documents." @@ -6788,7 +6815,11 @@ msgstr "Vous ne pouvez pas télécharger de documents pour le moment." msgid "You cannot upload encrypted PDFs" msgstr "Vous ne pouvez pas télécharger de PDF cryptés" -#: apps/remix/app/components/forms/token.tsx:134 +#: apps/remix/app/components/general/billing-portal-button.tsx:30 +msgid "You do not currently have a customer record, this should not happen. Please contact support for assistance." +msgstr "" + +#: apps/remix/app/components/forms/token.tsx:135 msgid "You do not have permission to create a token for this team" msgstr "Vous n'avez pas la permission de créer un jeton pour cette équipe" @@ -6847,12 +6878,12 @@ msgstr "Vous avez décliné l'invitation de <0>{0} pour rejoindre leur équi msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it." msgstr "Vous avez initié le document {0} qui nécessite que vous {recipientActionVerb} celui-ci." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:45 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:40 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:45 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:40 msgid "You have no webhooks yet. Your webhooks will be shown here once you create them." msgstr "Vous n'avez pas encore de webhooks. Vos webhooks seront affichés ici une fois que vous les aurez créés." -#: apps/remix/app/routes/_authenticated+/templates+/_index.tsx:76 +#: apps/remix/app/routes/_authenticated+/templates._index.tsx:76 msgid "You have not yet created any templates. To create a template please upload one." msgstr "Vous n'avez pas encore créé de modèles. Pour créer un modèle, veuillez en télécharger un." @@ -6883,6 +6914,7 @@ msgid "You have rejected the document '{documentName}'" msgstr "Vous avez rejeté le document '{documentName}'" #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:102 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:17 msgid "You have rejected this document" msgstr "Vous avez rejeté ce document" @@ -6903,7 +6935,7 @@ msgstr "Vous vous êtes inscrit avec succès. Veuillez vérifier votre compte en msgid "You have successfully removed this user from the team." msgstr "Vous avez retiré cet utilisateur de l'équipe avec succès." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:37 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:37 msgid "You have successfully revoked access." msgstr "Vous avez révoqué l'accès avec succès." @@ -6920,12 +6952,12 @@ msgstr "Vous avez mis à jour {teamMemberName}." msgid "You have verified your email address for <0>{0}." msgstr "Vous avez vérifié votre adresse e-mail pour <0>{0}." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:94 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:94 msgid "You must be an admin of this team to manage billing." msgstr "Vous devez être un administrateur de cette équipe pour gérer la facturation." #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:53 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:55 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:53 #: apps/remix/app/components/dialogs/team-delete-dialog.tsx:52 msgid "You must enter '{deleteMessage}' to proceed" msgstr "Vous devez entrer '{deleteMessage}' pour continuer" @@ -6934,10 +6966,14 @@ msgstr "Vous devez entrer '{deleteMessage}' pour continuer" msgid "You must have at least one other team member to transfer ownership." msgstr "Vous devez avoir au moins un autre membre de l'équipe pour transférer la propriété." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:118 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:118 msgid "You must set a profile URL before enabling your public profile." msgstr "Vous devez définir une URL de profil avant d'activer votre profil public." +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:52 +msgid "You need to be an admin to manage API tokens." +msgstr "" + #: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx:52 msgid "You need to be logged in as <0>{email} to view this page." msgstr "Vous devez être connecté en tant que <0>{email} pour voir cette page." @@ -6990,6 +7026,10 @@ msgstr "Votre envoi groupé a été initié. Vous recevrez une notification par msgid "Your bulk send operation for template \"{templateName}\" has completed." msgstr "Votre opération d'envoi groupé pour le modèle \"{templateName}\" est terminée." +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:135 +msgid "Your current plan is past due. Please update your payment information." +msgstr "" + #: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx:248 msgid "Your direct signing templates" msgstr "Vos modèles de signature directe" @@ -7044,12 +7084,11 @@ msgstr "Votre e-mail a été confirmé avec succès ! Vous pouvez maintenant uti #. placeholder {0}: teamEmail.team.name #. placeholder {1}: teamEmail.team.url -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:61 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:61 msgid "Your email is currently being used by team <0>{0} ({1})." msgstr "Votre e-mail est actuellement utilisé par l'équipe <0>{0} ({1})." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:79 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:44 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:63 msgid "Your existing tokens" msgstr "Vos tokens existants" @@ -7092,7 +7131,7 @@ msgstr "Votre code de récupération a été copié dans votre presse-papiers." msgid "Your recovery codes are listed below. Please store them in a safe place." msgstr "Vos codes de récupération sont listés ci-dessous. Veuillez les conserver dans un endroit sûr." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:78 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:78 msgid "Your subscription is currently active." msgstr "Votre abonnement est actuellement actif." @@ -7133,11 +7172,10 @@ msgstr "Vos modèles ont été enregistrés avec succès." msgid "Your token has expired!" msgstr "Votre token a expiré !" -#: apps/remix/app/components/forms/token.tsx:272 +#: apps/remix/app/components/forms/token.tsx:273 msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!" msgstr "Votre token a été créé avec succès ! Assurez-vous de le copier car vous ne pourrez plus le voir !" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:85 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:50 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:69 msgid "Your tokens will be shown here once you create them." msgstr "Vos tokens seront affichés ici une fois que vous les aurez créés." diff --git a/packages/lib/translations/it/web.po b/packages/lib/translations/it/web.po index b9b703d5a..e886d7bbf 100644 --- a/packages/lib/translations/it/web.po +++ b/packages/lib/translations/it/web.po @@ -22,7 +22,7 @@ msgstr "" msgid " Enable direct link signing" msgstr "" -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:171 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:171 msgid " The events that will trigger a webhook to be sent to your URL." msgstr "" @@ -59,7 +59,7 @@ msgid "\"{placeholderEmail}\" on behalf of \"{0}\" has invited you to sign \"exa msgstr "\"{placeholderEmail}\" per conto di \"{0}\" ti ha invitato a firmare \"documento di esempio\"." #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:273 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:325 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:372 msgid "(You)" msgstr "" @@ -85,8 +85,8 @@ msgid "{0, plural, one {# Seat} other {# Seats}}" msgstr "{0, plural, one {# posto} other {# posti}}" #. placeholder {0}: data.length -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:36 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:65 +#: apps/remix/app/components/general/teams/team-invitations.tsx:36 +#: apps/remix/app/components/general/teams/team-invitations.tsx:65 msgid "{0, plural, one {<0>You have <1>1 pending team invitation} other {<2>You have <3># pending team invitations}}" msgstr "{0, plural, one {<0>Hai <1>1 invito in sospeso alla squadra} other {<2>Hai <3># inviti in sospeso alla squadra}}" @@ -96,12 +96,12 @@ msgid "{0, plural, one {1 matching field} other {# matching fields}}" msgstr "{0, plural, one {1 campo corrispondente} other {# campi corrispondenti}}" #. placeholder {0}: recipients.length -#: apps/remix/app/routes/_authenticated+/documents+/$id.edit.tsx:122 +#: apps/remix/app/routes/_authenticated+/documents.$id.edit.tsx:122 msgid "{0, plural, one {1 Recipient} other {# Recipients}}" msgstr "{0, plural, one {1 destinatario} other {# destinatari}}" #. placeholder {0}: pendingRecipients.length -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:232 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:232 msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}" msgstr "{0, plural, one {In attesa di 1 destinatario} other {In attesa di # destinatari}}" @@ -161,7 +161,7 @@ msgid "{0} on behalf of \"{1}\" has invited you to {recipientActionVerb} the doc msgstr "{0} per conto di \"{1}\" ti ha invitato a {recipientActionVerb} il documento \"{2}\"." #. placeholder {0}: recipients.length -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:167 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:167 msgid "{0} Recipient(s)" msgstr "{0} Destinatario(i)" @@ -225,7 +225,7 @@ msgstr "{memberEmail} si è unito al seguente team" msgid "{memberEmail} left the following team" msgstr "{memberEmail} ha lasciato il seguente team" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:65 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:65 msgid "{numberOfSeats, plural, one {# member} other {# members}}" msgstr "{numberOfSeats, plural, one {# membro} other {# membri}}" @@ -477,21 +477,21 @@ msgstr "<0>Stai per completare la firma di \"<1>{documentTitle}\".<2/> S msgid "<0>You are about to complete viewing \"<1>{documentTitle}\".<2/> Are you sure?" msgstr "<0>Stai per completare la visualizzazione di \"<1>{documentTitle}\".<2/> Sei sicuro?" -#: apps/remix/app/components/forms/token.tsx:43 +#: apps/remix/app/components/forms/token.tsx:45 msgid "1 month" msgstr "{VAR_PLURAL, select, one {1 mese} other {# mesi}}" -#: apps/remix/app/components/forms/token.tsx:46 +#: apps/remix/app/components/forms/token.tsx:48 msgid "12 months" msgstr "{VAR_PLURAL, select, one {1 mese} other {12 mesi}}" -#: apps/remix/app/components/forms/token.tsx:44 +#: apps/remix/app/components/forms/token.tsx:46 msgid "3 months" msgstr "{VAR_PLURAL, select, one {1 mese} other {3 mesi}}" #: apps/remix/app/components/general/generic-error-layout.tsx:41 -msgid "404 Page not found" -msgstr "404 Pagina non trovata" +msgid "404 not found" +msgstr "" #: apps/remix/app/routes/_profile+/_layout.tsx:102 msgid "404 Profile not found" @@ -505,11 +505,11 @@ msgstr "404 Squadra non trovata" msgid "500 Internal Server Error" msgstr "" -#: apps/remix/app/components/forms/token.tsx:45 +#: apps/remix/app/components/forms/token.tsx:47 msgid "6 months" msgstr "{VAR_PLURAL, select, one {1 mese} other {6 mesi}}" -#: apps/remix/app/components/forms/token.tsx:42 +#: apps/remix/app/components/forms/token.tsx:44 msgid "7 days" msgstr "{VAR_PLURAL, select, one {1 giorno} other {7 giorni}}" @@ -549,7 +549,7 @@ msgstr "Un mezzo per stampare o scaricare documenti per i tuoi archivi" msgid "A new member has joined your team" msgstr "Un nuovo membro si è unito al tuo team" -#: apps/remix/app/components/forms/token.tsx:123 +#: apps/remix/app/components/forms/token.tsx:124 msgid "A new token was created successfully." msgstr "Un nuovo token è stato creato con successo." @@ -585,8 +585,8 @@ msgstr "Una richiesta per utilizzare la tua email è stata avviata da {0} su Doc msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso" msgstr "Un codice segreto che verrà inviato al tuo URL in modo che tu possa verificare che la richiesta sia stata inviata da Documenso" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:191 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:192 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:191 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:192 msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso." msgstr "Un codice segreto che verrà inviato al tuo URL in modo che tu possa verificare che la richiesta sia stata inviata da Documenso." @@ -625,7 +625,7 @@ msgstr "Un URL univoco per identificare la tua squadra" msgid "A verification email will be sent to the provided email." msgstr "Un'email di verifica sarà inviata all'email fornita." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:146 +#: apps/remix/app/components/general/teams/team-invitations.tsx:146 #: packages/email/templates/team-transfer-request.tsx:82 #: packages/email/templates/team-invite.tsx:95 #: packages/email/templates/confirm-team-email.tsx:119 @@ -648,7 +648,7 @@ msgstr "Accetta la richiesta di trasferimento di team su Documenso" msgid "Acceptance and Consent" msgstr "Accettazione e Consenso" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:126 +#: apps/remix/app/components/general/teams/team-invitations.tsx:126 msgid "Accepted team invitation" msgstr "Invito alla squadra accettato" @@ -696,8 +696,8 @@ msgstr "Azione" msgid "Actions" msgstr "Azioni" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:70 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:105 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:70 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:105 #: apps/remix/app/components/tables/user-settings-teams-page-table.tsx:64 msgid "Active" msgstr "Attivo" @@ -728,11 +728,11 @@ msgstr "Aggiungi tutti i campi rilevanti per ciascun destinatario." msgid "Add all relevant placeholders for each recipient." msgstr "Aggiungi tutti i segnaposto pertinenti per ciascun destinatario." -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:94 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:94 msgid "Add an authenticator to serve as a secondary authentication method for signing documents." msgstr "Aggiungi un autenticatore come metodo di autenticazione secondario per firmare documenti." -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:89 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:89 msgid "Add an authenticator to serve as a secondary authentication method when signing in, or when signing documents." msgstr "Aggiungi un autenticatore come metodo di autenticazione secondario al momento dell'accesso o durante la firma di documenti." @@ -897,7 +897,7 @@ msgstr "Tutto il tempo" msgid "Allow document recipients to reply directly to this email address" msgstr "Consenti ai destinatari del documento di rispondere direttamente a questo indirizzo email" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:141 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:141 msgid "Allows authenticating using biometrics, password managers, hardware keys, etc." msgstr "Consente di autenticare utilizzando biometria, gestori di password, chiavi hardware, ecc." @@ -930,7 +930,7 @@ msgid "An email requesting the transfer of this team has been sent." msgstr "È stata inviata un'email per richiedere il trasferimento di questo team." #: apps/remix/app/components/general/claim-account.tsx:96 -#: apps/remix/app/components/forms/token.tsx:139 +#: apps/remix/app/components/forms/token.tsx:140 #: apps/remix/app/components/forms/signup.tsx:160 #: apps/remix/app/components/forms/reset-password.tsx:91 #: apps/remix/app/components/forms/password.tsx:89 @@ -1062,6 +1062,10 @@ msgstr "" msgid "An error occurred while signing the document." msgstr "Si è verificato un errore durante la firma del documento." +#: apps/remix/app/components/general/billing-plans.tsx:63 +msgid "An error occurred while trying to create a checkout session." +msgstr "" + #: apps/remix/app/components/general/template/template-edit-form.tsx:149 #: apps/remix/app/components/general/document/document-edit-form.tsx:205 msgid "An error occurred while updating the document settings." @@ -1096,7 +1100,7 @@ msgstr "" #: apps/remix/app/components/forms/profile.tsx:74 #: apps/remix/app/components/forms/avatar-image.tsx:94 #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:81 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:90 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:88 #: apps/remix/app/components/dialogs/team-transfer-dialog.tsx:114 #: apps/remix/app/components/dialogs/team-member-update-dialog.tsx:99 #: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx:154 @@ -1125,9 +1129,7 @@ msgstr "Qualsiasi fonte" msgid "Any Status" msgstr "Qualsiasi stato" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:43 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:55 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:19 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:26 #: apps/remix/app/components/general/settings-nav-mobile.tsx:84 #: apps/remix/app/components/general/settings-nav-desktop.tsx:82 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:94 @@ -1173,11 +1175,11 @@ msgstr "Approvazione in corso" msgid "Are you sure you want to complete the document? This action cannot be undone. Please ensure that you have completed prefilling all relevant fields before proceeding." msgstr "" -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:122 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:120 msgid "Are you sure you want to delete this token?" msgstr "Sei sicuro di voler eliminare questo token?" -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:118 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:127 msgid "Are you sure you want to reject this document? This action cannot be undone." msgstr "Sei sicuro di voler rifiutare questo documento? Questa azione non può essere annullata." @@ -1189,7 +1191,7 @@ msgstr "Sei sicuro di voler rimuovere la chiave di accesso <0>{passkeyName}. msgid "Are you sure you wish to delete this team?" msgstr "Sei sicuro di voler eliminare questo team?" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:93 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:93 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:455 #: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx:80 #: apps/remix/app/components/dialogs/team-leave-dialog.tsx:80 @@ -1208,7 +1210,7 @@ msgstr "" msgid "Assist Document" msgstr "" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:252 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:299 msgid "Assist with signing" msgstr "" @@ -1258,7 +1260,7 @@ msgstr "Avatar" msgid "Avatar Updated" msgstr "Avatar aggiornato" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:125 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:125 msgid "Awaiting email confirmation" msgstr "In attesa della conferma email" @@ -1296,7 +1298,8 @@ msgstr "Dettagli di Base" msgid "Before you get started, please confirm your email address by clicking the button below:" msgstr "Prima di iniziare, conferma il tuo indirizzo email facendo clic sul pulsante qui sotto:" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:77 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:77 +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:84 #: apps/remix/app/components/general/settings-nav-mobile.tsx:111 #: apps/remix/app/components/general/settings-nav-desktop.tsx:109 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:121 @@ -1312,7 +1315,7 @@ msgstr "Nero" msgid "Blue" msgstr "Blu" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:40 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:40 msgid "Branding Preferences" msgstr "Preferenze per il branding" @@ -1387,13 +1390,13 @@ msgstr "Utilizzando la funzione di firma elettronica, acconsenti a effettuare tr msgid "Can prepare" msgstr "" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:108 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:162 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:203 #: apps/remix/app/components/general/teams/team-transfer-status.tsx:118 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:108 #: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx:364 #: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx:315 -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:151 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:160 #: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx:349 #: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx:234 #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:208 @@ -1408,7 +1411,7 @@ msgstr "" #: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx:263 #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:156 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:235 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:169 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:167 #: apps/remix/app/components/dialogs/template-move-dialog.tsx:145 #: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx:71 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:472 @@ -1493,7 +1496,7 @@ msgstr "Scegli Destinatario Link Diretto" msgid "Choose how the document will reach recipients" msgstr "Scegli come il documento verrà inviato ai destinatari" -#: apps/remix/app/components/forms/token.tsx:193 +#: apps/remix/app/components/forms/token.tsx:194 msgid "Choose..." msgstr "Scegli..." @@ -1543,7 +1546,7 @@ msgstr "Clicca per copiare il link di firma da inviare al destinatario" #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:176 #: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx:181 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:439 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:486 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:479 msgid "Click to insert field" msgstr "Clicca per inserire il campo" @@ -1564,7 +1567,7 @@ msgstr "Chiudi" #: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx:61 #: apps/remix/app/components/forms/signup.tsx:528 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:429 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:476 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:469 msgid "Complete" msgstr "Completa" @@ -1648,7 +1651,7 @@ msgid "Confirm by typing <0>{deleteMessage}" msgstr "Conferma digitando <0>{deleteMessage}" #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:133 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:145 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:143 msgid "Confirm by typing: <0>{deleteMessage}" msgstr "Conferma digitando: <0>{deleteMessage}" @@ -1773,7 +1776,7 @@ msgstr "Copia il Link Condivisibile" msgid "Copy Signing Links" msgstr "Copia link di firma" -#: apps/remix/app/components/forms/token.tsx:283 +#: apps/remix/app/components/forms/token.tsx:284 msgid "Copy token" msgstr "Copia il token" @@ -1851,8 +1854,8 @@ msgstr "Crea Team" msgid "Create the document as pending and ready to sign." msgstr "Crea il documento come in attesa e pronto per la firma." -#: apps/remix/app/components/forms/token.tsx:243 -#: apps/remix/app/components/forms/token.tsx:252 +#: apps/remix/app/components/forms/token.tsx:244 +#: apps/remix/app/components/forms/token.tsx:253 msgid "Create token" msgstr "Crea token" @@ -1889,7 +1892,7 @@ msgstr "Creato" msgid "Created At" msgstr "Creato il" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:90 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:90 msgid "Created by" msgstr "Creato da" @@ -1900,10 +1903,9 @@ msgstr "Creato il" #. placeholder {0}: i18n.date(webhook.createdAt, DateTime.DATETIME_FULL) #. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL) -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:88 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:99 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:83 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:64 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:88 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:83 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:83 msgid "Created on {0}" msgstr "Creato il {0}" @@ -1923,6 +1925,10 @@ msgstr "La password corrente è errata." msgid "Current recipients:" msgstr "Destinatari attuali:" +#: apps/remix/app/components/general/billing-plans.tsx:26 +msgid "Daily" +msgstr "" + #: apps/remix/app/components/general/app-command-menu.tsx:261 msgid "Dark Mode" msgstr "Modalità Scura" @@ -1935,7 +1941,7 @@ msgstr "Modalità Scura" msgid "Date" msgstr "Data" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:96 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:96 msgid "Date created" msgstr "Data di creazione" @@ -1944,12 +1950,12 @@ msgstr "Data di creazione" msgid "Date Format" msgstr "Formato data" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:184 +#: apps/remix/app/components/general/teams/team-invitations.tsx:184 #: packages/email/templates/team-invite.tsx:101 msgid "Decline" msgstr "Declina" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:163 +#: apps/remix/app/components/general/teams/team-invitations.tsx:163 msgid "Declined team invitation" msgstr "Invito al team rifiutato" @@ -1965,17 +1971,16 @@ msgstr "Visibilità predefinita del documento" msgid "delete" msgstr "elimina" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:100 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:115 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:95 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:80 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:100 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:95 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:103 #: apps/remix/app/components/tables/templates-table-action-dropdown.tsx:109 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:182 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:216 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:175 #: apps/remix/app/components/general/document/document-page-view-dropdown.tsx:144 #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:102 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:114 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:112 #: apps/remix/app/components/dialogs/template-delete-dialog.tsx:87 #: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx:112 #: apps/remix/app/components/dialogs/team-delete-dialog.tsx:165 @@ -1986,7 +1991,7 @@ msgstr "Elimina" #. placeholder {0}: webhook.webhookUrl #. placeholder {0}: token.name #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:49 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:51 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:49 msgid "delete {0}" msgstr "elimina {0}" @@ -2020,7 +2025,7 @@ msgstr "Elimina Documento" msgid "Delete passkey" msgstr "Elimina chiave d'accesso" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:195 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:195 #: apps/remix/app/components/dialogs/team-delete-dialog.tsx:116 msgid "Delete team" msgstr "Elimina squadra" @@ -2139,8 +2144,8 @@ msgstr "Disabilita Account" msgid "Disable Two Factor Authentication before deleting your account." msgstr "Disabilita l'Autenticazione a Due Fattori prima di eliminare il tuo account." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:74 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:69 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:74 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:69 msgid "Disabled" msgstr "Disabilitato" @@ -2152,7 +2157,7 @@ msgstr "Disabilitare la firma del collegamento diretto impedirà a chiunque di a msgid "Disabling the user results in the user not being able to use the account. It also disables all the related contents such as subscription, webhooks, teams, and API keys." msgstr "Disabilitare l'utente porta all'impossibilità per l'utente di usare l'account. Disabilita anche tutti i contenuti correlati come abbonamento, webhook, team e chiavi API." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:74 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:74 msgid "Display your name and email in documents" msgstr "Mostra il tuo nome e email nei documenti" @@ -2172,7 +2177,7 @@ msgstr "Vuoi duplicare questo modello?" msgid "Documenso will delete <0>all of your documents, along with all of your completed documents, signatures, and all other resources belonging to your Account." msgstr "Documenso eliminerà <0>tutti i tuoi documenti, insieme a tutti i tuoi documenti completati, firme e tutte le altre risorse appartenenti al tuo account." -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:129 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:129 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:36 msgid "Document" msgstr "Documento" @@ -2250,7 +2255,7 @@ msgstr "Documento creato usando un <0>link diretto" msgid "Document Creation" msgstr "Creazione del documento" -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:175 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:175 #: apps/remix/app/components/dialogs/document-delete-dialog.tsx:58 #: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx:48 #: packages/lib/utils/document-audit-logs.ts:305 @@ -2282,13 +2287,13 @@ msgstr "Documento Duplicato" msgid "Document external ID updated" msgstr "ID esterno del documento aggiornato" -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:186 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:186 #: apps/remix/app/components/general/document/document-history-sheet.tsx:102 msgid "Document history" msgstr "Cronologia del documento" #: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx:86 -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:82 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:82 msgid "Document ID" msgstr "ID del documento" @@ -2337,6 +2342,7 @@ msgid "Document re-sent" msgstr "Documento rinviato" #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:97 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:12 #: packages/email/template-components/template-document-rejected.tsx:21 msgid "Document Rejected" msgstr "Documento Rifiutato" @@ -2362,11 +2368,11 @@ msgstr "Autenticazione firma documento aggiornata" msgid "Document signing process will be cancelled" msgstr "Il processo di firma del documento sarà annullato" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:86 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:86 msgid "Document status" msgstr "Stato del documento" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:78 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:78 msgid "Document title" msgstr "Titolo del documento" @@ -2399,9 +2405,9 @@ msgid "Document will be permanently deleted" msgstr "Il documento sarà eliminato definitivamente" #: apps/remix/app/routes/_profile+/p.$url.tsx:163 -#: apps/remix/app/routes/_authenticated+/documents+/_index.tsx:111 -#: apps/remix/app/routes/_authenticated+/documents+/$id.edit.tsx:99 -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:138 +#: apps/remix/app/routes/_authenticated+/documents._index.tsx:111 +#: apps/remix/app/routes/_authenticated+/documents.$id.edit.tsx:99 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:138 #: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx:69 #: apps/remix/app/components/tables/admin-dashboard-users-table.tsx:89 #: apps/remix/app/components/general/user-profile-timur.tsx:56 @@ -2413,7 +2419,7 @@ msgstr "Il documento sarà eliminato definitivamente" msgid "Documents" msgstr "Documenti" -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:218 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:218 msgid "Documents created from template" msgstr "Documenti creati da modello" @@ -2494,8 +2500,8 @@ msgstr "A causa di una fattura non pagata, il vostro team è stato limitato. Si msgid "Duplicate" msgstr "Duplica" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:95 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:90 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:95 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:90 #: apps/remix/app/components/tables/templates-table-action-dropdown.tsx:69 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:116 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:145 @@ -2506,12 +2512,12 @@ msgstr "Duplica" msgid "Edit" msgstr "Modifica" -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:135 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:135 msgid "Edit Template" msgstr "Modifica Modello" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:93 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:90 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:93 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:90 msgid "Edit webhook" msgstr "Modifica webhook" @@ -2533,7 +2539,7 @@ msgstr "Divulgazione della firma elettronica" #: apps/remix/app/components/forms/signin.tsx:318 #: apps/remix/app/components/forms/profile.tsx:108 #: apps/remix/app/components/forms/forgot-password.tsx:77 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:362 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:409 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:405 #: apps/remix/app/components/dialogs/template-use-dialog.tsx:275 #: apps/remix/app/components/dialogs/template-use-dialog.tsx:282 @@ -2641,10 +2647,10 @@ msgstr "Abilita firma digitata" msgid "Enable Typed Signatures" msgstr "Abilita firme digitate" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:74 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:135 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:69 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:134 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:74 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:135 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:69 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:134 #: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx:128 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:159 msgid "Enabled" @@ -2749,13 +2755,12 @@ msgstr "Hanno firmato tutti! Riceverai una copia via email del documento firmato msgid "Exceeded timeout" msgstr "Tempo scaduto" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:118 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:118 msgid "Expired" msgstr "Scaduto" #. placeholder {0}: i18n.date(token.expires, DateTime.DATETIME_FULL) -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:103 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:68 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:89 msgid "Expires on {0}" msgstr "Scade il {0}" @@ -2776,8 +2781,8 @@ msgstr "Impossibile salvare le impostazioni." msgid "Failed to update recipient" msgstr "Aggiornamento destinario fallito" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:81 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:78 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:81 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:78 msgid "Failed to update webhook" msgstr "Aggiornamento webhook fallito" @@ -2870,7 +2875,7 @@ msgstr "Firma gratuita" #: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx:323 #: apps/remix/app/components/forms/signup.tsx:309 #: apps/remix/app/components/forms/profile.tsx:96 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:347 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:394 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:390 msgid "Full Name" msgstr "Nome completo" @@ -2947,7 +2952,7 @@ msgstr "ti ha invitato a visualizzare questo documento" msgid "Having an assistant as the last signer means they will be unable to take any action as there are no subsequent signers to assist." msgstr "" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:277 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:324 msgid "Help complete the document for other signers." msgstr "" @@ -2955,15 +2960,15 @@ msgstr "" msgid "Here you can edit your personal details." msgstr "Qui puoi modificare i tuoi dati personali." -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:68 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:68 msgid "Here you can manage your password and security settings." msgstr "Qui puoi gestire la tua password e le impostazioni di sicurezza." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:41 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:41 msgid "Here you can set preferences and defaults for branding." msgstr "Qui puoi impostare preferenze e valori predefiniti per il branding." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:32 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:32 msgid "Here you can set preferences and defaults for your team." msgstr "Qui puoi impostare preferenze e valori predefiniti per il tuo team." @@ -2983,7 +2988,7 @@ msgstr "Ciao {userName}," msgid "Hi, {userName} <0>({userEmail})" msgstr "Ciao, {userName} <0>({userEmail})" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:164 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:164 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:175 #: apps/remix/app/components/dialogs/document-delete-dialog.tsx:196 msgid "Hide" @@ -3018,7 +3023,7 @@ msgid "I am the owner of this document" msgstr "Sono il proprietario di questo documento" #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:166 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:179 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:177 msgid "I'm sure! Delete it" msgstr "Sono sicuro! Eliminalo" @@ -3198,7 +3203,7 @@ msgstr "Ultimi 7 giorni" msgid "Last modified" msgstr "Ultima modifica" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:102 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:102 msgid "Last updated" msgstr "Ultimo aggiornamento" @@ -3244,7 +3249,7 @@ msgstr "Ti piacerebbe avere il tuo profilo pubblico con accordi?" msgid "Link expires in 1 hour." msgstr "Il link scade tra 1 ora." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:225 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:225 msgid "Link template" msgstr "Collega modello" @@ -3253,8 +3258,8 @@ msgid "Links Generated" msgstr "Link Generati" #. placeholder {0}: webhook.eventTriggers .map((trigger) => toFriendlyWebhookEventName(trigger)) .join(', ') -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:79 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:74 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:79 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:74 msgid "Listening to {0}" msgstr "Ascoltando {0}" @@ -3297,14 +3302,18 @@ msgstr "Gestisci" msgid "Manage {0}'s profile" msgstr "Gestisci il profilo di {0}" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/index.tsx:24 +#: apps/remix/app/routes/_authenticated+/settings+/teams.tsx:23 msgid "Manage all teams you are currently associated with." msgstr "Gestisci tutti i team a cui sei attualmente associato." -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:183 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:183 msgid "Manage and view template" msgstr "Gestisci e visualizza il modello" +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:146 +msgid "Manage billing" +msgstr "" + #: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx:338 msgid "Manage details for this public template" msgstr "Gestisci i dettagli per questo modello pubblico" @@ -3317,7 +3326,7 @@ msgstr "Gestisci Link Diretto" msgid "Manage documents" msgstr "Gestisci documenti" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:149 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:149 msgid "Manage passkeys" msgstr "Gestisci chiavi di accesso" @@ -3325,11 +3334,15 @@ msgstr "Gestisci chiavi di accesso" msgid "Manage subscription" msgstr "Gestisci abbonamento" +#: apps/remix/app/components/general/billing-portal-button.tsx:45 +msgid "Manage Subscription" +msgstr "" + #: apps/remix/app/routes/_authenticated+/admin+/subscriptions.tsx:28 msgid "Manage subscriptions" msgstr "Gestisci abbonamenti" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:93 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:93 msgid "Manage team subscription." msgstr "Gestisci abbonamento del team." @@ -3341,7 +3354,7 @@ msgstr "Gestisci gruppi" msgid "Manage the direct link signing for this template" msgstr "Gestisci la firma del link diretto per questo modello" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:53 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:53 msgid "Manage the members or invite new members." msgstr "Gestisci i membri o invita nuovi membri." @@ -3349,7 +3362,7 @@ msgstr "Gestisci i membri o invita nuovi membri." msgid "Manage users" msgstr "Gestisci utenti" -#: apps/remix/app/routes/_authenticated+/settings+/security+/passkeys+/index.tsx:20 +#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx:20 msgid "Manage your passkeys." msgstr "Gestisci le tue chiavi di accesso." @@ -3390,7 +3403,7 @@ msgstr "Membro" msgid "Member Since" msgstr "Membro dal" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:52 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:52 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:84 #: apps/remix/app/components/general/teams/team-settings-nav-desktop.tsx:75 msgid "Members" @@ -3410,7 +3423,8 @@ msgstr "" msgid "Modify recipients" msgstr "Modifica destinatari" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:60 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:60 +#: apps/remix/app/components/general/billing-plans.tsx:28 msgid "Monthly" msgstr "Mensile" @@ -3445,7 +3459,7 @@ msgstr "Sposta nel team" msgid "Moving..." msgstr "Spostamento..." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:36 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:36 msgid "My templates" msgstr "I miei modelli" @@ -3491,7 +3505,7 @@ msgstr "Necessita di visualizzazione" msgid "Never" msgstr "Mai" -#: apps/remix/app/components/forms/token.tsx:217 +#: apps/remix/app/components/forms/token.tsx:218 msgid "Never expire" msgstr "Mai scadere" @@ -3509,7 +3523,7 @@ msgid "New Template" msgstr "Nuovo modello" #: apps/remix/app/components/forms/signup.tsx:515 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:418 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:465 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:460 msgid "Next" msgstr "Successivo" @@ -3523,10 +3537,11 @@ msgid "No active drafts" msgstr "Nessuna bozza attiva" #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:113 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:28 msgid "No further action is required from you at this time." msgstr "Non sono richieste ulteriori azioni da parte tua in questo momento." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:49 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:49 msgid "No payment required" msgstr "Nessun pagamento richiesto" @@ -3645,21 +3660,17 @@ msgstr "per conto di \"{0}\" ti ha invitato a visualizzare questo documento" msgid "On this page, you can create a new webhook." msgstr "In questa pagina, puoi creare un nuovo webhook." -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:23 -msgid "On this page, you can create new API tokens and manage the existing ones. <0/>Also see our <1>Documentation." -msgstr "In questa pagina, puoi creare nuovi token API e gestire quelli esistenti. <0/>Consulta anche la nostra <1>Documentazione." +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:28 +msgid "On this page, you can create and manage API tokens. See our <0>Documentation for more information." +msgstr "" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:59 -msgid "On this page, you can create new API tokens and manage the existing ones. <0/>You can view our swagger docs <1>here" -msgstr "In questa pagina, puoi creare nuovi token API e gestire quelli esistenti. <0/>Puoi visualizzare la nostra documentazione swagger <1>qui" - -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:32 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:27 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:32 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:27 msgid "On this page, you can create new Webhooks and manage the existing ones." msgstr "In questa pagina, puoi creare nuovi Webhook e gestire quelli esistenti." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:94 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:91 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:94 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:91 msgid "On this page, you can edit the webhook and its settings." msgstr "In questa pagina, puoi modificare il webhook e le sue impostazioni." @@ -3765,8 +3776,8 @@ msgstr "Nome della passkey" msgid "Passkey Re-Authentication" msgstr "Ri-autenticazione con chiave di accesso" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:137 -#: apps/remix/app/routes/_authenticated+/settings+/security+/passkeys+/index.tsx:19 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:137 +#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx:19 msgid "Passkeys" msgstr "Passkey" @@ -3824,7 +3835,7 @@ msgstr "È necessario il pagamento per completare la creazione del tuo team." msgid "Payment overdue" msgstr "Pagamento scaduto" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:76 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:76 #: apps/remix/app/components/tables/user-settings-teams-page-table.tsx:70 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:203 #: apps/remix/app/components/general/document/document-status.tsx:22 @@ -3846,7 +3857,7 @@ msgstr "Documenti in sospeso" msgid "Pending Documents" msgstr "Documenti in sospeso" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:61 +#: apps/remix/app/components/general/teams/team-invitations.tsx:61 msgid "Pending invitations" msgstr "Inviti in sospeso" @@ -3929,7 +3940,7 @@ msgstr "Per favore conferma il tuo indirizzo email" msgid "Please contact support if you would like to revert this action." msgstr "Si prega di contattare il supporto se si desidera annullare questa azione." -#: apps/remix/app/components/forms/token.tsx:168 +#: apps/remix/app/components/forms/token.tsx:169 msgid "Please enter a meaningful name for your token. This will help you identify it later." msgstr "Si prega di inserire un nome significativo per il proprio token. Questo ti aiuterà a identificarlo più tardi." @@ -3958,7 +3969,7 @@ msgstr "Si prega di notare che questa azione è <0>irreversibile. Una volta msgid "Please note that this action is irreversible. Once confirmed, your template will be permanently deleted." msgstr "Si prega di notare che questa azione è irreversibile. Una volta confermato, il tuo modello sarà eliminato permanentemente." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:126 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:124 msgid "Please note that this action is irreversible. Once confirmed, your token will be permanently deleted." msgstr "Si prega di notare che questa azione è irreversibile. Una volta confermato, il tuo token sarà eliminato permanentemente." @@ -4047,11 +4058,11 @@ msgstr "I modelli privati possono essere modificati e visualizzati solo da te." msgid "Profile" msgstr "Profilo" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:193 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:193 msgid "Profile is currently <0>hidden." msgstr "Il profilo è attualmente <0>nascosto." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:181 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:181 msgid "Profile is currently <0>visible." msgstr "Il profilo è attualmente <0>visibile." @@ -4065,7 +4076,7 @@ msgstr "Profilo aggiornato" msgid "Public" msgstr "Pubblico" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:34 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:34 #: apps/remix/app/components/general/settings-nav-mobile.tsx:45 #: apps/remix/app/components/general/settings-nav-desktop.tsx:43 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:71 @@ -4137,7 +4148,7 @@ msgstr "È richiesta una riautenticazione per firmare questo campo" msgid "Receives copy" msgstr "Riceve copia" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:160 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:160 #: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx:54 msgid "Recent activity" msgstr "Attività recenti" @@ -4195,7 +4206,7 @@ msgstr "I destinatari conserveranno comunque la loro copia del documento" msgid "Recovery code copied" msgstr "Codice di recupero copiato" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:116 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:116 msgid "Recovery codes" msgstr "Codici di recupero" @@ -4213,9 +4224,9 @@ msgstr "URL di reindirizzamento" msgid "Registration Successful" msgstr "Registrazione avvenuta con successo" -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:107 -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:114 -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:160 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:116 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:123 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:169 #: packages/email/template-components/template-document-invite.tsx:98 msgid "Reject Document" msgstr "Rifiuta Documento" @@ -4279,7 +4290,7 @@ msgstr "Rimuovere l'email del team" msgid "Remove team member" msgstr "Rimuovere il membro del team" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:69 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:69 msgid "Renews: {formattedDate}" msgstr "Rinnova: {formattedDate}" @@ -4378,11 +4389,11 @@ msgstr "Torna alla home" msgid "Return to sign in" msgstr "Torna a accedere" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:117 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:117 msgid "Revoke" msgstr "Revoca" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:86 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:86 msgid "Revoke access" msgstr "Revoca l'accesso" @@ -4417,7 +4428,7 @@ msgstr "Salva" msgid "Save Template" msgstr "Salva modello" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:63 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:63 #: apps/remix/app/components/tables/user-settings-teams-page-table.tsx:57 #: apps/remix/app/components/tables/documents-table-sender-filter.tsx:58 #: apps/remix/app/components/general/app-nav-desktop.tsx:84 @@ -4441,18 +4452,18 @@ msgstr "Cerca documenti..." msgid "Search languages..." msgstr "Cerca lingue..." -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:185 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:185 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:210 msgid "Secret" msgstr "Segreto" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:67 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:67 #: apps/remix/app/components/general/settings-nav-mobile.tsx:71 #: apps/remix/app/components/general/settings-nav-desktop.tsx:69 msgid "Security" msgstr "Sicurezza" -#: apps/remix/app/routes/_authenticated+/settings+/security+/activity+/index.tsx:18 +#: apps/remix/app/routes/_authenticated+/settings+/security.activity.tsx:18 msgid "Security activity" msgstr "Attività di sicurezza" @@ -4616,7 +4627,7 @@ msgstr "Condividi il link" msgid "Share your signing experience!" msgstr "Condividi la tua esperienza di firma!" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:172 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:172 msgid "Show" msgstr "Mostra" @@ -4629,11 +4640,11 @@ msgstr "Mostra informazioni aggiuntive" msgid "Show advanced settings" msgstr "Mostra impostazioni avanzate" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:37 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:37 msgid "Show templates in your public profile for your audience to sign and get started quickly" msgstr "Mostra modelli nel tuo profilo pubblico per il tuo pubblico da firmare e iniziare rapidamente" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:44 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:44 msgid "Show templates in your team public profile for your audience to sign and get started quickly" msgstr "Mostra modelli nel profilo pubblico della tua squadra per il tuo pubblico da firmare e iniziare rapidamente" @@ -4664,7 +4675,7 @@ msgstr "Firma come {0} <0>({1})" msgid "Sign as<0>{0} <1>({1})" msgstr "Firma come<0>{0} <1>({1})" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:254 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:301 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:358 msgid "Sign document" msgstr "Firma il documento" @@ -4697,7 +4708,7 @@ msgstr "Accedi al tuo account" msgid "Sign Out" msgstr "Disconnetti" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:279 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:326 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:379 msgid "Sign the document to complete the process." msgstr "Firma il documento per completare il processo." @@ -4721,7 +4732,7 @@ msgstr "Iscriviti con OIDC" #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:342 #: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx:335 #: apps/remix/app/components/forms/profile.tsx:118 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:376 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:423 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:420 #: packages/ui/primitives/template-flow/add-template-fields.tsx:711 #: packages/ui/primitives/document-flow/types.ts:49 @@ -4736,7 +4747,7 @@ msgstr "ID Firma" #: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx:297 #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:366 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:402 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:449 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:446 msgid "Signature is too small. Please provide a more complete signature." msgstr "La firma è troppo piccola. Si prega di fornire una firma più completa." @@ -4789,7 +4800,7 @@ msgstr "Certificato di firma fornito da" msgid "Signing Complete!" msgstr "Firma completata!" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:292 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:339 msgid "Signing for" msgstr "" @@ -4841,10 +4852,7 @@ msgstr "Alcuni firmatari non hanno un campo firma assegnato. Assegna almeno 1 ca #: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx:56 #: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx:88 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:132 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:169 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:43 -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:133 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:133 #: apps/remix/app/components/tables/user-settings-pending-teams-table-actions.tsx:34 #: apps/remix/app/components/tables/team-settings-member-invites-table.tsx:62 #: apps/remix/app/components/tables/team-settings-member-invites-table.tsx:79 @@ -4852,7 +4860,12 @@ msgstr "Alcuni firmatari non hanno un campo firma assegnato. Assegna almeno 1 ca #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:98 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:95 #: apps/remix/app/components/tables/documents-table-action-button.tsx:73 +#: apps/remix/app/components/general/billing-portal-button.tsx:35 +#: apps/remix/app/components/general/billing-plans.tsx:62 #: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx:52 +#: apps/remix/app/components/general/teams/team-invitations.tsx:132 +#: apps/remix/app/components/general/teams/team-invitations.tsx:169 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:43 #: apps/remix/app/components/general/teams/team-email-dropdown.tsx:38 #: apps/remix/app/components/general/teams/team-billing-portal-button.tsx:28 #: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx:34 @@ -4864,7 +4877,7 @@ msgstr "Alcuni firmatari non hanno un campo firma assegnato. Assegna almeno 1 ca #: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx:24 #: apps/remix/app/components/general/direct-template/direct-template-page.tsx:119 #: apps/remix/app/components/forms/team-branding-preferences-form.tsx:106 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:154 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:167 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:260 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:103 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:128 @@ -4914,12 +4927,11 @@ msgstr "Qualcosa è andato storto durante l'aggiornamento dell'abbonamento di fa msgid "Something went wrong!" msgstr "Qualcosa è andato storto!" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:46 #: packages/ui/primitives/data-table.tsx:134 msgid "Something went wrong." msgstr "Qualcosa è andato storto." -#: apps/remix/app/components/forms/token.tsx:136 +#: apps/remix/app/components/forms/token.tsx:137 msgid "Something went wrong. Please try again later." msgstr "Qualcosa è andato storto. Si prega di riprovare più tardi." @@ -4970,6 +4982,10 @@ msgstr "Invia" msgid "Submitting..." msgstr "" +#: apps/remix/app/components/general/billing-plans.tsx:129 +msgid "Subscribe" +msgstr "" + #: apps/remix/app/components/tables/admin-dashboard-users-table.tsx:78 msgid "Subscription" msgstr "Abbonamento" @@ -4978,9 +4994,6 @@ msgstr "Abbonamento" msgid "Subscriptions" msgstr "Abbonamenti" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:125 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:162 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:36 #: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx:54 #: apps/remix/app/components/tables/user-settings-pending-teams-table-actions.tsx:28 #: apps/remix/app/components/tables/team-settings-member-invites-table.tsx:56 @@ -4989,6 +5002,9 @@ msgstr "Abbonamenti" #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:90 #: apps/remix/app/components/general/verify-email-banner.tsx:46 #: apps/remix/app/components/general/teams/team-transfer-status.tsx:41 +#: apps/remix/app/components/general/teams/team-invitations.tsx:125 +#: apps/remix/app/components/general/teams/team-invitations.tsx:162 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:36 #: apps/remix/app/components/general/teams/team-email-dropdown.tsx:31 #: apps/remix/app/components/forms/team-update-form.tsx:65 #: apps/remix/app/components/forms/public-profile-form.tsx:79 @@ -5045,12 +5061,12 @@ msgstr "Il team \"{0}\" è stato eliminato su Documenso" msgid "Team checkout" msgstr "Acquisto squadra" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:65 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:144 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:65 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:144 msgid "Team email" msgstr "Email della squadra" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:57 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:57 msgid "Team Email" msgstr "Email del team" @@ -5130,11 +5146,11 @@ msgstr "Trasferimento della proprietà del team già completato!" msgid "Team ownership transferred!" msgstr "Proprietà del team trasferita!" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:31 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:31 msgid "Team Preferences" msgstr "Preferenze del team" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:41 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:41 msgid "Team Public Profile" msgstr "Profilo pubblico del team" @@ -5142,11 +5158,11 @@ msgstr "Profilo pubblico del team" msgid "Team settings" msgstr "Impostazioni del team" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_layout.tsx:39 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx:39 msgid "Team Settings" msgstr "Impostazioni del team" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:43 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:43 msgid "Team templates" msgstr "Modelli del team" @@ -5163,7 +5179,7 @@ msgstr "Richiesta di trasferimento del team scaduta" msgid "Team URL" msgstr "URL del team" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/index.tsx:23 +#: apps/remix/app/routes/_authenticated+/settings+/teams.tsx:22 #: apps/remix/app/components/general/settings-nav-mobile.tsx:58 #: apps/remix/app/components/general/settings-nav-desktop.tsx:56 #: apps/remix/app/components/general/menu-switcher.tsx:155 @@ -5175,8 +5191,8 @@ msgstr "Team" msgid "Teams restricted" msgstr "Team limitati" -#: apps/remix/app/routes/_authenticated+/templates+/$id.edit.tsx:71 -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:166 +#: apps/remix/app/routes/_authenticated+/templates.$id.edit.tsx:71 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:166 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:37 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:140 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:220 @@ -5221,8 +5237,8 @@ msgstr "Modello salvato" msgid "Template title" msgstr "Titolo del modello" -#: apps/remix/app/routes/_authenticated+/templates+/_index.tsx:56 -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:102 +#: apps/remix/app/routes/_authenticated+/templates._index.tsx:56 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:102 #: apps/remix/app/components/general/app-nav-mobile.tsx:35 #: apps/remix/app/components/general/app-nav-desktop.tsx:21 #: apps/remix/app/components/general/app-command-menu.tsx:203 @@ -5309,6 +5325,7 @@ msgid "The document owner has been notified of this rejection. No further action msgstr "Il proprietario del documento è stato informato di questo rifiuto. Non sono necessarie ulteriori azioni da parte tua in questo momento. Il proprietario del documento potrebbe contattarti per qualsiasi domanda riguardante questo rifiuto." #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:106 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:21 msgid "The document owner has been notified of your decision. They may contact you with further instructions if necessary." msgstr "Il proprietario del documento è stato informato della tua decisione. Potrebbe contattarti per ulteriori istruzioni, se necessario." @@ -5332,7 +5349,7 @@ msgstr "Il nome del documento" msgid "The email or password provided is incorrect" msgstr "" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:172 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:172 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:196 msgid "The events that will trigger a webhook to be sent to your URL." msgstr "Gli eventi che scateneranno un webhook da inviare al tuo URL." @@ -5464,11 +5481,11 @@ msgstr "Il modello è stato spostato con successo al team selezionato." msgid "The template will be removed from your profile" msgstr "Il modello sarà rimosso dal tuo profilo" -#: apps/remix/app/components/forms/token.tsx:102 +#: apps/remix/app/components/forms/token.tsx:103 msgid "The token was copied to your clipboard." msgstr "Il token è stato copiato negli appunti." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:83 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:81 msgid "The token was deleted successfully." msgstr "Il token è stato eliminato con successo." @@ -5480,8 +5497,8 @@ msgstr "Il token che hai usato per reimpostare la tua password è scaduto o non msgid "The two-factor authentication code provided is incorrect" msgstr "" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:121 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:120 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:121 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:120 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:145 msgid "The URL for Documenso to send webhook events to." msgstr "L'URL per Documenso per inviare eventi webhook." @@ -5490,8 +5507,8 @@ msgstr "L'URL per Documenso per inviare eventi webhook." msgid "The webhook has been successfully deleted." msgstr "Il webhook è stato eliminato con successo." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:74 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:71 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:74 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:71 msgid "The webhook has been updated successfully." msgstr "Il webhook è stato aggiornato con successo." @@ -5507,7 +5524,7 @@ msgstr "Non ci sono bozze attive al momento attuale. Puoi caricare un documento msgid "There are no completed documents yet. Documents that you have created or received will appear here once completed." msgstr "Non ci sono ancora documenti completati. I documenti che hai creato o ricevuto appariranno qui una volta completati." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:69 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:69 msgid "They have permission on your behalf to:" msgstr "Hanno il permesso per tuo conto di:" @@ -5561,11 +5578,11 @@ msgstr "Questo documento è stato annullato dal proprietario e non è più dispo msgid "This document has been cancelled by the owner." msgstr "Questo documento è stato annullato dal proprietario." -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:221 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:221 msgid "This document has been signed by all recipients" msgstr "Questo documento è stato firmato da tutti i destinatari" -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:224 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:224 msgid "This document is currently a draft and has not been sent" msgstr "Questo documento è attualmente una bozza e non è stato inviato" @@ -5649,7 +5666,7 @@ msgstr "Questa sessione è scaduta. Per favore prova di nuovo." msgid "This signer has already signed the document." msgstr "Questo firmatario ha già firmato il documento." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:199 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:199 msgid "This team, and any associated data excluding billing invoices will be permanently deleted." msgstr "Questo team e tutti i dati associati, escluse le fatture di fatturazione, verranno eliminati definitivamente." @@ -5695,7 +5712,7 @@ msgstr "Questo sovrascriverà qualsiasi impostazione globale." msgid "Time" msgstr "Ora" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:108 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:108 msgid "Time zone" msgstr "Fuso orario" @@ -5762,15 +5779,15 @@ msgstr "Per procedere ulteriormente, si prega di impostare almeno un valore per msgid "To use our electronic signature service, you must have access to:" msgstr "Per utilizzare il nostro servizio di firma elettronica, devi avere accesso a:" -#: apps/remix/app/components/embed/embed-authentication-required.tsx:24 +#: apps/remix/app/components/embed/embed-authentication-required.tsx:30 msgid "To view this document you need to be signed into your account, please sign in to continue." msgstr "Per visualizzare questo documento devi essere connesso al tuo account, per favore accedi per continuare." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:187 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:187 msgid "Toggle the switch to hide your profile from the public." msgstr "Attiva l'interruttore per nascondere il tuo profilo al pubblico." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:199 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:199 msgid "Toggle the switch to show your profile to the public." msgstr "Attiva l'interruttore per mostrare il tuo profilo al pubblico." @@ -5778,24 +5795,23 @@ msgstr "Attiva l'interruttore per mostrare il tuo profilo al pubblico." msgid "Token" msgstr "Token" -#: apps/remix/app/components/forms/token.tsx:101 +#: apps/remix/app/components/forms/token.tsx:102 msgid "Token copied to clipboard" msgstr "Token copiato negli appunti" -#: apps/remix/app/components/forms/token.tsx:122 +#: apps/remix/app/components/forms/token.tsx:123 msgid "Token created" msgstr "Token creato" -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:82 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:80 msgid "Token deleted" msgstr "Token eliminato" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:107 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:72 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:95 msgid "Token doesn't have an expiration date" msgstr "Il token non ha una data di scadenza" -#: apps/remix/app/components/forms/token.tsx:186 +#: apps/remix/app/components/forms/token.tsx:187 msgid "Token expiration date" msgstr "Data di scadenza del token" @@ -5803,7 +5819,7 @@ msgstr "Data di scadenza del token" msgid "Token has expired. Please try again." msgstr "Il token è scaduto. Per favore riprova." -#: apps/remix/app/components/forms/token.tsx:158 +#: apps/remix/app/components/forms/token.tsx:159 msgid "Token name" msgstr "Nome del token" @@ -5835,27 +5851,27 @@ msgstr "trasferisci {teamName}" msgid "Transfer ownership of this team to a selected team member." msgstr "Trasferisci la proprietà di questo team a un membro del team selezionato." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:173 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:173 #: apps/remix/app/components/dialogs/team-transfer-dialog.tsx:145 #: apps/remix/app/components/dialogs/team-transfer-dialog.tsx:154 msgid "Transfer team" msgstr "Trasferisci il team" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:177 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:177 msgid "Transfer the ownership of the team to another team member." msgstr "Trasferisci la proprietà del team a un altro membro del team." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:160 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:159 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:160 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:159 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:184 msgid "Triggers" msgstr "Trigger" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:84 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:84 msgid "Two factor authentication" msgstr "Autenticazione a due fattori" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:120 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:120 msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app." msgstr "I codici di recupero dell'autenticazione a due fattori sono utilizzati per accedere al tuo account nel caso in cui perdi l'accesso alla tua app di autenticazione." @@ -5904,7 +5920,7 @@ msgstr "Impossibile cambiare la lingua in questo momento. Per favore riprova pi msgid "Unable to copy recovery code" msgstr "Impossibile copiare il codice di recupero" -#: apps/remix/app/components/forms/token.tsx:106 +#: apps/remix/app/components/forms/token.tsx:107 msgid "Unable to copy token" msgstr "Impossibile copiare il token" @@ -5912,7 +5928,7 @@ msgstr "Impossibile copiare il token" msgid "Unable to create direct template access. Please try again later." msgstr "Impossibile creare l'accesso diretto al modello. Si prega di riprovare più tardi." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:170 +#: apps/remix/app/components/general/teams/team-invitations.tsx:170 msgid "Unable to decline this team invitation at this time." msgstr "Impossibile rifiutare questo invito al team in questo momento." @@ -5928,7 +5944,7 @@ msgstr "Impossibile eliminare il team" msgid "Unable to disable two-factor authentication" msgstr "Impossibile disabilitare l'autenticazione a due fattori" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:133 +#: apps/remix/app/components/general/teams/team-invitations.tsx:133 msgid "Unable to join this team at this time." msgstr "Impossibile unirsi a questo team in questo momento." @@ -5975,6 +5991,7 @@ msgstr "Impossibile configurare l'autenticazione a due fattori" msgid "Unable to sign in" msgstr "Impossibile accedere" +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:49 #: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx:163 msgid "Unauthorized" msgstr "Non autorizzato" @@ -5987,7 +6004,7 @@ msgstr "Incompleto" #: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx:270 #: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx:281 #: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx:292 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:61 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:61 msgid "Unknown" msgstr "Sconosciuto" @@ -6051,8 +6068,8 @@ msgstr "Aggiorna il ruolo e aggiungi campi come richiesto per il destinatario di msgid "Update user" msgstr "Aggiorna utente" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:203 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:204 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:203 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:204 msgid "Update webhook" msgstr "Aggiorna webhook" @@ -6125,7 +6142,7 @@ msgstr "Il file caricato è troppo piccolo" msgid "Uploaded file not an allowed file type" msgstr "Il file caricato non è di un tipo di file consentito" -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:194 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:194 msgid "Use" msgstr "Utilizza" @@ -6235,7 +6252,7 @@ msgstr "Cronologia delle versioni" msgid "View" msgstr "Visualizza" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:170 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:170 msgid "View activity" msgstr "Visualizza attività" @@ -6243,11 +6260,11 @@ msgstr "Visualizza attività" msgid "View all documents sent to and from this email address" msgstr "Visualizza tutti i documenti inviati a o da questo indirizzo email" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:77 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:77 msgid "View all documents sent to your account" msgstr "Visualizza tutti i documenti inviati al tuo account" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:164 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:164 msgid "View all recent security activity related to your account." msgstr "Visualizza tutte le attività di sicurezza recenti relative al tuo account." @@ -6255,7 +6272,7 @@ msgstr "Visualizza tutte le attività di sicurezza recenti relative al tuo accou msgid "View all related documents" msgstr "Visualizza tutti i documenti correlati" -#: apps/remix/app/routes/_authenticated+/settings+/security+/activity+/index.tsx:19 +#: apps/remix/app/routes/_authenticated+/settings+/security.activity.tsx:19 msgid "View all security activity related to your account." msgstr "Visualizza tutte le attività di sicurezza relative al tuo account." @@ -6275,11 +6292,11 @@ msgstr "Visualizza documento" msgid "View Document" msgstr "Visualizza documento" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:154 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:154 msgid "View documents associated with this email" msgstr "Visualizza documenti associati a questa email" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:54 +#: apps/remix/app/components/general/teams/team-invitations.tsx:54 msgid "View invites" msgstr "Visualizza inviti" @@ -6360,6 +6377,7 @@ msgstr "Vuoi il tuo profilo pubblico?" msgid "Warning: Assistant as last signer" msgstr "" +#: apps/remix/app/components/general/billing-portal-button.tsx:25 #: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx:54 #: apps/remix/app/components/general/teams/team-billing-portal-button.tsx:30 msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support." @@ -6377,8 +6395,8 @@ msgstr "Non siamo in grado di aggiornare questa chiave d'accesso al momento. Per msgid "We encountered an error while removing the direct template link. Please try again later." msgstr "Abbiamo riscontrato un errore durante la rimozione del link diretto al modello. Per favore riprova più tardi." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:83 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:80 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:83 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:80 msgid "We encountered an error while updating the webhook. Please try again later." msgstr "Abbiamo riscontrato un errore durante l'aggiornamento del webhook. Per favore riprova più tardi." @@ -6402,7 +6420,7 @@ msgstr "Abbiamo riscontrato un errore sconosciuto mentre tentavamo di eliminare msgid "We encountered an unknown error while attempting to delete this team. Please try again later." msgstr "Abbiamo riscontrato un errore sconosciuto mentre tentavamo di eliminare questo team. Per favore riprova più tardi." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:92 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:90 msgid "We encountered an unknown error while attempting to delete this token. Please try again later." msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di eliminare questo token. Si prega di riprovare più tardi." @@ -6438,7 +6456,7 @@ msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di richie msgid "We encountered an unknown error while attempting to reset your password. Please try again later." msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di reimpostare la tua password. Si prega di riprovare più tardi." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:45 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:45 msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support." msgstr "Abbiamo riscontrato un errore sconosciuto durante il tentativo di revocare l'accesso. Si prega di riprovare o contattare il supporto." @@ -6497,7 +6515,7 @@ msgstr "Abbiamo bisogno di un nome utente per creare il tuo profilo" msgid "We need your signature to sign documents" msgstr "Abbiamo bisogno della tua firma per firmare i documenti" -#: apps/remix/app/components/forms/token.tsx:107 +#: apps/remix/app/components/forms/token.tsx:108 msgid "We were unable to copy the token to your clipboard. Please try again." msgstr "Non siamo riusciti a copiare il token negli appunti. Si prega di riprovare." @@ -6523,7 +6541,7 @@ msgstr "Non siamo riusciti a disabilitare l'autenticazione a due fattori per il msgid "We were unable to log you out at this time." msgstr "Non siamo riusciti a disconnetterti in questo momento." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:134 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:134 msgid "We were unable to set your public profile to public. Please try again." msgstr "Non siamo riusciti a impostare il tuo profilo pubblico come pubblico. Per favore riprova." @@ -6533,7 +6551,7 @@ msgid "We were unable to setup two-factor authentication for your account. Pleas msgstr "Non siamo riusciti a impostare l'autenticazione a due fattori per il tuo account. Assicurati di aver inserito correttamente il tuo codice e riprova." #: apps/remix/app/components/general/direct-template/direct-template-page.tsx:121 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:156 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:169 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:262 msgid "We were unable to submit this document at this time. Please try again later." msgstr "Non siamo riusciti a inviare questo documento in questo momento. Per favore riprova più tardi." @@ -6571,7 +6589,7 @@ msgstr "Genereremo link di firma per te, che potrai inviare ai destinatari trami msgid "We won't send anything to notify recipients." msgstr "Non invieremo nulla per notificare i destinatari." -#: apps/remix/app/routes/_authenticated+/templates+/_index.tsx:72 +#: apps/remix/app/routes/_authenticated+/templates._index.tsx:72 #: apps/remix/app/components/tables/documents-table-empty-state.tsx:29 msgid "We're all empty" msgstr "Siamo tutti vuoti" @@ -6596,18 +6614,18 @@ msgstr "Webhook creato" msgid "Webhook deleted" msgstr "Webhook eliminato" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:73 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:70 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:73 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:70 msgid "Webhook updated" msgstr "Webhook aggiornato" -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:113 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:113 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:138 msgid "Webhook URL" msgstr "URL del webhook" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:31 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:26 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:31 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:26 #: apps/remix/app/components/general/settings-nav-mobile.tsx:97 #: apps/remix/app/components/general/settings-nav-desktop.tsx:95 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:107 @@ -6615,6 +6633,10 @@ msgstr "URL del webhook" msgid "Webhooks" msgstr "Webhook" +#: apps/remix/app/components/general/billing-plans.tsx:27 +msgid "Weekly" +msgstr "" + #: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx:17 msgid "Welcome" msgstr "Benvenuto" @@ -6663,7 +6685,8 @@ msgstr "Scrivi della squadra" msgid "Write about yourself" msgstr "Scrivi di te stesso" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:59 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:59 +#: apps/remix/app/components/general/billing-plans.tsx:29 msgid "Yearly" msgstr "Annuale" @@ -6695,7 +6718,7 @@ msgstr "Stai per rimuovere il seguente utente da <0>{teamName}." #. placeholder {0}: teamEmail.team.name #. placeholder {1}: teamEmail.team.url -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:97 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:97 msgid "You are about to revoke access for team <0>{0} ({1}) to use your email." msgstr "Stai per revocare l'accesso per il team <0>{0} ({1}) per utilizzare la tua email." @@ -6703,6 +6726,10 @@ msgstr "Stai per revocare l'accesso per il team <0>{0} ({1}) per utilizzare msgid "You are about to send this document to the recipients. Are you sure you want to continue?" msgstr "Stai per inviare questo documento ai destinatari. Sei sicuro di voler continuare?" +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:90 +msgid "You are currently on the <0>Free Plan." +msgstr "" + #: apps/remix/app/components/dialogs/team-member-update-dialog.tsx:147 msgid "You are currently updating <0>{teamMemberName}." msgstr "Stai attualmente aggiornando <0>{teamMemberName}." @@ -6731,11 +6758,11 @@ msgstr "Non sei autorizzato ad abilitare questo utente." msgid "You can also copy and paste this link into your browser: {confirmationLink} (link expires in 1 hour)" msgstr "Puoi anche copiare e incollare questo link nel tuo browser: {confirmationLink} (il link scade tra 1 ora)" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:35 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:35 msgid "You can choose to enable or disable your profile for public view." msgstr "Puoi scegliere di abilitare o disabilitare il tuo profilo per la visualizzazione pubblica." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:42 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:42 msgid "You can choose to enable or disable your team profile for public view." msgstr "Puoi scegliere di abilitare o disabilitare il profilo del tuo team per la visualizzazione pubblica." @@ -6755,7 +6782,7 @@ msgstr "Puoi aggiornare l'URL del profilo aggiornando l'URL del team nella pagin msgid "You can use the following variables in your message:" msgstr "Puoi utilizzare le seguenti variabili nel tuo messaggio:" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:69 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:69 msgid "You can view documents associated with this email and use this identity when sending documents." msgstr "Puoi visualizzare i documenti associati a questa email e utilizzare questa identità quando invii documenti." @@ -6788,7 +6815,11 @@ msgstr "Non puoi caricare documenti in questo momento." msgid "You cannot upload encrypted PDFs" msgstr "Non puoi caricare PDF crittografati" -#: apps/remix/app/components/forms/token.tsx:134 +#: apps/remix/app/components/general/billing-portal-button.tsx:30 +msgid "You do not currently have a customer record, this should not happen. Please contact support for assistance." +msgstr "" + +#: apps/remix/app/components/forms/token.tsx:135 msgid "You do not have permission to create a token for this team" msgstr "Non hai il permesso di creare un token per questo team" @@ -6847,12 +6878,12 @@ msgstr "Hai rifiutato l'invito da <0>{0} per unirti al loro team." msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it." msgstr "Hai avviato il documento {0} che richiede che tu lo {recipientActionVerb}." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:45 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:40 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:45 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:40 msgid "You have no webhooks yet. Your webhooks will be shown here once you create them." msgstr "Non hai ancora webhook. I tuoi webhook verranno visualizzati qui una volta creati." -#: apps/remix/app/routes/_authenticated+/templates+/_index.tsx:76 +#: apps/remix/app/routes/_authenticated+/templates._index.tsx:76 msgid "You have not yet created any templates. To create a template please upload one." msgstr "Non hai ancora creato alcun modello. Per creare un modello, caricane uno." @@ -6883,6 +6914,7 @@ msgid "You have rejected the document '{documentName}'" msgstr "Hai rifiutato il documento '{documentName}'" #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:102 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:17 msgid "You have rejected this document" msgstr "Hai rifiutato questo documento" @@ -6903,7 +6935,7 @@ msgstr "Ti sei registrato con successo. Verifica il tuo account cliccando sul li msgid "You have successfully removed this user from the team." msgstr "Hai rimosso con successo questo utente dal team." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:37 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:37 msgid "You have successfully revoked access." msgstr "Hai revocato con successo l'accesso." @@ -6920,12 +6952,12 @@ msgstr "Hai aggiornato {teamMemberName}." msgid "You have verified your email address for <0>{0}." msgstr "Hai verificato il tuo indirizzo email per <0>{0}." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:94 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:94 msgid "You must be an admin of this team to manage billing." msgstr "Devi essere un amministratore di questo team per gestire la fatturazione." #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:53 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:55 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:53 #: apps/remix/app/components/dialogs/team-delete-dialog.tsx:52 msgid "You must enter '{deleteMessage}' to proceed" msgstr "Devi inserire '{deleteMessage}' per procedere" @@ -6934,10 +6966,14 @@ msgstr "Devi inserire '{deleteMessage}' per procedere" msgid "You must have at least one other team member to transfer ownership." msgstr "Devi avere almeno un altro membro del team per trasferire la proprietà." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:118 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:118 msgid "You must set a profile URL before enabling your public profile." msgstr "Devi impostare un'URL del profilo prima di abilitare il tuo profilo pubblico." +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:52 +msgid "You need to be an admin to manage API tokens." +msgstr "" + #: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx:52 msgid "You need to be logged in as <0>{email} to view this page." msgstr "Devi essere loggato come <0>{email} per visualizzare questa pagina." @@ -6990,6 +7026,10 @@ msgstr "Il tuo invio massivo è stato avviato. Riceverai una notifica via email msgid "Your bulk send operation for template \"{templateName}\" has completed." msgstr "La tua operazione di invio massivo per il modello \"{templateName}\" è stata completata." +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:135 +msgid "Your current plan is past due. Please update your payment information." +msgstr "" + #: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx:248 msgid "Your direct signing templates" msgstr "I tuoi modelli di firma diretta" @@ -7044,12 +7084,11 @@ msgstr "La tua email è stata confermata con successo! Ora puoi utilizzare tutte #. placeholder {0}: teamEmail.team.name #. placeholder {1}: teamEmail.team.url -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:61 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:61 msgid "Your email is currently being used by team <0>{0} ({1})." msgstr "La tua email è attualmente utilizzata dal team <0>{0} ({1})." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:79 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:44 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:63 msgid "Your existing tokens" msgstr "I tuoi token esistenti" @@ -7092,7 +7131,7 @@ msgstr "Il tuo codice di recupero è stato copiato negli appunti." msgid "Your recovery codes are listed below. Please store them in a safe place." msgstr "I tuoi codici di recupero sono elencati di seguito. Si prega di conservarli in un luogo sicuro." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:78 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:78 msgid "Your subscription is currently active." msgstr "Il tuo abbonamento è attualmente attivo." @@ -7133,11 +7172,10 @@ msgstr "I tuoi modelli sono stati salvati con successo." msgid "Your token has expired!" msgstr "Il tuo token è scaduto!" -#: apps/remix/app/components/forms/token.tsx:272 +#: apps/remix/app/components/forms/token.tsx:273 msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!" msgstr "Il tuo token è stato creato con successo! Assicurati di copiarlo perché non potrai più vederlo!" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:85 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:50 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:69 msgid "Your tokens will be shown here once you create them." msgstr "I tuoi token verranno mostrati qui una volta creati." diff --git a/packages/lib/translations/pl/web.po b/packages/lib/translations/pl/web.po index 51055696f..1f3387419 100644 --- a/packages/lib/translations/pl/web.po +++ b/packages/lib/translations/pl/web.po @@ -22,7 +22,7 @@ msgstr "" msgid " Enable direct link signing" msgstr "" -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:171 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:171 msgid " The events that will trigger a webhook to be sent to your URL." msgstr "" @@ -59,7 +59,7 @@ msgid "\"{placeholderEmail}\" on behalf of \"{0}\" has invited you to sign \"exa msgstr "\"{placeholderEmail}\" w imieniu \"{0}\" zaprosił Cię do podpisania \"przykładowego dokumentu\"." #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:273 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:325 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:372 msgid "(You)" msgstr "" @@ -85,8 +85,8 @@ msgid "{0, plural, one {# Seat} other {# Seats}}" msgstr "{0, plural, one {# miejsce} few {# miejsca} many {# miejsc} other {# miejsc}}" #. placeholder {0}: data.length -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:36 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:65 +#: apps/remix/app/components/general/teams/team-invitations.tsx:36 +#: apps/remix/app/components/general/teams/team-invitations.tsx:65 msgid "{0, plural, one {<0>You have <1>1 pending team invitation} other {<2>You have <3># pending team invitations}}" msgstr "{0, plural, one {<0>Masz <1>1 oczekujące zaproszenie do zespołu} few {<2>Masz <3># oczekujące zaproszenia do zespołu} many {<2>Masz <3># oczekujących zaproszeń do zespołu} other {<2>Masz <3># oczekujących zaproszeń do zespołu}}" @@ -96,12 +96,12 @@ msgid "{0, plural, one {1 matching field} other {# matching fields}}" msgstr "{0, plural, one {1 pasujące pole} few {# pasujące pola} many {# pasujących pól} other {# pasujących pól}}" #. placeholder {0}: recipients.length -#: apps/remix/app/routes/_authenticated+/documents+/$id.edit.tsx:122 +#: apps/remix/app/routes/_authenticated+/documents.$id.edit.tsx:122 msgid "{0, plural, one {1 Recipient} other {# Recipients}}" msgstr "{0, plural, one {1 odbiorca} few {# odbiorców} many {# odbiorców} other {# odbiorców}}" #. placeholder {0}: pendingRecipients.length -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:232 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:232 msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}" msgstr "{0, plural, one {Czekam na 1 odbiorcę} few {Czekam na # odbiorców} many {Czekam na # odbiorców} other {Czekam na # odbiorców}}" @@ -161,7 +161,7 @@ msgid "{0} on behalf of \"{1}\" has invited you to {recipientActionVerb} the doc msgstr "{0} w imieniu \"{1}\" zaprosił Cię do {recipientActionVerb} dokument „{2}”." #. placeholder {0}: recipients.length -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:167 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:167 msgid "{0} Recipient(s)" msgstr "{0} Odbiorca(ów)" @@ -225,7 +225,7 @@ msgstr "{memberEmail} dołączył do następującego zespołu" msgid "{memberEmail} left the following team" msgstr "{memberEmail} opuścił następujący zespół" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:65 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:65 msgid "{numberOfSeats, plural, one {# member} other {# members}}" msgstr "{numberOfSeats, plural, one {# członek} few {# członkowie} many {# członków} other {# członków}}" @@ -477,21 +477,21 @@ msgstr "<0>Jesteś na drodze do ukończenia podpisywania \"<1>{documentTitle}You are about to complete viewing \"<1>{documentTitle}\".<2/> Are you sure?" msgstr "<0>Jesteś na drodze do zakończenia przeglądania \"<1>{documentTitle}\".<2/> Czy jesteś pewien?" -#: apps/remix/app/components/forms/token.tsx:43 +#: apps/remix/app/components/forms/token.tsx:45 msgid "1 month" msgstr "1 miesiąc" -#: apps/remix/app/components/forms/token.tsx:46 +#: apps/remix/app/components/forms/token.tsx:48 msgid "12 months" msgstr "12 miesięcy" -#: apps/remix/app/components/forms/token.tsx:44 +#: apps/remix/app/components/forms/token.tsx:46 msgid "3 months" msgstr "3 miesiące" #: apps/remix/app/components/general/generic-error-layout.tsx:41 -msgid "404 Page not found" -msgstr "404 Strona nie znaleziona" +msgid "404 not found" +msgstr "" #: apps/remix/app/routes/_profile+/_layout.tsx:102 msgid "404 Profile not found" @@ -505,11 +505,11 @@ msgstr "404 Zespół nie znaleziony" msgid "500 Internal Server Error" msgstr "" -#: apps/remix/app/components/forms/token.tsx:45 +#: apps/remix/app/components/forms/token.tsx:47 msgid "6 months" msgstr "6 miesięcy" -#: apps/remix/app/components/forms/token.tsx:42 +#: apps/remix/app/components/forms/token.tsx:44 msgid "7 days" msgstr "7 dni" @@ -549,7 +549,7 @@ msgstr "Środek do drukowania lub pobierania dokumentów do swoich zapisów" msgid "A new member has joined your team" msgstr "Nowy członek dołączył do Twojego zespołu" -#: apps/remix/app/components/forms/token.tsx:123 +#: apps/remix/app/components/forms/token.tsx:124 msgid "A new token was created successfully." msgstr "Nowy token został utworzony." @@ -585,8 +585,8 @@ msgstr "Zgłoszenie potrzeby użycia twojego e-maila zostało inicjowane przez { msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso" msgstr "Sekret, który zostanie wysłany na Twój adres URL, abyś mógł zweryfikować, że prośba została wysłana przez Documenso" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:191 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:192 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:191 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:192 msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso." msgstr "Sekret, który zostanie wysłany na Twój adres URL, abyś mógł zweryfikować, że prośba została wysłana przez Documenso." @@ -625,7 +625,7 @@ msgstr "Unikalny URL do identyfikacji Twojego zespołu" msgid "A verification email will be sent to the provided email." msgstr "E-mail weryfikacyjny zostanie wysłany na podany adres e-mail." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:146 +#: apps/remix/app/components/general/teams/team-invitations.tsx:146 #: packages/email/templates/team-transfer-request.tsx:82 #: packages/email/templates/team-invite.tsx:95 #: packages/email/templates/confirm-team-email.tsx:119 @@ -648,7 +648,7 @@ msgstr "Akceptuj prośbę o przeniesienie zespołu na Documenso" msgid "Acceptance and Consent" msgstr "Akceptacja i Zgoda" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:126 +#: apps/remix/app/components/general/teams/team-invitations.tsx:126 msgid "Accepted team invitation" msgstr "Akceptowane zaproszenie do zespołu" @@ -696,8 +696,8 @@ msgstr "Akcja" msgid "Actions" msgstr "Akcje" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:70 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:105 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:70 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:105 #: apps/remix/app/components/tables/user-settings-teams-page-table.tsx:64 msgid "Active" msgstr "Aktywne" @@ -728,11 +728,11 @@ msgstr "Dodaj wszystkie istotne pola dla każdego odbiorcy." msgid "Add all relevant placeholders for each recipient." msgstr "Dodaj wszystkie odpowiednie symbole zastępcze dla każdego odbiorcy." -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:94 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:94 msgid "Add an authenticator to serve as a secondary authentication method for signing documents." msgstr "Dodaj autoryzator, aby służył jako dodatkowa metoda uwierzytelniania do podpisywania dokumentów." -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:89 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:89 msgid "Add an authenticator to serve as a secondary authentication method when signing in, or when signing documents." msgstr "Dodaj autoryzator, aby służył jako dodatkowa metoda uwierzytelniania podczas logowania lub podpisywania dokumentów." @@ -897,7 +897,7 @@ msgstr "Cały czas" msgid "Allow document recipients to reply directly to this email address" msgstr "Zezwól odbiorcom dokumentów na bezpośrednią odpowiedź na ten adres e-mail" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:141 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:141 msgid "Allows authenticating using biometrics, password managers, hardware keys, etc." msgstr "Pozwala na uwierzytelnianie za pomocą biometrii, menedżerów haseł, kluczy sprzętowych itp." @@ -930,7 +930,7 @@ msgid "An email requesting the transfer of this team has been sent." msgstr "E-mail z prośbą o przeniesienie tego zespołu został wysłany." #: apps/remix/app/components/general/claim-account.tsx:96 -#: apps/remix/app/components/forms/token.tsx:139 +#: apps/remix/app/components/forms/token.tsx:140 #: apps/remix/app/components/forms/signup.tsx:160 #: apps/remix/app/components/forms/reset-password.tsx:91 #: apps/remix/app/components/forms/password.tsx:89 @@ -1062,6 +1062,10 @@ msgstr "" msgid "An error occurred while signing the document." msgstr "Wystąpił błąd podczas podpisywania dokumentu." +#: apps/remix/app/components/general/billing-plans.tsx:63 +msgid "An error occurred while trying to create a checkout session." +msgstr "" + #: apps/remix/app/components/general/template/template-edit-form.tsx:149 #: apps/remix/app/components/general/document/document-edit-form.tsx:205 msgid "An error occurred while updating the document settings." @@ -1096,7 +1100,7 @@ msgstr "" #: apps/remix/app/components/forms/profile.tsx:74 #: apps/remix/app/components/forms/avatar-image.tsx:94 #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:81 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:90 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:88 #: apps/remix/app/components/dialogs/team-transfer-dialog.tsx:114 #: apps/remix/app/components/dialogs/team-member-update-dialog.tsx:99 #: apps/remix/app/components/dialogs/team-member-invite-dialog.tsx:154 @@ -1125,9 +1129,7 @@ msgstr "Jakiekolwiek źródło" msgid "Any Status" msgstr "Jakikolwiek status" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:43 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:55 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:19 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:26 #: apps/remix/app/components/general/settings-nav-mobile.tsx:84 #: apps/remix/app/components/general/settings-nav-desktop.tsx:82 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:94 @@ -1173,11 +1175,11 @@ msgstr "Zatwierdzanie" msgid "Are you sure you want to complete the document? This action cannot be undone. Please ensure that you have completed prefilling all relevant fields before proceeding." msgstr "" -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:122 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:120 msgid "Are you sure you want to delete this token?" msgstr "Czy na pewno chcesz usunąć ten token?" -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:118 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:127 msgid "Are you sure you want to reject this document? This action cannot be undone." msgstr "Czy na pewno chcesz odrzucić ten dokument? Ta akcja nie może być cofnięta." @@ -1189,7 +1191,7 @@ msgstr "Czy na pewno chcesz usunąć klucz hasła <0>{passkeyName}." msgid "Are you sure you wish to delete this team?" msgstr "Czy na pewno chcesz usunąć ten zespół?" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:93 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:93 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:455 #: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx:80 #: apps/remix/app/components/dialogs/team-leave-dialog.tsx:80 @@ -1208,7 +1210,7 @@ msgstr "" msgid "Assist Document" msgstr "" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:252 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:299 msgid "Assist with signing" msgstr "" @@ -1258,7 +1260,7 @@ msgstr "Awatar" msgid "Avatar Updated" msgstr "Awatar został zaktualizowany" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:125 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:125 msgid "Awaiting email confirmation" msgstr "Czekam na potwierdzenie e-maila" @@ -1296,7 +1298,8 @@ msgstr "Podstawowe szczegóły" msgid "Before you get started, please confirm your email address by clicking the button below:" msgstr "Zanim zaczniesz, proszę potwierdź swój adres e-mail, klikając przycisk poniżej:" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:77 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:77 +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:84 #: apps/remix/app/components/general/settings-nav-mobile.tsx:111 #: apps/remix/app/components/general/settings-nav-desktop.tsx:109 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:121 @@ -1312,7 +1315,7 @@ msgstr "Czarny" msgid "Blue" msgstr "Niebieski" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:40 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:40 msgid "Branding Preferences" msgstr "Preferencje dotyczące marki" @@ -1387,13 +1390,13 @@ msgstr "Korzystając z funkcji podpisu elektronicznego, wyrażasz zgodę na prze msgid "Can prepare" msgstr "" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:108 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:162 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:203 #: apps/remix/app/components/general/teams/team-transfer-status.tsx:118 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:108 #: apps/remix/app/components/general/document-signing/document-signing-text-field.tsx:364 #: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx:315 -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:151 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:160 #: apps/remix/app/components/general/document-signing/document-signing-number-field.tsx:349 #: apps/remix/app/components/general/document-signing/document-signing-name-field.tsx:234 #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:208 @@ -1408,7 +1411,7 @@ msgstr "" #: apps/remix/app/components/forms/2fa/enable-authenticator-app-dialog.tsx:263 #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:156 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:235 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:169 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:167 #: apps/remix/app/components/dialogs/template-move-dialog.tsx:145 #: apps/remix/app/components/dialogs/template-duplicate-dialog.tsx:71 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:472 @@ -1493,7 +1496,7 @@ msgstr "Wybierz odbiorcę bezpośredniego linku" msgid "Choose how the document will reach recipients" msgstr "Wybierz, jak dokument dotrze do odbiorców" -#: apps/remix/app/components/forms/token.tsx:193 +#: apps/remix/app/components/forms/token.tsx:194 msgid "Choose..." msgstr "Wybierz..." @@ -1543,7 +1546,7 @@ msgstr "Kliknij, aby skopiować link podpisu do wysłania do odbiorcy" #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:176 #: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx:181 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:439 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:486 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:479 msgid "Click to insert field" msgstr "Kliknij, aby wstawić pole" @@ -1564,7 +1567,7 @@ msgstr "Zamknij" #: apps/remix/app/components/general/document-signing/document-signing-complete-dialog.tsx:61 #: apps/remix/app/components/forms/signup.tsx:528 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:429 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:476 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:469 msgid "Complete" msgstr "Zakończono" @@ -1648,7 +1651,7 @@ msgid "Confirm by typing <0>{deleteMessage}" msgstr "Potwierdź, wpisując <0>{deleteMessage}" #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:133 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:145 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:143 msgid "Confirm by typing: <0>{deleteMessage}" msgstr "Potwierdź, wpisując: <0>{deleteMessage}" @@ -1773,7 +1776,7 @@ msgstr "Kopiuj udostępniany link" msgid "Copy Signing Links" msgstr "Kopiuj linki do podpisania" -#: apps/remix/app/components/forms/token.tsx:283 +#: apps/remix/app/components/forms/token.tsx:284 msgid "Copy token" msgstr "Kopiuj token" @@ -1851,8 +1854,8 @@ msgstr "Utwórz zespół" msgid "Create the document as pending and ready to sign." msgstr "Utwórz dokument jako oczekujący i gotowy do podpisania." -#: apps/remix/app/components/forms/token.tsx:243 -#: apps/remix/app/components/forms/token.tsx:252 +#: apps/remix/app/components/forms/token.tsx:244 +#: apps/remix/app/components/forms/token.tsx:253 msgid "Create token" msgstr "Utwórz token" @@ -1889,7 +1892,7 @@ msgstr "Utworzono" msgid "Created At" msgstr "Utworzono w" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:90 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:90 msgid "Created by" msgstr "Utworzono przez" @@ -1900,10 +1903,9 @@ msgstr "Utworzone w" #. placeholder {0}: i18n.date(webhook.createdAt, DateTime.DATETIME_FULL) #. placeholder {0}: i18n.date(token.createdAt, DateTime.DATETIME_FULL) -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:88 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:99 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:83 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:64 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:88 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:83 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:83 msgid "Created on {0}" msgstr "Utworzono {0}" @@ -1923,6 +1925,10 @@ msgstr "Aktualne hasło jest niepoprawne." msgid "Current recipients:" msgstr "Aktualni odbiorcy:" +#: apps/remix/app/components/general/billing-plans.tsx:26 +msgid "Daily" +msgstr "" + #: apps/remix/app/components/general/app-command-menu.tsx:261 msgid "Dark Mode" msgstr "Tryb ciemny" @@ -1935,7 +1941,7 @@ msgstr "Tryb ciemny" msgid "Date" msgstr "Data" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:96 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:96 msgid "Date created" msgstr "Data utworzenia" @@ -1944,12 +1950,12 @@ msgstr "Data utworzenia" msgid "Date Format" msgstr "Format daty" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:184 +#: apps/remix/app/components/general/teams/team-invitations.tsx:184 #: packages/email/templates/team-invite.tsx:101 msgid "Decline" msgstr "Odmów" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:163 +#: apps/remix/app/components/general/teams/team-invitations.tsx:163 msgid "Declined team invitation" msgstr "Odrzucono zaproszenie do zespołu" @@ -1965,17 +1971,16 @@ msgstr "Domyślna widoczność dokumentu" msgid "delete" msgstr "usuń" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:100 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:115 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:95 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:80 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:100 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:95 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:103 #: apps/remix/app/components/tables/templates-table-action-dropdown.tsx:109 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:182 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:216 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:175 #: apps/remix/app/components/general/document/document-page-view-dropdown.tsx:144 #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:102 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:114 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:112 #: apps/remix/app/components/dialogs/template-delete-dialog.tsx:87 #: apps/remix/app/components/dialogs/team-member-delete-dialog.tsx:112 #: apps/remix/app/components/dialogs/team-delete-dialog.tsx:165 @@ -1986,7 +1991,7 @@ msgstr "Usuń" #. placeholder {0}: webhook.webhookUrl #. placeholder {0}: token.name #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:49 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:51 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:49 msgid "delete {0}" msgstr "usuń {0}" @@ -2020,7 +2025,7 @@ msgstr "Usuń dokument" msgid "Delete passkey" msgstr "Usuń klucz dostępu" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:195 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:195 #: apps/remix/app/components/dialogs/team-delete-dialog.tsx:116 msgid "Delete team" msgstr "Usuń zespół" @@ -2139,8 +2144,8 @@ msgstr "Wyłącz konto" msgid "Disable Two Factor Authentication before deleting your account." msgstr "Wyłącz dwuskładnikowe uwierzytelnianie przed usunięciem konta." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:74 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:69 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:74 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:69 msgid "Disabled" msgstr "Wyłączone" @@ -2152,7 +2157,7 @@ msgstr "Wyłączenie podpisywania za pomocą linku bezpośredniego uniemożliwi msgid "Disabling the user results in the user not being able to use the account. It also disables all the related contents such as subscription, webhooks, teams, and API keys." msgstr "Wyłączenie użytkownika uniemożliwia korzystanie z konta oraz dezaktywuje powiązane elementy takie jak subskrypcje, webhooki, zespoły i klucze API." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:74 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:74 msgid "Display your name and email in documents" msgstr "Wyświetl swoją nazwę i adres e-mail w dokumentach" @@ -2172,7 +2177,7 @@ msgstr "Czy chcesz zduplikować ten szablon?" msgid "Documenso will delete <0>all of your documents, along with all of your completed documents, signatures, and all other resources belonging to your Account." msgstr "Documenso usunie <0>wszystkie twoje dokumenty, wraz ze wszystkimi zakończonymi dokumentami, podpisami i wszystkimi innymi zasobami należącymi do twojego konta." -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:129 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:129 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:36 msgid "Document" msgstr "Dokument" @@ -2250,7 +2255,7 @@ msgstr "Dokument utworzony za pomocą <0>bezpośredniego linku" msgid "Document Creation" msgstr "Tworzenie dokumentu" -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:175 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:175 #: apps/remix/app/components/dialogs/document-delete-dialog.tsx:58 #: apps/remix/app/components/dialogs/admin-document-delete-dialog.tsx:48 #: packages/lib/utils/document-audit-logs.ts:305 @@ -2282,13 +2287,13 @@ msgstr "Dokument zduplikowany" msgid "Document external ID updated" msgstr "Zaktualizowane ID zewnętrzne dokumentu" -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:186 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:186 #: apps/remix/app/components/general/document/document-history-sheet.tsx:102 msgid "Document history" msgstr "Historia dokumentu" #: apps/remix/app/routes/_internal+/[__htmltopdf]+/audit-log.tsx:86 -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:82 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:82 msgid "Document ID" msgstr "Identyfikator dokumentu" @@ -2337,6 +2342,7 @@ msgid "Document re-sent" msgstr "Dokument ponownie wysłany" #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:97 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:12 #: packages/email/template-components/template-document-rejected.tsx:21 msgid "Document Rejected" msgstr "Dokument odrzucone" @@ -2362,11 +2368,11 @@ msgstr "Zaktualizowano autoryzację podpisu dokumentu" msgid "Document signing process will be cancelled" msgstr "Proces podpisywania dokumentu zostanie anulowany" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:86 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:86 msgid "Document status" msgstr "Status dokumentu" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:78 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:78 msgid "Document title" msgstr "Tytuł dokumentu" @@ -2399,9 +2405,9 @@ msgid "Document will be permanently deleted" msgstr "Dokument zostanie trwale usunięty" #: apps/remix/app/routes/_profile+/p.$url.tsx:163 -#: apps/remix/app/routes/_authenticated+/documents+/_index.tsx:111 -#: apps/remix/app/routes/_authenticated+/documents+/$id.edit.tsx:99 -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:138 +#: apps/remix/app/routes/_authenticated+/documents._index.tsx:111 +#: apps/remix/app/routes/_authenticated+/documents.$id.edit.tsx:99 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:138 #: apps/remix/app/routes/_authenticated+/admin+/_layout.tsx:69 #: apps/remix/app/components/tables/admin-dashboard-users-table.tsx:89 #: apps/remix/app/components/general/user-profile-timur.tsx:56 @@ -2413,7 +2419,7 @@ msgstr "Dokument zostanie trwale usunięty" msgid "Documents" msgstr "Dokumenty" -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:218 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:218 msgid "Documents created from template" msgstr "Dokumenty utworzone z szablonu" @@ -2494,8 +2500,8 @@ msgstr "Z powodu nieopłaconej faktury Twój zespół został ograniczony. Prosz msgid "Duplicate" msgstr "Zduplikuj" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:95 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:90 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:95 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:90 #: apps/remix/app/components/tables/templates-table-action-dropdown.tsx:69 #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:116 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:145 @@ -2506,12 +2512,12 @@ msgstr "Zduplikuj" msgid "Edit" msgstr "Edytuj" -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:135 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:135 msgid "Edit Template" msgstr "Edytuj szablon" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:93 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:90 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:93 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:90 msgid "Edit webhook" msgstr "Edytuj webhook" @@ -2533,7 +2539,7 @@ msgstr "Ujawnienie podpisu elektronicznego" #: apps/remix/app/components/forms/signin.tsx:318 #: apps/remix/app/components/forms/profile.tsx:108 #: apps/remix/app/components/forms/forgot-password.tsx:77 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:362 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:409 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:405 #: apps/remix/app/components/dialogs/template-use-dialog.tsx:275 #: apps/remix/app/components/dialogs/template-use-dialog.tsx:282 @@ -2641,10 +2647,10 @@ msgstr "Włącz podpis pisany" msgid "Enable Typed Signatures" msgstr "Włącz podpisy typu pisanego" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:74 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:135 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:69 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:134 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:74 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:135 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:69 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:134 #: apps/remix/app/routes/_authenticated+/admin+/site-settings.tsx:128 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:159 msgid "Enabled" @@ -2749,13 +2755,12 @@ msgstr "Wszyscy podpisali! Otrzymasz wiadomość e-mail z podpisanym dokumentem. msgid "Exceeded timeout" msgstr "Przekroczono limit czasu" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:118 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:118 msgid "Expired" msgstr "Wygasło" #. placeholder {0}: i18n.date(token.expires, DateTime.DATETIME_FULL) -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:103 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:68 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:89 msgid "Expires on {0}" msgstr "Wygasa {0}" @@ -2776,8 +2781,8 @@ msgstr "Nie udało się zapisać ustawień." msgid "Failed to update recipient" msgstr "Nie udało się zaktualizować odbiorcy" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:81 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:78 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:81 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:78 msgid "Failed to update webhook" msgstr "Nie udało się zaktualizować webhooku" @@ -2870,7 +2875,7 @@ msgstr "Podpis wolny" #: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx:323 #: apps/remix/app/components/forms/signup.tsx:309 #: apps/remix/app/components/forms/profile.tsx:96 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:347 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:394 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:390 msgid "Full Name" msgstr "Imię i nazwisko" @@ -2947,7 +2952,7 @@ msgstr "Zaproszono Cię do wyświetlenia tego dokumentu" msgid "Having an assistant as the last signer means they will be unable to take any action as there are no subsequent signers to assist." msgstr "" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:277 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:324 msgid "Help complete the document for other signers." msgstr "" @@ -2955,15 +2960,15 @@ msgstr "" msgid "Here you can edit your personal details." msgstr "Tutaj możesz edytować szczegóły konta." -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:68 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:68 msgid "Here you can manage your password and security settings." msgstr "Tutaj możesz zarządzać swoim hasłem i ustawieniami zabezpieczeń." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:41 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:41 msgid "Here you can set preferences and defaults for branding." msgstr "Tutaj możesz ustawić preferencje i domyślne ustawienia dla brandowania." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:32 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:32 msgid "Here you can set preferences and defaults for your team." msgstr "Tutaj możesz ustawić preferencje i domyślne ustawienia dla swojego zespołu." @@ -2983,7 +2988,7 @@ msgstr "Cześć, {userName}," msgid "Hi, {userName} <0>({userEmail})" msgstr "Cześć, {userName} <0>({userEmail})" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:164 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:164 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:175 #: apps/remix/app/components/dialogs/document-delete-dialog.tsx:196 msgid "Hide" @@ -3018,7 +3023,7 @@ msgid "I am the owner of this document" msgstr "Jestem właścicielem tego dokumentu" #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:166 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:179 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:177 msgid "I'm sure! Delete it" msgstr "Jestem pewny! Usuń to" @@ -3198,7 +3203,7 @@ msgstr "Ostatnie 7 dni" msgid "Last modified" msgstr "Ostatnia modyfikacja" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:102 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:102 msgid "Last updated" msgstr "Zaktualizowano" @@ -3244,7 +3249,7 @@ msgstr "Czy chcesz mieć własny publiczny profil z umowami?" msgid "Link expires in 1 hour." msgstr "Link wygasa za 1 godzinę." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:225 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:225 msgid "Link template" msgstr "Szablon linku" @@ -3253,8 +3258,8 @@ msgid "Links Generated" msgstr "Wygenerowane linki" #. placeholder {0}: webhook.eventTriggers .map((trigger) => toFriendlyWebhookEventName(trigger)) .join(', ') -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:79 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:74 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:79 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:74 msgid "Listening to {0}" msgstr "Słuchając {0}" @@ -3297,14 +3302,18 @@ msgstr "Zarządzaj" msgid "Manage {0}'s profile" msgstr "Zarządzaj profilem {0}" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/index.tsx:24 +#: apps/remix/app/routes/_authenticated+/settings+/teams.tsx:23 msgid "Manage all teams you are currently associated with." msgstr "Zarządzaj wszystkimi zespołami, z którymi jesteś obecnie związany." -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:183 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:183 msgid "Manage and view template" msgstr "Zarządzaj i przeglądaj szablon" +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:146 +msgid "Manage billing" +msgstr "" + #: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx:338 msgid "Manage details for this public template" msgstr "Zarządzaj szczegółami tego publicznego szablonu" @@ -3317,7 +3326,7 @@ msgstr "Zarządzaj Bezpośrednim Linkiem" msgid "Manage documents" msgstr "Zarządzaj dokumentami" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:149 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:149 msgid "Manage passkeys" msgstr "Zarządzaj kluczami dostępu" @@ -3325,11 +3334,15 @@ msgstr "Zarządzaj kluczami dostępu" msgid "Manage subscription" msgstr "Zarządzaj subskrypcją" +#: apps/remix/app/components/general/billing-portal-button.tsx:45 +msgid "Manage Subscription" +msgstr "" + #: apps/remix/app/routes/_authenticated+/admin+/subscriptions.tsx:28 msgid "Manage subscriptions" msgstr "Zarządzaj subskrypcjami" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:93 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:93 msgid "Manage team subscription." msgstr "Zarządzaj subskrypcją zespołu." @@ -3341,7 +3354,7 @@ msgstr "Zarządzaj zespołami" msgid "Manage the direct link signing for this template" msgstr "Zarządzaj podpisywaniem bezpośredniego linku dla tego szablonu" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:53 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:53 msgid "Manage the members or invite new members." msgstr "Zarządzaj członkami lub zaproś nowych członków." @@ -3349,7 +3362,7 @@ msgstr "Zarządzaj członkami lub zaproś nowych członków." msgid "Manage users" msgstr "Zarządzaj użytkownikami" -#: apps/remix/app/routes/_authenticated+/settings+/security+/passkeys+/index.tsx:20 +#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx:20 msgid "Manage your passkeys." msgstr "Zarządzaj kluczami dostępu." @@ -3390,7 +3403,7 @@ msgstr "Członek" msgid "Member Since" msgstr "Data dołączenia" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:52 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:52 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:84 #: apps/remix/app/components/general/teams/team-settings-nav-desktop.tsx:75 msgid "Members" @@ -3410,7 +3423,8 @@ msgstr "Min" msgid "Modify recipients" msgstr "Modyfikuj odbiorców" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:60 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:60 +#: apps/remix/app/components/general/billing-plans.tsx:28 msgid "Monthly" msgstr "Miesięczny" @@ -3445,7 +3459,7 @@ msgstr "Przenieś do zespołu" msgid "Moving..." msgstr "Przenoszenie..." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:36 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:36 msgid "My templates" msgstr "Moje szablony" @@ -3491,7 +3505,7 @@ msgstr "Wymaga obejrzenia" msgid "Never" msgstr "Nigdy" -#: apps/remix/app/components/forms/token.tsx:217 +#: apps/remix/app/components/forms/token.tsx:218 msgid "Never expire" msgstr "Nigdy nie wygasa" @@ -3509,7 +3523,7 @@ msgid "New Template" msgstr "Nowy szablon" #: apps/remix/app/components/forms/signup.tsx:515 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:418 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:465 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:460 msgid "Next" msgstr "Dalej" @@ -3523,10 +3537,11 @@ msgid "No active drafts" msgstr "Brak aktywnych szkiców" #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:113 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:28 msgid "No further action is required from you at this time." msgstr "Nie są wymagane żadne dalsze działania z Twojej strony w tym momencie." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:49 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:49 msgid "No payment required" msgstr "Brak wymaganej płatności" @@ -3645,21 +3660,17 @@ msgstr "W imieniu \"{0}\" zaproszono Cię do wyświetlenia tego dokumentu" msgid "On this page, you can create a new webhook." msgstr "Na tej stronie możesz utworzyć nowy webhook." -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:23 -msgid "On this page, you can create new API tokens and manage the existing ones. <0/>Also see our <1>Documentation." -msgstr "Na tej stronie możesz utworzyć nowe tokeny API i zarządzać istniejącymi. <0/>Zobacz także naszą <1>Dokumentację." +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:28 +msgid "On this page, you can create and manage API tokens. See our <0>Documentation for more information." +msgstr "" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:59 -msgid "On this page, you can create new API tokens and manage the existing ones. <0/>You can view our swagger docs <1>here" -msgstr "Na tej stronie możesz utworzyć nowe tokeny API i zarządzać istniejącymi. <0/>Możesz zobaczyć nasze dokumenty swagger <1>tutaj" - -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:32 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:27 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:32 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:27 msgid "On this page, you can create new Webhooks and manage the existing ones." msgstr "Na tej stronie możesz utworzyć nowe webhooki i zarządzać istniejącymi." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:94 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:91 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:94 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:91 msgid "On this page, you can edit the webhook and its settings." msgstr "Na tej stronie możesz edytować webhook i jego ustawienia." @@ -3765,8 +3776,8 @@ msgstr "Nazwa klucza dostępu" msgid "Passkey Re-Authentication" msgstr "Ponowna Autoryzacja Klucza Dostępu" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:137 -#: apps/remix/app/routes/_authenticated+/settings+/security+/passkeys+/index.tsx:19 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:137 +#: apps/remix/app/routes/_authenticated+/settings+/security.passkeys.tsx:19 msgid "Passkeys" msgstr "Klucze dostępu" @@ -3824,7 +3835,7 @@ msgstr "Płatność jest wymagana do zakończenia tworzenia zespołu." msgid "Payment overdue" msgstr "Płatność zaległa" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:76 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:76 #: apps/remix/app/components/tables/user-settings-teams-page-table.tsx:70 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:203 #: apps/remix/app/components/general/document/document-status.tsx:22 @@ -3846,7 +3857,7 @@ msgstr "Oczekujące Dokumenty" msgid "Pending Documents" msgstr "Oczekujące dokumenty" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:61 +#: apps/remix/app/components/general/teams/team-invitations.tsx:61 msgid "Pending invitations" msgstr "Oczekujące zaproszenia" @@ -3929,7 +3940,7 @@ msgstr "Proszę potwierdzić swój adres email" msgid "Please contact support if you would like to revert this action." msgstr "Proszę skontaktować się z pomocą techniczną, jeśli chcesz cofnąć tę akcję." -#: apps/remix/app/components/forms/token.tsx:168 +#: apps/remix/app/components/forms/token.tsx:169 msgid "Please enter a meaningful name for your token. This will help you identify it later." msgstr "Wpisz nazwę tokena. Pomoże to później w jego identyfikacji." @@ -3958,7 +3969,7 @@ msgstr "Proszę pamiętać, że ta czynność jest <0>nieodwracalna. Po potw msgid "Please note that this action is irreversible. Once confirmed, your template will be permanently deleted." msgstr "Proszę pamiętać, że ta czynność jest nieodwracalna. Po potwierdzeniu, Twój szablon zostanie trwale usunięty." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:126 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:124 msgid "Please note that this action is irreversible. Once confirmed, your token will be permanently deleted." msgstr "Proszę zauważyć, że ta czynność jest nieodwracalna. Po potwierdzeniu, twój token zostanie trwale usunięty." @@ -4047,11 +4058,11 @@ msgstr "Prywatne szablony mogą być modyfikowane i przeglądane tylko przez Cie msgid "Profile" msgstr "Profil" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:193 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:193 msgid "Profile is currently <0>hidden." msgstr "Profil jest obecnie <0>ukryty." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:181 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:181 msgid "Profile is currently <0>visible." msgstr "Profil jest obecnie <0>widoczny." @@ -4065,7 +4076,7 @@ msgstr "Profil zaktualizowano" msgid "Public" msgstr "Publiczny" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:34 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:34 #: apps/remix/app/components/general/settings-nav-mobile.tsx:45 #: apps/remix/app/components/general/settings-nav-desktop.tsx:43 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:71 @@ -4137,7 +4148,7 @@ msgstr "Wymagana jest ponowna autoryzacja, aby podpisać to pole" msgid "Receives copy" msgstr "Otrzymuje kopię" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:160 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:160 #: apps/remix/app/components/general/document/document-page-view-recent-activity.tsx:54 msgid "Recent activity" msgstr "Ostatnia aktywność" @@ -4195,7 +4206,7 @@ msgstr "Odbiorcy nadal zachowają swoją kopię dokumentu" msgid "Recovery code copied" msgstr "Kod odzyskiwania skopiowany" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:116 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:116 msgid "Recovery codes" msgstr "Kody odzyskiwania" @@ -4213,9 +4224,9 @@ msgstr "Adres URL przekierowania" msgid "Registration Successful" msgstr "Rejestracja zakończona sukcesem" -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:107 -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:114 -#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:160 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:116 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:123 +#: apps/remix/app/components/general/document-signing/document-signing-reject-dialog.tsx:169 #: packages/email/template-components/template-document-invite.tsx:98 msgid "Reject Document" msgstr "Odrzuć dokument" @@ -4279,7 +4290,7 @@ msgstr "Usuń e-mail zespołu" msgid "Remove team member" msgstr "Usuń użytkownika" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:69 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:69 msgid "Renews: {formattedDate}" msgstr "Odnawia się: {formattedDate}" @@ -4378,11 +4389,11 @@ msgstr "Powrót do strony głównej" msgid "Return to sign in" msgstr "Powrót do logowania" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:117 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:117 msgid "Revoke" msgstr "Cofnij" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:86 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:86 msgid "Revoke access" msgstr "Cofnij dostęp" @@ -4417,7 +4428,7 @@ msgstr "Zapisz" msgid "Save Template" msgstr "Zapisz szablon" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/members.tsx:63 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.members.tsx:63 #: apps/remix/app/components/tables/user-settings-teams-page-table.tsx:57 #: apps/remix/app/components/tables/documents-table-sender-filter.tsx:58 #: apps/remix/app/components/general/app-nav-desktop.tsx:84 @@ -4441,18 +4452,18 @@ msgstr "Szukaj dokumentów..." msgid "Search languages..." msgstr "Szukaj języków..." -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:185 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:185 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:210 msgid "Secret" msgstr "Sekret" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:67 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:67 #: apps/remix/app/components/general/settings-nav-mobile.tsx:71 #: apps/remix/app/components/general/settings-nav-desktop.tsx:69 msgid "Security" msgstr "Bezpieczeństwo" -#: apps/remix/app/routes/_authenticated+/settings+/security+/activity+/index.tsx:18 +#: apps/remix/app/routes/_authenticated+/settings+/security.activity.tsx:18 msgid "Security activity" msgstr "Aktywność bezpieczeństwa" @@ -4616,7 +4627,7 @@ msgstr "Udostępnij link" msgid "Share your signing experience!" msgstr "Podziel się swoim doświadczeniem podpisywania!" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:172 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:172 msgid "Show" msgstr "Pokaż" @@ -4629,11 +4640,11 @@ msgstr "Pokaż dodatkowe informacje" msgid "Show advanced settings" msgstr "Pokaż ustawienia zaawansowane" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:37 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:37 msgid "Show templates in your public profile for your audience to sign and get started quickly" msgstr "Pokaż szablony w profilu publicznym, aby szybko podpisać dokument" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:44 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:44 msgid "Show templates in your team public profile for your audience to sign and get started quickly" msgstr "Pokaż szablony w profilu publicznym zespołu, aby szybko podpisać dokument" @@ -4664,7 +4675,7 @@ msgstr "Podpisz jako {0} <0>({1})" msgid "Sign as<0>{0} <1>({1})" msgstr "Podpisz jako<0>{0} <1>({1})" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:254 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:301 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:358 msgid "Sign document" msgstr "Podpisz dokument" @@ -4697,7 +4708,7 @@ msgstr "Zaloguj się na swoje konto" msgid "Sign Out" msgstr "Wyloguj" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:279 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:326 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:379 msgid "Sign the document to complete the process." msgstr "Podpisz dokument, aby zakończyć proces." @@ -4721,7 +4732,7 @@ msgstr "Zarejestruj się za pomocą OIDC" #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:342 #: apps/remix/app/components/general/direct-template/direct-template-signing-form.tsx:335 #: apps/remix/app/components/forms/profile.tsx:118 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:376 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:423 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:420 #: packages/ui/primitives/template-flow/add-template-fields.tsx:711 #: packages/ui/primitives/document-flow/types.ts:49 @@ -4736,7 +4747,7 @@ msgstr "Identyfikator podpisu" #: apps/remix/app/components/general/document-signing/document-signing-signature-field.tsx:297 #: apps/remix/app/components/general/document-signing/document-signing-form.tsx:366 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:402 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:449 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:446 msgid "Signature is too small. Please provide a more complete signature." msgstr "Podpis jest zbyt mały. Proszę podać bardziej kompletny podpis." @@ -4789,7 +4800,7 @@ msgstr "Certyfikat podpisu dostarczony przez" msgid "Signing Complete!" msgstr "Podpisywanie zakończone!" -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:292 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:339 msgid "Signing for" msgstr "" @@ -4841,10 +4852,7 @@ msgstr "Niektórzy sygnatariusze nie zostali przypisani do pola podpisu. Przypis #: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx:56 #: apps/remix/app/routes/_unauthenticated+/verify-email.$token.tsx:88 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:132 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:169 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:43 -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:133 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:133 #: apps/remix/app/components/tables/user-settings-pending-teams-table-actions.tsx:34 #: apps/remix/app/components/tables/team-settings-member-invites-table.tsx:62 #: apps/remix/app/components/tables/team-settings-member-invites-table.tsx:79 @@ -4852,7 +4860,12 @@ msgstr "Niektórzy sygnatariusze nie zostali przypisani do pola podpisu. Przypis #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:98 #: apps/remix/app/components/tables/documents-table-action-dropdown.tsx:95 #: apps/remix/app/components/tables/documents-table-action-button.tsx:73 +#: apps/remix/app/components/general/billing-portal-button.tsx:35 +#: apps/remix/app/components/general/billing-plans.tsx:62 #: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx:52 +#: apps/remix/app/components/general/teams/team-invitations.tsx:132 +#: apps/remix/app/components/general/teams/team-invitations.tsx:169 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:43 #: apps/remix/app/components/general/teams/team-email-dropdown.tsx:38 #: apps/remix/app/components/general/teams/team-billing-portal-button.tsx:28 #: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx:34 @@ -4864,7 +4877,7 @@ msgstr "Niektórzy sygnatariusze nie zostali przypisani do pola podpisu. Przypis #: apps/remix/app/components/general/direct-template/direct-template-signing-auth-page.tsx:24 #: apps/remix/app/components/general/direct-template/direct-template-page.tsx:119 #: apps/remix/app/components/forms/team-branding-preferences-form.tsx:106 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:154 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:167 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:260 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:103 #: apps/remix/app/components/dialogs/template-direct-link-dialog.tsx:128 @@ -4914,12 +4927,11 @@ msgstr "Coś poszło nie tak podczas aktualizacji subskrypcji płatniczej zespo msgid "Something went wrong!" msgstr "Coś poszło nie tak!" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:46 #: packages/ui/primitives/data-table.tsx:134 msgid "Something went wrong." msgstr "Coś poszło nie tak." -#: apps/remix/app/components/forms/token.tsx:136 +#: apps/remix/app/components/forms/token.tsx:137 msgid "Something went wrong. Please try again later." msgstr "Coś poszło nie tak. Proszę spróbować ponownie później." @@ -4970,6 +4982,10 @@ msgstr "Prześlij" msgid "Submitting..." msgstr "" +#: apps/remix/app/components/general/billing-plans.tsx:129 +msgid "Subscribe" +msgstr "" + #: apps/remix/app/components/tables/admin-dashboard-users-table.tsx:78 msgid "Subscription" msgstr "Subskrypcja" @@ -4978,9 +4994,6 @@ msgstr "Subskrypcja" msgid "Subscriptions" msgstr "Subskrypcje" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:125 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:162 -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:36 #: apps/remix/app/routes/_authenticated+/admin+/documents.$id.tsx:54 #: apps/remix/app/components/tables/user-settings-pending-teams-table-actions.tsx:28 #: apps/remix/app/components/tables/team-settings-member-invites-table.tsx:56 @@ -4989,6 +5002,9 @@ msgstr "Subskrypcje" #: apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx:90 #: apps/remix/app/components/general/verify-email-banner.tsx:46 #: apps/remix/app/components/general/teams/team-transfer-status.tsx:41 +#: apps/remix/app/components/general/teams/team-invitations.tsx:125 +#: apps/remix/app/components/general/teams/team-invitations.tsx:162 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:36 #: apps/remix/app/components/general/teams/team-email-dropdown.tsx:31 #: apps/remix/app/components/forms/team-update-form.tsx:65 #: apps/remix/app/components/forms/public-profile-form.tsx:79 @@ -5045,12 +5061,12 @@ msgstr "Zespół \"{0}\" został usunięty z Documenso" msgid "Team checkout" msgstr "Zakupy zespołowe" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:65 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:144 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:65 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:144 msgid "Team email" msgstr "E-mail zespołu" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:57 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:57 msgid "Team Email" msgstr "E-mail zespołu" @@ -5130,11 +5146,11 @@ msgstr "Transfer własności zespołu został już zakończony!" msgid "Team ownership transferred!" msgstr "Własność zespołu przeniesiona!" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/preferences.tsx:31 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.preferences.tsx:31 msgid "Team Preferences" msgstr "Preferencje zespołu" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:41 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:41 msgid "Team Public Profile" msgstr "Profil publiczny zespołu" @@ -5142,11 +5158,11 @@ msgstr "Profil publiczny zespołu" msgid "Team settings" msgstr "Ustawienia zespołu" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_layout.tsx:39 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._layout.tsx:39 msgid "Team Settings" msgstr "Ustawienia zespołu" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:43 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:43 msgid "Team templates" msgstr "Szablony zespołu" @@ -5163,7 +5179,7 @@ msgstr "Żądanie przeniesienia zespołu wygasło" msgid "Team URL" msgstr "Adres URL zespołu" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/index.tsx:23 +#: apps/remix/app/routes/_authenticated+/settings+/teams.tsx:22 #: apps/remix/app/components/general/settings-nav-mobile.tsx:58 #: apps/remix/app/components/general/settings-nav-desktop.tsx:56 #: apps/remix/app/components/general/menu-switcher.tsx:155 @@ -5175,8 +5191,8 @@ msgstr "Zespoły" msgid "Teams restricted" msgstr "Zespoły ograniczone" -#: apps/remix/app/routes/_authenticated+/templates+/$id.edit.tsx:71 -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:166 +#: apps/remix/app/routes/_authenticated+/templates.$id.edit.tsx:71 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:166 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:37 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:140 #: apps/remix/app/components/general/template/template-page-view-documents-table.tsx:220 @@ -5221,8 +5237,8 @@ msgstr "Szablon zapisany" msgid "Template title" msgstr "Tytuł szablonu" -#: apps/remix/app/routes/_authenticated+/templates+/_index.tsx:56 -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:102 +#: apps/remix/app/routes/_authenticated+/templates._index.tsx:56 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:102 #: apps/remix/app/components/general/app-nav-mobile.tsx:35 #: apps/remix/app/components/general/app-nav-desktop.tsx:21 #: apps/remix/app/components/general/app-command-menu.tsx:203 @@ -5309,6 +5325,7 @@ msgid "The document owner has been notified of this rejection. No further action msgstr "Właściciel dokumentu został poinformowany o tym odrzuceniu. W tej chwili nie są wymagane żadne dalsze działania z Twojej strony. Właściciel dokumentu może się z Tobą skontaktować z pytaniami dotyczącymi tego odrzucenia." #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:106 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:21 msgid "The document owner has been notified of your decision. They may contact you with further instructions if necessary." msgstr "Właściciel dokumentu został poinformowany o Twojej decyzji. Mogą się z Tobą skontaktować w celu podania dalszych instrukcji, jeśli to konieczne." @@ -5332,7 +5349,7 @@ msgstr "Nazwa dokumentu" msgid "The email or password provided is incorrect" msgstr "" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:172 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:172 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:196 msgid "The events that will trigger a webhook to be sent to your URL." msgstr "Wydarzenia, które wyzwolą webhook do wysłania do Twojego URL." @@ -5464,11 +5481,11 @@ msgstr "Szablon został pomyślnie przeniesiony do wybranego zespołu." msgid "The template will be removed from your profile" msgstr "Szablon zostanie usunięty z Twojego profilu" -#: apps/remix/app/components/forms/token.tsx:102 +#: apps/remix/app/components/forms/token.tsx:103 msgid "The token was copied to your clipboard." msgstr "Token został skopiowany do schowka." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:83 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:81 msgid "The token was deleted successfully." msgstr "Token został pomyślnie usunięty." @@ -5480,8 +5497,8 @@ msgstr "Token, którego użyłeś do zresetowania hasła, jest albo wygasły, al msgid "The two-factor authentication code provided is incorrect" msgstr "" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:121 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:120 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:121 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:120 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:145 msgid "The URL for Documenso to send webhook events to." msgstr "URL dla Documenso do wysyłania zdarzeń webhook." @@ -5490,8 +5507,8 @@ msgstr "URL dla Documenso do wysyłania zdarzeń webhook." msgid "The webhook has been successfully deleted." msgstr "Webhook został pomyślnie usunięty." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:74 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:71 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:74 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:71 msgid "The webhook has been updated successfully." msgstr "Webhook został pomyślnie zaktualizowany." @@ -5507,7 +5524,7 @@ msgstr "Brak aktywnych szkiców. Prześlij, aby utworzyć." msgid "There are no completed documents yet. Documents that you have created or received will appear here once completed." msgstr "Brak zakończonych dokumentów. Utworzone lub odebrane dokumentu pojawią się tutaj, gdy zostaną zakończone." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:69 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:69 msgid "They have permission on your behalf to:" msgstr "Mają pozwolenie w Twoim imieniu na:" @@ -5561,11 +5578,11 @@ msgstr "Ten dokument został anulowany przez właściciela i nie jest już dost msgid "This document has been cancelled by the owner." msgstr "Ten dokument został anulowany przez właściciela." -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:221 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:221 msgid "This document has been signed by all recipients" msgstr "Ten dokument został podpisany przez wszystkich odbiorców" -#: apps/remix/app/routes/_authenticated+/documents+/$id._index.tsx:224 +#: apps/remix/app/routes/_authenticated+/documents.$id._index.tsx:224 msgid "This document is currently a draft and has not been sent" msgstr "Ten dokument jest obecnie szkicowany i nie został wysłany" @@ -5649,7 +5666,7 @@ msgstr "Ta sesja wygasła. Proszę spróbować ponownie." msgid "This signer has already signed the document." msgstr "Ten sygnatariusz już podpisał dokument." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:199 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:199 msgid "This team, and any associated data excluding billing invoices will be permanently deleted." msgstr "Ten zespół oraz wszelkie powiązane dane, z wyjątkiem faktur, zostaną trwale usunięte." @@ -5695,7 +5712,7 @@ msgstr "To zastąpi wszystkie globalne ustawienia." msgid "Time" msgstr "Czas" -#: apps/remix/app/routes/_authenticated+/documents+/$id.logs.tsx:108 +#: apps/remix/app/routes/_authenticated+/documents.$id.logs.tsx:108 msgid "Time zone" msgstr "Strefa czasowa" @@ -5762,15 +5779,15 @@ msgstr "Aby kontynuować, ustaw przynajmniej jedną wartość dla pola {0}." msgid "To use our electronic signature service, you must have access to:" msgstr "Aby skorzystać z naszej usługi podpisu elektronicznego, musisz mieć dostęp do:" -#: apps/remix/app/components/embed/embed-authentication-required.tsx:24 +#: apps/remix/app/components/embed/embed-authentication-required.tsx:30 msgid "To view this document you need to be signed into your account, please sign in to continue." msgstr "Aby zobaczyć ten dokument, musisz być zalogowany na swoje konto, proszę zaloguj się, aby kontynuować." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:187 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:187 msgid "Toggle the switch to hide your profile from the public." msgstr "Przełącz przełącznik, aby ukryć swój profil przed publicznością." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:199 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:199 msgid "Toggle the switch to show your profile to the public." msgstr "Przełącz przełącznik, aby pokazać swój profil publicznie." @@ -5778,24 +5795,23 @@ msgstr "Przełącz przełącznik, aby pokazać swój profil publicznie." msgid "Token" msgstr "Token" -#: apps/remix/app/components/forms/token.tsx:101 +#: apps/remix/app/components/forms/token.tsx:102 msgid "Token copied to clipboard" msgstr "Token został skopiowany do schowka" -#: apps/remix/app/components/forms/token.tsx:122 +#: apps/remix/app/components/forms/token.tsx:123 msgid "Token created" msgstr "Token został utworzony" -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:82 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:80 msgid "Token deleted" msgstr "Token usunięty" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:107 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:72 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:95 msgid "Token doesn't have an expiration date" msgstr "Token nie ma daty wygaśnięcia" -#: apps/remix/app/components/forms/token.tsx:186 +#: apps/remix/app/components/forms/token.tsx:187 msgid "Token expiration date" msgstr "Data wygaśnięcia tokena" @@ -5803,7 +5819,7 @@ msgstr "Data wygaśnięcia tokena" msgid "Token has expired. Please try again." msgstr "Token wygasł. Proszę spróbować ponownie." -#: apps/remix/app/components/forms/token.tsx:158 +#: apps/remix/app/components/forms/token.tsx:159 msgid "Token name" msgstr "Nazwa tokena" @@ -5835,27 +5851,27 @@ msgstr "przenieś {teamName}" msgid "Transfer ownership of this team to a selected team member." msgstr "Przenieś własność tego zespołu na wybranego członka zespołu." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:173 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:173 #: apps/remix/app/components/dialogs/team-transfer-dialog.tsx:145 #: apps/remix/app/components/dialogs/team-transfer-dialog.tsx:154 msgid "Transfer team" msgstr "Przenieś zespół" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:177 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:177 msgid "Transfer the ownership of the team to another team member." msgstr "Przenieś własność zespołu na innego członka zespołu." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:160 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:159 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:160 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:159 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:184 msgid "Triggers" msgstr "Wyzwalacze" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:84 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:84 msgid "Two factor authentication" msgstr "Uwierzytelnianie dwuetapowe" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:120 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:120 msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app." msgstr "Kody odzyskiwania uwierzytelniania dwuetapowego są używane do uzyskania dostępu do Twojego konta w przypadku, gdy stracisz dostęp do aplikacji uwierzytelniającej." @@ -5904,7 +5920,7 @@ msgstr "Nie można zmienić języka w tej chwili. Spróbuj ponownie później." msgid "Unable to copy recovery code" msgstr "Nie można skopiować kodu odzyskiwania" -#: apps/remix/app/components/forms/token.tsx:106 +#: apps/remix/app/components/forms/token.tsx:107 msgid "Unable to copy token" msgstr "Nie można skopiować tokena" @@ -5912,7 +5928,7 @@ msgstr "Nie można skopiować tokena" msgid "Unable to create direct template access. Please try again later." msgstr "Nie można utworzyć bezpośredniego dostępu do szablonu. Proszę spróbować ponownie później." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:170 +#: apps/remix/app/components/general/teams/team-invitations.tsx:170 msgid "Unable to decline this team invitation at this time." msgstr "Nie można w tej chwili odrzucić zaproszenia do zespołu." @@ -5928,7 +5944,7 @@ msgstr "Nie można usunąć zespołu" msgid "Unable to disable two-factor authentication" msgstr "Nie można wyłączyć uwierzytelniania dwuetapowego" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:133 +#: apps/remix/app/components/general/teams/team-invitations.tsx:133 msgid "Unable to join this team at this time." msgstr "Nie można dołączyć do tego zespołu w tej chwili." @@ -5975,6 +5991,7 @@ msgstr "Nie można skonfigurować uwierzytelniania dwuetapowego" msgid "Unable to sign in" msgstr "Nie można się zalogować" +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:49 #: apps/remix/app/components/general/document-signing/document-signing-auth-2fa.tsx:163 msgid "Unauthorized" msgstr "Nieautoryzowany" @@ -5987,7 +6004,7 @@ msgstr "Niezakończony" #: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx:270 #: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx:281 #: apps/remix/app/routes/_internal+/[__htmltopdf]+/certificate.tsx:292 -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:61 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:61 msgid "Unknown" msgstr "Nieznany" @@ -6051,8 +6068,8 @@ msgstr "Zaktualizuj rolę i dodaj pola, jeśli to konieczne dla bezpośredniego msgid "Update user" msgstr "Zaktualizuj użytkownika" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:203 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:204 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:203 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:204 msgid "Update webhook" msgstr "Zaktualizuj webhook" @@ -6125,7 +6142,7 @@ msgstr "Przesłany plik jest zbyt mały" msgid "Uploaded file not an allowed file type" msgstr "Przesłany plik nie jest dozwolonym typem pliku" -#: apps/remix/app/routes/_authenticated+/templates+/$id._index.tsx:194 +#: apps/remix/app/routes/_authenticated+/templates.$id._index.tsx:194 msgid "Use" msgstr "Użyj" @@ -6235,7 +6252,7 @@ msgstr "Historia wersji" msgid "View" msgstr "Widok" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:170 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:170 msgid "View activity" msgstr "Wyświetl aktywność" @@ -6243,11 +6260,11 @@ msgstr "Wyświetl aktywność" msgid "View all documents sent to and from this email address" msgstr "Wyświetl wszystkie dokumenty wysłane do i z tego adresu e-mail" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:77 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:77 msgid "View all documents sent to your account" msgstr "Wyświetl wszystkie dokumenty wysłane na twoje konto" -#: apps/remix/app/routes/_authenticated+/settings+/security+/index.tsx:164 +#: apps/remix/app/routes/_authenticated+/settings+/security.tsx:164 msgid "View all recent security activity related to your account." msgstr "Wyświetl wszystkie ostatnie aktywności związane z bezpieczeństwem twojego konta." @@ -6255,7 +6272,7 @@ msgstr "Wyświetl wszystkie ostatnie aktywności związane z bezpieczeństwem tw msgid "View all related documents" msgstr "Zobacz wszystkie powiązane dokumenty" -#: apps/remix/app/routes/_authenticated+/settings+/security+/activity+/index.tsx:19 +#: apps/remix/app/routes/_authenticated+/settings+/security.activity.tsx:19 msgid "View all security activity related to your account." msgstr "Wyświetl wszystkie aktywności związane z bezpieczeństwem twojego konta." @@ -6275,11 +6292,11 @@ msgstr "Zobacz dokument" msgid "View Document" msgstr "Wyświetl dokument" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:154 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:154 msgid "View documents associated with this email" msgstr "Wyświetl dokumenty powiązane z tym e-mailem" -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-invitations.tsx:54 +#: apps/remix/app/components/general/teams/team-invitations.tsx:54 msgid "View invites" msgstr "Wyświetl zaproszenia" @@ -6360,6 +6377,7 @@ msgstr "Chcesz mieć profil publiczny?" msgid "Warning: Assistant as last signer" msgstr "" +#: apps/remix/app/components/general/billing-portal-button.tsx:25 #: apps/remix/app/components/general/teams/team-layout-billing-banner.tsx:54 #: apps/remix/app/components/general/teams/team-billing-portal-button.tsx:30 msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support." @@ -6377,8 +6395,8 @@ msgstr "Nie możemy zaktualizować tego klucza zabezpieczeń w tej chwili. Prosz msgid "We encountered an error while removing the direct template link. Please try again later." msgstr "Wystąpił błąd podczas usuwania bezpośredniego linku do szablonu. Proszę spróbować ponownie później." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:83 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:80 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:83 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:80 msgid "We encountered an error while updating the webhook. Please try again later." msgstr "Natknęliśmy się na błąd podczas aktualizacji webhooka. Proszę spróbuj ponownie później." @@ -6402,7 +6420,7 @@ msgstr "Natknęliśmy się na nieznany błąd podczas próby usunięcia oczekuj msgid "We encountered an unknown error while attempting to delete this team. Please try again later." msgstr "Natknęliśmy się na nieznany błąd podczas próby usunięcia tego zespołu. Proszę spróbuj ponownie później." -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:92 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:90 msgid "We encountered an unknown error while attempting to delete this token. Please try again later." msgstr "Natknęliśmy się na nieznany błąd podczas próby usunięcia tego tokena. Proszę spróbuj ponownie później." @@ -6438,7 +6456,7 @@ msgstr "Natknęliśmy się na nieznany błąd podczas próby zażądania transfe msgid "We encountered an unknown error while attempting to reset your password. Please try again later." msgstr "Natknęliśmy się na nieznany błąd podczas próby zresetowania hasła. Proszę spróbuj ponownie później." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:45 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:45 msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support." msgstr "Natknęliśmy się na nieznany błąd podczas próby odwołania dostępu. Proszę spróbuj ponownie lub skontaktuj się z pomocą techniczną." @@ -6497,7 +6515,7 @@ msgstr "Potrzebujemy nazwy użytkownika, aby utworzyć Twój profil" msgid "We need your signature to sign documents" msgstr "Potrzebujemy Twojego podpisu, aby podpisać dokumenty" -#: apps/remix/app/components/forms/token.tsx:107 +#: apps/remix/app/components/forms/token.tsx:108 msgid "We were unable to copy the token to your clipboard. Please try again." msgstr "Nie udało nam się skopiować tokena do schowka. Spróbuj ponownie." @@ -6523,7 +6541,7 @@ msgstr "Nie udało nam się wyłączyć uwierzytelniania dwuskładnikowego dla t msgid "We were unable to log you out at this time." msgstr "Nie udało nam się wylogować w tej chwili." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:134 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:134 msgid "We were unable to set your public profile to public. Please try again." msgstr "Nie udało nam się ustawić twojego profilu publicznego na publiczny. Proszę spróbuj ponownie." @@ -6533,7 +6551,7 @@ msgid "We were unable to setup two-factor authentication for your account. Pleas msgstr "Nie udało nam się skonfigurować uwierzytelniania dwuskładnikowego dla twojego konta. Upewnij się, że wpisałeś poprawnie swój kod, a następnie spróbuj ponownie." #: apps/remix/app/components/general/direct-template/direct-template-page.tsx:121 -#: apps/remix/app/components/embed/embed-document-signing-page.tsx:156 +#: apps/remix/app/components/embed/embed-document-signing-page.tsx:169 #: apps/remix/app/components/embed/embed-direct-template-client-page.tsx:262 msgid "We were unable to submit this document at this time. Please try again later." msgstr "Nie udało nam się złożyć tego dokumentu w tej chwili. Proszę spróbuj ponownie później." @@ -6571,7 +6589,7 @@ msgstr "Wygenerujemy dla Ciebie linki do podpisania, które możesz wysłać do msgid "We won't send anything to notify recipients." msgstr "Nie wyślemy nic, aby powiadomić odbiorców." -#: apps/remix/app/routes/_authenticated+/templates+/_index.tsx:72 +#: apps/remix/app/routes/_authenticated+/templates._index.tsx:72 #: apps/remix/app/components/tables/documents-table-empty-state.tsx:29 msgid "We're all empty" msgstr "Pusto" @@ -6596,18 +6614,18 @@ msgstr "Webhook utworzony" msgid "Webhook deleted" msgstr "Webhook usunięty" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.$id.tsx:73 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:70 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks.$id.tsx:73 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:70 msgid "Webhook updated" msgstr "Webhook zaktualizowany" -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/$id.tsx:113 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks.$id.tsx:113 #: apps/remix/app/components/dialogs/webhook-create-dialog.tsx:138 msgid "Webhook URL" msgstr "URL webhooka" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:31 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:26 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:31 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:26 #: apps/remix/app/components/general/settings-nav-mobile.tsx:97 #: apps/remix/app/components/general/settings-nav-desktop.tsx:95 #: apps/remix/app/components/general/teams/team-settings-nav-mobile.tsx:107 @@ -6615,6 +6633,10 @@ msgstr "URL webhooka" msgid "Webhooks" msgstr "Webhooki" +#: apps/remix/app/components/general/billing-plans.tsx:27 +msgid "Weekly" +msgstr "" + #: apps/remix/app/routes/_unauthenticated+/articles.signature-disclosure.tsx:17 msgid "Welcome" msgstr "Witaj" @@ -6663,7 +6685,8 @@ msgstr "Napisz o zespole" msgid "Write about yourself" msgstr "Napisz o sobie" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:59 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:59 +#: apps/remix/app/components/general/billing-plans.tsx:29 msgid "Yearly" msgstr "Rocznie" @@ -6695,7 +6718,7 @@ msgstr "Zaraz usuniesz następującego użytkownika z <0>{teamName}." #. placeholder {0}: teamEmail.team.name #. placeholder {1}: teamEmail.team.url -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:97 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:97 msgid "You are about to revoke access for team <0>{0} ({1}) to use your email." msgstr "Zaraz cofniesz dostęp dla zespołu <0>{0} ({1}) do korzystania z twojego e-maila." @@ -6703,6 +6726,10 @@ msgstr "Zaraz cofniesz dostęp dla zespołu <0>{0} ({1}) do korzystania z tw msgid "You are about to send this document to the recipients. Are you sure you want to continue?" msgstr "Zaraz wyślesz ten dokument do odbiorców. Czy na pewno chcesz kontynuować?" +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:90 +msgid "You are currently on the <0>Free Plan." +msgstr "" + #: apps/remix/app/components/dialogs/team-member-update-dialog.tsx:147 msgid "You are currently updating <0>{teamMemberName}." msgstr "Obecnie aktualizujesz <0>{teamMemberName}." @@ -6731,11 +6758,11 @@ msgstr "Nie masz uprawnień, aby włączyć tego użytkownika." msgid "You can also copy and paste this link into your browser: {confirmationLink} (link expires in 1 hour)" msgstr "Możesz także skopiować i wkleić ten link do przeglądarki: {confirmationLink} (link wygasa za 1 godzinę)" -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:35 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:35 msgid "You can choose to enable or disable your profile for public view." msgstr "Możesz wybrać, aby włączyć lub wyłączyć swój profil do publicznego widoku." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:42 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:42 msgid "You can choose to enable or disable your team profile for public view." msgstr "Możesz wybrać, aby włączyć lub wyłączyć profil swojego zespołu do publicznego widoku." @@ -6755,7 +6782,7 @@ msgstr "Możesz zaktualizować adres URL profilu, aktualizując adres URL zespo msgid "You can use the following variables in your message:" msgstr "Możesz użyć następujących zmiennych w swojej wiadomości:" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/_index.tsx:69 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings._index.tsx:69 msgid "You can view documents associated with this email and use this identity when sending documents." msgstr "Możesz wyświetlać dokumenty powiązane z tym e-mailem i używać tej tożsamości podczas wysyłania dokumentów." @@ -6788,7 +6815,11 @@ msgstr "Nie możesz przesyłać dokumentów w tej chwili." msgid "You cannot upload encrypted PDFs" msgstr "Nie możesz przesyłać zaszyfrowanych plików PDF" -#: apps/remix/app/components/forms/token.tsx:134 +#: apps/remix/app/components/general/billing-portal-button.tsx:30 +msgid "You do not currently have a customer record, this should not happen. Please contact support for assistance." +msgstr "" + +#: apps/remix/app/components/forms/token.tsx:135 msgid "You do not have permission to create a token for this team" msgstr "Nie masz uprawnień do utworzenia tokenu dla tego zespołu" @@ -6847,12 +6878,12 @@ msgstr "Odrzuciłeś zaproszenie od <0>{0}, aby dołączyć do ich zespołu. msgid "You have initiated the document {0} that requires you to {recipientActionVerb} it." msgstr "Rozpocząłeś dokument {0}, który wymaga, abyś go {recipientActionVerb}." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/webhooks.tsx:45 -#: apps/remix/app/routes/_authenticated+/settings+/webhooks+/index.tsx:40 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.webhooks._index.tsx:45 +#: apps/remix/app/routes/_authenticated+/settings+/webhooks._index.tsx:40 msgid "You have no webhooks yet. Your webhooks will be shown here once you create them." msgstr "Nie masz jeszcze żadnych webhooków. Twoje webhooki będą tutaj widoczne, gdy je utworzysz." -#: apps/remix/app/routes/_authenticated+/templates+/_index.tsx:76 +#: apps/remix/app/routes/_authenticated+/templates._index.tsx:76 msgid "You have not yet created any templates. To create a template please upload one." msgstr "Brak utworzonych szablonów. Prześlij, aby utworzyć." @@ -6883,6 +6914,7 @@ msgid "You have rejected the document '{documentName}'" msgstr "Odrzuciłeś dokument '{documentName}'" #: apps/remix/app/routes/_recipient+/sign.$token+/rejected.tsx:102 +#: apps/remix/app/components/embed/embed-document-rejected.tsx:17 msgid "You have rejected this document" msgstr "Odrzuciłeś ten dokument" @@ -6903,7 +6935,7 @@ msgstr "Rejestracja zakończona sukcesem. Zweryfikuj swoje konto, klikając w li msgid "You have successfully removed this user from the team." msgstr "Sukces! Usunięto tego użytkownika z zespołu." -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:37 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:37 msgid "You have successfully revoked access." msgstr "Sukces! Odebrano dostęp." @@ -6920,12 +6952,12 @@ msgstr "Zaktualizowałeś {teamMemberName}." msgid "You have verified your email address for <0>{0}." msgstr "Zweryfikowałeś swój adres e-mail dla <0>{0}." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:94 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:94 msgid "You must be an admin of this team to manage billing." msgstr "Musisz być administratorem tego zespołu, aby zarządzać płatnościami." #: apps/remix/app/components/dialogs/webhook-delete-dialog.tsx:53 -#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:55 +#: apps/remix/app/components/dialogs/token-delete-dialog.tsx:53 #: apps/remix/app/components/dialogs/team-delete-dialog.tsx:52 msgid "You must enter '{deleteMessage}' to proceed" msgstr "Musisz wpisać '{deleteMessage}' aby kontynuować" @@ -6934,10 +6966,14 @@ msgstr "Musisz wpisać '{deleteMessage}' aby kontynuować" msgid "You must have at least one other team member to transfer ownership." msgstr "Musisz mieć przynajmniej jednego innego członka zespołu, aby przenieść własność." -#: apps/remix/app/routes/_authenticated+/settings+/public-profile+/index.tsx:118 +#: apps/remix/app/routes/_authenticated+/settings+/public-profile.tsx:118 msgid "You must set a profile URL before enabling your public profile." msgstr "Musisz ustawić URL profilu przed włączeniem swojego publicznego profilu." +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:52 +msgid "You need to be an admin to manage API tokens." +msgstr "" + #: apps/remix/app/components/general/document-signing/document-signing-auth-page.tsx:52 msgid "You need to be logged in as <0>{email} to view this page." msgstr "Musisz być zalogowany jako <0>{email}, aby zobaczyć tę stronę." @@ -6990,6 +7026,10 @@ msgstr "Twoja masowa wysyłka została zainicjowana. Otrzymasz powiadomienie e-m msgid "Your bulk send operation for template \"{templateName}\" has completed." msgstr "Twoja operacja masowej wysyłki dla szablonu \"{templateName}\" została zakończona." +#: apps/remix/app/routes/_authenticated+/settings+/billing.tsx:135 +msgid "Your current plan is past due. Please update your payment information." +msgstr "" + #: apps/remix/app/components/dialogs/public-profile-template-manage-dialog.tsx:248 msgid "Your direct signing templates" msgstr "Twoje bezpośrednie szablony podpisu" @@ -7044,12 +7084,11 @@ msgstr "Twój adres e-mail został pomyślnie potwierdzony! Możesz teraz korzys #. placeholder {0}: teamEmail.team.name #. placeholder {1}: teamEmail.team.url -#: apps/remix/app/routes/_authenticated+/settings+/teams+/team-email-usage.tsx:61 +#: apps/remix/app/components/general/teams/team-email-usage.tsx:61 msgid "Your email is currently being used by team <0>{0} ({1})." msgstr "Twój adres e-mail jest aktualnie używany przez zespół <0>{0} ({1})." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:79 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:44 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:63 msgid "Your existing tokens" msgstr "Istniejące tokeny" @@ -7092,7 +7131,7 @@ msgstr "Twój kod odzyskiwania został skopiowany do schowka." msgid "Your recovery codes are listed below. Please store them in a safe place." msgstr "Twoje kody odzyskiwania są wymienione poniżej. Proszę przechowywać je w bezpiecznym miejscu." -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/billing.tsx:78 +#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings.billing.tsx:78 msgid "Your subscription is currently active." msgstr "Twoja subskrypcja jest aktualnie aktywna." @@ -7133,11 +7172,10 @@ msgstr "Twoje szablony zostały pomyślnie zapisane." msgid "Your token has expired!" msgstr "Twój token wygasł!" -#: apps/remix/app/components/forms/token.tsx:272 +#: apps/remix/app/components/forms/token.tsx:273 msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!" msgstr "Twój token został pomyślnie utworzony! Upewnij się, że go skopiujesz, ponieważ nie będziesz mógł go zobaczyć ponownie!" -#: apps/remix/app/routes/_authenticated+/t.$teamUrl+/settings+/tokens.tsx:85 -#: apps/remix/app/routes/_authenticated+/settings+/tokens+/index.tsx:50 +#: apps/remix/app/routes/_authenticated+/settings+/tokens.tsx:69 msgid "Your tokens will be shown here once you create them." msgstr "Twoje tokeny będą tutaj wyświetlane po ich utworzeniu."