@stackframe/react 2.8.61 → 2.8.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/generated/quetzal-translations.js +62 -62
- package/dist/esm/generated/quetzal-translations.js.map +1 -1
- package/dist/esm/lib/stack-app/apps/implementations/admin-app-impl.js +20 -6
- package/dist/esm/lib/stack-app/apps/implementations/admin-app-impl.js.map +1 -1
- package/dist/esm/lib/stack-app/apps/implementations/client-app-impl.js +1 -1
- package/dist/esm/lib/stack-app/apps/implementations/client-app-impl.js.map +1 -1
- package/dist/esm/lib/stack-app/apps/implementations/common.js +1 -1
- package/dist/esm/lib/stack-app/apps/implementations/common.js.map +1 -1
- package/dist/esm/lib/stack-app/apps/implementations/server-app-impl.js +1 -1
- package/dist/esm/lib/stack-app/apps/implementations/server-app-impl.js.map +1 -1
- package/dist/esm/lib/stack-app/apps/interfaces/admin-app.js.map +1 -1
- package/dist/esm/lib/stack-app/projects/index.js +2 -1
- package/dist/esm/lib/stack-app/projects/index.js.map +1 -1
- package/dist/generated/quetzal-translations.js +62 -62
- package/dist/generated/quetzal-translations.js.map +1 -1
- package/dist/index.d.mts +10 -1
- package/dist/index.d.ts +10 -1
- package/dist/lib/stack-app/apps/implementations/admin-app-impl.js +20 -6
- package/dist/lib/stack-app/apps/implementations/admin-app-impl.js.map +1 -1
- package/dist/lib/stack-app/apps/implementations/client-app-impl.js +1 -1
- package/dist/lib/stack-app/apps/implementations/client-app-impl.js.map +1 -1
- package/dist/lib/stack-app/apps/implementations/common.js +1 -1
- package/dist/lib/stack-app/apps/implementations/common.js.map +1 -1
- package/dist/lib/stack-app/apps/implementations/server-app-impl.js +1 -1
- package/dist/lib/stack-app/apps/implementations/server-app-impl.js.map +1 -1
- package/dist/lib/stack-app/apps/interfaces/admin-app.js.map +1 -1
- package/dist/lib/stack-app/project-configs/index.js.map +1 -1
- package/dist/lib/stack-app/projects/index.js +2 -1
- package/dist/lib/stack-app/projects/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../src/lib/stack-app/apps/interfaces/admin-app.ts"],"sourcesContent":["\n//===========================================\n// THIS FILE IS AUTO-GENERATED FROM TEMPLATE. DO NOT EDIT IT DIRECTLY, INSTEAD EDIT THE CORRESPONDING FILE IN packages/template\n//===========================================\nimport { ChatContent } from \"@stackframe/stack-shared/dist/interface/admin-interface\";\nimport type { Transaction, TransactionType } from \"@stackframe/stack-shared/dist/interface/crud/transactions\";\nimport { InternalSession } from \"@stackframe/stack-shared/dist/sessions\";\nimport { Result } from \"@stackframe/stack-shared/dist/utils/results\";\nimport { AsyncStoreProperty, EmailConfig } from \"../../common\";\nimport { AdminEmailOutbox, AdminSentEmail } from \"../../email\";\nimport { InternalApiKey, InternalApiKeyCreateOptions, InternalApiKeyFirstView } from \"../../internal-api-keys\";\nimport { AdminProjectPermission, AdminProjectPermissionDefinition, AdminProjectPermissionDefinitionCreateOptions, AdminProjectPermissionDefinitionUpdateOptions, AdminTeamPermission, AdminTeamPermissionDefinition, AdminTeamPermissionDefinitionCreateOptions, AdminTeamPermissionDefinitionUpdateOptions } from \"../../permissions\";\nimport { AdminProject } from \"../../projects\";\nimport { _StackAdminAppImpl } from \"../implementations\";\nimport { StackServerApp, StackServerAppConstructorOptions } from \"./server-app\";\n\nexport type EmailOutboxListOptions = {\n status?: string,\n simpleStatus?: string,\n limit?: number,\n cursor?: string,\n};\n\nexport type EmailOutboxListResult = {\n items: AdminEmailOutbox[],\n nextCursor: string | null,\n};\n\nexport type EmailOutboxUpdateOptions = {\n isPaused?: boolean,\n scheduledAtMillis?: number,\n cancel?: boolean,\n};\n\n\nexport type StackAdminAppConstructorOptions<HasTokenStore extends boolean, ProjectId extends string> = (\n & StackServerAppConstructorOptions<HasTokenStore, ProjectId>\n & {\n superSecretAdminKey?: string,\n projectOwnerSession?: InternalSession,\n }\n);\n\n\nexport type StackAdminApp<HasTokenStore extends boolean = boolean, ProjectId extends string = string> = (\n & AsyncStoreProperty<\"project\", [], AdminProject, false>\n & AsyncStoreProperty<\"internalApiKeys\", [], InternalApiKey[], true>\n & AsyncStoreProperty<\"teamPermissionDefinitions\", [], AdminTeamPermissionDefinition[], true>\n & AsyncStoreProperty<\"projectPermissionDefinitions\", [], AdminProjectPermissionDefinition[], true>\n & AsyncStoreProperty<\"emailThemes\", [], { id: string, displayName: string }[], true>\n & AsyncStoreProperty<\"emailPreview\", [{ themeId?: string | null | false, themeTsxSource?: string, templateId?: string, templateTsxSource?: string }], string, false>\n & AsyncStoreProperty<\"emailTemplates\", [], { id: string, displayName: string, themeId?: string, tsxSource: string }[], true>\n & AsyncStoreProperty<\"emailDrafts\", [], { id: string, displayName: string, themeId: string | undefined | false, tsxSource: string, sentAt: Date | null }[], true>\n & AsyncStoreProperty<\"stripeAccountInfo\", [], { account_id: string, charges_enabled: boolean, details_submitted: boolean, payouts_enabled: boolean } | null, false>\n & AsyncStoreProperty<\n \"transactions\",\n [{\n cursor?: string,\n limit?: number,\n type?: TransactionType,\n customerType?: 'user' | 'team' | 'custom',\n }],\n { transactions: Transaction[], nextCursor: string | null },\n true\n >\n & {\n createInternalApiKey(options: InternalApiKeyCreateOptions): Promise<InternalApiKeyFirstView>,\n\n createTeamPermissionDefinition(data: AdminTeamPermissionDefinitionCreateOptions): Promise<AdminTeamPermission>,\n updateTeamPermissionDefinition(permissionId: string, data: AdminTeamPermissionDefinitionUpdateOptions): Promise<void>,\n deleteTeamPermissionDefinition(permissionId: string): Promise<void>,\n\n createProjectPermissionDefinition(data: AdminProjectPermissionDefinitionCreateOptions): Promise<AdminProjectPermission>,\n updateProjectPermissionDefinition(permissionId: string, data: AdminProjectPermissionDefinitionUpdateOptions): Promise<void>,\n deleteProjectPermissionDefinition(permissionId: string): Promise<void>,\n\n useSvixToken(): { token: string, url: string | undefined }, // THIS_LINE_PLATFORM react-like\n\n sendTestEmail(options: {\n recipientEmail: string,\n emailConfig: EmailConfig,\n }): Promise<Result<undefined, { errorMessage: string }>>,\n\n sendTestWebhook(options: { endpointId: string }): Promise<Result<undefined, { errorMessage: string }>>,\n\n sendSignInInvitationEmail(email: string, callbackUrl: string): Promise<void>,\n\n listSentEmails(): Promise<AdminSentEmail[]>,\n\n useEmailTheme(id: string): { displayName: string, tsxSource: string }, // THIS_LINE_PLATFORM react-like\n createEmailTheme(displayName: string): Promise<{ id: string }>,\n updateEmailTheme(id: string, tsxSource: string): Promise<void>,\n\n sendChatMessage(\n threadId: string,\n contextType: \"email-theme\" | \"email-template\" | \"email-draft\",\n messages: Array<{ role: string, content: any }>,\n abortSignal?: AbortSignal,\n ): Promise<{ content: ChatContent }>,\n saveChatMessage(threadId: string, message: any): Promise<void>,\n listChatMessages(threadId: string): Promise<{ messages: Array<any> }>,\n updateEmailTemplate(id: string, tsxSource: string, themeId: string | null | false): Promise<{ renderedHtml: string }>,\n createEmailTemplate(displayName: string): Promise<{ id: string }>,\n\n setupPayments(): Promise<{ url: string }>,\n createStripeWidgetAccountSession(): Promise<{ client_secret: string }>,\n getPaymentMethodConfigs(): Promise<{ configId: string, methods: Array<{ id: string, name: string, enabled: boolean, available: boolean, overridable: boolean }> } | null>,\n updatePaymentMethodConfigs(configId: string, updates: Record<string, 'on' | 'off'>): Promise<void>,\n createEmailDraft(options: { displayName: string, themeId?: string | undefined | false, tsxSource?: string }): Promise<{ id: string }>,\n updateEmailDraft(id: string, data: { displayName?: string, themeId?: string | undefined | false, tsxSource?: string }): Promise<void>,\n createItemQuantityChange(options: (\n { userId: string, itemId: string, quantity: number, expiresAt?: string, description?: string } |\n { teamId: string, itemId: string, quantity: number, expiresAt?: string, description?: string } |\n { customCustomerId: string, itemId: string, quantity: number, expiresAt?: string, description?: string }\n )): Promise<void>,\n refundTransaction(options: {
|
|
1
|
+
{"version":3,"sources":["../../../../../../src/lib/stack-app/apps/interfaces/admin-app.ts"],"sourcesContent":["\n//===========================================\n// THIS FILE IS AUTO-GENERATED FROM TEMPLATE. DO NOT EDIT IT DIRECTLY, INSTEAD EDIT THE CORRESPONDING FILE IN packages/template\n//===========================================\nimport { ChatContent } from \"@stackframe/stack-shared/dist/interface/admin-interface\";\nimport { AnalyticsQueryOptions, AnalyticsQueryResponse } from \"@stackframe/stack-shared/dist/interface/crud/analytics\";\nimport type { Transaction, TransactionType } from \"@stackframe/stack-shared/dist/interface/crud/transactions\";\nimport { InternalSession } from \"@stackframe/stack-shared/dist/sessions\";\nimport type { MoneyAmount } from \"@stackframe/stack-shared/dist/utils/currency-constants\";\nimport { Result } from \"@stackframe/stack-shared/dist/utils/results\";\nimport { AsyncStoreProperty, EmailConfig } from \"../../common\";\nimport { AdminEmailOutbox, AdminSentEmail } from \"../../email\";\nimport { InternalApiKey, InternalApiKeyCreateOptions, InternalApiKeyFirstView } from \"../../internal-api-keys\";\nimport { AdminProjectPermission, AdminProjectPermissionDefinition, AdminProjectPermissionDefinitionCreateOptions, AdminProjectPermissionDefinitionUpdateOptions, AdminTeamPermission, AdminTeamPermissionDefinition, AdminTeamPermissionDefinitionCreateOptions, AdminTeamPermissionDefinitionUpdateOptions } from \"../../permissions\";\nimport { AdminProject } from \"../../projects\";\nimport { _StackAdminAppImpl } from \"../implementations\";\nimport { StackServerApp, StackServerAppConstructorOptions } from \"./server-app\";\n\nexport type EmailOutboxListOptions = {\n status?: string,\n simpleStatus?: string,\n limit?: number,\n cursor?: string,\n};\n\nexport type EmailOutboxListResult = {\n items: AdminEmailOutbox[],\n nextCursor: string | null,\n};\n\nexport type EmailOutboxUpdateOptions = {\n isPaused?: boolean,\n scheduledAtMillis?: number,\n cancel?: boolean,\n};\n\n\nexport type StackAdminAppConstructorOptions<HasTokenStore extends boolean, ProjectId extends string> = (\n & StackServerAppConstructorOptions<HasTokenStore, ProjectId>\n & {\n superSecretAdminKey?: string,\n projectOwnerSession?: InternalSession,\n }\n);\n\n\nexport type StackAdminApp<HasTokenStore extends boolean = boolean, ProjectId extends string = string> = (\n & AsyncStoreProperty<\"project\", [], AdminProject, false>\n & AsyncStoreProperty<\"internalApiKeys\", [], InternalApiKey[], true>\n & AsyncStoreProperty<\"teamPermissionDefinitions\", [], AdminTeamPermissionDefinition[], true>\n & AsyncStoreProperty<\"projectPermissionDefinitions\", [], AdminProjectPermissionDefinition[], true>\n & AsyncStoreProperty<\"emailThemes\", [], { id: string, displayName: string }[], true>\n & AsyncStoreProperty<\"emailPreview\", [{ themeId?: string | null | false, themeTsxSource?: string, templateId?: string, templateTsxSource?: string }], string, false>\n & AsyncStoreProperty<\"emailTemplates\", [], { id: string, displayName: string, themeId?: string, tsxSource: string }[], true>\n & AsyncStoreProperty<\"emailDrafts\", [], { id: string, displayName: string, themeId: string | undefined | false, tsxSource: string, sentAt: Date | null }[], true>\n & AsyncStoreProperty<\"stripeAccountInfo\", [], { account_id: string, charges_enabled: boolean, details_submitted: boolean, payouts_enabled: boolean } | null, false>\n & AsyncStoreProperty<\n \"transactions\",\n [{\n cursor?: string,\n limit?: number,\n type?: TransactionType,\n customerType?: 'user' | 'team' | 'custom',\n }],\n { transactions: Transaction[], nextCursor: string | null },\n true\n >\n & {\n createInternalApiKey(options: InternalApiKeyCreateOptions): Promise<InternalApiKeyFirstView>,\n\n createTeamPermissionDefinition(data: AdminTeamPermissionDefinitionCreateOptions): Promise<AdminTeamPermission>,\n updateTeamPermissionDefinition(permissionId: string, data: AdminTeamPermissionDefinitionUpdateOptions): Promise<void>,\n deleteTeamPermissionDefinition(permissionId: string): Promise<void>,\n\n createProjectPermissionDefinition(data: AdminProjectPermissionDefinitionCreateOptions): Promise<AdminProjectPermission>,\n updateProjectPermissionDefinition(permissionId: string, data: AdminProjectPermissionDefinitionUpdateOptions): Promise<void>,\n deleteProjectPermissionDefinition(permissionId: string): Promise<void>,\n\n useSvixToken(): { token: string, url: string | undefined }, // THIS_LINE_PLATFORM react-like\n\n sendTestEmail(options: {\n recipientEmail: string,\n emailConfig: EmailConfig,\n }): Promise<Result<undefined, { errorMessage: string }>>,\n\n sendTestWebhook(options: { endpointId: string }): Promise<Result<undefined, { errorMessage: string }>>,\n\n sendSignInInvitationEmail(email: string, callbackUrl: string): Promise<void>,\n\n listSentEmails(): Promise<AdminSentEmail[]>,\n\n useEmailTheme(id: string): { displayName: string, tsxSource: string }, // THIS_LINE_PLATFORM react-like\n createEmailTheme(displayName: string): Promise<{ id: string }>,\n updateEmailTheme(id: string, tsxSource: string): Promise<void>,\n\n sendChatMessage(\n threadId: string,\n contextType: \"email-theme\" | \"email-template\" | \"email-draft\",\n messages: Array<{ role: string, content: any }>,\n abortSignal?: AbortSignal,\n ): Promise<{ content: ChatContent }>,\n saveChatMessage(threadId: string, message: any): Promise<void>,\n listChatMessages(threadId: string): Promise<{ messages: Array<any> }>,\n updateEmailTemplate(id: string, tsxSource: string, themeId: string | null | false): Promise<{ renderedHtml: string }>,\n createEmailTemplate(displayName: string): Promise<{ id: string }>,\n\n setupPayments(): Promise<{ url: string }>,\n createStripeWidgetAccountSession(): Promise<{ client_secret: string }>,\n getPaymentMethodConfigs(): Promise<{ configId: string, methods: Array<{ id: string, name: string, enabled: boolean, available: boolean, overridable: boolean }> } | null>,\n updatePaymentMethodConfigs(configId: string, updates: Record<string, 'on' | 'off'>): Promise<void>,\n createEmailDraft(options: { displayName: string, themeId?: string | undefined | false, tsxSource?: string }): Promise<{ id: string }>,\n updateEmailDraft(id: string, data: { displayName?: string, themeId?: string | undefined | false, tsxSource?: string }): Promise<void>,\n createItemQuantityChange(options: (\n { userId: string, itemId: string, quantity: number, expiresAt?: string, description?: string } |\n { teamId: string, itemId: string, quantity: number, expiresAt?: string, description?: string } |\n { customCustomerId: string, itemId: string, quantity: number, expiresAt?: string, description?: string }\n )): Promise<void>,\n refundTransaction(options: {\n type: \"subscription\" | \"one-time-purchase\",\n id: string,\n refundEntries: Array<{ entryIndex: number, quantity: number, amountUsd: MoneyAmount }>,\n }): Promise<void>,\n queryAnalytics(options: AnalyticsQueryOptions): Promise<AnalyticsQueryResponse>,\n\n // Email Outbox methods\n listOutboxEmails(options?: EmailOutboxListOptions): Promise<EmailOutboxListResult>,\n getOutboxEmail(id: string): Promise<AdminEmailOutbox>,\n updateOutboxEmail(id: string, options: EmailOutboxUpdateOptions): Promise<AdminEmailOutbox>,\n pauseOutboxEmail(id: string): Promise<AdminEmailOutbox>,\n unpauseOutboxEmail(id: string): Promise<AdminEmailOutbox>,\n cancelOutboxEmail(id: string): Promise<AdminEmailOutbox>,\n }\n & StackServerApp<HasTokenStore, ProjectId>\n);\nexport type StackAdminAppConstructor = {\n new <\n HasTokenStore extends boolean,\n ProjectId extends string\n >(options: StackAdminAppConstructorOptions<HasTokenStore, ProjectId>): StackAdminApp<HasTokenStore, ProjectId>,\n new(options: StackAdminAppConstructorOptions<boolean, string>): StackAdminApp<boolean, string>,\n};\nexport const StackAdminApp: StackAdminAppConstructor = _StackAdminAppImpl;\n"],"mappings":";AAeA,SAAS,0BAA0B;AA8H5B,IAAM,gBAA0C;","names":[]}
|
|
@@ -24,7 +24,8 @@ function adminProjectUpdateOptionsToCrud(options) {
|
|
|
24
24
|
client_id: p.clientId,
|
|
25
25
|
client_secret: p.clientSecret,
|
|
26
26
|
facebook_config_id: p.facebookConfigId,
|
|
27
|
-
microsoft_tenant_id: p.microsoftTenantId
|
|
27
|
+
microsoft_tenant_id: p.microsoftTenantId,
|
|
28
|
+
apple_bundle_ids: p.appleBundleIds
|
|
28
29
|
}
|
|
29
30
|
})),
|
|
30
31
|
email_config: options.config?.emailConfig && (options.config.emailConfig.type === "shared" ? {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../src/lib/stack-app/projects/index.ts"],"sourcesContent":["\n//===========================================\n// THIS FILE IS AUTO-GENERATED FROM TEMPLATE. DO NOT EDIT IT DIRECTLY, INSTEAD EDIT THE CORRESPONDING FILE IN packages/template\n//===========================================\nimport { ProductionModeError } from \"@stackframe/stack-shared/dist/helpers/production-mode\";\nimport { AdminUserProjectsCrud, ProjectsCrud } from \"@stackframe/stack-shared/dist/interface/crud/projects\";\n\nimport { CompleteConfig, EnvironmentConfigNormalizedOverride, EnvironmentConfigOverrideOverride } from \"@stackframe/stack-shared/dist/config/schema\";\nimport { StackAdminApp } from \"../apps/interfaces/admin-app\";\nimport { AdminProjectConfig, AdminProjectConfigUpdateOptions, ProjectConfig } from \"../project-configs\";\n\n/**\n * SDK type for pushed config source (camelCase for SDK).\n * Represents where the branch config was pushed from.\n */\nexport type PushedConfigSource =\n | { type: \"pushed-from-github\", owner: string, repo: string, branch: string, commitHash: string, configFilePath: string }\n | { type: \"pushed-from-unknown\" }\n | { type: \"unlinked\" };\n\nexport type PushConfigOptions = {\n /**\n * The source of this config push.\n */\n source: PushedConfigSource,\n};\n\n\nexport type Project = {\n readonly id: string,\n readonly displayName: string,\n readonly config: ProjectConfig,\n};\n\nexport type AdminProject = {\n readonly id: string,\n readonly displayName: string,\n readonly description: string | null,\n readonly createdAt: Date,\n readonly isProductionMode: boolean,\n readonly ownerTeamId: string | null,\n readonly logoUrl: string | null | undefined,\n readonly logoFullUrl: string | null | undefined,\n readonly logoDarkModeUrl: string | null | undefined,\n readonly logoFullDarkModeUrl: string | null | undefined,\n\n readonly config: AdminProjectConfig,\n\n update(this: AdminProject, update: AdminProjectUpdateOptions): Promise<void>,\n delete(this: AdminProject): Promise<void>,\n\n getConfig(this: AdminProject): Promise<CompleteConfig>,\n useConfig(this: AdminProject): CompleteConfig,\n\n /**\n * Updates the environment's config by merging the provided config into the existing config.\n *\n * Changes made with `updateConfig` always take precedence over those made with `pushConfig`, even if the `pushConfig`\n * config was pushed after the changes were made with `updateConfig`. This is best for environment-specific\n * configuration like secrets, API keys, and other values that you wouldn't push into a source repository.\n */\n // We have some strict types here in order to prevent accidental overwriting of a top-level property of a config object\n updateConfig(\n this: AdminProject,\n config: EnvironmentConfigOverrideOverride & {\n [K in keyof EnvironmentConfigNormalizedOverride]: \"............................ERROR MESSAGE AFTER THIS LINE............................ You have attempted to update a config object with a top-level property in it (for example `emails`). This is very likely a mistake, and you probably meant to update a nested property instead (for example `emails.server`). If you really meant to update a top-level property (resetting all nested properties to their defaults), cast as any (the code will work at runtime) ............................ERROR MESSAGE BEFORE THIS LINE............................\";\n }\n ): Promise<void>,\n\n /**\n * Pushes a config, replacing any previous config pushed with `pushConfig`.\n *\n * **Note:** This function does **not** replace any changes made with `updateConfig`. Changes made with\n * `updateConfig` always take precedence over those made with `pushConfig`, even if the `pushConfig`\n * config was pushed after the changes were made with `updateConfig`.\n *\n * This is useful for programmatically deploying configuration. More often than not, you'll want to use\n * `updateConfig` instead.\n */\n pushConfig(\n this: AdminProject,\n config: EnvironmentConfigOverrideOverride & {\n [K in keyof EnvironmentConfigNormalizedOverride]: \"............................ERROR MESSAGE AFTER THIS LINE............................ You have attempted to update a config object with a top-level property in it (for example `emails`). This is very likely a mistake, and you probably meant to update a nested property instead (for example `emails.server`). If you really meant to update a top-level property (resetting all nested properties to their defaults), cast as any (the code will work at runtime) ............................ERROR MESSAGE BEFORE THIS LINE............................\";\n },\n options: PushConfigOptions,\n ): Promise<void>,\n\n /**\n * Updates the pushed config by merging the provided config into the existing pushed config.\n *\n * **Warning:** This is almost always **not** the function you want to call. Changes made with\n * `updatePushedConfig` will be replaced entirely the next time `pushConfig` is called. Consider using\n * `pushConfig` to set the full pushed config, or `updateConfig` for environment-specific values that\n * should persist across pushes.\n *\n * This function is useful for making temporary modifications to the pushed config before the next push.\n */\n updatePushedConfig(\n this: AdminProject,\n config: EnvironmentConfigOverrideOverride & {\n [K in keyof EnvironmentConfigNormalizedOverride]: \"............................ERROR MESSAGE AFTER THIS LINE............................ You have attempted to update a config object with a top-level property in it (for example `emails`). This is very likely a mistake, and you probably meant to update a nested property instead (for example `emails.server`). If you really meant to update a top-level property (resetting all nested properties to their defaults), cast as any (the code will work at runtime) ............................ERROR MESSAGE BEFORE THIS LINE............................\";\n }\n ): Promise<void>,\n\n /**\n * Gets the source metadata for the pushed config, indicating where it was pushed from.\n *\n * The source can be:\n * - `pushed-from-github`: Config was pushed from a GitHub repository\n * - `pushed-from-unknown`: Config was pushed via CLI but source details unknown\n * - `unlinked`: Config can be edited directly on the dashboard\n */\n getPushedConfigSource(this: AdminProject): Promise<PushedConfigSource>,\n\n /**\n * Unlinks the pushed config source, setting it to \"unlinked\".\n * This allows the config to be edited directly on the dashboard without external push restrictions.\n */\n unlinkPushedConfigSource(this: AdminProject): Promise<void>,\n\n getProductionModeErrors(this: AdminProject): Promise<ProductionModeError[]>,\n useProductionModeErrors(this: AdminProject): ProductionModeError[],\n} & Project;\n\nexport type AdminOwnedProject = {\n readonly app: StackAdminApp<false>,\n} & AdminProject;\n\nexport type AdminProjectUpdateOptions = {\n displayName?: string,\n description?: string,\n isProductionMode?: boolean,\n logoUrl?: string | null,\n logoFullUrl?: string | null,\n logoDarkModeUrl?: string | null,\n logoFullDarkModeUrl?: string | null,\n config?: AdminProjectConfigUpdateOptions,\n};\nexport function adminProjectUpdateOptionsToCrud(options: AdminProjectUpdateOptions): ProjectsCrud[\"Admin\"][\"Update\"] {\n return {\n display_name: options.displayName,\n description: options.description,\n is_production_mode: options.isProductionMode,\n logo_url: options.logoUrl,\n logo_full_url: options.logoFullUrl,\n logo_dark_mode_url: options.logoDarkModeUrl,\n logo_full_dark_mode_url: options.logoFullDarkModeUrl,\n /**\n * NOTE: Do not update this config anymore. It's been superseded by the new config in schema.ts.\n * @deprecated\n */\n config: {\n domains: options.config?.domains?.map((d) => ({\n domain: d.domain,\n handler_path: d.handlerPath\n })),\n oauth_providers: options.config?.oauthProviders?.map((p) => ({\n id: p.id as any,\n type: p.type,\n ...(p.type === 'standard' && {\n client_id: p.clientId,\n client_secret: p.clientSecret,\n facebook_config_id: p.facebookConfigId,\n microsoft_tenant_id: p.microsoftTenantId,\n }),\n })),\n email_config: options.config?.emailConfig && (\n options.config.emailConfig.type === 'shared' ? {\n type: 'shared',\n } : {\n type: 'standard',\n host: options.config.emailConfig.host,\n port: options.config.emailConfig.port,\n username: options.config.emailConfig.username,\n password: options.config.emailConfig.password,\n sender_name: options.config.emailConfig.senderName,\n sender_email: options.config.emailConfig.senderEmail,\n }\n ),\n email_theme: options.config?.emailTheme,\n sign_up_enabled: options.config?.signUpEnabled,\n credential_enabled: options.config?.credentialEnabled,\n magic_link_enabled: options.config?.magicLinkEnabled,\n passkey_enabled: options.config?.passkeyEnabled,\n allow_localhost: options.config?.allowLocalhost,\n create_team_on_sign_up: options.config?.createTeamOnSignUp,\n client_team_creation_enabled: options.config?.clientTeamCreationEnabled,\n client_user_deletion_enabled: options.config?.clientUserDeletionEnabled,\n team_creator_default_permissions: options.config?.teamCreatorDefaultPermissions,\n team_member_default_permissions: options.config?.teamMemberDefaultPermissions,\n user_default_permissions: options.config?.userDefaultPermissions,\n oauth_account_merge_strategy: options.config?.oauthAccountMergeStrategy,\n allow_user_api_keys: options.config?.allowUserApiKeys,\n allow_team_api_keys: options.config?.allowTeamApiKeys,\n },\n };\n}\n\nexport type AdminProjectCreateOptions = Omit<AdminProjectUpdateOptions, 'displayName'> & {\n displayName: string,\n teamId: string,\n};\nexport function adminProjectCreateOptionsToCrud(options: AdminProjectCreateOptions): AdminUserProjectsCrud[\"Server\"][\"Create\"] {\n return {\n ...adminProjectUpdateOptionsToCrud(options),\n display_name: options.displayName,\n owner_team_id: options.teamId,\n };\n}\n"],"mappings":";AA0IO,SAAS,gCAAgC,SAAqE;AACnH,SAAO;AAAA,IACL,cAAc,QAAQ;AAAA,IACtB,aAAa,QAAQ;AAAA,IACrB,oBAAoB,QAAQ;AAAA,IAC5B,UAAU,QAAQ;AAAA,IAClB,eAAe,QAAQ;AAAA,IACvB,oBAAoB,QAAQ;AAAA,IAC5B,yBAAyB,QAAQ;AAAA;AAAA;AAAA;AAAA;AAAA,IAKjC,QAAQ;AAAA,MACN,SAAS,QAAQ,QAAQ,SAAS,IAAI,CAAC,OAAO;AAAA,QAC5C,QAAQ,EAAE;AAAA,QACV,cAAc,EAAE;AAAA,MAClB,EAAE;AAAA,MACF,iBAAiB,QAAQ,QAAQ,gBAAgB,IAAI,CAAC,OAAO;AAAA,QAC3D,IAAI,EAAE;AAAA,QACN,MAAM,EAAE;AAAA,QACR,GAAI,EAAE,SAAS,cAAc;AAAA,UAC3B,WAAW,EAAE;AAAA,UACb,eAAe,EAAE;AAAA,UACjB,oBAAoB,EAAE;AAAA,UACtB,qBAAqB,EAAE;AAAA,QACzB;AAAA,MACF,EAAE;AAAA,MACF,cAAc,QAAQ,QAAQ,gBAC5B,QAAQ,OAAO,YAAY,SAAS,WAAW;AAAA,QAC7C,MAAM;AAAA,MACR,IAAI;AAAA,QACF,MAAM;AAAA,QACN,MAAM,QAAQ,OAAO,YAAY;AAAA,QACjC,MAAM,QAAQ,OAAO,YAAY;AAAA,QACjC,UAAU,QAAQ,OAAO,YAAY;AAAA,QACrC,UAAU,QAAQ,OAAO,YAAY;AAAA,QACrC,aAAa,QAAQ,OAAO,YAAY;AAAA,QACxC,cAAc,QAAQ,OAAO,YAAY;AAAA,MAC3C;AAAA,MAEF,aAAa,QAAQ,QAAQ;AAAA,MAC7B,iBAAiB,QAAQ,QAAQ;AAAA,MACjC,oBAAoB,QAAQ,QAAQ;AAAA,MACpC,oBAAoB,QAAQ,QAAQ;AAAA,MACpC,iBAAiB,QAAQ,QAAQ;AAAA,MACjC,iBAAiB,QAAQ,QAAQ;AAAA,MACjC,wBAAwB,QAAQ,QAAQ;AAAA,MACxC,8BAA8B,QAAQ,QAAQ;AAAA,MAC9C,8BAA8B,QAAQ,QAAQ;AAAA,MAC9C,kCAAkC,QAAQ,QAAQ;AAAA,MAClD,iCAAiC,QAAQ,QAAQ;AAAA,MACjD,0BAA0B,QAAQ,QAAQ;AAAA,MAC1C,8BAA8B,QAAQ,QAAQ;AAAA,MAC9C,qBAAqB,QAAQ,QAAQ;AAAA,MACrC,qBAAqB,QAAQ,QAAQ;AAAA,IACvC;AAAA,EACF;AACF;AAMO,SAAS,gCAAgC,SAA+E;AAC7H,SAAO;AAAA,IACL,GAAG,gCAAgC,OAAO;AAAA,IAC1C,cAAc,QAAQ;AAAA,IACtB,eAAe,QAAQ;AAAA,EACzB;AACF;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../../../src/lib/stack-app/projects/index.ts"],"sourcesContent":["\n//===========================================\n// THIS FILE IS AUTO-GENERATED FROM TEMPLATE. DO NOT EDIT IT DIRECTLY, INSTEAD EDIT THE CORRESPONDING FILE IN packages/template\n//===========================================\nimport { ProductionModeError } from \"@stackframe/stack-shared/dist/helpers/production-mode\";\nimport { AdminUserProjectsCrud, ProjectsCrud } from \"@stackframe/stack-shared/dist/interface/crud/projects\";\n\nimport { CompleteConfig, EnvironmentConfigNormalizedOverride, EnvironmentConfigOverrideOverride } from \"@stackframe/stack-shared/dist/config/schema\";\nimport { StackAdminApp } from \"../apps/interfaces/admin-app\";\nimport { AdminProjectConfig, AdminProjectConfigUpdateOptions, ProjectConfig } from \"../project-configs\";\n\n/**\n * SDK type for pushed config source (camelCase for SDK).\n * Represents where the branch config was pushed from.\n */\nexport type PushedConfigSource =\n | { type: \"pushed-from-github\", owner: string, repo: string, branch: string, commitHash: string, configFilePath: string }\n | { type: \"pushed-from-unknown\" }\n | { type: \"unlinked\" };\n\nexport type PushConfigOptions = {\n /**\n * The source of this config push.\n */\n source: PushedConfigSource,\n};\n\n\nexport type Project = {\n readonly id: string,\n readonly displayName: string,\n readonly config: ProjectConfig,\n};\n\nexport type AdminProject = {\n readonly id: string,\n readonly displayName: string,\n readonly description: string | null,\n readonly createdAt: Date,\n readonly isProductionMode: boolean,\n readonly ownerTeamId: string | null,\n readonly logoUrl: string | null | undefined,\n readonly logoFullUrl: string | null | undefined,\n readonly logoDarkModeUrl: string | null | undefined,\n readonly logoFullDarkModeUrl: string | null | undefined,\n\n readonly config: AdminProjectConfig,\n\n update(this: AdminProject, update: AdminProjectUpdateOptions): Promise<void>,\n delete(this: AdminProject): Promise<void>,\n\n getConfig(this: AdminProject): Promise<CompleteConfig>,\n useConfig(this: AdminProject): CompleteConfig,\n\n /**\n * Updates the environment's config by merging the provided config into the existing config.\n *\n * Changes made with `updateConfig` always take precedence over those made with `pushConfig`, even if the `pushConfig`\n * config was pushed after the changes were made with `updateConfig`. This is best for environment-specific\n * configuration like secrets, API keys, and other values that you wouldn't push into a source repository.\n */\n // We have some strict types here in order to prevent accidental overwriting of a top-level property of a config object\n updateConfig(\n this: AdminProject,\n config: EnvironmentConfigOverrideOverride & {\n [K in keyof EnvironmentConfigNormalizedOverride]: \"............................ERROR MESSAGE AFTER THIS LINE............................ You have attempted to update a config object with a top-level property in it (for example `emails`). This is very likely a mistake, and you probably meant to update a nested property instead (for example `emails.server`). If you really meant to update a top-level property (resetting all nested properties to their defaults), cast as any (the code will work at runtime) ............................ERROR MESSAGE BEFORE THIS LINE............................\";\n }\n ): Promise<void>,\n\n /**\n * Pushes a config, replacing any previous config pushed with `pushConfig`.\n *\n * **Note:** This function does **not** replace any changes made with `updateConfig`. Changes made with\n * `updateConfig` always take precedence over those made with `pushConfig`, even if the `pushConfig`\n * config was pushed after the changes were made with `updateConfig`.\n *\n * This is useful for programmatically deploying configuration. More often than not, you'll want to use\n * `updateConfig` instead.\n */\n pushConfig(\n this: AdminProject,\n config: EnvironmentConfigOverrideOverride & {\n [K in keyof EnvironmentConfigNormalizedOverride]: \"............................ERROR MESSAGE AFTER THIS LINE............................ You have attempted to update a config object with a top-level property in it (for example `emails`). This is very likely a mistake, and you probably meant to update a nested property instead (for example `emails.server`). If you really meant to update a top-level property (resetting all nested properties to their defaults), cast as any (the code will work at runtime) ............................ERROR MESSAGE BEFORE THIS LINE............................\";\n },\n options: PushConfigOptions,\n ): Promise<void>,\n\n /**\n * Updates the pushed config by merging the provided config into the existing pushed config.\n *\n * **Warning:** This is almost always **not** the function you want to call. Changes made with\n * `updatePushedConfig` will be replaced entirely the next time `pushConfig` is called. Consider using\n * `pushConfig` to set the full pushed config, or `updateConfig` for environment-specific values that\n * should persist across pushes.\n *\n * This function is useful for making temporary modifications to the pushed config before the next push.\n */\n updatePushedConfig(\n this: AdminProject,\n config: EnvironmentConfigOverrideOverride & {\n [K in keyof EnvironmentConfigNormalizedOverride]: \"............................ERROR MESSAGE AFTER THIS LINE............................ You have attempted to update a config object with a top-level property in it (for example `emails`). This is very likely a mistake, and you probably meant to update a nested property instead (for example `emails.server`). If you really meant to update a top-level property (resetting all nested properties to their defaults), cast as any (the code will work at runtime) ............................ERROR MESSAGE BEFORE THIS LINE............................\";\n }\n ): Promise<void>,\n\n /**\n * Gets the source metadata for the pushed config, indicating where it was pushed from.\n *\n * The source can be:\n * - `pushed-from-github`: Config was pushed from a GitHub repository\n * - `pushed-from-unknown`: Config was pushed via CLI but source details unknown\n * - `unlinked`: Config can be edited directly on the dashboard\n */\n getPushedConfigSource(this: AdminProject): Promise<PushedConfigSource>,\n\n /**\n * Unlinks the pushed config source, setting it to \"unlinked\".\n * This allows the config to be edited directly on the dashboard without external push restrictions.\n */\n unlinkPushedConfigSource(this: AdminProject): Promise<void>,\n\n getProductionModeErrors(this: AdminProject): Promise<ProductionModeError[]>,\n useProductionModeErrors(this: AdminProject): ProductionModeError[],\n} & Project;\n\nexport type AdminOwnedProject = {\n readonly app: StackAdminApp<false>,\n} & AdminProject;\n\nexport type AdminProjectUpdateOptions = {\n displayName?: string,\n description?: string,\n isProductionMode?: boolean,\n logoUrl?: string | null,\n logoFullUrl?: string | null,\n logoDarkModeUrl?: string | null,\n logoFullDarkModeUrl?: string | null,\n config?: AdminProjectConfigUpdateOptions,\n};\nexport function adminProjectUpdateOptionsToCrud(options: AdminProjectUpdateOptions): ProjectsCrud[\"Admin\"][\"Update\"] {\n return {\n display_name: options.displayName,\n description: options.description,\n is_production_mode: options.isProductionMode,\n logo_url: options.logoUrl,\n logo_full_url: options.logoFullUrl,\n logo_dark_mode_url: options.logoDarkModeUrl,\n logo_full_dark_mode_url: options.logoFullDarkModeUrl,\n /**\n * NOTE: Do not update this config anymore. It's been superseded by the new config in schema.ts.\n * @deprecated\n */\n config: {\n domains: options.config?.domains?.map((d) => ({\n domain: d.domain,\n handler_path: d.handlerPath\n })),\n oauth_providers: options.config?.oauthProviders?.map((p) => ({\n id: p.id as any,\n type: p.type,\n ...(p.type === 'standard' && {\n client_id: p.clientId,\n client_secret: p.clientSecret,\n facebook_config_id: p.facebookConfigId,\n microsoft_tenant_id: p.microsoftTenantId,\n apple_bundle_ids: p.appleBundleIds,\n }),\n })),\n email_config: options.config?.emailConfig && (\n options.config.emailConfig.type === 'shared' ? {\n type: 'shared',\n } : {\n type: 'standard',\n host: options.config.emailConfig.host,\n port: options.config.emailConfig.port,\n username: options.config.emailConfig.username,\n password: options.config.emailConfig.password,\n sender_name: options.config.emailConfig.senderName,\n sender_email: options.config.emailConfig.senderEmail,\n }\n ),\n email_theme: options.config?.emailTheme,\n sign_up_enabled: options.config?.signUpEnabled,\n credential_enabled: options.config?.credentialEnabled,\n magic_link_enabled: options.config?.magicLinkEnabled,\n passkey_enabled: options.config?.passkeyEnabled,\n allow_localhost: options.config?.allowLocalhost,\n create_team_on_sign_up: options.config?.createTeamOnSignUp,\n client_team_creation_enabled: options.config?.clientTeamCreationEnabled,\n client_user_deletion_enabled: options.config?.clientUserDeletionEnabled,\n team_creator_default_permissions: options.config?.teamCreatorDefaultPermissions,\n team_member_default_permissions: options.config?.teamMemberDefaultPermissions,\n user_default_permissions: options.config?.userDefaultPermissions,\n oauth_account_merge_strategy: options.config?.oauthAccountMergeStrategy,\n allow_user_api_keys: options.config?.allowUserApiKeys,\n allow_team_api_keys: options.config?.allowTeamApiKeys,\n },\n };\n}\n\nexport type AdminProjectCreateOptions = Omit<AdminProjectUpdateOptions, 'displayName'> & {\n displayName: string,\n teamId: string,\n};\nexport function adminProjectCreateOptionsToCrud(options: AdminProjectCreateOptions): AdminUserProjectsCrud[\"Server\"][\"Create\"] {\n return {\n ...adminProjectUpdateOptionsToCrud(options),\n display_name: options.displayName,\n owner_team_id: options.teamId,\n };\n}\n"],"mappings":";AA0IO,SAAS,gCAAgC,SAAqE;AACnH,SAAO;AAAA,IACL,cAAc,QAAQ;AAAA,IACtB,aAAa,QAAQ;AAAA,IACrB,oBAAoB,QAAQ;AAAA,IAC5B,UAAU,QAAQ;AAAA,IAClB,eAAe,QAAQ;AAAA,IACvB,oBAAoB,QAAQ;AAAA,IAC5B,yBAAyB,QAAQ;AAAA;AAAA;AAAA;AAAA;AAAA,IAKjC,QAAQ;AAAA,MACN,SAAS,QAAQ,QAAQ,SAAS,IAAI,CAAC,OAAO;AAAA,QAC5C,QAAQ,EAAE;AAAA,QACV,cAAc,EAAE;AAAA,MAClB,EAAE;AAAA,MACF,iBAAiB,QAAQ,QAAQ,gBAAgB,IAAI,CAAC,OAAO;AAAA,QAC3D,IAAI,EAAE;AAAA,QACN,MAAM,EAAE;AAAA,QACR,GAAI,EAAE,SAAS,cAAc;AAAA,UAC3B,WAAW,EAAE;AAAA,UACb,eAAe,EAAE;AAAA,UACjB,oBAAoB,EAAE;AAAA,UACtB,qBAAqB,EAAE;AAAA,UACvB,kBAAkB,EAAE;AAAA,QACtB;AAAA,MACF,EAAE;AAAA,MACF,cAAc,QAAQ,QAAQ,gBAC5B,QAAQ,OAAO,YAAY,SAAS,WAAW;AAAA,QAC7C,MAAM;AAAA,MACR,IAAI;AAAA,QACF,MAAM;AAAA,QACN,MAAM,QAAQ,OAAO,YAAY;AAAA,QACjC,MAAM,QAAQ,OAAO,YAAY;AAAA,QACjC,UAAU,QAAQ,OAAO,YAAY;AAAA,QACrC,UAAU,QAAQ,OAAO,YAAY;AAAA,QACrC,aAAa,QAAQ,OAAO,YAAY;AAAA,QACxC,cAAc,QAAQ,OAAO,YAAY;AAAA,MAC3C;AAAA,MAEF,aAAa,QAAQ,QAAQ;AAAA,MAC7B,iBAAiB,QAAQ,QAAQ;AAAA,MACjC,oBAAoB,QAAQ,QAAQ;AAAA,MACpC,oBAAoB,QAAQ,QAAQ;AAAA,MACpC,iBAAiB,QAAQ,QAAQ;AAAA,MACjC,iBAAiB,QAAQ,QAAQ;AAAA,MACjC,wBAAwB,QAAQ,QAAQ;AAAA,MACxC,8BAA8B,QAAQ,QAAQ;AAAA,MAC9C,8BAA8B,QAAQ,QAAQ;AAAA,MAC9C,kCAAkC,QAAQ,QAAQ;AAAA,MAClD,iCAAiC,QAAQ,QAAQ;AAAA,MACjD,0BAA0B,QAAQ,QAAQ;AAAA,MAC1C,8BAA8B,QAAQ,QAAQ;AAAA,MAC9C,qBAAqB,QAAQ,QAAQ;AAAA,MACrC,qBAAqB,QAAQ,QAAQ;AAAA,IACvC;AAAA,EACF;AACF;AAMO,SAAS,gCAAgC,SAA+E;AAC7H,SAAO;AAAA,IACL,GAAG,gCAAgC,OAAO;AAAA,IAC1C,cAAc,QAAQ;AAAA,IACtB,eAAe,QAAQ;AAAA,EACzB;AACF;","names":[]}
|
|
@@ -355,10 +355,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
355
355
|
"__stack-auto-translation-114": "Laden Sie einen Benutzer per E-Mail in Ihr Team ein",
|
|
356
356
|
"__stack-auto-translation-115": "Mitglied einladen",
|
|
357
357
|
"__stack-auto-translation-116": "Benutzer einladen",
|
|
358
|
-
"__stack-auto-translation-117": "
|
|
358
|
+
"__stack-auto-translation-117": "Rechnung",
|
|
359
359
|
"__stack-auto-translation-118": "Rechnungen",
|
|
360
360
|
"__stack-auto-translation-119": "IP-Adresse",
|
|
361
|
-
"__stack-auto-translation-12": "
|
|
361
|
+
"__stack-auto-translation-12": "Betrag",
|
|
362
362
|
"__stack-auto-translation-120": "Beitreten",
|
|
363
363
|
"__stack-auto-translation-121": "Zuletzt verwendet",
|
|
364
364
|
"__stack-auto-translation-122": "Verlassen",
|
|
@@ -457,7 +457,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
457
457
|
"__stack-auto-translation-206": "Verifizierungs-E-Mail erneut senden",
|
|
458
458
|
"__stack-auto-translation-207": "Passwort zur\xFCcksetzen",
|
|
459
459
|
"__stack-auto-translation-208": "Passwort zur\xFCcksetzen",
|
|
460
|
-
"__stack-auto-translation-209": "
|
|
460
|
+
"__stack-auto-translation-209": "Vergangene Rechnungen und Belege einsehen.",
|
|
461
461
|
"__stack-auto-translation-21": "Sind Sie sicher, dass Sie das Team verlassen m\xF6chten?",
|
|
462
462
|
"__stack-auto-translation-210": "Widerrufen",
|
|
463
463
|
"__stack-auto-translation-211": "Alle anderen Sitzungen widerrufen",
|
|
@@ -525,7 +525,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
525
525
|
"__stack-auto-translation-268": "TOTP-Mehrfaktor-Authentifizierungs-QR-Code",
|
|
526
526
|
"__stack-auto-translation-269": "Erneut versuchen",
|
|
527
527
|
"__stack-auto-translation-27": "Abo k\xFCndigen",
|
|
528
|
-
"__stack-auto-translation-270": "
|
|
528
|
+
"__stack-auto-translation-270": "Nicht verf\xFCgbar",
|
|
529
529
|
"__stack-auto-translation-271": "Uneinbringlich",
|
|
530
530
|
"__stack-auto-translation-272": "Unbekannt",
|
|
531
531
|
"__stack-auto-translation-273": "Nicht verifiziert",
|
|
@@ -547,7 +547,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
547
547
|
"__stack-auto-translation-288": "Best\xE4tigen",
|
|
548
548
|
"__stack-auto-translation-289": "Best\xE4tigung...",
|
|
549
549
|
"__stack-auto-translation-29": "\xE4ndern",
|
|
550
|
-
"__stack-auto-translation-290": "
|
|
550
|
+
"__stack-auto-translation-290": "Ansehen",
|
|
551
551
|
"__stack-auto-translation-291": "Aktive Tarife und K\xE4ufe anzeigen.",
|
|
552
552
|
"__stack-auto-translation-292": "Storniert",
|
|
553
553
|
"__stack-auto-translation-293": "WARNUNG: Stellen Sie sicher, dass Sie der Kommandozeilenanwendung vertrauen, da sie Zugriff auf Ihr Konto erhalten wird. Falls Sie diese Anfrage nicht initiiert haben, k\xF6nnen Sie diese Seite schlie\xDFen und ignorieren. Wir werden Ihnen diesen Link niemals per E-Mail oder auf anderem Wege zusenden.",
|
|
@@ -588,7 +588,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
588
588
|
"__stack-auto-translation-50": "Aktuelle Sitzung",
|
|
589
589
|
"__stack-auto-translation-51": "Aktuelles Team",
|
|
590
590
|
"__stack-auto-translation-52": "Gefahrenzone",
|
|
591
|
-
"__stack-auto-translation-53": "
|
|
591
|
+
"__stack-auto-translation-53": "Datum",
|
|
592
592
|
"__stack-auto-translation-54": "Konto l\xF6schen",
|
|
593
593
|
"__stack-auto-translation-55": "Konto l\xF6schen",
|
|
594
594
|
"__stack-auto-translation-56": "Passkey l\xF6schen",
|
|
@@ -969,10 +969,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
969
969
|
"__stack-auto-translation-114": "Invita a un usuario a tu equipo por correo electr\xF3nico",
|
|
970
970
|
"__stack-auto-translation-115": "Invitar miembro",
|
|
971
971
|
"__stack-auto-translation-116": "Invitar Usuario",
|
|
972
|
-
"__stack-auto-translation-117": "
|
|
972
|
+
"__stack-auto-translation-117": "Factura",
|
|
973
973
|
"__stack-auto-translation-118": "Facturas",
|
|
974
974
|
"__stack-auto-translation-119": "Direcci\xF3n IP",
|
|
975
|
-
"__stack-auto-translation-12": "
|
|
975
|
+
"__stack-auto-translation-12": "Monto",
|
|
976
976
|
"__stack-auto-translation-120": "Unirse",
|
|
977
977
|
"__stack-auto-translation-121": "\xDAltimo uso",
|
|
978
978
|
"__stack-auto-translation-122": "Salir",
|
|
@@ -1139,7 +1139,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1139
1139
|
"__stack-auto-translation-268": "C\xF3digo QR de autenticaci\xF3n multifactor TOTP",
|
|
1140
1140
|
"__stack-auto-translation-269": "Intentar de nuevo",
|
|
1141
1141
|
"__stack-auto-translation-27": "Cancelar suscripci\xF3n",
|
|
1142
|
-
"__stack-auto-translation-270": "
|
|
1142
|
+
"__stack-auto-translation-270": "No disponible",
|
|
1143
1143
|
"__stack-auto-translation-271": "Incobrable",
|
|
1144
1144
|
"__stack-auto-translation-272": "Desconocido",
|
|
1145
1145
|
"__stack-auto-translation-273": "No verificado",
|
|
@@ -1161,7 +1161,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1161
1161
|
"__stack-auto-translation-288": "Verificar",
|
|
1162
1162
|
"__stack-auto-translation-289": "Verificando...",
|
|
1163
1163
|
"__stack-auto-translation-29": "cambiar",
|
|
1164
|
-
"__stack-auto-translation-290": "
|
|
1164
|
+
"__stack-auto-translation-290": "Ver",
|
|
1165
1165
|
"__stack-auto-translation-291": "Ver tus planes activos y compras.",
|
|
1166
1166
|
"__stack-auto-translation-292": "Anulada",
|
|
1167
1167
|
"__stack-auto-translation-293": "ADVERTENCIA: Aseg\xFArese de confiar en la aplicaci\xF3n de l\xEDnea de comandos, ya que obtendr\xE1 acceso a su cuenta. Si no inici\xF3 esta solicitud, puede cerrar esta p\xE1gina e ignorarla. Nunca le enviaremos este enlace por correo electr\xF3nico ni por ning\xFAn otro medio.",
|
|
@@ -1202,7 +1202,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1202
1202
|
"__stack-auto-translation-50": "Sesi\xF3n actual",
|
|
1203
1203
|
"__stack-auto-translation-51": "Equipo actual",
|
|
1204
1204
|
"__stack-auto-translation-52": "Zona de peligro",
|
|
1205
|
-
"__stack-auto-translation-53": "
|
|
1205
|
+
"__stack-auto-translation-53": "Fecha",
|
|
1206
1206
|
"__stack-auto-translation-54": "Eliminar cuenta",
|
|
1207
1207
|
"__stack-auto-translation-55": "Eliminar cuenta",
|
|
1208
1208
|
"__stack-auto-translation-56": "Eliminar clave de acceso",
|
|
@@ -1276,10 +1276,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1276
1276
|
"__stack-auto-translation-114": "Invita a un usuario a tu equipo por correo electr\xF3nico",
|
|
1277
1277
|
"__stack-auto-translation-115": "Invitar miembro",
|
|
1278
1278
|
"__stack-auto-translation-116": "Invitar usuario",
|
|
1279
|
-
"__stack-auto-translation-117": "
|
|
1279
|
+
"__stack-auto-translation-117": "Factura",
|
|
1280
1280
|
"__stack-auto-translation-118": "Facturas",
|
|
1281
1281
|
"__stack-auto-translation-119": "Direcci\xF3n IP",
|
|
1282
|
-
"__stack-auto-translation-12": "
|
|
1282
|
+
"__stack-auto-translation-12": "Importe",
|
|
1283
1283
|
"__stack-auto-translation-120": "Unirse",
|
|
1284
1284
|
"__stack-auto-translation-121": "\xDAltimo uso",
|
|
1285
1285
|
"__stack-auto-translation-122": "Salir",
|
|
@@ -1446,7 +1446,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1446
1446
|
"__stack-auto-translation-268": "C\xF3digo QR de autenticaci\xF3n multifactor TOTP",
|
|
1447
1447
|
"__stack-auto-translation-269": "Intentar de nuevo",
|
|
1448
1448
|
"__stack-auto-translation-27": "Cancelar suscripci\xF3n",
|
|
1449
|
-
"__stack-auto-translation-270": "
|
|
1449
|
+
"__stack-auto-translation-270": "No disponible",
|
|
1450
1450
|
"__stack-auto-translation-271": "Incobrable",
|
|
1451
1451
|
"__stack-auto-translation-272": "Desconocido",
|
|
1452
1452
|
"__stack-auto-translation-273": "Sin verificar",
|
|
@@ -1468,7 +1468,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1468
1468
|
"__stack-auto-translation-288": "Verificar",
|
|
1469
1469
|
"__stack-auto-translation-289": "Verificando...",
|
|
1470
1470
|
"__stack-auto-translation-29": "cambiar",
|
|
1471
|
-
"__stack-auto-translation-290": "
|
|
1471
|
+
"__stack-auto-translation-290": "Ver",
|
|
1472
1472
|
"__stack-auto-translation-291": "Ver tus planes activos y compras.",
|
|
1473
1473
|
"__stack-auto-translation-292": "Anulada",
|
|
1474
1474
|
"__stack-auto-translation-293": "ADVERTENCIA: Aseg\xFArate de confiar en la aplicaci\xF3n de l\xEDnea de comandos, ya que obtendr\xE1 acceso a tu cuenta. Si no iniciaste esta solicitud, puedes cerrar esta p\xE1gina e ignorarla. Nunca te enviaremos este enlace por correo electr\xF3nico ni por ning\xFAn otro medio.",
|
|
@@ -1509,7 +1509,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1509
1509
|
"__stack-auto-translation-50": "Sesi\xF3n actual",
|
|
1510
1510
|
"__stack-auto-translation-51": "Equipo actual",
|
|
1511
1511
|
"__stack-auto-translation-52": "Zona de peligro",
|
|
1512
|
-
"__stack-auto-translation-53": "
|
|
1512
|
+
"__stack-auto-translation-53": "Fecha",
|
|
1513
1513
|
"__stack-auto-translation-54": "Eliminar cuenta",
|
|
1514
1514
|
"__stack-auto-translation-55": "Eliminar cuenta",
|
|
1515
1515
|
"__stack-auto-translation-56": "Eliminar clave de acceso",
|
|
@@ -1583,10 +1583,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1583
1583
|
"__stack-auto-translation-114": "Invitez un utilisateur \xE0 votre \xE9quipe par courriel",
|
|
1584
1584
|
"__stack-auto-translation-115": "Inviter un membre",
|
|
1585
1585
|
"__stack-auto-translation-116": "Inviter l'utilisateur",
|
|
1586
|
-
"__stack-auto-translation-117": "
|
|
1586
|
+
"__stack-auto-translation-117": "Facture",
|
|
1587
1587
|
"__stack-auto-translation-118": "Factures",
|
|
1588
1588
|
"__stack-auto-translation-119": "Adresse IP",
|
|
1589
|
-
"__stack-auto-translation-12": "
|
|
1589
|
+
"__stack-auto-translation-12": "Montant",
|
|
1590
1590
|
"__stack-auto-translation-120": "Joindre",
|
|
1591
1591
|
"__stack-auto-translation-121": "Derni\xE8re utilisation",
|
|
1592
1592
|
"__stack-auto-translation-122": "Quitter",
|
|
@@ -1753,7 +1753,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1753
1753
|
"__stack-auto-translation-268": "Code QR d'authentification \xE0 plusieurs facteurs TOTP",
|
|
1754
1754
|
"__stack-auto-translation-269": "R\xE9essayer",
|
|
1755
1755
|
"__stack-auto-translation-27": "Annuler l'abonnement",
|
|
1756
|
-
"__stack-auto-translation-270": "
|
|
1756
|
+
"__stack-auto-translation-270": "Non disponible",
|
|
1757
1757
|
"__stack-auto-translation-271": "Irr\xE9couvrable",
|
|
1758
1758
|
"__stack-auto-translation-272": "Inconnu",
|
|
1759
1759
|
"__stack-auto-translation-273": "Non v\xE9rifi\xE9",
|
|
@@ -1775,7 +1775,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1775
1775
|
"__stack-auto-translation-288": "V\xE9rifier",
|
|
1776
1776
|
"__stack-auto-translation-289": "V\xE9rification...",
|
|
1777
1777
|
"__stack-auto-translation-29": "modifier",
|
|
1778
|
-
"__stack-auto-translation-290": "
|
|
1778
|
+
"__stack-auto-translation-290": "Voir",
|
|
1779
1779
|
"__stack-auto-translation-291": "Consultez vos forfaits actifs et vos achats.",
|
|
1780
1780
|
"__stack-auto-translation-292": "Annul\xE9e",
|
|
1781
1781
|
"__stack-auto-translation-293": "AVERTISSEMENT : Assurez-vous de faire confiance \xE0 l'application en ligne de commande, car elle aura acc\xE8s \xE0 votre compte. Si vous n'avez pas initi\xE9 cette demande, vous pouvez fermer cette page et l'ignorer. Nous ne vous enverrons jamais ce lien par courriel ou par tout autre moyen.",
|
|
@@ -1890,10 +1890,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
1890
1890
|
"__stack-auto-translation-114": "Invitez un utilisateur \xE0 rejoindre votre \xE9quipe par e-mail",
|
|
1891
1891
|
"__stack-auto-translation-115": "Inviter un membre",
|
|
1892
1892
|
"__stack-auto-translation-116": "Inviter l'utilisateur",
|
|
1893
|
-
"__stack-auto-translation-117": "
|
|
1893
|
+
"__stack-auto-translation-117": "Facture",
|
|
1894
1894
|
"__stack-auto-translation-118": "Factures",
|
|
1895
1895
|
"__stack-auto-translation-119": "Adresse IP",
|
|
1896
|
-
"__stack-auto-translation-12": "
|
|
1896
|
+
"__stack-auto-translation-12": "Montant",
|
|
1897
1897
|
"__stack-auto-translation-120": "Rejoindre",
|
|
1898
1898
|
"__stack-auto-translation-121": "Derni\xE8re utilisation",
|
|
1899
1899
|
"__stack-auto-translation-122": "Quitter",
|
|
@@ -2060,7 +2060,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2060
2060
|
"__stack-auto-translation-268": "Code QR d'authentification \xE0 plusieurs facteurs TOTP",
|
|
2061
2061
|
"__stack-auto-translation-269": "R\xE9essayer",
|
|
2062
2062
|
"__stack-auto-translation-27": "Annuler l'abonnement",
|
|
2063
|
-
"__stack-auto-translation-270": "
|
|
2063
|
+
"__stack-auto-translation-270": "Indisponible",
|
|
2064
2064
|
"__stack-auto-translation-271": "Irr\xE9couvrable",
|
|
2065
2065
|
"__stack-auto-translation-272": "Inconnu",
|
|
2066
2066
|
"__stack-auto-translation-273": "Non v\xE9rifi\xE9",
|
|
@@ -2082,7 +2082,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2082
2082
|
"__stack-auto-translation-288": "V\xE9rifier",
|
|
2083
2083
|
"__stack-auto-translation-289": "V\xE9rification...",
|
|
2084
2084
|
"__stack-auto-translation-29": "modifier",
|
|
2085
|
-
"__stack-auto-translation-290": "
|
|
2085
|
+
"__stack-auto-translation-290": "Voir",
|
|
2086
2086
|
"__stack-auto-translation-291": "Consultez vos abonnements et achats actifs.",
|
|
2087
2087
|
"__stack-auto-translation-292": "Annul\xE9e",
|
|
2088
2088
|
"__stack-auto-translation-293": "AVERTISSEMENT : Assurez-vous de faire confiance \xE0 l'application en ligne de commande, car elle aura acc\xE8s \xE0 votre compte. Si vous n'avez pas initi\xE9 cette demande, vous pouvez fermer cette page et l'ignorer. Nous ne vous enverrons jamais ce lien par email ou par tout autre moyen.",
|
|
@@ -2197,10 +2197,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2197
2197
|
"__stack-auto-translation-114": "Invita un utente al tuo team tramite email",
|
|
2198
2198
|
"__stack-auto-translation-115": "Invita membro",
|
|
2199
2199
|
"__stack-auto-translation-116": "Invita Utente",
|
|
2200
|
-
"__stack-auto-translation-117": "
|
|
2200
|
+
"__stack-auto-translation-117": "Fattura",
|
|
2201
2201
|
"__stack-auto-translation-118": "Fatture",
|
|
2202
2202
|
"__stack-auto-translation-119": "Indirizzo IP",
|
|
2203
|
-
"__stack-auto-translation-12": "
|
|
2203
|
+
"__stack-auto-translation-12": "Importo",
|
|
2204
2204
|
"__stack-auto-translation-120": "Unisciti",
|
|
2205
2205
|
"__stack-auto-translation-121": "Ultimo utilizzo",
|
|
2206
2206
|
"__stack-auto-translation-122": "Abbandona",
|
|
@@ -2367,7 +2367,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2367
2367
|
"__stack-auto-translation-268": "Codice QR per l'autenticazione a pi\xF9 fattori TOTP",
|
|
2368
2368
|
"__stack-auto-translation-269": "Riprova",
|
|
2369
2369
|
"__stack-auto-translation-27": "Annulla abbonamento",
|
|
2370
|
-
"__stack-auto-translation-270": "
|
|
2370
|
+
"__stack-auto-translation-270": "Non disponibile",
|
|
2371
2371
|
"__stack-auto-translation-271": "Inesigibile",
|
|
2372
2372
|
"__stack-auto-translation-272": "Sconosciuto",
|
|
2373
2373
|
"__stack-auto-translation-273": "Non verificato",
|
|
@@ -2389,7 +2389,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2389
2389
|
"__stack-auto-translation-288": "Verifica",
|
|
2390
2390
|
"__stack-auto-translation-289": "Verifica in corso...",
|
|
2391
2391
|
"__stack-auto-translation-29": "modifica",
|
|
2392
|
-
"__stack-auto-translation-290": "
|
|
2392
|
+
"__stack-auto-translation-290": "Visualizza",
|
|
2393
2393
|
"__stack-auto-translation-291": "Visualizza i tuoi piani attivi e acquisti.",
|
|
2394
2394
|
"__stack-auto-translation-292": "Annullata",
|
|
2395
2395
|
"__stack-auto-translation-293": "ATTENZIONE: Assicurati di fidarti dell'applicazione da riga di comando, poich\xE9 avr\xE0 accesso al tuo account. Se non hai avviato tu questa richiesta, puoi chiudere questa pagina e ignorarla. Non ti invieremo mai questo link via email o con altri mezzi.",
|
|
@@ -2430,7 +2430,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2430
2430
|
"__stack-auto-translation-50": "Sessione Corrente",
|
|
2431
2431
|
"__stack-auto-translation-51": "Team attuale",
|
|
2432
2432
|
"__stack-auto-translation-52": "Zona pericolosa",
|
|
2433
|
-
"__stack-auto-translation-53": "
|
|
2433
|
+
"__stack-auto-translation-53": "Data",
|
|
2434
2434
|
"__stack-auto-translation-54": "Elimina account",
|
|
2435
2435
|
"__stack-auto-translation-55": "Elimina Account",
|
|
2436
2436
|
"__stack-auto-translation-56": "Elimina Passkey",
|
|
@@ -2504,10 +2504,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2504
2504
|
"__stack-auto-translation-114": "\u30E1\u30FC\u30EB\u3067\u30C1\u30FC\u30E0\u306B\u30E6\u30FC\u30B6\u30FC\u3092\u62DB\u5F85",
|
|
2505
2505
|
"__stack-auto-translation-115": "\u30E1\u30F3\u30D0\u30FC\u3092\u62DB\u5F85",
|
|
2506
2506
|
"__stack-auto-translation-116": "\u30E6\u30FC\u30B6\u30FC\u3092\u62DB\u5F85",
|
|
2507
|
-
"__stack-auto-translation-117": "
|
|
2507
|
+
"__stack-auto-translation-117": "\u8ACB\u6C42\u66F8",
|
|
2508
2508
|
"__stack-auto-translation-118": "\u8ACB\u6C42\u66F8",
|
|
2509
2509
|
"__stack-auto-translation-119": "IP\u30A2\u30C9\u30EC\u30B9",
|
|
2510
|
-
"__stack-auto-translation-12": "
|
|
2510
|
+
"__stack-auto-translation-12": "\u91D1\u984D",
|
|
2511
2511
|
"__stack-auto-translation-120": "\u53C2\u52A0",
|
|
2512
2512
|
"__stack-auto-translation-121": "\u6700\u7D42\u4F7F\u7528\u65E5\u6642",
|
|
2513
2513
|
"__stack-auto-translation-122": "\u9000\u51FA",
|
|
@@ -2606,7 +2606,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2606
2606
|
"__stack-auto-translation-206": "\u78BA\u8A8D\u30E1\u30FC\u30EB\u3092\u518D\u9001\u4FE1",
|
|
2607
2607
|
"__stack-auto-translation-207": "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u30EA\u30BB\u30C3\u30C8",
|
|
2608
2608
|
"__stack-auto-translation-208": "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u30EA\u30BB\u30C3\u30C8",
|
|
2609
|
-
"__stack-auto-translation-209": "
|
|
2609
|
+
"__stack-auto-translation-209": "\u904E\u53BB\u306E\u8ACB\u6C42\u66F8\u3068\u9818\u53CE\u66F8\u3092\u78BA\u8A8D\u3057\u307E\u3059\u3002",
|
|
2610
2610
|
"__stack-auto-translation-21": "\u30C1\u30FC\u30E0\u3092\u9000\u51FA\u3057\u3066\u3082\u3088\u308D\u3057\u3044\u3067\u3059\u304B\uFF1F",
|
|
2611
2611
|
"__stack-auto-translation-210": "\u53D6\u308A\u6D88\u3059",
|
|
2612
2612
|
"__stack-auto-translation-211": "\u4ED6\u306E\u3059\u3079\u3066\u306E\u30BB\u30C3\u30B7\u30E7\u30F3\u3092\u53D6\u308A\u6D88\u3059",
|
|
@@ -2674,7 +2674,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2674
2674
|
"__stack-auto-translation-268": "TOTP\u591A\u8981\u7D20\u8A8D\u8A3CQR\u30B3\u30FC\u30C9",
|
|
2675
2675
|
"__stack-auto-translation-269": "\u518D\u8A66\u884C",
|
|
2676
2676
|
"__stack-auto-translation-27": "\u30B5\u30D6\u30B9\u30AF\u30EA\u30D7\u30B7\u30E7\u30F3\u3092\u30AD\u30E3\u30F3\u30BB\u30EB",
|
|
2677
|
-
"__stack-auto-translation-270": "
|
|
2677
|
+
"__stack-auto-translation-270": "\u5229\u7528\u4E0D\u53EF",
|
|
2678
2678
|
"__stack-auto-translation-271": "\u56DE\u53CE\u4E0D\u80FD",
|
|
2679
2679
|
"__stack-auto-translation-272": "\u4E0D\u660E",
|
|
2680
2680
|
"__stack-auto-translation-273": "\u672A\u8A8D\u8A3C",
|
|
@@ -2696,7 +2696,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2696
2696
|
"__stack-auto-translation-288": "\u78BA\u8A8D",
|
|
2697
2697
|
"__stack-auto-translation-289": "\u78BA\u8A8D\u4E2D...",
|
|
2698
2698
|
"__stack-auto-translation-29": "\u5909\u66F4",
|
|
2699
|
-
"__stack-auto-translation-290": "
|
|
2699
|
+
"__stack-auto-translation-290": "\u8868\u793A",
|
|
2700
2700
|
"__stack-auto-translation-291": "\u6709\u52B9\u306A\u30D7\u30E9\u30F3\u3068\u8CFC\u5165\u5185\u5BB9\u3092\u8868\u793A\u3057\u307E\u3059\u3002",
|
|
2701
2701
|
"__stack-auto-translation-292": "\u7121\u52B9",
|
|
2702
2702
|
"__stack-auto-translation-293": "\u8B66\u544A\uFF1A\u30B3\u30DE\u30F3\u30C9\u30E9\u30A4\u30F3\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u304C\u3042\u306A\u305F\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u306B\u30A2\u30AF\u30BB\u30B9\u3059\u308B\u305F\u3081\u3001\u4FE1\u983C\u3067\u304D\u308B\u3053\u3068\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002\u3053\u306E\u30EA\u30AF\u30A8\u30B9\u30C8\u3092\u958B\u59CB\u3057\u3066\u3044\u306A\u3044\u5834\u5408\u306F\u3001\u3053\u306E\u30DA\u30FC\u30B8\u3092\u9589\u3058\u3066\u7121\u8996\u3057\u3066\u304F\u3060\u3055\u3044\u3002\u5F53\u793E\u304C\u3053\u306E\u30EA\u30F3\u30AF\u3092\u30E1\u30FC\u30EB\u3084\u305D\u306E\u4ED6\u306E\u624B\u6BB5\u3067\u9001\u4FE1\u3059\u308B\u3053\u3068\u306F\u6C7A\u3057\u3066\u3042\u308A\u307E\u305B\u3093\u3002",
|
|
@@ -2737,7 +2737,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2737
2737
|
"__stack-auto-translation-50": "\u73FE\u5728\u306E\u30BB\u30C3\u30B7\u30E7\u30F3",
|
|
2738
2738
|
"__stack-auto-translation-51": "\u73FE\u5728\u306E\u30C1\u30FC\u30E0",
|
|
2739
2739
|
"__stack-auto-translation-52": "\u5371\u967A\u30A8\u30EA\u30A2",
|
|
2740
|
-
"__stack-auto-translation-53": "
|
|
2740
|
+
"__stack-auto-translation-53": "\u65E5\u4ED8",
|
|
2741
2741
|
"__stack-auto-translation-54": "\u30A2\u30AB\u30A6\u30F3\u30C8\u524A\u9664",
|
|
2742
2742
|
"__stack-auto-translation-55": "\u30A2\u30AB\u30A6\u30F3\u30C8\u524A\u9664",
|
|
2743
2743
|
"__stack-auto-translation-56": "\u30D1\u30B9\u30AD\u30FC\u3092\u524A\u9664",
|
|
@@ -2811,10 +2811,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2811
2811
|
"__stack-auto-translation-114": "\uC774\uBA54\uC77C\uB85C \uD300\uC5D0 \uC0AC\uC6A9\uC790 \uCD08\uB300\uD558\uAE30",
|
|
2812
2812
|
"__stack-auto-translation-115": "\uBA64\uBC84 \uCD08\uB300",
|
|
2813
2813
|
"__stack-auto-translation-116": "\uC0AC\uC6A9\uC790 \uCD08\uB300",
|
|
2814
|
-
"__stack-auto-translation-117": "
|
|
2814
|
+
"__stack-auto-translation-117": "\uCCAD\uAD6C\uC11C",
|
|
2815
2815
|
"__stack-auto-translation-118": "\uCCAD\uAD6C\uC11C",
|
|
2816
2816
|
"__stack-auto-translation-119": "IP \uC8FC\uC18C",
|
|
2817
|
-
"__stack-auto-translation-12": "
|
|
2817
|
+
"__stack-auto-translation-12": "\uAE08\uC561",
|
|
2818
2818
|
"__stack-auto-translation-120": "\uCC38\uC5EC",
|
|
2819
2819
|
"__stack-auto-translation-121": "\uCD5C\uADFC \uC0AC\uC6A9",
|
|
2820
2820
|
"__stack-auto-translation-122": "\uB098\uAC00\uAE30",
|
|
@@ -2913,7 +2913,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2913
2913
|
"__stack-auto-translation-206": "\uC778\uC99D \uC774\uBA54\uC77C \uC7AC\uC804\uC1A1",
|
|
2914
2914
|
"__stack-auto-translation-207": "\uBE44\uBC00\uBC88\uD638 \uC7AC\uC124\uC815",
|
|
2915
2915
|
"__stack-auto-translation-208": "\uBE44\uBC00\uBC88\uD638 \uC7AC\uC124\uC815",
|
|
2916
|
-
"__stack-auto-translation-209": "
|
|
2916
|
+
"__stack-auto-translation-209": "\uACFC\uAC70 \uCCAD\uAD6C\uC11C \uBC0F \uC601\uC218\uC99D\uC744 \uD655\uC778\uD558\uC138\uC694.",
|
|
2917
2917
|
"__stack-auto-translation-21": "\uC815\uB9D0\uB85C \uD300\uC744 \uB098\uAC00\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?",
|
|
2918
2918
|
"__stack-auto-translation-210": "\uCDE8\uC18C",
|
|
2919
2919
|
"__stack-auto-translation-211": "\uB2E4\uB978 \uBAA8\uB4E0 \uC138\uC158 \uCDE8\uC18C",
|
|
@@ -2981,7 +2981,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
2981
2981
|
"__stack-auto-translation-268": "TOTP \uB2E4\uC911 \uC778\uC99D QR \uCF54\uB4DC",
|
|
2982
2982
|
"__stack-auto-translation-269": "\uB2E4\uC2DC \uC2DC\uB3C4",
|
|
2983
2983
|
"__stack-auto-translation-27": "\uAD6C\uB3C5 \uCDE8\uC18C",
|
|
2984
|
-
"__stack-auto-translation-270": "
|
|
2984
|
+
"__stack-auto-translation-270": "\uC0AC\uC6A9 \uBD88\uAC00",
|
|
2985
2985
|
"__stack-auto-translation-271": "\uD68C\uC218\uBD88\uAC00",
|
|
2986
2986
|
"__stack-auto-translation-272": "\uC54C \uC218 \uC5C6\uC74C",
|
|
2987
2987
|
"__stack-auto-translation-273": "\uBBF8\uC778\uC99D",
|
|
@@ -3003,7 +3003,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3003
3003
|
"__stack-auto-translation-288": "\uC778\uC99D",
|
|
3004
3004
|
"__stack-auto-translation-289": "\uC778\uC99D \uC911...",
|
|
3005
3005
|
"__stack-auto-translation-29": "\uBCC0\uACBD",
|
|
3006
|
-
"__stack-auto-translation-290": "
|
|
3006
|
+
"__stack-auto-translation-290": "\uBCF4\uAE30",
|
|
3007
3007
|
"__stack-auto-translation-291": "\uD65C\uC131 \uD50C\uB79C \uBC0F \uAD6C\uB9E4 \uB0B4\uC5ED\uC744 \uD655\uC778\uD558\uC138\uC694.",
|
|
3008
3008
|
"__stack-auto-translation-292": "\uBB34\uD6A8",
|
|
3009
3009
|
"__stack-auto-translation-293": "\uACBD\uACE0: \uBA85\uB839\uC904 \uC560\uD50C\uB9AC\uCF00\uC774\uC158\uC744 \uC2E0\uB8B0\uD560 \uC218 \uC788\uB294\uC9C0 \uD655\uC778\uD558\uC138\uC694. \uD574\uB2F9 \uC571\uC774 \uACC4\uC815\uC5D0 \uC811\uADFC\uD560 \uC218 \uC788\uAC8C \uB429\uB2C8\uB2E4. \uC774 \uC694\uCCAD\uC744 \uC2DC\uC791\uD558\uC9C0 \uC54A\uC558\uB2E4\uBA74 \uC774 \uD398\uC774\uC9C0\uB97C \uB2EB\uACE0 \uBB34\uC2DC\uD558\uC138\uC694. \uB2F9\uC0AC\uB294 \uC808\uB300 \uC774 \uB9C1\uD06C\uB97C \uC774\uBA54\uC77C\uC774\uB098 \uB2E4\uB978 \uBC29\uBC95\uC73C\uB85C \uBCF4\uB0B4\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.",
|
|
@@ -3044,7 +3044,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3044
3044
|
"__stack-auto-translation-50": "\uD604\uC7AC \uC138\uC158",
|
|
3045
3045
|
"__stack-auto-translation-51": "\uD604\uC7AC \uD300",
|
|
3046
3046
|
"__stack-auto-translation-52": "\uC704\uD5D8 \uAD6C\uC5ED",
|
|
3047
|
-
"__stack-auto-translation-53": "
|
|
3047
|
+
"__stack-auto-translation-53": "\uB0A0\uC9DC",
|
|
3048
3048
|
"__stack-auto-translation-54": "\uACC4\uC815 \uC0AD\uC81C",
|
|
3049
3049
|
"__stack-auto-translation-55": "\uACC4\uC815 \uC0AD\uC81C",
|
|
3050
3050
|
"__stack-auto-translation-56": "\uD328\uC2A4\uD0A4 \uC0AD\uC81C",
|
|
@@ -3118,10 +3118,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3118
3118
|
"__stack-auto-translation-114": "Convide um usu\xE1rio para sua equipe por e-mail",
|
|
3119
3119
|
"__stack-auto-translation-115": "Convidar membro",
|
|
3120
3120
|
"__stack-auto-translation-116": "Convidar Usu\xE1rio",
|
|
3121
|
-
"__stack-auto-translation-117": "
|
|
3121
|
+
"__stack-auto-translation-117": "Fatura",
|
|
3122
3122
|
"__stack-auto-translation-118": "Faturas",
|
|
3123
3123
|
"__stack-auto-translation-119": "Endere\xE7o IP",
|
|
3124
|
-
"__stack-auto-translation-12": "
|
|
3124
|
+
"__stack-auto-translation-12": "Valor",
|
|
3125
3125
|
"__stack-auto-translation-120": "Entrar",
|
|
3126
3126
|
"__stack-auto-translation-121": "\xDAltimo uso",
|
|
3127
3127
|
"__stack-auto-translation-122": "Sair",
|
|
@@ -3288,7 +3288,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3288
3288
|
"__stack-auto-translation-268": "C\xF3digo QR de autentica\xE7\xE3o de m\xFAltiplos fatores TOTP",
|
|
3289
3289
|
"__stack-auto-translation-269": "Tentar novamente",
|
|
3290
3290
|
"__stack-auto-translation-27": "Cancelar assinatura",
|
|
3291
|
-
"__stack-auto-translation-270": "
|
|
3291
|
+
"__stack-auto-translation-270": "Indispon\xEDvel",
|
|
3292
3292
|
"__stack-auto-translation-271": "Incobr\xE1vel",
|
|
3293
3293
|
"__stack-auto-translation-272": "Desconhecido",
|
|
3294
3294
|
"__stack-auto-translation-273": "N\xE3o verificado",
|
|
@@ -3310,7 +3310,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3310
3310
|
"__stack-auto-translation-288": "Verificar",
|
|
3311
3311
|
"__stack-auto-translation-289": "Verificando...",
|
|
3312
3312
|
"__stack-auto-translation-29": "alterar",
|
|
3313
|
-
"__stack-auto-translation-290": "
|
|
3313
|
+
"__stack-auto-translation-290": "Visualizar",
|
|
3314
3314
|
"__stack-auto-translation-291": "Veja seus planos ativos e compras.",
|
|
3315
3315
|
"__stack-auto-translation-292": "Anulada",
|
|
3316
3316
|
"__stack-auto-translation-293": "AVISO: Certifique-se de confiar no aplicativo de linha de comando, pois ele ter\xE1 acesso \xE0 sua conta. Se voc\xEA n\xE3o iniciou esta solicita\xE7\xE3o, voc\xEA pode fechar esta p\xE1gina e ignor\xE1-la. Nunca enviaremos este link por email ou qualquer outro meio.",
|
|
@@ -3351,7 +3351,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3351
3351
|
"__stack-auto-translation-50": "Sess\xE3o Atual",
|
|
3352
3352
|
"__stack-auto-translation-51": "Equipe atual",
|
|
3353
3353
|
"__stack-auto-translation-52": "Zona de perigo",
|
|
3354
|
-
"__stack-auto-translation-53": "
|
|
3354
|
+
"__stack-auto-translation-53": "Data",
|
|
3355
3355
|
"__stack-auto-translation-54": "Excluir conta",
|
|
3356
3356
|
"__stack-auto-translation-55": "Excluir Conta",
|
|
3357
3357
|
"__stack-auto-translation-56": "Excluir Chave de acesso",
|
|
@@ -3425,10 +3425,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3425
3425
|
"__stack-auto-translation-114": "Convidar um utilizador para a sua equipa atrav\xE9s de e-mail",
|
|
3426
3426
|
"__stack-auto-translation-115": "Convidar membro",
|
|
3427
3427
|
"__stack-auto-translation-116": "Convidar Utilizador",
|
|
3428
|
-
"__stack-auto-translation-117": "
|
|
3428
|
+
"__stack-auto-translation-117": "Fatura",
|
|
3429
3429
|
"__stack-auto-translation-118": "Faturas",
|
|
3430
3430
|
"__stack-auto-translation-119": "Endere\xE7o IP",
|
|
3431
|
-
"__stack-auto-translation-12": "
|
|
3431
|
+
"__stack-auto-translation-12": "Valor",
|
|
3432
3432
|
"__stack-auto-translation-120": "Juntar",
|
|
3433
3433
|
"__stack-auto-translation-121": "\xDAltima utiliza\xE7\xE3o",
|
|
3434
3434
|
"__stack-auto-translation-122": "Sair",
|
|
@@ -3527,7 +3527,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3527
3527
|
"__stack-auto-translation-206": "Reenviar email de verifica\xE7\xE3o",
|
|
3528
3528
|
"__stack-auto-translation-207": "Redefinir Palavra-passe",
|
|
3529
3529
|
"__stack-auto-translation-208": "Repor a Sua Palavra-passe",
|
|
3530
|
-
"__stack-auto-translation-209": "
|
|
3530
|
+
"__stack-auto-translation-209": "Rever faturas e recibos anteriores.",
|
|
3531
3531
|
"__stack-auto-translation-21": "Tem a certeza de que deseja sair da equipa?",
|
|
3532
3532
|
"__stack-auto-translation-210": "Revogar",
|
|
3533
3533
|
"__stack-auto-translation-211": "Revogar Todas as Outras Sess\xF5es",
|
|
@@ -3595,7 +3595,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3595
3595
|
"__stack-auto-translation-268": "C\xF3digo QR de autentica\xE7\xE3o multifator TOTP",
|
|
3596
3596
|
"__stack-auto-translation-269": "Tentar Novamente",
|
|
3597
3597
|
"__stack-auto-translation-27": "Cancelar subscri\xE7\xE3o",
|
|
3598
|
-
"__stack-auto-translation-270": "
|
|
3598
|
+
"__stack-auto-translation-270": "Indispon\xEDvel",
|
|
3599
3599
|
"__stack-auto-translation-271": "Incobr\xE1vel",
|
|
3600
3600
|
"__stack-auto-translation-272": "Desconhecido",
|
|
3601
3601
|
"__stack-auto-translation-273": "N\xE3o verificado",
|
|
@@ -3617,7 +3617,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3617
3617
|
"__stack-auto-translation-288": "Verificar",
|
|
3618
3618
|
"__stack-auto-translation-289": "A verificar...",
|
|
3619
3619
|
"__stack-auto-translation-29": "alterar",
|
|
3620
|
-
"__stack-auto-translation-290": "
|
|
3620
|
+
"__stack-auto-translation-290": "Ver",
|
|
3621
3621
|
"__stack-auto-translation-291": "Ver os seus planos ativos e compras.",
|
|
3622
3622
|
"__stack-auto-translation-292": "Anulada",
|
|
3623
3623
|
"__stack-auto-translation-293": "AVISO: Certifique-se de que confia na aplica\xE7\xE3o de linha de comandos, pois esta ter\xE1 acesso \xE0 sua conta. Se n\xE3o iniciou este pedido, pode fechar esta p\xE1gina e ignor\xE1-lo. Nunca enviaremos este link por email ou qualquer outro meio.",
|
|
@@ -3658,7 +3658,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3658
3658
|
"__stack-auto-translation-50": "Sess\xE3o Atual",
|
|
3659
3659
|
"__stack-auto-translation-51": "Equipa atual",
|
|
3660
3660
|
"__stack-auto-translation-52": "Zona de perigo",
|
|
3661
|
-
"__stack-auto-translation-53": "
|
|
3661
|
+
"__stack-auto-translation-53": "Data",
|
|
3662
3662
|
"__stack-auto-translation-54": "Eliminar conta",
|
|
3663
3663
|
"__stack-auto-translation-55": "Eliminar Conta",
|
|
3664
3664
|
"__stack-auto-translation-56": "Eliminar Chave de Acesso",
|
|
@@ -3732,10 +3732,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3732
3732
|
"__stack-auto-translation-114": "\u901A\u8FC7\u7535\u5B50\u90AE\u4EF6\u9080\u8BF7\u7528\u6237\u52A0\u5165\u60A8\u7684\u56E2\u961F",
|
|
3733
3733
|
"__stack-auto-translation-115": "\u9080\u8BF7\u6210\u5458",
|
|
3734
3734
|
"__stack-auto-translation-116": "\u9080\u8BF7\u7528\u6237",
|
|
3735
|
-
"__stack-auto-translation-117": "
|
|
3735
|
+
"__stack-auto-translation-117": "\u53D1\u7968",
|
|
3736
3736
|
"__stack-auto-translation-118": "\u53D1\u7968",
|
|
3737
3737
|
"__stack-auto-translation-119": "IP \u5730\u5740",
|
|
3738
|
-
"__stack-auto-translation-12": "
|
|
3738
|
+
"__stack-auto-translation-12": "\u91D1\u989D",
|
|
3739
3739
|
"__stack-auto-translation-120": "\u52A0\u5165",
|
|
3740
3740
|
"__stack-auto-translation-121": "\u4E0A\u6B21\u4F7F\u7528",
|
|
3741
3741
|
"__stack-auto-translation-122": "\u79BB\u5F00",
|
|
@@ -3902,7 +3902,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3902
3902
|
"__stack-auto-translation-268": "TOTP \u591A\u91CD\u8EAB\u4EFD\u8BA4\u8BC1\u4E8C\u7EF4\u7801",
|
|
3903
3903
|
"__stack-auto-translation-269": "\u91CD\u8BD5",
|
|
3904
3904
|
"__stack-auto-translation-27": "\u53D6\u6D88\u8BA2\u9605",
|
|
3905
|
-
"__stack-auto-translation-270": "
|
|
3905
|
+
"__stack-auto-translation-270": "\u4E0D\u53EF\u7528",
|
|
3906
3906
|
"__stack-auto-translation-271": "\u65E0\u6CD5\u6536\u6B3E",
|
|
3907
3907
|
"__stack-auto-translation-272": "\u672A\u77E5",
|
|
3908
3908
|
"__stack-auto-translation-273": "\u672A\u9A8C\u8BC1",
|
|
@@ -3924,7 +3924,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3924
3924
|
"__stack-auto-translation-288": "\u9A8C\u8BC1",
|
|
3925
3925
|
"__stack-auto-translation-289": "\u9A8C\u8BC1\u4E2D...",
|
|
3926
3926
|
"__stack-auto-translation-29": "\u66F4\u6539",
|
|
3927
|
-
"__stack-auto-translation-290": "
|
|
3927
|
+
"__stack-auto-translation-290": "\u67E5\u770B",
|
|
3928
3928
|
"__stack-auto-translation-291": "\u67E5\u770B\u60A8\u7684\u6D3B\u52A8\u5957\u9910\u548C\u8D2D\u4E70\u8BB0\u5F55\u3002",
|
|
3929
3929
|
"__stack-auto-translation-292": "\u4F5C\u5E9F",
|
|
3930
3930
|
"__stack-auto-translation-293": "\u8B66\u544A\uFF1A\u8BF7\u786E\u4FDD\u60A8\u4FE1\u4EFB\u8BE5\u547D\u4EE4\u884C\u5E94\u7528\u7A0B\u5E8F\uFF0C\u56E0\u4E3A\u5B83\u5C06\u83B7\u5F97\u60A8\u8D26\u6237\u7684\u8BBF\u95EE\u6743\u9650\u3002\u5982\u679C\u60A8\u672A\u53D1\u8D77\u6B64\u8BF7\u6C42\uFF0C\u53EF\u4EE5\u5173\u95ED\u6B64\u9875\u9762\u5E76\u5FFD\u7565\u5B83\u3002\u6211\u4EEC\u7EDD\u4E0D\u4F1A\u901A\u8FC7\u7535\u5B50\u90AE\u7BB1\u6216\u5176\u4ED6\u65B9\u5F0F\u5411\u60A8\u53D1\u9001\u6B64\u94FE\u63A5\u3002",
|
|
@@ -3965,7 +3965,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
3965
3965
|
"__stack-auto-translation-50": "\u5F53\u524D\u4F1A\u8BDD",
|
|
3966
3966
|
"__stack-auto-translation-51": "\u5F53\u524D\u56E2\u961F",
|
|
3967
3967
|
"__stack-auto-translation-52": "\u5371\u9669\u533A\u57DF",
|
|
3968
|
-
"__stack-auto-translation-53": "
|
|
3968
|
+
"__stack-auto-translation-53": "\u65E5\u671F",
|
|
3969
3969
|
"__stack-auto-translation-54": "\u5220\u9664\u8D26\u6237",
|
|
3970
3970
|
"__stack-auto-translation-55": "\u5220\u9664\u8D26\u6237",
|
|
3971
3971
|
"__stack-auto-translation-56": "\u5220\u9664\u5BC6\u94A5",
|
|
@@ -4039,10 +4039,10 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
4039
4039
|
"__stack-auto-translation-114": "\u900F\u904E\u96FB\u5B50\u90F5\u4EF6\u9080\u8ACB\u4F7F\u7528\u8005\u52A0\u5165\u60A8\u7684\u5718\u968A",
|
|
4040
4040
|
"__stack-auto-translation-115": "\u9080\u8ACB\u6210\u54E1",
|
|
4041
4041
|
"__stack-auto-translation-116": "\u9080\u8ACB\u7528\u6236",
|
|
4042
|
-
"__stack-auto-translation-117": "
|
|
4042
|
+
"__stack-auto-translation-117": "\u767C\u7968",
|
|
4043
4043
|
"__stack-auto-translation-118": "\u767C\u7968",
|
|
4044
4044
|
"__stack-auto-translation-119": "IP \u4F4D\u5740",
|
|
4045
|
-
"__stack-auto-translation-12": "
|
|
4045
|
+
"__stack-auto-translation-12": "\u91D1\u984D",
|
|
4046
4046
|
"__stack-auto-translation-120": "\u52A0\u5165",
|
|
4047
4047
|
"__stack-auto-translation-121": "\u6700\u5F8C\u4F7F\u7528",
|
|
4048
4048
|
"__stack-auto-translation-122": "\u96E2\u958B",
|
|
@@ -4209,7 +4209,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
4209
4209
|
"__stack-auto-translation-268": "TOTP \u591A\u91CD\u8981\u7D20\u9A57\u8B49 QR \u78BC",
|
|
4210
4210
|
"__stack-auto-translation-269": "\u91CD\u8A66",
|
|
4211
4211
|
"__stack-auto-translation-27": "\u53D6\u6D88\u8A02\u95B1",
|
|
4212
|
-
"__stack-auto-translation-270": "
|
|
4212
|
+
"__stack-auto-translation-270": "\u7121\u6CD5\u4F7F\u7528",
|
|
4213
4213
|
"__stack-auto-translation-271": "\u7121\u6CD5\u6536\u6B3E",
|
|
4214
4214
|
"__stack-auto-translation-272": "\u672A\u77E5",
|
|
4215
4215
|
"__stack-auto-translation-273": "\u672A\u9A57\u8B49",
|
|
@@ -4231,7 +4231,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
4231
4231
|
"__stack-auto-translation-288": "\u9A57\u8B49",
|
|
4232
4232
|
"__stack-auto-translation-289": "\u9A57\u8B49\u4E2D...",
|
|
4233
4233
|
"__stack-auto-translation-29": "\u8B8A\u66F4",
|
|
4234
|
-
"__stack-auto-translation-290": "
|
|
4234
|
+
"__stack-auto-translation-290": "\u6AA2\u8996",
|
|
4235
4235
|
"__stack-auto-translation-291": "\u6AA2\u8996\u60A8\u7684\u6709\u6548\u65B9\u6848\u8207\u8CFC\u8CB7\u9805\u76EE\u3002",
|
|
4236
4236
|
"__stack-auto-translation-292": "\u4F5C\u5EE2",
|
|
4237
4237
|
"__stack-auto-translation-293": "\u8B66\u544A\uFF1A\u8ACB\u78BA\u4FDD\u60A8\u4FE1\u4EFB\u8A72\u547D\u4EE4\u884C\u61C9\u7528\u7A0B\u5F0F\uFF0C\u56E0\u70BA\u5B83\u5C07\u7372\u53D6\u60A8\u5E33\u6236\u7684\u8A2A\u554F\u6B0A\u9650\u3002\u5982\u679C\u60A8\u6C92\u6709\u767C\u8D77\u6B64\u8ACB\u6C42\uFF0C\u60A8\u53EF\u4EE5\u95DC\u9589\u6B64\u9801\u9762\u4E26\u5FFD\u7565\u5B83\u3002\u6211\u5011\u7D55\u4E0D\u6703\u901A\u904E\u96FB\u5B50\u90F5\u4EF6\u6216\u5176\u4ED6\u65B9\u5F0F\u5411\u60A8\u767C\u9001\u6B64\u9023\u7D50\u3002",
|
|
@@ -4272,7 +4272,7 @@ var quetzalLocales = new Map((0, import_objects.typedEntries)({
|
|
|
4272
4272
|
"__stack-auto-translation-50": "\u76EE\u524D\u5DE5\u4F5C\u968E\u6BB5",
|
|
4273
4273
|
"__stack-auto-translation-51": "\u76EE\u524D\u5718\u968A",
|
|
4274
4274
|
"__stack-auto-translation-52": "\u5371\u96AA\u5340\u57DF",
|
|
4275
|
-
"__stack-auto-translation-53": "
|
|
4275
|
+
"__stack-auto-translation-53": "\u65E5\u671F",
|
|
4276
4276
|
"__stack-auto-translation-54": "\u522A\u9664\u5E33\u865F",
|
|
4277
4277
|
"__stack-auto-translation-55": "\u522A\u9664\u5E33\u6236",
|
|
4278
4278
|
"__stack-auto-translation-56": "\u522A\u9664\u901A\u884C\u91D1\u9470",
|