@open-mercato/core 0.6.7 → 0.6.8-develop.6874.1.982d6097d8
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/.turbo/turbo-build.log +2 -2
- package/AGENTS.md +3 -3
- package/agentic/standalone-guide.md +13 -0
- package/dist/bootstrap.js +16 -1
- package/dist/bootstrap.js.map +2 -2
- package/dist/generated/entities/attachment_quota_reservation/index.js +33 -0
- package/dist/generated/entities/attachment_quota_reservation/index.js.map +7 -0
- package/dist/generated/entities/customer_deal_person_link/index.js +2 -0
- package/dist/generated/entities/customer_deal_person_link/index.js.map +2 -2
- package/dist/generated/entities/customer_user_invitation/index.js +2 -0
- package/dist/generated/entities/customer_user_invitation/index.js.map +2 -2
- package/dist/generated/entities/gateway_payment_operation/index.js +2 -0
- package/dist/generated/entities/gateway_payment_operation/index.js.map +2 -2
- package/dist/generated/entities/gateway_transaction/index.js +2 -0
- package/dist/generated/entities/gateway_transaction/index.js.map +2 -2
- package/dist/generated/entities/organization/index.js +2 -0
- package/dist/generated/entities/organization/index.js.map +2 -2
- package/dist/generated/entities/resources_resource/index.js +2 -0
- package/dist/generated/entities/resources_resource/index.js.map +2 -2
- package/dist/generated/entities.ids.generated.js +3 -1
- package/dist/generated/entities.ids.generated.js.map +2 -2
- package/dist/generated/entity-fields-registry.js +23 -0
- package/dist/generated/entity-fields-registry.js.map +2 -2
- package/dist/helpers/integration/salesFixtures.js +31 -2
- package/dist/helpers/integration/salesFixtures.js.map +2 -2
- package/dist/helpers/integration/salesUi.js +5 -0
- package/dist/helpers/integration/salesUi.js.map +2 -2
- package/dist/modules/api_keys/backend/api-keys/page.js +2 -1
- package/dist/modules/api_keys/backend/api-keys/page.js.map +2 -2
- package/dist/modules/api_keys/extension-points.js +16 -0
- package/dist/modules/api_keys/extension-points.js.map +7 -0
- package/dist/modules/attachments/api/route.js +120 -10
- package/dist/modules/attachments/api/route.js.map +2 -2
- package/dist/modules/attachments/backend/config/attachments/page.js +1 -1
- package/dist/modules/attachments/backend/config/attachments/page.js.map +2 -2
- package/dist/modules/attachments/data/entities.js +67 -1
- package/dist/modules/attachments/data/entities.js.map +2 -2
- package/dist/modules/attachments/di.js +7 -1
- package/dist/modules/attachments/di.js.map +2 -2
- package/dist/modules/attachments/fields/attachment.js +1 -1
- package/dist/modules/attachments/fields/attachment.js.map +2 -2
- package/dist/modules/attachments/lib/drivers/index.js.map +1 -1
- package/dist/modules/attachments/lib/drivers/localDriver.js +19 -6
- package/dist/modules/attachments/lib/drivers/localDriver.js.map +2 -2
- package/dist/modules/attachments/lib/quota-recovery-queue.js +9 -0
- package/dist/modules/attachments/lib/quota-recovery-queue.js.map +7 -0
- package/dist/modules/attachments/lib/quota-service.js +224 -0
- package/dist/modules/attachments/lib/quota-service.js.map +7 -0
- package/dist/modules/attachments/lib/upload-limits.js +33 -0
- package/dist/modules/attachments/lib/upload-limits.js.map +2 -2
- package/dist/modules/attachments/migrations/Migration20260709234741_attachments.js +13 -0
- package/dist/modules/attachments/migrations/Migration20260709234741_attachments.js.map +7 -0
- package/dist/modules/attachments/workers/quota-recovery.js +45 -0
- package/dist/modules/attachments/workers/quota-recovery.js.map +7 -0
- package/dist/modules/audit_logs/api/audit-logs/access/route.js +5 -1
- package/dist/modules/audit_logs/api/audit-logs/access/route.js.map +2 -2
- package/dist/modules/audit_logs/api/audit-logs/actions/export/route.js +5 -1
- package/dist/modules/audit_logs/api/audit-logs/actions/export/route.js.map +2 -2
- package/dist/modules/audit_logs/api/audit-logs/actions/route.js +5 -1
- package/dist/modules/audit_logs/api/audit-logs/actions/route.js.map +2 -2
- package/dist/modules/audit_logs/api/audit-logs/readScope.js +12 -0
- package/dist/modules/audit_logs/api/audit-logs/readScope.js.map +7 -0
- package/dist/modules/audit_logs/components/AccessLogsTable.js +2 -1
- package/dist/modules/audit_logs/components/AccessLogsTable.js.map +2 -2
- package/dist/modules/audit_logs/components/AuditLogsActions.js +3 -2
- package/dist/modules/audit_logs/components/AuditLogsActions.js.map +2 -2
- package/dist/modules/audit_logs/extension-points.js +14 -0
- package/dist/modules/audit_logs/extension-points.js.map +7 -0
- package/dist/modules/auth/api/admin/nav.js +17 -4
- package/dist/modules/auth/api/admin/nav.js.map +2 -2
- package/dist/modules/auth/api/profile/route.js +8 -2
- package/dist/modules/auth/api/profile/route.js.map +2 -2
- package/dist/modules/auth/api/users/route.js +8 -19
- package/dist/modules/auth/api/users/route.js.map +2 -2
- package/dist/modules/auth/backend/auth/profile/page.js.map +2 -2
- package/dist/modules/auth/backend/profile/change-password/page.js.map +2 -2
- package/dist/modules/auth/backend/roles/page.js +2 -1
- package/dist/modules/auth/backend/roles/page.js.map +2 -2
- package/dist/modules/auth/backend/settings/page.js +14 -9
- package/dist/modules/auth/backend/settings/page.js.map +2 -2
- package/dist/modules/auth/backend/users/page.js +2 -1
- package/dist/modules/auth/backend/users/page.js.map +2 -2
- package/dist/modules/auth/cli.js +1 -1
- package/dist/modules/auth/cli.js.map +2 -2
- package/dist/modules/auth/components/UserConsentsPanel.js +9 -9
- package/dist/modules/auth/components/UserConsentsPanel.js.map +2 -2
- package/dist/modules/auth/extension-points.js +21 -0
- package/dist/modules/auth/extension-points.js.map +7 -0
- package/dist/modules/auth/frontend/login.js +7 -3
- package/dist/modules/auth/frontend/login.js.map +2 -2
- package/dist/modules/auth/frontend/reset.js +2 -2
- package/dist/modules/auth/frontend/reset.js.map +2 -2
- package/dist/modules/auth/lib/backendChrome.js +45 -29
- package/dist/modules/auth/lib/backendChrome.js.map +2 -2
- package/dist/modules/auth/lib/setup-app.js +17 -2
- package/dist/modules/auth/lib/setup-app.js.map +2 -2
- package/dist/modules/auth/lib/tenantAccess.js +7 -0
- package/dist/modules/auth/lib/tenantAccess.js.map +2 -2
- package/dist/modules/auth/services/rbacService.js +29 -44
- package/dist/modules/auth/services/rbacService.js.map +2 -2
- package/dist/modules/business_rules/api/openmercato-call-options/route.js +85 -0
- package/dist/modules/business_rules/api/openmercato-call-options/route.js.map +7 -0
- package/dist/modules/business_rules/api/rules/route.js +71 -4
- package/dist/modules/business_rules/api/rules/route.js.map +2 -2
- package/dist/modules/business_rules/backend/rules/page.js +2 -1
- package/dist/modules/business_rules/backend/rules/page.js.map +2 -2
- package/dist/modules/business_rules/components/ActionBuilder.js +47 -4
- package/dist/modules/business_rules/components/ActionBuilder.js.map +3 -3
- package/dist/modules/business_rules/components/ActionRow.js +106 -16
- package/dist/modules/business_rules/components/ActionRow.js.map +2 -2
- package/dist/modules/business_rules/components/ConditionRow.js +8 -4
- package/dist/modules/business_rules/components/ConditionRow.js.map +2 -2
- package/dist/modules/business_rules/components/utils/actionValidation.js +6 -0
- package/dist/modules/business_rules/components/utils/actionValidation.js.map +2 -2
- package/dist/modules/business_rules/events.js +13 -0
- package/dist/modules/business_rules/events.js.map +7 -0
- package/dist/modules/business_rules/extension-points.js +13 -0
- package/dist/modules/business_rules/extension-points.js.map +7 -0
- package/dist/modules/business_rules/lib/action-executor.js +148 -0
- package/dist/modules/business_rules/lib/action-executor.js.map +2 -2
- package/dist/modules/business_rules/lib/openmercato-call-options-types.js +5 -0
- package/dist/modules/business_rules/lib/openmercato-call-options-types.js.map +7 -0
- package/dist/modules/business_rules/lib/openmercato-call-options.js +231 -0
- package/dist/modules/business_rules/lib/openmercato-call-options.js.map +7 -0
- package/dist/modules/business_rules/lib/rule-engine.js +5 -1
- package/dist/modules/business_rules/lib/rule-engine.js.map +2 -2
- package/dist/modules/catalog/backend/catalog/products/[id]/page.js +6 -5
- package/dist/modules/catalog/backend/catalog/products/[id]/page.js.map +2 -2
- package/dist/modules/catalog/backend/catalog/products/create/page.js +7 -6
- package/dist/modules/catalog/backend/catalog/products/create/page.js.map +2 -2
- package/dist/modules/catalog/components/PriceKindSettings.js +3 -3
- package/dist/modules/catalog/components/PriceKindSettings.js.map +2 -2
- package/dist/modules/catalog/components/categories/CategoriesDataTable.js +2 -1
- package/dist/modules/catalog/components/categories/CategoriesDataTable.js.map +2 -2
- package/dist/modules/catalog/components/products/ProductCategorizeSection.js +3 -3
- package/dist/modules/catalog/components/products/ProductCategorizeSection.js.map +2 -2
- package/dist/modules/catalog/components/products/ProductMediaManager.js +1 -1
- package/dist/modules/catalog/components/products/ProductMediaManager.js.map +2 -2
- package/dist/modules/catalog/components/products/ProductsDataTable.js +3 -2
- package/dist/modules/catalog/components/products/ProductsDataTable.js.map +2 -2
- package/dist/modules/catalog/components/products/VariantBuilder.js +5 -5
- package/dist/modules/catalog/components/products/VariantBuilder.js.map +2 -2
- package/dist/modules/catalog/events.js +1 -0
- package/dist/modules/catalog/events.js.map +2 -2
- package/dist/modules/catalog/extension-points.js +27 -0
- package/dist/modules/catalog/extension-points.js.map +7 -0
- package/dist/modules/catalog/widgets/injection/product-bulk-delete/widget.js +10 -5
- package/dist/modules/catalog/widgets/injection/product-bulk-delete/widget.js.map +2 -2
- package/dist/modules/catalog/widgets/injection/product-seo/widget.js +1 -1
- package/dist/modules/catalog/widgets/injection/product-seo/widget.js.map +2 -2
- package/dist/modules/communication_channels/api/post/test-seed/route.js +52 -2
- package/dist/modules/communication_channels/api/post/test-seed/route.js.map +2 -2
- package/dist/modules/communication_channels/api/post/webhook/[provider]/route.js +11 -1
- package/dist/modules/communication_channels/api/post/webhook/[provider]/route.js.map +2 -2
- package/dist/modules/communication_channels/api/post/webhooks/gmail/route.js +11 -6
- package/dist/modules/communication_channels/api/post/webhooks/gmail/route.js.map +2 -2
- package/dist/modules/communication_channels/backend/communication_channels/channels/page.js +2 -1
- package/dist/modules/communication_channels/backend/communication_channels/channels/page.js.map +2 -2
- package/dist/modules/communication_channels/backend/profile/communication-channels/page.js +8 -7
- package/dist/modules/communication_channels/backend/profile/communication-channels/page.js.map +2 -2
- package/dist/modules/communication_channels/data/enrichers.js +4 -4
- package/dist/modules/communication_channels/data/enrichers.js.map +2 -2
- package/dist/modules/communication_channels/extension-points.js +20 -0
- package/dist/modules/communication_channels/extension-points.js.map +7 -0
- package/dist/modules/communication_channels/lib/access-control.js +2 -2
- package/dist/modules/communication_channels/lib/access-control.js.map +2 -2
- package/dist/modules/configs/backend/config/system-status/page.js +2 -1
- package/dist/modules/configs/backend/config/system-status/page.js.map +2 -2
- package/dist/modules/configs/extension-points.js +18 -0
- package/dist/modules/configs/extension-points.js.map +7 -0
- package/dist/modules/configs/lib/upgrade-actions.js +12 -0
- package/dist/modules/configs/lib/upgrade-actions.js.map +2 -2
- package/dist/modules/currencies/backend/currencies/page.js +2 -1
- package/dist/modules/currencies/backend/currencies/page.js.map +2 -2
- package/dist/modules/currencies/backend/exchange-rates/page.js +2 -1
- package/dist/modules/currencies/backend/exchange-rates/page.js.map +2 -2
- package/dist/modules/currencies/di.js +4 -0
- package/dist/modules/currencies/di.js.map +2 -2
- package/dist/modules/currencies/extension-points.js +14 -0
- package/dist/modules/currencies/extension-points.js.map +7 -0
- package/dist/modules/currencies/services/baseCurrencyService.js +42 -0
- package/dist/modules/currencies/services/baseCurrencyService.js.map +7 -0
- package/dist/modules/customer_accounts/api/admin/users/[id].js +10 -1
- package/dist/modules/customer_accounts/api/admin/users/[id].js.map +2 -2
- package/dist/modules/customer_accounts/api/admin/users-invite.js +63 -4
- package/dist/modules/customer_accounts/api/admin/users-invite.js.map +2 -2
- package/dist/modules/customer_accounts/api/invitations/accept.js +1 -2
- package/dist/modules/customer_accounts/api/invitations/accept.js.map +2 -2
- package/dist/modules/customer_accounts/api/login.js +4 -2
- package/dist/modules/customer_accounts/api/login.js.map +2 -2
- package/dist/modules/customer_accounts/api/magic-link/verify.js +4 -2
- package/dist/modules/customer_accounts/api/magic-link/verify.js.map +2 -2
- package/dist/modules/customer_accounts/api/portal/feature-check.js +5 -4
- package/dist/modules/customer_accounts/api/portal/feature-check.js.map +2 -2
- package/dist/modules/customer_accounts/api/portal/nav.js +6 -4
- package/dist/modules/customer_accounts/api/portal/nav.js.map +2 -2
- package/dist/modules/customer_accounts/api/portal/profile.js +5 -1
- package/dist/modules/customer_accounts/api/portal/profile.js.map +2 -2
- package/dist/modules/customer_accounts/api/portal/sessions-refresh.js +3 -3
- package/dist/modules/customer_accounts/api/portal/sessions-refresh.js.map +2 -2
- package/dist/modules/customer_accounts/api/portal/users-invite.js +22 -2
- package/dist/modules/customer_accounts/api/portal/users-invite.js.map +2 -2
- package/dist/modules/customer_accounts/backend/customer_accounts/roles/page.js +2 -1
- package/dist/modules/customer_accounts/backend/customer_accounts/roles/page.js.map +2 -2
- package/dist/modules/customer_accounts/backend/customer_accounts/settings/domain/components/Diagnostics.js +2 -2
- package/dist/modules/customer_accounts/backend/customer_accounts/settings/domain/components/Diagnostics.js.map +2 -2
- package/dist/modules/customer_accounts/backend/customer_accounts/users/page.js +2 -1
- package/dist/modules/customer_accounts/backend/customer_accounts/users/page.js.map +2 -2
- package/dist/modules/customer_accounts/data/entities.js +3 -0
- package/dist/modules/customer_accounts/data/entities.js.map +2 -2
- package/dist/modules/customer_accounts/data/validators.js +1 -0
- package/dist/modules/customer_accounts/data/validators.js.map +2 -2
- package/dist/modules/customer_accounts/emails/CustomerInvitationEmail.js +26 -0
- package/dist/modules/customer_accounts/emails/CustomerInvitationEmail.js.map +7 -0
- package/dist/modules/customer_accounts/extension-points.js +14 -0
- package/dist/modules/customer_accounts/extension-points.js.map +7 -0
- package/dist/modules/customer_accounts/lib/customerAuth.js +7 -2
- package/dist/modules/customer_accounts/lib/customerAuth.js.map +2 -2
- package/dist/modules/customer_accounts/lib/customerAuthServer.js +2 -1
- package/dist/modules/customer_accounts/lib/customerAuthServer.js.map +2 -2
- package/dist/modules/customer_accounts/lib/customerEntityOwnership.js +29 -3
- package/dist/modules/customer_accounts/lib/customerEntityOwnership.js.map +2 -2
- package/dist/modules/customer_accounts/lib/customerUrl.js +19 -10
- package/dist/modules/customer_accounts/lib/customerUrl.js.map +2 -2
- package/dist/modules/customer_accounts/lib/invitationEmail.js +35 -0
- package/dist/modules/customer_accounts/lib/invitationEmail.js.map +7 -0
- package/dist/modules/customer_accounts/migrations/Migration20260723120000_customer_accounts.js +13 -0
- package/dist/modules/customer_accounts/migrations/Migration20260723120000_customer_accounts.js.map +7 -0
- package/dist/modules/customer_accounts/services/customerInvitationService.js +32 -2
- package/dist/modules/customer_accounts/services/customerInvitationService.js.map +2 -2
- package/dist/modules/customer_accounts/services/customerRbacService.js +12 -3
- package/dist/modules/customer_accounts/services/customerRbacService.js.map +2 -2
- package/dist/modules/customer_accounts/setup.js +6 -0
- package/dist/modules/customer_accounts/setup.js.map +2 -2
- package/dist/modules/customer_accounts/subscribers/autoLinkCrm.js +47 -7
- package/dist/modules/customer_accounts/subscribers/autoLinkCrm.js.map +2 -2
- package/dist/modules/customer_accounts/widgets/injection/account-status/widget.client.js +2 -2
- package/dist/modules/customer_accounts/widgets/injection/account-status/widget.client.js.map +2 -2
- package/dist/modules/customer_accounts/widgets/injection/portal-ai-assistant-trigger/widget.client.js +1 -1
- package/dist/modules/customer_accounts/widgets/injection/portal-ai-assistant-trigger/widget.client.js.map +2 -2
- package/dist/modules/customer_accounts/widgets/injection-table.js +1 -1
- package/dist/modules/customer_accounts/widgets/injection-table.js.map +2 -2
- package/dist/modules/customers/analytics.js +4 -1
- package/dist/modules/customers/analytics.js.map +2 -2
- package/dist/modules/customers/api/companies/[id]/route.js +3 -4
- package/dist/modules/customers/api/companies/[id]/route.js.map +2 -2
- package/dist/modules/customers/api/deals/[id]/people/route.js +4 -2
- package/dist/modules/customers/api/deals/[id]/people/route.js.map +2 -2
- package/dist/modules/customers/api/deals/[id]/route.js +7 -3
- package/dist/modules/customers/api/deals/[id]/route.js.map +2 -2
- package/dist/modules/customers/api/deals/aggregate/route.js +5 -4
- package/dist/modules/customers/api/deals/aggregate/route.js.map +2 -2
- package/dist/modules/customers/api/deals/summary/route.js +14 -119
- package/dist/modules/customers/api/deals/summary/route.js.map +2 -2
- package/dist/modules/customers/api/people/[id]/companies/enriched/route.js +3 -2
- package/dist/modules/customers/api/people/[id]/companies/enriched/route.js.map +2 -2
- package/dist/modules/customers/api/utils.js +21 -24
- package/dist/modules/customers/api/utils.js.map +2 -2
- package/dist/modules/customers/backend/customers/companies/[id]/page.js +2 -1
- package/dist/modules/customers/backend/customers/companies/[id]/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/companies/page.js +2 -1
- package/dist/modules/customers/backend/customers/companies/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/companies-v2/[id]/page.js +16 -5
- package/dist/modules/customers/backend/customers/companies-v2/[id]/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/deals/[id]/page.js +18 -11
- package/dist/modules/customers/backend/customers/deals/[id]/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/deals/page.js +2 -1
- package/dist/modules/customers/backend/customers/deals/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/deals/pipeline/components/QuickDealDialog.js +17 -3
- package/dist/modules/customers/backend/customers/deals/pipeline/components/QuickDealDialog.js.map +2 -2
- package/dist/modules/customers/backend/customers/deals/pipeline/page.js +8 -2
- package/dist/modules/customers/backend/customers/deals/pipeline/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/people/[id]/page.js +2 -1
- package/dist/modules/customers/backend/customers/people/[id]/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/people/page.js +2 -1
- package/dist/modules/customers/backend/customers/people/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/people-v2/[id]/page.js +26 -10
- package/dist/modules/customers/backend/customers/people-v2/[id]/page.js.map +2 -2
- package/dist/modules/customers/cli.js +28 -11
- package/dist/modules/customers/cli.js.map +2 -2
- package/dist/modules/customers/commands/deals.js +48 -10
- package/dist/modules/customers/commands/deals.js.map +2 -2
- package/dist/modules/customers/commands/people.js +2 -0
- package/dist/modules/customers/commands/people.js.map +2 -2
- package/dist/modules/customers/components/CustomerTodosTable.js +2 -1
- package/dist/modules/customers/components/CustomerTodosTable.js.map +2 -2
- package/dist/modules/customers/components/calendar/CalendarEventEditor.js +1 -1
- package/dist/modules/customers/components/calendar/CalendarEventEditor.js.map +2 -2
- package/dist/modules/customers/components/detail/ActiveDealCard.js +2 -1
- package/dist/modules/customers/components/detail/ActiveDealCard.js.map +2 -2
- package/dist/modules/customers/components/detail/ActivitiesDayStrip.js +2 -3
- package/dist/modules/customers/components/detail/ActivitiesDayStrip.js.map +2 -2
- package/dist/modules/customers/components/detail/CompanyDetailTabs.js +26 -6
- package/dist/modules/customers/components/detail/CompanyDetailTabs.js.map +2 -2
- package/dist/modules/customers/components/detail/CompanyKpiBar.js +6 -5
- package/dist/modules/customers/components/detail/CompanyKpiBar.js.map +2 -2
- package/dist/modules/customers/components/detail/ConfirmDealLostDialog.js +2 -2
- package/dist/modules/customers/components/detail/ConfirmDealLostDialog.js.map +2 -2
- package/dist/modules/customers/components/detail/DealDetailTabs.js +30 -8
- package/dist/modules/customers/components/detail/DealDetailTabs.js.map +2 -2
- package/dist/modules/customers/components/detail/DealForm.js +2 -1
- package/dist/modules/customers/components/detail/DealForm.js.map +2 -2
- package/dist/modules/customers/components/detail/DealsSection.js +1 -1
- package/dist/modules/customers/components/detail/DealsSection.js.map +2 -2
- package/dist/modules/customers/components/detail/MiniWeekCalendar.js +7 -52
- package/dist/modules/customers/components/detail/MiniWeekCalendar.js.map +2 -2
- package/dist/modules/customers/components/detail/PersonDetailTabs.js +30 -8
- package/dist/modules/customers/components/detail/PersonDetailTabs.js.map +2 -2
- package/dist/modules/customers/components/detail/ScheduleActivityDialog.js +231 -216
- package/dist/modules/customers/components/detail/ScheduleActivityDialog.js.map +2 -2
- package/dist/modules/customers/components/detail/dashboard/helpers.js +4 -3
- package/dist/modules/customers/components/detail/dashboard/helpers.js.map +2 -2
- package/dist/modules/customers/components/detail/legacyActivities.js +69 -0
- package/dist/modules/customers/components/detail/legacyActivities.js.map +7 -0
- package/dist/modules/customers/components/formConfig.js +14 -10
- package/dist/modules/customers/components/formConfig.js.map +2 -2
- package/dist/modules/customers/data/entities.js +8 -0
- package/dist/modules/customers/data/entities.js.map +2 -2
- package/dist/modules/customers/data/validators.js +5 -2
- package/dist/modules/customers/data/validators.js.map +2 -2
- package/dist/modules/customers/extension-points.js +42 -0
- package/dist/modules/customers/extension-points.js.map +7 -0
- package/dist/modules/customers/lib/calendar/format.js +8 -4
- package/dist/modules/customers/lib/calendar/format.js.map +2 -2
- package/dist/modules/customers/lib/dealStatus.js +38 -0
- package/dist/modules/customers/lib/dealStatus.js.map +7 -0
- package/dist/modules/customers/lib/dealsSummaryQueries.js +144 -0
- package/dist/modules/customers/lib/dealsSummaryQueries.js.map +7 -0
- package/dist/modules/customers/lib/optionalBaseCurrency.js +19 -0
- package/dist/modules/customers/lib/optionalBaseCurrency.js.map +7 -0
- package/dist/modules/customers/lib/visibilityFilter.js +6 -4
- package/dist/modules/customers/lib/visibilityFilter.js.map +2 -2
- package/dist/modules/customers/migrations/Migration20260723210000_customers.js +15 -0
- package/dist/modules/customers/migrations/Migration20260723210000_customers.js.map +7 -0
- package/dist/modules/customers/search.js +50 -29
- package/dist/modules/customers/search.js.map +2 -2
- package/dist/modules/customers/utils/phoneDuplicates.js +1 -2
- package/dist/modules/customers/utils/phoneDuplicates.js.map +2 -2
- package/dist/modules/dashboards/api/layout/[itemId]/route.js +6 -3
- package/dist/modules/dashboards/api/layout/[itemId]/route.js.map +2 -2
- package/dist/modules/dashboards/api/layout/route.js +22 -9
- package/dist/modules/dashboards/api/layout/route.js.map +2 -2
- package/dist/modules/dashboards/api/roles/widgets/route.js +9 -3
- package/dist/modules/dashboards/api/roles/widgets/route.js.map +2 -2
- package/dist/modules/dashboards/api/users/widgets/route.js +9 -3
- package/dist/modules/dashboards/api/users/widgets/route.js.map +2 -2
- package/dist/modules/dashboards/api/widgets/catalog.js +6 -3
- package/dist/modules/dashboards/api/widgets/catalog.js.map +2 -2
- package/dist/modules/dashboards/api/widgets/data/batch/route.js +12 -3
- package/dist/modules/dashboards/api/widgets/data/batch/route.js.map +2 -2
- package/dist/modules/dashboards/api/widgets/data/route.js +28 -3
- package/dist/modules/dashboards/api/widgets/data/route.js.map +2 -2
- package/dist/modules/dashboards/api/widgets/data/schema.js +28 -18
- package/dist/modules/dashboards/api/widgets/data/schema.js.map +2 -2
- package/dist/modules/dashboards/components/UnlabelledAmountNotice.js +33 -0
- package/dist/modules/dashboards/components/UnlabelledAmountNotice.js.map +7 -0
- package/dist/modules/dashboards/lib/access.js +5 -3
- package/dist/modules/dashboards/lib/access.js.map +2 -2
- package/dist/modules/dashboards/lib/aggregations.js +113 -46
- package/dist/modules/dashboards/lib/aggregations.js.map +2 -2
- package/dist/modules/dashboards/lib/exactDecimal.js +69 -0
- package/dist/modules/dashboards/lib/exactDecimal.js.map +7 -0
- package/dist/modules/dashboards/lib/formatters.js +84 -11
- package/dist/modules/dashboards/lib/formatters.js.map +2 -2
- package/dist/modules/dashboards/lib/optionalBaseCurrency.js +11 -0
- package/dist/modules/dashboards/lib/optionalBaseCurrency.js.map +7 -0
- package/dist/modules/dashboards/services/widgetDataService.js +316 -14
- package/dist/modules/dashboards/services/widgetDataService.js.map +2 -2
- package/dist/modules/dashboards/subscribers/invalidateWidgetDataCache.js +26 -0
- package/dist/modules/dashboards/subscribers/invalidateWidgetDataCache.js.map +7 -0
- package/dist/modules/dashboards/widgets/dashboard/aov-kpi/widget.client.js +9 -3
- package/dist/modules/dashboards/widgets/dashboard/aov-kpi/widget.client.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/pipeline-summary/config.js +52 -2
- package/dist/modules/dashboards/widgets/dashboard/pipeline-summary/config.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/pipeline-summary/widget.client.js +52 -30
- package/dist/modules/dashboards/widgets/dashboard/pipeline-summary/widget.client.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/pipeline-summary/widget.js +2 -2
- package/dist/modules/dashboards/widgets/dashboard/pipeline-summary/widget.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/revenue-kpi/widget.client.js +9 -3
- package/dist/modules/dashboards/widgets/dashboard/revenue-kpi/widget.client.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/revenue-trend/widget.client.js +8 -3
- package/dist/modules/dashboards/widgets/dashboard/revenue-trend/widget.client.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/sales-by-region/widget.client.js +26 -18
- package/dist/modules/dashboards/widgets/dashboard/sales-by-region/widget.client.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/top-customers/widget.client.js +22 -14
- package/dist/modules/dashboards/widgets/dashboard/top-customers/widget.client.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/top-products/widget.client.js +10 -4
- package/dist/modules/dashboards/widgets/dashboard/top-products/widget.client.js.map +2 -2
- package/dist/modules/data_sync/api/mappings/[id]/route.js +22 -9
- package/dist/modules/data_sync/api/mappings/[id]/route.js.map +2 -2
- package/dist/modules/data_sync/api/mappings/route.js +13 -4
- package/dist/modules/data_sync/api/mappings/route.js.map +2 -2
- package/dist/modules/data_sync/api/options.js +7 -2
- package/dist/modules/data_sync/api/options.js.map +2 -2
- package/dist/modules/data_sync/api/run.js +7 -2
- package/dist/modules/data_sync/api/run.js.map +2 -2
- package/dist/modules/data_sync/api/runs/[id]/cancel.js +8 -3
- package/dist/modules/data_sync/api/runs/[id]/cancel.js.map +2 -2
- package/dist/modules/data_sync/api/runs/[id]/retry.js +7 -2
- package/dist/modules/data_sync/api/runs/[id]/retry.js.map +2 -2
- package/dist/modules/data_sync/api/runs/[id]/route.js +8 -3
- package/dist/modules/data_sync/api/runs/[id]/route.js.map +2 -2
- package/dist/modules/data_sync/api/runs.js +7 -2
- package/dist/modules/data_sync/api/runs.js.map +2 -2
- package/dist/modules/data_sync/api/schedules/[id]/route.js +19 -6
- package/dist/modules/data_sync/api/schedules/[id]/route.js.map +2 -2
- package/dist/modules/data_sync/api/schedules/route.js +13 -4
- package/dist/modules/data_sync/api/schedules/route.js.map +2 -2
- package/dist/modules/data_sync/api/validate.js +9 -4
- package/dist/modules/data_sync/api/validate.js.map +2 -2
- package/dist/modules/data_sync/backend/data-sync/page.js +5 -4
- package/dist/modules/data_sync/backend/data-sync/page.js.map +2 -2
- package/dist/modules/data_sync/components/IntegrationScheduleTab.js +5 -5
- package/dist/modules/data_sync/components/IntegrationScheduleTab.js.map +2 -2
- package/dist/modules/data_sync/extension-points.js +13 -0
- package/dist/modules/data_sync/extension-points.js.map +7 -0
- package/dist/modules/data_sync/lib/queue-policy.js +15 -0
- package/dist/modules/data_sync/lib/queue-policy.js.map +7 -0
- package/dist/modules/data_sync/lib/queue.js +16 -1
- package/dist/modules/data_sync/lib/queue.js.map +2 -2
- package/dist/modules/data_sync/lib/start-run.js +2 -1
- package/dist/modules/data_sync/lib/start-run.js.map +2 -2
- package/dist/modules/data_sync/lib/sync-engine.js +35 -2
- package/dist/modules/data_sync/lib/sync-engine.js.map +2 -2
- package/dist/modules/data_sync/lib/sync-run-service.js +70 -2
- package/dist/modules/data_sync/lib/sync-run-service.js.map +2 -2
- package/dist/modules/data_sync/workers/sync-export.js +9 -2
- package/dist/modules/data_sync/workers/sync-export.js.map +2 -2
- package/dist/modules/data_sync/workers/sync-import.js +9 -2
- package/dist/modules/data_sync/workers/sync-import.js.map +2 -2
- package/dist/modules/design_system/acl.js +9 -0
- package/dist/modules/design_system/acl.js.map +7 -0
- package/dist/modules/design_system/backend/design-system/page.js +11 -0
- package/dist/modules/design_system/backend/design-system/page.js.map +7 -0
- package/dist/modules/design_system/backend/design-system/page.meta.js +15 -0
- package/dist/modules/design_system/backend/design-system/page.meta.js.map +7 -0
- package/dist/modules/design_system/gallery/components/CodeSnippet.js +52 -0
- package/dist/modules/design_system/gallery/components/CodeSnippet.js.map +7 -0
- package/dist/modules/design_system/gallery/components/EntryCard.js +63 -0
- package/dist/modules/design_system/gallery/components/EntryCard.js.map +7 -0
- package/dist/modules/design_system/gallery/components/GalleryShell.js +163 -0
- package/dist/modules/design_system/gallery/components/GalleryShell.js.map +7 -0
- package/dist/modules/design_system/gallery/components/VariantPreview.js +9 -0
- package/dist/modules/design_system/gallery/components/VariantPreview.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/banners.js +186 -0
- package/dist/modules/design_system/gallery/entries/banners.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/buttons.js +361 -0
- package/dist/modules/design_system/gallery/entries/buttons.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/charts.js +457 -0
- package/dist/modules/design_system/gallery/entries/charts.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/dates.js +306 -0
- package/dist/modules/design_system/gallery/entries/dates.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/detail.js +358 -0
- package/dist/modules/design_system/gallery/entries/detail.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/display.js +785 -0
- package/dist/modules/design_system/gallery/entries/display.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/feedback.js +658 -0
- package/dist/modules/design_system/gallery/entries/feedback.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/filters.js +505 -0
- package/dist/modules/design_system/gallery/entries/filters.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/foundations.js +453 -0
- package/dist/modules/design_system/gallery/entries/foundations.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/icons.js +140 -0
- package/dist/modules/design_system/gallery/entries/icons.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/inputs.js +1217 -0
- package/dist/modules/design_system/gallery/entries/inputs.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/messages.js +334 -0
- package/dist/modules/design_system/gallery/entries/messages.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/navigation.js +475 -0
- package/dist/modules/design_system/gallery/entries/navigation.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/notifications.js +257 -0
- package/dist/modules/design_system/gallery/entries/notifications.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/overlays.js +576 -0
- package/dist/modules/design_system/gallery/entries/overlays.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/scaffolding.js +378 -0
- package/dist/modules/design_system/gallery/entries/scaffolding.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/schedule.js +297 -0
- package/dist/modules/design_system/gallery/entries/schedule.js.map +7 -0
- package/dist/modules/design_system/gallery/registry.js +139 -0
- package/dist/modules/design_system/gallery/registry.js.map +7 -0
- package/dist/modules/design_system/gallery/types.js +1 -0
- package/dist/modules/design_system/gallery/types.js.map +7 -0
- package/dist/modules/design_system/index.js +9 -0
- package/dist/modules/design_system/index.js.map +7 -0
- package/dist/modules/design_system/setup.js +14 -0
- package/dist/modules/design_system/setup.js.map +7 -0
- package/dist/modules/dictionaries/api/[dictionaryId]/entries/route.js +34 -12
- package/dist/modules/dictionaries/api/[dictionaryId]/entries/route.js.map +2 -2
- package/dist/modules/dictionaries/api/openapi.js +15 -2
- package/dist/modules/dictionaries/api/openapi.js.map +2 -2
- package/dist/modules/dictionaries/components/DictionaryEntrySelect.js +1 -1
- package/dist/modules/dictionaries/components/DictionaryEntrySelect.js.map +2 -2
- package/dist/modules/dictionaries/components/hooks/useDictionaryEntries.js +30 -29
- package/dist/modules/dictionaries/components/hooks/useDictionaryEntries.js.map +2 -2
- package/dist/modules/dictionaries/data/validators.js +7 -0
- package/dist/modules/dictionaries/data/validators.js.map +2 -2
- package/dist/modules/dictionaries/lib/clientEntries.js +4 -3
- package/dist/modules/dictionaries/lib/clientEntries.js.map +2 -2
- package/dist/modules/dictionaries/lib/fetchAllEntries.js +43 -0
- package/dist/modules/dictionaries/lib/fetchAllEntries.js.map +7 -0
- package/dist/modules/directory/api/organization-branding/route.js +10 -3
- package/dist/modules/directory/api/organization-branding/route.js.map +2 -2
- package/dist/modules/directory/api/organization-switcher/route.js +84 -20
- package/dist/modules/directory/api/organization-switcher/route.js.map +2 -2
- package/dist/modules/directory/api/organizations/route.js +7 -0
- package/dist/modules/directory/api/organizations/route.js.map +3 -3
- package/dist/modules/directory/api/tenants/route.js +8 -2
- package/dist/modules/directory/api/tenants/route.js.map +2 -2
- package/dist/modules/directory/backend/directory/branding/page.js +31 -8
- package/dist/modules/directory/backend/directory/branding/page.js.map +2 -2
- package/dist/modules/directory/backend/directory/organizations/[id]/edit/page.js +7 -16
- package/dist/modules/directory/backend/directory/organizations/[id]/edit/page.js.map +2 -2
- package/dist/modules/directory/backend/directory/organizations/page.js +2 -1
- package/dist/modules/directory/backend/directory/organizations/page.js.map +2 -2
- package/dist/modules/directory/backend/directory/tenants/page.js +2 -1
- package/dist/modules/directory/backend/directory/tenants/page.js.map +2 -2
- package/dist/modules/directory/commands/organizations.js +8 -1
- package/dist/modules/directory/commands/organizations.js.map +2 -2
- package/dist/modules/directory/commands/tenants.js +6 -0
- package/dist/modules/directory/commands/tenants.js.map +2 -2
- package/dist/modules/directory/data/entities.js +4 -0
- package/dist/modules/directory/data/entities.js.map +2 -2
- package/dist/modules/directory/data/validators.js +2 -0
- package/dist/modules/directory/data/validators.js.map +2 -2
- package/dist/modules/directory/extension-points.js +14 -0
- package/dist/modules/directory/extension-points.js.map +7 -0
- package/dist/modules/directory/migrations/Migration20260626145500_directory_logo_preserve_aspect_ratio.js +13 -0
- package/dist/modules/directory/migrations/Migration20260626145500_directory_logo_preserve_aspect_ratio.js.map +7 -0
- package/dist/modules/directory/subscribers/invalidateOrgScopeCache.js +5 -1
- package/dist/modules/directory/subscribers/invalidateOrgScopeCache.js.map +2 -2
- package/dist/modules/directory/utils/organizationScope.js +11 -3
- package/dist/modules/directory/utils/organizationScope.js.map +2 -2
- package/dist/modules/entities/api/definitions.js +53 -3
- package/dist/modules/entities/api/definitions.js.map +2 -2
- package/dist/modules/entities/api/entities.js +21 -2
- package/dist/modules/entities/api/entities.js.map +2 -2
- package/dist/modules/entities/api/entity-settings.js +59 -9
- package/dist/modules/entities/api/entity-settings.js.map +2 -2
- package/dist/modules/entities/api/records.js +11 -28
- package/dist/modules/entities/api/records.js.map +2 -2
- package/dist/modules/entities/api/sidebar-entities.js +34 -12
- package/dist/modules/entities/api/sidebar-entities.js.map +2 -2
- package/dist/modules/entities/backend/config/settings/page.js +10 -0
- package/dist/modules/entities/backend/config/settings/page.js.map +7 -0
- package/dist/modules/entities/backend/config/settings/page.meta.js +36 -0
- package/dist/modules/entities/backend/config/settings/page.meta.js.map +7 -0
- package/dist/modules/entities/backend/entities/user/[entityId]/page.js +1 -1
- package/dist/modules/entities/backend/entities/user/[entityId]/page.js.map +2 -2
- package/dist/modules/entities/backend/entities/user/[entityId]/records/page.js +23 -4
- package/dist/modules/entities/backend/entities/user/[entityId]/records/page.js.map +2 -2
- package/dist/modules/entities/backend/entities/user/create/page.js +16 -7
- package/dist/modules/entities/backend/entities/user/create/page.js.map +2 -2
- package/dist/modules/entities/cli.js +193 -19
- package/dist/modules/entities/cli.js.map +2 -2
- package/dist/modules/entities/components/EntitySettingsManager.js +136 -0
- package/dist/modules/entities/components/EntitySettingsManager.js.map +7 -0
- package/dist/modules/entities/components/RecordListRelationCell.js +63 -0
- package/dist/modules/entities/components/RecordListRelationCell.js.map +7 -0
- package/dist/modules/entities/components/SystemEntitiesTable.js +2 -1
- package/dist/modules/entities/components/SystemEntitiesTable.js.map +2 -2
- package/dist/modules/entities/components/UserEntitiesTable.js +2 -1
- package/dist/modules/entities/components/UserEntitiesTable.js.map +2 -2
- package/dist/modules/entities/components/recordListRelationDisplays.js +80 -0
- package/dist/modules/entities/components/recordListRelationDisplays.js.map +7 -0
- package/dist/modules/entities/extension-points.js +21 -0
- package/dist/modules/entities/extension-points.js.map +7 -0
- package/dist/modules/entities/lib/entityAcl.js +87 -9
- package/dist/modules/entities/lib/entityAcl.js.map +3 -3
- package/dist/modules/feature_toggles/components/FeatureGuard.js +3 -2
- package/dist/modules/feature_toggles/components/FeatureGuard.js.map +2 -2
- package/dist/modules/feature_toggles/components/FeatureToggleOverrideCard.js +1 -1
- package/dist/modules/feature_toggles/components/FeatureToggleOverrideCard.js.map +2 -2
- package/dist/modules/feature_toggles/components/hooks/staleTime.js +5 -0
- package/dist/modules/feature_toggles/components/hooks/staleTime.js.map +7 -0
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagBoolean.js +5 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagBoolean.js.map +2 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagJson.js +5 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagJson.js.map +2 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagNumber.js +5 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagNumber.js.map +2 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagString.js +5 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagString.js.map +2 -2
- package/dist/modules/inbox_ops/ai-tools.js +5 -2
- package/dist/modules/inbox_ops/ai-tools.js.map +2 -2
- package/dist/modules/inbox_ops/api/proposals/[id]/actions/[actionId]/route.js +14 -1
- package/dist/modules/inbox_ops/api/proposals/[id]/actions/[actionId]/route.js.map +2 -2
- package/dist/modules/inbox_ops/api/proposals/route.js +16 -1
- package/dist/modules/inbox_ops/api/proposals/route.js.map +2 -2
- package/dist/modules/inbox_ops/api/webhook/inbound.js +14 -10
- package/dist/modules/inbox_ops/api/webhook/inbound.js.map +2 -2
- package/dist/modules/inbox_ops/backend/inbox-ops/log/page.js +6 -6
- package/dist/modules/inbox_ops/backend/inbox-ops/log/page.js.map +2 -2
- package/dist/modules/inbox_ops/components/proposals/EditActionDialog.js +25 -20
- package/dist/modules/inbox_ops/components/proposals/EditActionDialog.js.map +2 -2
- package/dist/modules/inbox_ops/search.js +15 -4
- package/dist/modules/inbox_ops/search.js.map +2 -2
- package/dist/modules/inbox_ops/subscribers/search-reindex-proposal-created.js +32 -0
- package/dist/modules/inbox_ops/subscribers/search-reindex-proposal-created.js.map +7 -0
- package/dist/modules/integrations/api/[id]/credentials/route.js +11 -5
- package/dist/modules/integrations/api/[id]/credentials/route.js.map +2 -2
- package/dist/modules/integrations/api/[id]/health/route.js +6 -3
- package/dist/modules/integrations/api/[id]/health/route.js.map +2 -2
- package/dist/modules/integrations/api/[id]/route.js +6 -3
- package/dist/modules/integrations/api/[id]/route.js.map +2 -2
- package/dist/modules/integrations/api/[id]/state/route.js +6 -3
- package/dist/modules/integrations/api/[id]/state/route.js.map +2 -2
- package/dist/modules/integrations/api/[id]/version/route.js +6 -3
- package/dist/modules/integrations/api/[id]/version/route.js.map +2 -2
- package/dist/modules/integrations/api/logs/route.js +6 -3
- package/dist/modules/integrations/api/logs/route.js.map +2 -2
- package/dist/modules/integrations/api/route.js +6 -3
- package/dist/modules/integrations/api/route.js.map +2 -2
- package/dist/modules/integrations/api/umes-read.js +2 -2
- package/dist/modules/integrations/api/umes-read.js.map +2 -2
- package/dist/modules/integrations/backend/integrations/[id]/page.js +2 -4
- package/dist/modules/integrations/backend/integrations/[id]/page.js.map +2 -2
- package/dist/modules/integrations/extension-points.js +30 -0
- package/dist/modules/integrations/extension-points.js.map +7 -0
- package/dist/modules/integrations/lib/organization-scope.js +2 -9
- package/dist/modules/integrations/lib/organization-scope.js.map +2 -2
- package/dist/modules/integrations/widgets/injection/external-ids/widget.client.js +0 -5
- package/dist/modules/integrations/widgets/injection/external-ids/widget.client.js.map +2 -2
- package/dist/modules/integrations/widgets/injection/external-ids/widget.js +14 -0
- package/dist/modules/integrations/widgets/injection/external-ids/widget.js.map +7 -0
- package/dist/modules/messages/api/[id]/route.js +15 -0
- package/dist/modules/messages/api/[id]/route.js.map +2 -2
- package/dist/modules/messages/api/route.js +77 -8
- package/dist/modules/messages/api/route.js.map +2 -2
- package/dist/modules/messages/components/ComposeMessagePageClient.js +2 -1
- package/dist/modules/messages/components/ComposeMessagePageClient.js.map +2 -2
- package/dist/modules/messages/components/MessageDetailPageClient.js +3 -2
- package/dist/modules/messages/components/MessageDetailPageClient.js.map +2 -2
- package/dist/modules/messages/components/MessagesInboxPageClient.js +2 -1
- package/dist/modules/messages/components/MessagesInboxPageClient.js.map +2 -2
- package/dist/modules/messages/components/message-detail/panels/dialogs.js +1 -1
- package/dist/modules/messages/components/message-detail/panels/dialogs.js.map +1 -1
- package/dist/modules/messages/extension-points.js +16 -0
- package/dist/modules/messages/extension-points.js.map +7 -0
- package/dist/modules/messages/lib/participantScope.js +15 -0
- package/dist/modules/messages/lib/participantScope.js.map +7 -0
- package/dist/modules/messages/lib/routeHelpers.js +1 -3
- package/dist/modules/messages/lib/routeHelpers.js.map +2 -2
- package/dist/modules/messages/lib/searchLookup.js +8 -16
- package/dist/modules/messages/lib/searchLookup.js.map +2 -2
- package/dist/modules/messages/search.js +10 -5
- package/dist/modules/messages/search.js.map +2 -2
- package/dist/modules/notifications/api/route.js +83 -4
- package/dist/modules/notifications/api/route.js.map +2 -2
- package/dist/modules/notifications/api/unread-count/route.js +25 -6
- package/dist/modules/notifications/api/unread-count/route.js.map +2 -2
- package/dist/modules/notifications/di.js +1 -1
- package/dist/modules/notifications/di.js.map +2 -2
- package/dist/modules/notifications/events.js +4 -2
- package/dist/modules/notifications/events.js.map +2 -2
- package/dist/modules/notifications/lib/notificationRecipients.js +6 -7
- package/dist/modules/notifications/lib/notificationRecipients.js.map +2 -2
- package/dist/modules/notifications/lib/notificationScope.js +26 -0
- package/dist/modules/notifications/lib/notificationScope.js.map +7 -0
- package/dist/modules/notifications/lib/notificationService.js +48 -4
- package/dist/modules/notifications/lib/notificationService.js.map +2 -2
- package/dist/modules/notifications/lib/routeHelpers.js +16 -2
- package/dist/modules/notifications/lib/routeHelpers.js.map +2 -2
- package/dist/modules/payment_gateways/api/capture/route.js +1 -1
- package/dist/modules/payment_gateways/api/capture/route.js.map +2 -2
- package/dist/modules/payment_gateways/api/sessions/route.js +6 -3
- package/dist/modules/payment_gateways/api/sessions/route.js.map +2 -2
- package/dist/modules/payment_gateways/api/webhook/[provider]/route.js +11 -1
- package/dist/modules/payment_gateways/api/webhook/[provider]/route.js.map +2 -2
- package/dist/modules/payment_gateways/backend/payment-gateways/page.js +3 -2
- package/dist/modules/payment_gateways/backend/payment-gateways/page.js.map +2 -2
- package/dist/modules/payment_gateways/data/entities.js +11 -0
- package/dist/modules/payment_gateways/data/entities.js.map +2 -2
- package/dist/modules/payment_gateways/di.js +17 -1
- package/dist/modules/payment_gateways/di.js.map +2 -2
- package/dist/modules/payment_gateways/extension-points.js +19 -0
- package/dist/modules/payment_gateways/extension-points.js.map +7 -0
- package/dist/modules/payment_gateways/lib/capture-ledger.js +183 -0
- package/dist/modules/payment_gateways/lib/capture-ledger.js.map +7 -0
- package/dist/modules/payment_gateways/lib/gateway-service.js +93 -14
- package/dist/modules/payment_gateways/lib/gateway-service.js.map +2 -2
- package/dist/modules/payment_gateways/lib/order-amount-reconciliation.js +58 -0
- package/dist/modules/payment_gateways/lib/order-amount-reconciliation.js.map +7 -0
- package/dist/modules/payment_gateways/lib/payment-operation-idempotency.js +1 -0
- package/dist/modules/payment_gateways/lib/payment-operation-idempotency.js.map +2 -2
- package/dist/modules/payment_gateways/lib/session-idempotency.js +33 -0
- package/dist/modules/payment_gateways/lib/session-idempotency.js.map +2 -2
- package/dist/modules/payment_gateways/migrations/Migration20260725101500_payment_gateways.js +16 -0
- package/dist/modules/payment_gateways/migrations/Migration20260725101500_payment_gateways.js.map +7 -0
- package/dist/modules/payment_gateways/migrations/Migration20260803103035_payment_gateways.js +18 -0
- package/dist/modules/payment_gateways/migrations/Migration20260803103035_payment_gateways.js.map +7 -0
- package/dist/modules/payment_gateways/setup.js +47 -0
- package/dist/modules/payment_gateways/setup.js.map +2 -2
- package/dist/modules/payment_gateways/workers/session-initialization-prune.js +50 -0
- package/dist/modules/payment_gateways/workers/session-initialization-prune.js.map +7 -0
- package/dist/modules/planner/components/AvailabilityRulesEditor.js +4 -4
- package/dist/modules/planner/components/AvailabilityRulesEditor.js.map +2 -2
- package/dist/modules/planner/components/unavailabilityReasons.js +3 -3
- package/dist/modules/planner/components/unavailabilityReasons.js.map +2 -2
- package/dist/modules/portal/extension-points.js +32 -0
- package/dist/modules/portal/extension-points.js.map +7 -0
- package/dist/modules/portal/frontend/[orgSlug]/portal/dashboard/page.js +3 -3
- package/dist/modules/portal/frontend/[orgSlug]/portal/dashboard/page.js.map +2 -2
- package/dist/modules/portal/frontend/[orgSlug]/portal/invite/page.js +134 -0
- package/dist/modules/portal/frontend/[orgSlug]/portal/invite/page.js.map +7 -0
- package/dist/modules/portal/frontend/[orgSlug]/portal/invite/page.meta.js +11 -0
- package/dist/modules/portal/frontend/[orgSlug]/portal/invite/page.meta.js.map +7 -0
- package/dist/modules/portal/frontend/[orgSlug]/portal/login/page.js +4 -4
- package/dist/modules/portal/frontend/[orgSlug]/portal/login/page.js.map +2 -2
- package/dist/modules/portal/frontend/[orgSlug]/portal/page.js +3 -3
- package/dist/modules/portal/frontend/[orgSlug]/portal/page.js.map +2 -2
- package/dist/modules/portal/frontend/[orgSlug]/portal/profile/page.js +3 -3
- package/dist/modules/portal/frontend/[orgSlug]/portal/profile/page.js.map +2 -2
- package/dist/modules/portal/frontend/[orgSlug]/portal/reset-password/page.js +4 -4
- package/dist/modules/portal/frontend/[orgSlug]/portal/reset-password/page.js.map +2 -2
- package/dist/modules/portal/frontend/[orgSlug]/portal/signup/page.js +4 -4
- package/dist/modules/portal/frontend/[orgSlug]/portal/signup/page.js.map +2 -2
- package/dist/modules/portal/frontend/[orgSlug]/portal/verify/page.js +1 -1
- package/dist/modules/portal/frontend/[orgSlug]/portal/verify/page.js.map +2 -2
- package/dist/modules/portal/lib/navigation.js +7 -0
- package/dist/modules/portal/lib/navigation.js.map +7 -0
- package/dist/modules/progress/lib/progressService.js +2 -0
- package/dist/modules/progress/lib/progressService.js.map +2 -2
- package/dist/modules/progress/lib/progressServiceImpl.js +322 -104
- package/dist/modules/progress/lib/progressServiceImpl.js.map +2 -2
- package/dist/modules/query_index/api/openapi.js +13 -1
- package/dist/modules/query_index/api/openapi.js.map +2 -2
- package/dist/modules/query_index/api/reindex.js +10 -0
- package/dist/modules/query_index/api/reindex.js.map +2 -2
- package/dist/modules/query_index/api/status.js +165 -105
- package/dist/modules/query_index/api/status.js.map +2 -2
- package/dist/modules/query_index/cli.js +125 -1
- package/dist/modules/query_index/cli.js.map +2 -2
- package/dist/modules/query_index/components/QueryIndexesTable.js +130 -42
- package/dist/modules/query_index/components/QueryIndexesTable.js.map +2 -2
- package/dist/modules/query_index/data/entities.js +2 -1
- package/dist/modules/query_index/data/entities.js.map +2 -2
- package/dist/modules/query_index/di.js +3 -0
- package/dist/modules/query_index/di.js.map +2 -2
- package/dist/modules/query_index/events.js +20 -0
- package/dist/modules/query_index/events.js.map +7 -0
- package/dist/modules/query_index/extension-points.js +13 -0
- package/dist/modules/query_index/extension-points.js.map +7 -0
- package/dist/modules/query_index/lib/batch.js +11 -4
- package/dist/modules/query_index/lib/batch.js.map +2 -2
- package/dist/modules/query_index/lib/coverage.js +21 -9
- package/dist/modules/query_index/lib/coverage.js.map +2 -2
- package/dist/modules/query_index/lib/document.js +12 -5
- package/dist/modules/query_index/lib/document.js.map +2 -2
- package/dist/modules/query_index/lib/engine.js +105 -48
- package/dist/modules/query_index/lib/engine.js.map +2 -2
- package/dist/modules/query_index/lib/indexer.js +95 -19
- package/dist/modules/query_index/lib/indexer.js.map +2 -2
- package/dist/modules/query_index/lib/reindexer.js +43 -37
- package/dist/modules/query_index/lib/reindexer.js.map +2 -2
- package/dist/modules/query_index/lib/search-tokens.js +34 -15
- package/dist/modules/query_index/lib/search-tokens.js.map +2 -2
- package/dist/modules/query_index/lib/subscriber-scope.js +2 -3
- package/dist/modules/query_index/lib/subscriber-scope.js.map +2 -2
- package/dist/modules/query_index/migrations/Migration20260731105052_query_index.js +17 -0
- package/dist/modules/query_index/migrations/Migration20260731105052_query_index.js.map +7 -0
- package/dist/modules/query_index/subscribers/coverage_refresh.js +4 -0
- package/dist/modules/query_index/subscribers/coverage_refresh.js.map +2 -2
- package/dist/modules/query_index/subscribers/delete_one.js +53 -1
- package/dist/modules/query_index/subscribers/delete_one.js.map +3 -3
- package/dist/modules/query_index/subscribers/upsert_one.js +60 -0
- package/dist/modules/query_index/subscribers/upsert_one.js.map +3 -3
- package/dist/modules/resources/api/resources.js +2 -0
- package/dist/modules/resources/api/resources.js.map +2 -2
- package/dist/modules/resources/backend/resources/resource-types/page.js +2 -1
- package/dist/modules/resources/backend/resources/resource-types/page.js.map +2 -2
- package/dist/modules/resources/backend/resources/resources/[id]/page.js +3 -2
- package/dist/modules/resources/backend/resources/resources/[id]/page.js.map +2 -2
- package/dist/modules/resources/backend/resources/resources/page.js +2 -1
- package/dist/modules/resources/backend/resources/resources/page.js.map +2 -2
- package/dist/modules/resources/commands/resources.js +9 -0
- package/dist/modules/resources/commands/resources.js.map +2 -2
- package/dist/modules/resources/components/detail/dictionaries.js +3 -3
- package/dist/modules/resources/components/detail/dictionaries.js.map +2 -2
- package/dist/modules/resources/data/entities.js +3 -0
- package/dist/modules/resources/data/entities.js.map +2 -2
- package/dist/modules/resources/data/validators.js +6 -2
- package/dist/modules/resources/data/validators.js.map +2 -2
- package/dist/modules/resources/extension-points.js +14 -0
- package/dist/modules/resources/extension-points.js.map +7 -0
- package/dist/modules/resources/lib/seeds.js +16 -9
- package/dist/modules/resources/lib/seeds.js.map +2 -2
- package/dist/modules/resources/migrations/Migration20260608231000.js +13 -0
- package/dist/modules/resources/migrations/Migration20260608231000.js.map +7 -0
- package/dist/modules/sales/analytics.js +7 -3
- package/dist/modules/sales/analytics.js.map +2 -2
- package/dist/modules/sales/api/document-history/route.js +2 -1
- package/dist/modules/sales/api/document-history/route.js.map +2 -2
- package/dist/modules/sales/api/documents/factory.js +14 -3
- package/dist/modules/sales/api/documents/factory.js.map +2 -2
- package/dist/modules/sales/backend/sales/documents/[id]/page.js +11 -3
- package/dist/modules/sales/backend/sales/documents/[id]/page.js.map +2 -2
- package/dist/modules/sales/backend/sales/documents/create/page.js +11 -14
- package/dist/modules/sales/backend/sales/documents/create/page.js.map +2 -2
- package/dist/modules/sales/commands/documents.js +184 -23
- package/dist/modules/sales/commands/documents.js.map +2 -2
- package/dist/modules/sales/components/documents/ItemsSection.js +31 -11
- package/dist/modules/sales/components/documents/ItemsSection.js.map +2 -2
- package/dist/modules/sales/components/documents/LineItemDialog.js +12 -5
- package/dist/modules/sales/components/documents/LineItemDialog.js.map +2 -2
- package/dist/modules/sales/components/documents/SalesDocumentForm.js +48 -2
- package/dist/modules/sales/components/documents/SalesDocumentForm.js.map +2 -2
- package/dist/modules/sales/components/documents/SalesDocumentsTable.js +4 -1
- package/dist/modules/sales/components/documents/SalesDocumentsTable.js.map +2 -2
- package/dist/modules/sales/components/documents/SalesOrderDraftLines.js +167 -0
- package/dist/modules/sales/components/documents/SalesOrderDraftLines.js.map +7 -0
- package/dist/modules/sales/components/useSalesChannelsEnabled.js +2 -35
- package/dist/modules/sales/components/useSalesChannelsEnabled.js.map +2 -2
- package/dist/modules/sales/data/validators.js +32 -5
- package/dist/modules/sales/data/validators.js.map +2 -2
- package/dist/modules/sales/di.js +7 -0
- package/dist/modules/sales/di.js.map +2 -2
- package/dist/modules/sales/events.js +1 -0
- package/dist/modules/sales/events.js.map +2 -2
- package/dist/modules/sales/extension-points.js +36 -0
- package/dist/modules/sales/extension-points.js.map +7 -0
- package/dist/modules/sales/lib/historyHelpers.js +69 -1
- package/dist/modules/sales/lib/historyHelpers.js.map +2 -2
- package/dist/modules/sales/services/paymentOrderTotalResolver.js +52 -0
- package/dist/modules/sales/services/paymentOrderTotalResolver.js.map +7 -0
- package/dist/modules/sales/widgets/injection/document-history/widget.client.js +51 -2
- package/dist/modules/sales/widgets/injection/document-history/widget.client.js.map +2 -2
- package/dist/modules/sales/workflows.js +10 -7
- package/dist/modules/sales/workflows.js.map +2 -2
- package/dist/modules/shipping_carriers/api/webhook/[provider]/route.js +11 -1
- package/dist/modules/shipping_carriers/api/webhook/[provider]/route.js.map +2 -2
- package/dist/modules/shipping_carriers/lib/shipment-wizard/components/PackageEditor.js +1 -1
- package/dist/modules/shipping_carriers/lib/shipment-wizard/components/PackageEditor.js.map +1 -1
- package/dist/modules/staff/api/interceptors.js +5 -3
- package/dist/modules/staff/api/interceptors.js.map +2 -2
- package/dist/modules/staff/api/leave-requests.js +45 -42
- package/dist/modules/staff/api/leave-requests.js.map +2 -2
- package/dist/modules/staff/components/detail/dictionaries.js +3 -3
- package/dist/modules/staff/components/detail/dictionaries.js.map +2 -2
- package/dist/modules/sync_excel/api/upload/route.js +15 -2
- package/dist/modules/sync_excel/api/upload/route.js.map +2 -2
- package/dist/modules/sync_excel/widgets/injection/upload-config/widget.client.js +1 -1
- package/dist/modules/sync_excel/widgets/injection/upload-config/widget.client.js.map +2 -2
- package/dist/modules/wms/components/backend/ReleaseReservationDialog.js +1 -1
- package/dist/modules/wms/components/backend/ReleaseReservationDialog.js.map +1 -1
- package/dist/modules/wms/components/backend/WmsConfigurationPage.js +5 -4
- package/dist/modules/wms/components/backend/WmsConfigurationPage.js.map +2 -2
- package/dist/modules/wms/components/backend/WmsInventoryConsolePage.js +4 -3
- package/dist/modules/wms/components/backend/WmsInventoryConsolePage.js.map +2 -2
- package/dist/modules/wms/components/backend/WmsLocationDetailPage.js +3 -2
- package/dist/modules/wms/components/backend/WmsLocationDetailPage.js.map +2 -2
- package/dist/modules/wms/components/backend/WmsLotDetailPage.js +3 -2
- package/dist/modules/wms/components/backend/WmsLotDetailPage.js.map +2 -2
- package/dist/modules/wms/components/backend/WmsLotsListPage.js +2 -1
- package/dist/modules/wms/components/backend/WmsLotsListPage.js.map +2 -2
- package/dist/modules/wms/components/backend/WmsSkuDetailPage.js +3 -2
- package/dist/modules/wms/components/backend/WmsSkuDetailPage.js.map +2 -2
- package/dist/modules/wms/extension-points.js +26 -0
- package/dist/modules/wms/extension-points.js.map +7 -0
- package/dist/modules/workflows/backend/definitions/[id]/page.js +2 -2
- package/dist/modules/workflows/backend/definitions/[id]/page.js.map +2 -2
- package/dist/modules/workflows/backend/definitions/create/page.js +1 -1
- package/dist/modules/workflows/backend/definitions/create/page.js.map +2 -2
- package/dist/modules/workflows/backend/definitions/page.js +3 -2
- package/dist/modules/workflows/backend/definitions/page.js.map +2 -2
- package/dist/modules/workflows/backend/definitions/visual-editor/page.js +9 -6
- package/dist/modules/workflows/backend/definitions/visual-editor/page.js.map +2 -2
- package/dist/modules/workflows/backend/instances/page.js +10 -9
- package/dist/modules/workflows/backend/instances/page.js.map +2 -2
- package/dist/modules/workflows/backend/tasks/page.js +8 -7
- package/dist/modules/workflows/backend/tasks/page.js.map +2 -2
- package/dist/modules/workflows/components/ActivitiesEditor.js +69 -13
- package/dist/modules/workflows/components/ActivitiesEditor.js.map +2 -2
- package/dist/modules/workflows/components/BusinessRulesSelector.js +1 -1
- package/dist/modules/workflows/components/BusinessRulesSelector.js.map +2 -2
- package/dist/modules/workflows/components/DefinitionTriggersEditor.js +3 -3
- package/dist/modules/workflows/components/DefinitionTriggersEditor.js.map +2 -2
- package/dist/modules/workflows/components/EdgeEditDialogCrudForm.js +1 -2
- package/dist/modules/workflows/components/EdgeEditDialogCrudForm.js.map +2 -2
- package/dist/modules/workflows/components/NodeEditDialog.js +3 -3
- package/dist/modules/workflows/components/NodeEditDialog.js.map +2 -2
- package/dist/modules/workflows/components/NodeEditDialogCrudForm.js +4 -5
- package/dist/modules/workflows/components/NodeEditDialogCrudForm.js.map +2 -2
- package/dist/modules/workflows/components/StepsEditor.js +2 -2
- package/dist/modules/workflows/components/StepsEditor.js.map +2 -2
- package/dist/modules/workflows/components/TransitionsEditor.js +207 -165
- package/dist/modules/workflows/components/TransitionsEditor.js.map +2 -2
- package/dist/modules/workflows/components/WorkflowGraphImpl.js +1 -1
- package/dist/modules/workflows/components/WorkflowGraphImpl.js.map +2 -2
- package/dist/modules/workflows/components/WorkflowLegend.js +1 -1
- package/dist/modules/workflows/components/WorkflowLegend.js.map +2 -2
- package/dist/modules/workflows/components/WorkflowSelector.js +1 -1
- package/dist/modules/workflows/components/WorkflowSelector.js.map +2 -2
- package/dist/modules/workflows/components/fields/BusinessRuleConditionsEditor.js +1 -1
- package/dist/modules/workflows/components/fields/BusinessRuleConditionsEditor.js.map +2 -2
- package/dist/modules/workflows/components/fields/FormFieldArrayEditor.js +2 -2
- package/dist/modules/workflows/components/fields/FormFieldArrayEditor.js.map +2 -2
- package/dist/modules/workflows/components/fields/MappingArrayEditor.js +1 -1
- package/dist/modules/workflows/components/fields/MappingArrayEditor.js.map +2 -2
- package/dist/modules/workflows/components/fields/StartPreConditionsEditor.js +1 -1
- package/dist/modules/workflows/components/fields/StartPreConditionsEditor.js.map +2 -2
- package/dist/modules/workflows/components/fields/WorkflowSelectorField.js +4 -4
- package/dist/modules/workflows/components/fields/WorkflowSelectorField.js.map +2 -2
- package/dist/modules/workflows/data/validators.js +34 -1
- package/dist/modules/workflows/data/validators.js.map +3 -3
- package/dist/modules/workflows/events.js +1 -0
- package/dist/modules/workflows/events.js.map +2 -2
- package/dist/modules/workflows/extension-points.js +15 -0
- package/dist/modules/workflows/extension-points.js.map +7 -0
- package/dist/modules/workflows/lib/activity-executor.js +59 -14
- package/dist/modules/workflows/lib/activity-executor.js.map +2 -2
- package/dist/modules/workflows/lib/format-validation-error.js +46 -1
- package/dist/modules/workflows/lib/format-validation-error.js.map +2 -2
- package/dist/modules/workflows/widgets/injection/order-approval/context-keys.js +10 -0
- package/dist/modules/workflows/widgets/injection/order-approval/context-keys.js.map +7 -0
- package/dist/modules/workflows/widgets/injection/order-approval/widget.client.js +21 -10
- package/dist/modules/workflows/widgets/injection/order-approval/widget.client.js.map +2 -2
- package/generated/entities/attachment_quota_reservation/index.ts +15 -0
- package/generated/entities/customer_deal_person_link/index.ts +1 -0
- package/generated/entities/customer_user_invitation/index.ts +1 -0
- package/generated/entities/gateway_payment_operation/index.ts +1 -0
- package/generated/entities/gateway_transaction/index.ts +1 -0
- package/generated/entities/organization/index.ts +1 -0
- package/generated/entities/resources_resource/index.ts +1 -0
- package/generated/entities.ids.generated.ts +3 -1
- package/generated/entity-fields-registry.ts +23 -0
- package/package.json +19 -18
- package/src/bootstrap.ts +17 -2
- package/src/helpers/integration/salesFixtures.ts +34 -2
- package/src/helpers/integration/salesUi.ts +8 -0
- package/src/modules/api_keys/backend/api-keys/page.tsx +2 -1
- package/src/modules/api_keys/extension-points.ts +13 -0
- package/src/modules/api_keys/i18n/ko.json +42 -0
- package/src/modules/attachments/api/route.ts +130 -9
- package/src/modules/attachments/backend/config/attachments/page.tsx +1 -1
- package/src/modules/attachments/data/entities.ts +59 -0
- package/src/modules/attachments/di.ts +9 -1
- package/src/modules/attachments/fields/attachment.tsx +1 -1
- package/src/modules/attachments/i18n/de.json +15 -0
- package/src/modules/attachments/i18n/en.json +15 -0
- package/src/modules/attachments/i18n/es.json +15 -0
- package/src/modules/attachments/i18n/ko.json +175 -0
- package/src/modules/attachments/i18n/pl.json +15 -0
- package/src/modules/attachments/lib/drivers/index.ts +1 -1
- package/src/modules/attachments/lib/drivers/localDriver.ts +23 -8
- package/src/modules/attachments/lib/drivers/types.ts +5 -0
- package/src/modules/attachments/lib/quota-recovery-queue.ts +16 -0
- package/src/modules/attachments/lib/quota-service.ts +442 -0
- package/src/modules/attachments/lib/upload-limits.ts +35 -0
- package/src/modules/attachments/migrations/.snapshot-open-mercato.json +648 -120
- package/src/modules/attachments/migrations/Migration20260709234741_attachments.ts +12 -0
- package/src/modules/attachments/workers/quota-recovery.ts +68 -0
- package/src/modules/audit_logs/api/audit-logs/access/route.ts +5 -0
- package/src/modules/audit_logs/api/audit-logs/actions/export/route.ts +5 -0
- package/src/modules/audit_logs/api/audit-logs/actions/route.ts +5 -0
- package/src/modules/audit_logs/api/audit-logs/readScope.ts +28 -0
- package/src/modules/audit_logs/components/AccessLogsTable.tsx +2 -1
- package/src/modules/audit_logs/components/AuditLogsActions.tsx +3 -2
- package/src/modules/audit_logs/extension-points.ts +11 -0
- package/src/modules/audit_logs/i18n/ko.json +66 -0
- package/src/modules/auth/AGENTS.md +12 -8
- package/src/modules/auth/api/admin/nav.ts +28 -4
- package/src/modules/auth/api/profile/route.ts +8 -2
- package/src/modules/auth/api/users/route.ts +8 -28
- package/src/modules/auth/backend/auth/profile/page.tsx +1 -0
- package/src/modules/auth/backend/profile/change-password/page.tsx +1 -0
- package/src/modules/auth/backend/roles/page.tsx +2 -1
- package/src/modules/auth/backend/settings/page.tsx +17 -8
- package/src/modules/auth/backend/users/page.tsx +2 -1
- package/src/modules/auth/cli.ts +1 -1
- package/src/modules/auth/components/UserConsentsPanel.tsx +9 -9
- package/src/modules/auth/extension-points.ts +18 -0
- package/src/modules/auth/frontend/login.tsx +7 -3
- package/src/modules/auth/frontend/reset.tsx +2 -2
- package/src/modules/auth/i18n/de.json +1 -0
- package/src/modules/auth/i18n/en.json +1 -0
- package/src/modules/auth/i18n/es.json +1 -0
- package/src/modules/auth/i18n/ko.json +255 -0
- package/src/modules/auth/i18n/pl.json +1 -0
- package/src/modules/auth/lib/backendChrome.tsx +71 -33
- package/src/modules/auth/lib/setup-app.ts +21 -2
- package/src/modules/auth/lib/tenantAccess.ts +8 -0
- package/src/modules/auth/services/rbacService.ts +41 -46
- package/src/modules/business_rules/api/openmercato-call-options/route.ts +94 -0
- package/src/modules/business_rules/api/rules/route.ts +92 -4
- package/src/modules/business_rules/backend/rules/page.tsx +2 -1
- package/src/modules/business_rules/components/ActionBuilder.tsx +54 -5
- package/src/modules/business_rules/components/ActionRow.tsx +156 -18
- package/src/modules/business_rules/components/ConditionRow.tsx +9 -6
- package/src/modules/business_rules/components/utils/actionValidation.ts +6 -0
- package/src/modules/business_rules/events.ts +10 -0
- package/src/modules/business_rules/extension-points.ts +10 -0
- package/src/modules/business_rules/i18n/de.json +12 -0
- package/src/modules/business_rules/i18n/en.json +12 -0
- package/src/modules/business_rules/i18n/es.json +12 -0
- package/src/modules/business_rules/i18n/ko.json +396 -0
- package/src/modules/business_rules/i18n/pl.json +12 -0
- package/src/modules/business_rules/lib/action-executor.ts +198 -0
- package/src/modules/business_rules/lib/openmercato-call-options-types.ts +31 -0
- package/src/modules/business_rules/lib/openmercato-call-options.ts +297 -0
- package/src/modules/business_rules/lib/rule-engine.ts +4 -0
- package/src/modules/catalog/backend/catalog/products/[id]/page.tsx +6 -5
- package/src/modules/catalog/backend/catalog/products/create/page.tsx +7 -6
- package/src/modules/catalog/components/PriceKindSettings.tsx +3 -3
- package/src/modules/catalog/components/categories/CategoriesDataTable.tsx +2 -1
- package/src/modules/catalog/components/products/ProductCategorizeSection.tsx +3 -3
- package/src/modules/catalog/components/products/ProductMediaManager.tsx +1 -1
- package/src/modules/catalog/components/products/ProductsDataTable.tsx +3 -2
- package/src/modules/catalog/components/products/VariantBuilder.tsx +5 -5
- package/src/modules/catalog/events.ts +1 -0
- package/src/modules/catalog/extension-points.ts +24 -0
- package/src/modules/catalog/i18n/de.json +18 -0
- package/src/modules/catalog/i18n/en.json +18 -0
- package/src/modules/catalog/i18n/es.json +18 -0
- package/src/modules/catalog/i18n/ko.json +723 -0
- package/src/modules/catalog/i18n/pl.json +18 -0
- package/src/modules/catalog/widgets/injection/product-bulk-delete/widget.ts +15 -5
- package/src/modules/catalog/widgets/injection/product-seo/widget.ts +1 -1
- package/src/modules/communication_channels/api/post/test-seed/route.ts +69 -2
- package/src/modules/communication_channels/api/post/webhook/[provider]/route.ts +11 -1
- package/src/modules/communication_channels/api/post/webhooks/gmail/route.ts +17 -11
- package/src/modules/communication_channels/backend/communication_channels/channels/page.tsx +2 -1
- package/src/modules/communication_channels/backend/profile/communication-channels/page.tsx +8 -7
- package/src/modules/communication_channels/data/enrichers.ts +6 -26
- package/src/modules/communication_channels/extension-points.ts +17 -0
- package/src/modules/communication_channels/i18n/de.json +2 -2
- package/src/modules/communication_channels/i18n/en.json +2 -2
- package/src/modules/communication_channels/i18n/es.json +2 -2
- package/src/modules/communication_channels/i18n/ko.json +138 -0
- package/src/modules/communication_channels/i18n/pl.json +2 -2
- package/src/modules/communication_channels/lib/access-control.ts +3 -3
- package/src/modules/configs/backend/config/system-status/page.tsx +2 -1
- package/src/modules/configs/extension-points.ts +15 -0
- package/src/modules/configs/i18n/ko.json +197 -0
- package/src/modules/configs/lib/upgrade-actions.ts +14 -0
- package/src/modules/currencies/backend/currencies/page.tsx +2 -1
- package/src/modules/currencies/backend/exchange-rates/page.tsx +2 -1
- package/src/modules/currencies/di.ts +4 -1
- package/src/modules/currencies/extension-points.ts +11 -0
- package/src/modules/currencies/i18n/de.json +1 -0
- package/src/modules/currencies/i18n/en.json +1 -0
- package/src/modules/currencies/i18n/es.json +1 -0
- package/src/modules/currencies/i18n/ko.json +160 -0
- package/src/modules/currencies/i18n/pl.json +1 -0
- package/src/modules/currencies/services/baseCurrencyService.ts +59 -0
- package/src/modules/customer_accounts/AGENTS.md +3 -3
- package/src/modules/customer_accounts/api/admin/users/[id].ts +16 -1
- package/src/modules/customer_accounts/api/admin/users-invite.ts +81 -3
- package/src/modules/customer_accounts/api/invitations/accept.ts +1 -2
- package/src/modules/customer_accounts/api/login.ts +4 -2
- package/src/modules/customer_accounts/api/magic-link/verify.ts +4 -2
- package/src/modules/customer_accounts/api/portal/feature-check.ts +5 -7
- package/src/modules/customer_accounts/api/portal/nav.ts +5 -3
- package/src/modules/customer_accounts/api/portal/profile.ts +5 -1
- package/src/modules/customer_accounts/api/portal/sessions-refresh.ts +3 -3
- package/src/modules/customer_accounts/api/portal/users-invite.ts +25 -1
- package/src/modules/customer_accounts/backend/customer_accounts/roles/page.tsx +2 -1
- package/src/modules/customer_accounts/backend/customer_accounts/settings/domain/components/Diagnostics.tsx +2 -2
- package/src/modules/customer_accounts/backend/customer_accounts/users/page.tsx +2 -1
- package/src/modules/customer_accounts/data/entities.ts +3 -0
- package/src/modules/customer_accounts/data/validators.ts +1 -0
- package/src/modules/customer_accounts/emails/CustomerInvitationEmail.tsx +45 -0
- package/src/modules/customer_accounts/extension-points.ts +11 -0
- package/src/modules/customer_accounts/i18n/de.json +6 -0
- package/src/modules/customer_accounts/i18n/en.json +6 -0
- package/src/modules/customer_accounts/i18n/es.json +6 -0
- package/src/modules/customer_accounts/i18n/ko.json +354 -0
- package/src/modules/customer_accounts/i18n/pl.json +6 -0
- package/src/modules/customer_accounts/lib/customerAuth.ts +8 -2
- package/src/modules/customer_accounts/lib/customerAuthServer.ts +1 -0
- package/src/modules/customer_accounts/lib/customerEntityOwnership.ts +68 -2
- package/src/modules/customer_accounts/lib/customerUrl.ts +27 -11
- package/src/modules/customer_accounts/lib/invitationEmail.ts +42 -0
- package/src/modules/customer_accounts/migrations/.snapshot-open-mercato.json +16 -0
- package/src/modules/customer_accounts/migrations/Migration20260723120000_customer_accounts.ts +13 -0
- package/src/modules/customer_accounts/services/customerInvitationService.ts +56 -3
- package/src/modules/customer_accounts/services/customerRbacService.ts +16 -3
- package/src/modules/customer_accounts/setup.ts +7 -0
- package/src/modules/customer_accounts/subscribers/autoLinkCrm.ts +75 -8
- package/src/modules/customer_accounts/widgets/injection/account-status/widget.client.tsx +2 -2
- package/src/modules/customer_accounts/widgets/injection/portal-ai-assistant-trigger/widget.client.tsx +1 -3
- package/src/modules/customer_accounts/widgets/injection-table.ts +4 -1
- package/src/modules/customers/analytics.ts +3 -0
- package/src/modules/customers/api/companies/[id]/route.ts +3 -4
- package/src/modules/customers/api/deals/[id]/people/route.ts +3 -0
- package/src/modules/customers/api/deals/[id]/route.ts +10 -2
- package/src/modules/customers/api/deals/aggregate/route.ts +5 -4
- package/src/modules/customers/api/deals/summary/route.ts +15 -162
- package/src/modules/customers/api/people/[id]/companies/enriched/route.ts +3 -2
- package/src/modules/customers/api/utils.ts +25 -37
- package/src/modules/customers/backend/customers/companies/[id]/page.tsx +2 -1
- package/src/modules/customers/backend/customers/companies/page.tsx +2 -1
- package/src/modules/customers/backend/customers/companies-v2/[id]/page.tsx +17 -5
- package/src/modules/customers/backend/customers/deals/[id]/hooks/types.ts +1 -0
- package/src/modules/customers/backend/customers/deals/[id]/page.tsx +19 -12
- package/src/modules/customers/backend/customers/deals/page.tsx +2 -1
- package/src/modules/customers/backend/customers/deals/pipeline/components/QuickDealDialog.tsx +35 -3
- package/src/modules/customers/backend/customers/deals/pipeline/page.tsx +11 -2
- package/src/modules/customers/backend/customers/people/[id]/page.tsx +2 -1
- package/src/modules/customers/backend/customers/people/page.tsx +2 -1
- package/src/modules/customers/backend/customers/people-v2/[id]/page.tsx +29 -10
- package/src/modules/customers/cli.ts +28 -11
- package/src/modules/customers/commands/deals.ts +50 -9
- package/src/modules/customers/commands/people.ts +3 -0
- package/src/modules/customers/components/CustomerTodosTable.tsx +2 -1
- package/src/modules/customers/components/calendar/CalendarEventEditor.tsx +1 -1
- package/src/modules/customers/components/detail/ActiveDealCard.tsx +2 -1
- package/src/modules/customers/components/detail/ActivitiesDayStrip.tsx +2 -3
- package/src/modules/customers/components/detail/CompanyDetailTabs.tsx +30 -7
- package/src/modules/customers/components/detail/CompanyKpiBar.tsx +6 -5
- package/src/modules/customers/components/detail/ConfirmDealLostDialog.tsx +2 -2
- package/src/modules/customers/components/detail/DealDetailTabs.tsx +34 -9
- package/src/modules/customers/components/detail/DealForm.tsx +5 -1
- package/src/modules/customers/components/detail/DealsSection.tsx +1 -1
- package/src/modules/customers/components/detail/MiniWeekCalendar.tsx +8 -57
- package/src/modules/customers/components/detail/PersonDetailTabs.tsx +34 -9
- package/src/modules/customers/components/detail/ScheduleActivityDialog.tsx +29 -14
- package/src/modules/customers/components/detail/dashboard/helpers.ts +4 -3
- package/src/modules/customers/components/detail/legacyActivities.ts +79 -0
- package/src/modules/customers/components/formConfig.tsx +12 -8
- package/src/modules/customers/data/entities.ts +9 -1
- package/src/modules/customers/data/validators.ts +6 -1
- package/src/modules/customers/extension-points.ts +40 -0
- package/src/modules/customers/i18n/de.json +72 -0
- package/src/modules/customers/i18n/en.json +72 -0
- package/src/modules/customers/i18n/es.json +72 -0
- package/src/modules/customers/i18n/ko.json +2855 -0
- package/src/modules/customers/i18n/pl.json +72 -0
- package/src/modules/customers/lib/calendar/format.ts +10 -4
- package/src/modules/customers/lib/dealStatus.ts +48 -0
- package/src/modules/customers/lib/dealsSummaryQueries.ts +211 -0
- package/src/modules/customers/lib/optionalBaseCurrency.ts +34 -0
- package/src/modules/customers/lib/visibilityFilter.ts +7 -5
- package/src/modules/customers/migrations/.snapshot-open-mercato.json +27 -1
- package/src/modules/customers/migrations/Migration20260723210000_customers.ts +15 -0
- package/src/modules/customers/search.ts +59 -27
- package/src/modules/customers/utils/phoneDuplicates.ts +6 -3
- package/src/modules/dashboards/api/layout/[itemId]/route.ts +6 -3
- package/src/modules/dashboards/api/layout/route.ts +22 -9
- package/src/modules/dashboards/api/roles/widgets/route.ts +9 -3
- package/src/modules/dashboards/api/users/widgets/route.ts +9 -3
- package/src/modules/dashboards/api/widgets/catalog.ts +6 -3
- package/src/modules/dashboards/api/widgets/data/batch/route.ts +12 -1
- package/src/modules/dashboards/api/widgets/data/route.ts +29 -1
- package/src/modules/dashboards/api/widgets/data/schema.ts +49 -19
- package/src/modules/dashboards/components/UnlabelledAmountNotice.tsx +43 -0
- package/src/modules/dashboards/i18n/de.json +5 -0
- package/src/modules/dashboards/i18n/en.json +5 -0
- package/src/modules/dashboards/i18n/es.json +5 -0
- package/src/modules/dashboards/i18n/ko.json +118 -0
- package/src/modules/dashboards/i18n/pl.json +5 -0
- package/src/modules/dashboards/lib/access.ts +5 -3
- package/src/modules/dashboards/lib/aggregations.ts +198 -48
- package/src/modules/dashboards/lib/exactDecimal.ts +96 -0
- package/src/modules/dashboards/lib/formatters.ts +137 -12
- package/src/modules/dashboards/lib/optionalBaseCurrency.ts +22 -0
- package/src/modules/dashboards/services/widgetDataService.ts +453 -12
- package/src/modules/dashboards/subscribers/invalidateWidgetDataCache.ts +32 -0
- package/src/modules/dashboards/widgets/dashboard/aov-kpi/widget.client.tsx +9 -3
- package/src/modules/dashboards/widgets/dashboard/pipeline-summary/config.ts +86 -0
- package/src/modules/dashboards/widgets/dashboard/pipeline-summary/widget.client.tsx +42 -21
- package/src/modules/dashboards/widgets/dashboard/pipeline-summary/widget.ts +2 -2
- package/src/modules/dashboards/widgets/dashboard/revenue-kpi/widget.client.tsx +9 -3
- package/src/modules/dashboards/widgets/dashboard/revenue-trend/widget.client.tsx +7 -2
- package/src/modules/dashboards/widgets/dashboard/sales-by-region/widget.client.tsx +25 -15
- package/src/modules/dashboards/widgets/dashboard/top-customers/widget.client.tsx +21 -11
- package/src/modules/dashboards/widgets/dashboard/top-products/widget.client.tsx +9 -3
- package/src/modules/data_sync/AGENTS.md +1 -0
- package/src/modules/data_sync/api/mappings/[id]/route.ts +22 -9
- package/src/modules/data_sync/api/mappings/route.ts +13 -4
- package/src/modules/data_sync/api/options.ts +7 -2
- package/src/modules/data_sync/api/run.ts +7 -2
- package/src/modules/data_sync/api/runs/[id]/cancel.ts +8 -3
- package/src/modules/data_sync/api/runs/[id]/retry.ts +7 -2
- package/src/modules/data_sync/api/runs/[id]/route.ts +8 -3
- package/src/modules/data_sync/api/runs.ts +7 -2
- package/src/modules/data_sync/api/schedules/[id]/route.ts +19 -6
- package/src/modules/data_sync/api/schedules/route.ts +13 -4
- package/src/modules/data_sync/api/validate.ts +9 -4
- package/src/modules/data_sync/backend/data-sync/page.tsx +5 -4
- package/src/modules/data_sync/components/IntegrationScheduleTab.tsx +5 -5
- package/src/modules/data_sync/extension-points.ts +10 -0
- package/src/modules/data_sync/i18n/ko.json +125 -0
- package/src/modules/data_sync/lib/adapter.ts +18 -0
- package/src/modules/data_sync/lib/queue-policy.ts +30 -0
- package/src/modules/data_sync/lib/queue.ts +19 -1
- package/src/modules/data_sync/lib/start-run.ts +2 -1
- package/src/modules/data_sync/lib/sync-engine.ts +46 -0
- package/src/modules/data_sync/lib/sync-run-service.ts +82 -1
- package/src/modules/data_sync/workers/sync-export.ts +8 -1
- package/src/modules/data_sync/workers/sync-import.ts +8 -1
- package/src/modules/design_system/AGENTS.md +34 -0
- package/src/modules/design_system/acl.ts +5 -0
- package/src/modules/design_system/backend/design-system/page.meta.ts +11 -0
- package/src/modules/design_system/backend/design-system/page.tsx +14 -0
- package/src/modules/design_system/gallery/components/CodeSnippet.tsx +55 -0
- package/src/modules/design_system/gallery/components/EntryCard.tsx +95 -0
- package/src/modules/design_system/gallery/components/GalleryShell.tsx +206 -0
- package/src/modules/design_system/gallery/components/VariantPreview.tsx +15 -0
- package/src/modules/design_system/gallery/entries/banners.tsx +226 -0
- package/src/modules/design_system/gallery/entries/buttons.tsx +422 -0
- package/src/modules/design_system/gallery/entries/charts.tsx +518 -0
- package/src/modules/design_system/gallery/entries/dates.tsx +325 -0
- package/src/modules/design_system/gallery/entries/detail.tsx +403 -0
- package/src/modules/design_system/gallery/entries/display.tsx +893 -0
- package/src/modules/design_system/gallery/entries/feedback.tsx +746 -0
- package/src/modules/design_system/gallery/entries/filters.tsx +570 -0
- package/src/modules/design_system/gallery/entries/foundations.tsx +529 -0
- package/src/modules/design_system/gallery/entries/icons.tsx +168 -0
- package/src/modules/design_system/gallery/entries/inputs.tsx +1516 -0
- package/src/modules/design_system/gallery/entries/messages.tsx +339 -0
- package/src/modules/design_system/gallery/entries/navigation.tsx +573 -0
- package/src/modules/design_system/gallery/entries/notifications.tsx +285 -0
- package/src/modules/design_system/gallery/entries/overlays.tsx +677 -0
- package/src/modules/design_system/gallery/entries/scaffolding.tsx +430 -0
- package/src/modules/design_system/gallery/entries/schedule.tsx +307 -0
- package/src/modules/design_system/gallery/registry.ts +152 -0
- package/src/modules/design_system/gallery/types.ts +32 -0
- package/src/modules/design_system/i18n/.hardcoded-allowlist.json +71 -0
- package/src/modules/design_system/i18n/de.json +58 -0
- package/src/modules/design_system/i18n/en.json +58 -0
- package/src/modules/design_system/i18n/es.json +58 -0
- package/src/modules/design_system/i18n/ko.json +58 -0
- package/src/modules/design_system/i18n/pl.json +58 -0
- package/src/modules/design_system/index.ts +7 -0
- package/src/modules/design_system/setup.ts +12 -0
- package/src/modules/dictionaries/api/[dictionaryId]/entries/route.ts +39 -11
- package/src/modules/dictionaries/api/openapi.ts +19 -0
- package/src/modules/dictionaries/components/DictionaryEntrySelect.tsx +1 -1
- package/src/modules/dictionaries/components/hooks/useDictionaryEntries.ts +35 -36
- package/src/modules/dictionaries/data/validators.ts +14 -0
- package/src/modules/dictionaries/i18n/ko.json +130 -0
- package/src/modules/dictionaries/lib/clientEntries.ts +4 -3
- package/src/modules/dictionaries/lib/fetchAllEntries.ts +72 -0
- package/src/modules/directory/api/organization-branding/route.ts +12 -1
- package/src/modules/directory/api/organization-switcher/route.ts +97 -26
- package/src/modules/directory/api/organizations/route.ts +7 -0
- package/src/modules/directory/api/tenants/route.ts +9 -1
- package/src/modules/directory/backend/directory/branding/page.tsx +34 -9
- package/src/modules/directory/backend/directory/organizations/[id]/edit/page.tsx +10 -14
- package/src/modules/directory/backend/directory/organizations/page.tsx +2 -1
- package/src/modules/directory/backend/directory/tenants/page.tsx +2 -1
- package/src/modules/directory/commands/organizations.ts +9 -1
- package/src/modules/directory/commands/tenants.ts +6 -0
- package/src/modules/directory/data/entities.ts +3 -0
- package/src/modules/directory/data/validators.ts +2 -0
- package/src/modules/directory/extension-points.ts +11 -0
- package/src/modules/directory/i18n/de.json +4 -1
- package/src/modules/directory/i18n/en.json +4 -1
- package/src/modules/directory/i18n/es.json +4 -1
- package/src/modules/directory/i18n/ko.json +105 -0
- package/src/modules/directory/i18n/pl.json +4 -1
- package/src/modules/directory/migrations/.snapshot-open-mercato.json +18 -1
- package/src/modules/directory/migrations/Migration20260626145500_directory_logo_preserve_aspect_ratio.ts +13 -0
- package/src/modules/directory/subscribers/invalidateOrgScopeCache.ts +4 -1
- package/src/modules/directory/utils/organizationScope.ts +9 -3
- package/src/modules/entities/api/definitions.ts +55 -3
- package/src/modules/entities/api/entities.ts +30 -2
- package/src/modules/entities/api/entity-settings.ts +66 -22
- package/src/modules/entities/api/records.ts +15 -31
- package/src/modules/entities/api/sidebar-entities.ts +43 -14
- package/src/modules/entities/backend/config/settings/page.meta.ts +34 -0
- package/src/modules/entities/backend/config/settings/page.tsx +12 -0
- package/src/modules/entities/backend/entities/user/[entityId]/page.tsx +1 -1
- package/src/modules/entities/backend/entities/user/[entityId]/records/page.tsx +96 -75
- package/src/modules/entities/backend/entities/user/create/page.tsx +16 -7
- package/src/modules/entities/cli.ts +238 -21
- package/src/modules/entities/components/EntitySettingsManager.tsx +160 -0
- package/src/modules/entities/components/RecordListRelationCell.tsx +90 -0
- package/src/modules/entities/components/SystemEntitiesTable.tsx +2 -1
- package/src/modules/entities/components/UserEntitiesTable.tsx +2 -1
- package/src/modules/entities/components/recordListRelationDisplays.ts +109 -0
- package/src/modules/entities/extension-points.ts +18 -0
- package/src/modules/entities/i18n/de.json +9 -0
- package/src/modules/entities/i18n/en.json +9 -0
- package/src/modules/entities/i18n/es.json +9 -0
- package/src/modules/entities/i18n/ko.json +260 -0
- package/src/modules/entities/i18n/pl.json +9 -0
- package/src/modules/entities/lib/entityAcl.ts +98 -11
- package/src/modules/feature_toggles/components/FeatureGuard.tsx +9 -2
- package/src/modules/feature_toggles/components/FeatureToggleOverrideCard.tsx +1 -1
- package/src/modules/feature_toggles/components/hooks/staleTime.ts +5 -0
- package/src/modules/feature_toggles/components/hooks/useFeatureFlagBoolean.ts +13 -1
- package/src/modules/feature_toggles/components/hooks/useFeatureFlagJson.ts +12 -3
- package/src/modules/feature_toggles/components/hooks/useFeatureFlagNumber.ts +10 -1
- package/src/modules/feature_toggles/components/hooks/useFeatureFlagString.ts +10 -1
- package/src/modules/feature_toggles/i18n/ko.json +96 -0
- package/src/modules/inbox_ops/ai-tools.ts +5 -3
- package/src/modules/inbox_ops/api/proposals/[id]/actions/[actionId]/route.ts +17 -1
- package/src/modules/inbox_ops/api/proposals/route.ts +20 -1
- package/src/modules/inbox_ops/api/webhook/inbound.ts +14 -12
- package/src/modules/inbox_ops/backend/inbox-ops/log/page.tsx +6 -6
- package/src/modules/inbox_ops/components/proposals/EditActionDialog.tsx +24 -19
- package/src/modules/inbox_ops/components/proposals/types.ts +1 -0
- package/src/modules/inbox_ops/i18n/de.json +3 -0
- package/src/modules/inbox_ops/i18n/en.json +3 -0
- package/src/modules/inbox_ops/i18n/es.json +3 -0
- package/src/modules/inbox_ops/i18n/ko.json +196 -0
- package/src/modules/inbox_ops/i18n/pl.json +3 -0
- package/src/modules/inbox_ops/search.ts +20 -4
- package/src/modules/inbox_ops/subscribers/search-reindex-proposal-created.ts +39 -0
- package/src/modules/integrations/api/[id]/credentials/route.ts +11 -5
- package/src/modules/integrations/api/[id]/health/route.ts +6 -3
- package/src/modules/integrations/api/[id]/route.ts +6 -3
- package/src/modules/integrations/api/[id]/state/route.ts +6 -3
- package/src/modules/integrations/api/[id]/version/route.ts +6 -3
- package/src/modules/integrations/api/logs/route.ts +6 -3
- package/src/modules/integrations/api/route.ts +6 -3
- package/src/modules/integrations/api/umes-read.ts +2 -2
- package/src/modules/integrations/backend/integrations/[id]/page.tsx +2 -2
- package/src/modules/integrations/extension-points.ts +27 -0
- package/src/modules/integrations/i18n/ko.json +129 -0
- package/src/modules/integrations/lib/organization-scope.ts +5 -25
- package/src/modules/integrations/widgets/injection/external-ids/widget.client.tsx +0 -5
- package/src/modules/integrations/widgets/injection/external-ids/widget.ts +13 -0
- package/src/modules/messages/api/[id]/route.ts +21 -0
- package/src/modules/messages/api/route.ts +109 -9
- package/src/modules/messages/components/ComposeMessagePageClient.tsx +2 -1
- package/src/modules/messages/components/MessageDetailPageClient.tsx +3 -2
- package/src/modules/messages/components/MessagesInboxPageClient.tsx +2 -1
- package/src/modules/messages/components/message-detail/panels/dialogs.tsx +1 -1
- package/src/modules/messages/extension-points.ts +13 -0
- package/src/modules/messages/i18n/de.json +2 -0
- package/src/modules/messages/i18n/en.json +2 -0
- package/src/modules/messages/i18n/es.json +2 -0
- package/src/modules/messages/i18n/ko.json +263 -0
- package/src/modules/messages/i18n/pl.json +2 -0
- package/src/modules/messages/lib/participantScope.ts +64 -0
- package/src/modules/messages/lib/routeHelpers.ts +4 -6
- package/src/modules/messages/lib/searchLookup.ts +11 -34
- package/src/modules/messages/search.ts +11 -5
- package/src/modules/notifications/api/route.ts +123 -3
- package/src/modules/notifications/api/unread-count/route.ts +42 -5
- package/src/modules/notifications/di.ts +1 -1
- package/src/modules/notifications/events.ts +2 -0
- package/src/modules/notifications/i18n/ko.json +55 -0
- package/src/modules/notifications/lib/notificationRecipients.ts +6 -8
- package/src/modules/notifications/lib/notificationScope.ts +40 -0
- package/src/modules/notifications/lib/notificationService.ts +63 -1
- package/src/modules/notifications/lib/routeHelpers.ts +19 -2
- package/src/modules/payment_gateways/api/capture/route.ts +1 -1
- package/src/modules/payment_gateways/api/sessions/route.ts +6 -3
- package/src/modules/payment_gateways/api/webhook/[provider]/route.ts +13 -1
- package/src/modules/payment_gateways/backend/payment-gateways/page.tsx +3 -2
- package/src/modules/payment_gateways/data/entities.ts +13 -2
- package/src/modules/payment_gateways/di.ts +28 -2
- package/src/modules/payment_gateways/extension-points.ts +16 -0
- package/src/modules/payment_gateways/i18n/de.json +8 -1
- package/src/modules/payment_gateways/i18n/en.json +8 -1
- package/src/modules/payment_gateways/i18n/es.json +8 -1
- package/src/modules/payment_gateways/i18n/ko.json +87 -0
- package/src/modules/payment_gateways/i18n/pl.json +8 -1
- package/src/modules/payment_gateways/lib/capture-ledger.ts +260 -0
- package/src/modules/payment_gateways/lib/gateway-service.ts +114 -18
- package/src/modules/payment_gateways/lib/order-amount-reconciliation.ts +93 -0
- package/src/modules/payment_gateways/lib/payment-operation-idempotency.ts +1 -0
- package/src/modules/payment_gateways/lib/session-idempotency.ts +36 -0
- package/src/modules/payment_gateways/migrations/.snapshot-open-mercato.json +44 -1
- package/src/modules/payment_gateways/migrations/Migration20260725101500_payment_gateways.ts +21 -0
- package/src/modules/payment_gateways/migrations/Migration20260803103035_payment_gateways.ts +17 -0
- package/src/modules/payment_gateways/setup.ts +62 -0
- package/src/modules/payment_gateways/workers/session-initialization-prune.ts +63 -0
- package/src/modules/planner/components/AvailabilityRulesEditor.tsx +4 -4
- package/src/modules/planner/components/unavailabilityReasons.ts +3 -3
- package/src/modules/planner/i18n/ko.json +565 -0
- package/src/modules/portal/extension-points.ts +30 -0
- package/src/modules/portal/frontend/[orgSlug]/portal/dashboard/page.tsx +3 -3
- package/src/modules/portal/frontend/[orgSlug]/portal/invite/page.meta.ts +9 -0
- package/src/modules/portal/frontend/[orgSlug]/portal/invite/page.tsx +164 -0
- package/src/modules/portal/frontend/[orgSlug]/portal/login/page.tsx +4 -4
- package/src/modules/portal/frontend/[orgSlug]/portal/page.tsx +3 -3
- package/src/modules/portal/frontend/[orgSlug]/portal/profile/page.tsx +3 -3
- package/src/modules/portal/frontend/[orgSlug]/portal/reset-password/page.tsx +5 -5
- package/src/modules/portal/frontend/[orgSlug]/portal/signup/page.tsx +4 -4
- package/src/modules/portal/frontend/[orgSlug]/portal/verify/page.tsx +1 -1
- package/src/modules/portal/i18n/de.json +18 -0
- package/src/modules/portal/i18n/en.json +18 -0
- package/src/modules/portal/i18n/es.json +18 -0
- package/src/modules/portal/i18n/ko.json +143 -0
- package/src/modules/portal/i18n/pl.json +18 -0
- package/src/modules/portal/lib/navigation.ts +3 -0
- package/src/modules/progress/AGENTS.md +11 -1
- package/src/modules/progress/i18n/ko.json +20 -0
- package/src/modules/progress/lib/progressService.ts +1 -0
- package/src/modules/progress/lib/progressServiceImpl.ts +385 -117
- package/src/modules/query_index/api/openapi.ts +12 -0
- package/src/modules/query_index/api/reindex.ts +15 -0
- package/src/modules/query_index/api/status.ts +238 -136
- package/src/modules/query_index/cli.ts +180 -1
- package/src/modules/query_index/components/QueryIndexesTable.tsx +194 -47
- package/src/modules/query_index/data/entities.ts +7 -0
- package/src/modules/query_index/di.ts +6 -0
- package/src/modules/query_index/events.ts +17 -0
- package/src/modules/query_index/extension-points.ts +10 -0
- package/src/modules/query_index/i18n/de.json +5 -3
- package/src/modules/query_index/i18n/en.json +5 -3
- package/src/modules/query_index/i18n/es.json +5 -3
- package/src/modules/query_index/i18n/ko.json +69 -0
- package/src/modules/query_index/i18n/pl.json +5 -3
- package/src/modules/query_index/lib/batch.ts +11 -4
- package/src/modules/query_index/lib/coverage.ts +47 -14
- package/src/modules/query_index/lib/document.ts +35 -4
- package/src/modules/query_index/lib/engine.ts +136 -59
- package/src/modules/query_index/lib/indexer.ts +130 -21
- package/src/modules/query_index/lib/reindexer.ts +62 -40
- package/src/modules/query_index/lib/search-tokens.ts +48 -16
- package/src/modules/query_index/lib/subscriber-scope.ts +2 -7
- package/src/modules/query_index/migrations/.snapshot-open-mercato.json +12 -0
- package/src/modules/query_index/migrations/Migration20260731105052_query_index.ts +35 -0
- package/src/modules/query_index/subscribers/coverage_refresh.ts +4 -0
- package/src/modules/query_index/subscribers/delete_one.ts +65 -1
- package/src/modules/query_index/subscribers/upsert_one.ts +68 -1
- package/src/modules/resources/api/resources.ts +2 -0
- package/src/modules/resources/backend/resources/resource-types/page.tsx +2 -1
- package/src/modules/resources/backend/resources/resources/[id]/page.tsx +9 -3
- package/src/modules/resources/backend/resources/resources/page.tsx +2 -1
- package/src/modules/resources/commands/resources.ts +10 -0
- package/src/modules/resources/components/detail/dictionaries.ts +3 -3
- package/src/modules/resources/data/entities.ts +3 -0
- package/src/modules/resources/data/validators.ts +5 -0
- package/src/modules/resources/extension-points.ts +11 -0
- package/src/modules/resources/i18n/ko.json +770 -0
- package/src/modules/resources/lib/seeds.ts +16 -9
- package/src/modules/resources/migrations/.snapshot-open-mercato.json +17 -1
- package/src/modules/resources/migrations/Migration20260608231000.ts +13 -0
- package/src/modules/sales/analytics.ts +4 -0
- package/src/modules/sales/api/document-history/route.ts +1 -0
- package/src/modules/sales/api/documents/factory.ts +28 -3
- package/src/modules/sales/backend/sales/documents/[id]/page.tsx +11 -3
- package/src/modules/sales/backend/sales/documents/create/page.tsx +2 -4
- package/src/modules/sales/commands/documents.ts +298 -31
- package/src/modules/sales/components/documents/ItemsSection.tsx +34 -11
- package/src/modules/sales/components/documents/LineItemDialog.tsx +13 -5
- package/src/modules/sales/components/documents/SalesDocumentForm.tsx +48 -6
- package/src/modules/sales/components/documents/SalesDocumentsTable.tsx +6 -1
- package/src/modules/sales/components/documents/SalesOrderDraftLines.tsx +198 -0
- package/src/modules/sales/components/documents/lineItemTypes.ts +1 -0
- package/src/modules/sales/components/useSalesChannelsEnabled.ts +2 -48
- package/src/modules/sales/data/validators.ts +59 -6
- package/src/modules/sales/di.ts +9 -0
- package/src/modules/sales/events.ts +1 -0
- package/src/modules/sales/extension-points.ts +33 -0
- package/src/modules/sales/i18n/de.json +22 -0
- package/src/modules/sales/i18n/en.json +22 -0
- package/src/modules/sales/i18n/es.json +22 -0
- package/src/modules/sales/i18n/ko.json +1442 -0
- package/src/modules/sales/i18n/pl.json +22 -0
- package/src/modules/sales/lib/historyHelpers.ts +88 -1
- package/src/modules/sales/services/paymentOrderTotalResolver.ts +67 -0
- package/src/modules/sales/widgets/injection/document-history/widget.client.tsx +64 -3
- package/src/modules/sales/workflows.ts +10 -7
- package/src/modules/shipping_carriers/api/webhook/[provider]/route.ts +11 -1
- package/src/modules/shipping_carriers/i18n/ko.json +85 -0
- package/src/modules/shipping_carriers/lib/shipment-wizard/components/PackageEditor.tsx +1 -1
- package/src/modules/staff/api/interceptors.ts +6 -4
- package/src/modules/staff/api/leave-requests.ts +54 -47
- package/src/modules/staff/components/detail/dictionaries.ts +3 -3
- package/src/modules/staff/i18n/ko.json +1162 -0
- package/src/modules/sync_excel/api/upload/route.ts +15 -2
- package/src/modules/sync_excel/i18n/ko.json +107 -0
- package/src/modules/sync_excel/widgets/injection/upload-config/widget.client.tsx +1 -1
- package/src/modules/translations/i18n/ko.json +45 -0
- package/src/modules/wms/components/backend/ReleaseReservationDialog.tsx +1 -1
- package/src/modules/wms/components/backend/WmsConfigurationPage.tsx +5 -4
- package/src/modules/wms/components/backend/WmsInventoryConsolePage.tsx +4 -3
- package/src/modules/wms/components/backend/WmsLocationDetailPage.tsx +3 -2
- package/src/modules/wms/components/backend/WmsLotDetailPage.tsx +3 -2
- package/src/modules/wms/components/backend/WmsLotsListPage.tsx +2 -1
- package/src/modules/wms/components/backend/WmsSkuDetailPage.tsx +3 -2
- package/src/modules/wms/extension-points.ts +23 -0
- package/src/modules/wms/i18n/de.json +2 -0
- package/src/modules/wms/i18n/en.json +2 -0
- package/src/modules/wms/i18n/es.json +2 -0
- package/src/modules/wms/i18n/ko.json +1053 -0
- package/src/modules/wms/i18n/pl.json +2 -0
- package/src/modules/workflows/backend/definitions/[id]/page.tsx +2 -2
- package/src/modules/workflows/backend/definitions/create/page.tsx +1 -1
- package/src/modules/workflows/backend/definitions/page.tsx +3 -2
- package/src/modules/workflows/backend/definitions/visual-editor/page.tsx +16 -7
- package/src/modules/workflows/backend/instances/page.tsx +10 -9
- package/src/modules/workflows/backend/tasks/page.tsx +8 -7
- package/src/modules/workflows/components/ActivitiesEditor.tsx +98 -14
- package/src/modules/workflows/components/BusinessRulesSelector.tsx +1 -1
- package/src/modules/workflows/components/DefinitionTriggersEditor.tsx +3 -3
- package/src/modules/workflows/components/EdgeEditDialogCrudForm.tsx +1 -2
- package/src/modules/workflows/components/NodeEditDialog.tsx +3 -3
- package/src/modules/workflows/components/NodeEditDialogCrudForm.tsx +4 -5
- package/src/modules/workflows/components/StepsEditor.tsx +2 -2
- package/src/modules/workflows/components/TransitionsEditor.tsx +78 -20
- package/src/modules/workflows/components/WorkflowGraphImpl.tsx +1 -1
- package/src/modules/workflows/components/WorkflowLegend.tsx +1 -1
- package/src/modules/workflows/components/WorkflowSelector.tsx +1 -1
- package/src/modules/workflows/components/fields/BusinessRuleConditionsEditor.tsx +1 -1
- package/src/modules/workflows/components/fields/FormFieldArrayEditor.tsx +2 -2
- package/src/modules/workflows/components/fields/MappingArrayEditor.tsx +1 -1
- package/src/modules/workflows/components/fields/StartPreConditionsEditor.tsx +1 -1
- package/src/modules/workflows/components/fields/WorkflowSelectorField.tsx +4 -4
- package/src/modules/workflows/data/validators.ts +52 -1
- package/src/modules/workflows/events.ts +1 -0
- package/src/modules/workflows/extension-points.ts +12 -0
- package/src/modules/workflows/i18n/de.json +3 -0
- package/src/modules/workflows/i18n/en.json +3 -0
- package/src/modules/workflows/i18n/es.json +3 -0
- package/src/modules/workflows/i18n/ko.json +1204 -0
- package/src/modules/workflows/i18n/pl.json +3 -0
- package/src/modules/workflows/lib/activity-executor.ts +99 -20
- package/src/modules/workflows/lib/format-validation-error.ts +60 -0
- package/src/modules/workflows/widgets/injection/order-approval/context-keys.ts +18 -0
- package/src/modules/workflows/widgets/injection/order-approval/widget.client.tsx +27 -11
|
@@ -0,0 +1,2855 @@
|
|
|
1
|
+
{
|
|
2
|
+
"audit_logs.resource_kind.customers.activity": "활동",
|
|
3
|
+
"audit_logs.resource_kind.customers.address": "주소",
|
|
4
|
+
"audit_logs.resource_kind.customers.comment": "댓글",
|
|
5
|
+
"audit_logs.resource_kind.customers.todoLink": "할 일",
|
|
6
|
+
"backend.nav.configuration": "설정",
|
|
7
|
+
"customers.activities.actions.markDone": "완료로 표시",
|
|
8
|
+
"customers.activities.actions.markDoneError": "활동을 완료로 표시하지 못했습니다",
|
|
9
|
+
"customers.activities.actions.markDoneSuccess": "활동이 완료로 표시되었습니다",
|
|
10
|
+
"customers.activities.add.call": "통화 기록",
|
|
11
|
+
"customers.activities.add.email": "이메일 작성",
|
|
12
|
+
"customers.activities.add.meeting": "새 미팅",
|
|
13
|
+
"customers.activities.add.task": "새 작업",
|
|
14
|
+
"customers.activities.addNew": "새로 추가",
|
|
15
|
+
"customers.activities.calendar.eventPlural": "이벤트",
|
|
16
|
+
"customers.activities.calendar.eventSingular": "이벤트",
|
|
17
|
+
"customers.activities.calendar.eventsSummary": "{count} {countLabel} · {duration}",
|
|
18
|
+
"customers.activities.calendar.hoursMinutesShort": "{hours}시간 {minutes}분",
|
|
19
|
+
"customers.activities.calendar.hoursShort": "{hours}시간",
|
|
20
|
+
"customers.activities.calendar.minutesShort": "{minutes}분",
|
|
21
|
+
"customers.activities.calendar.monthYear": "{month} {year}",
|
|
22
|
+
"customers.activities.calendar.nextMonth": "다음 달",
|
|
23
|
+
"customers.activities.calendar.nextWindow": "다음 기간",
|
|
24
|
+
"customers.activities.calendar.prevMonth": "이전 달",
|
|
25
|
+
"customers.activities.calendar.prevWindow": "이전 기간",
|
|
26
|
+
"customers.activities.calendar.weekend": "주말",
|
|
27
|
+
"customers.activities.card.empty": "이 날 예정된 일정이 없습니다.",
|
|
28
|
+
"customers.activities.card.overdue": "{count}건 기한 초과",
|
|
29
|
+
"customers.activities.card.title": "활동",
|
|
30
|
+
"customers.activities.errors.dateRequired": "날짜는 필수입니다",
|
|
31
|
+
"customers.activities.errors.phoneInvalid": "국가 코드를 포함한 유효한 전화번호를 입력하세요(예: +1 212 555 1234)",
|
|
32
|
+
"customers.activities.errors.phoneRequired": "통화 활동에는 전화번호가 필요합니다",
|
|
33
|
+
"customers.activities.errors.timeRequired": "시간은 필수입니다",
|
|
34
|
+
"customers.activities.filters.clearAll": "필터 지우기",
|
|
35
|
+
"customers.activities.filters.dateRange": "날짜 범위",
|
|
36
|
+
"customers.activities.loadFailed": "활동을 불러오지 못했습니다.",
|
|
37
|
+
"customers.activities.loadMore": "더 보기",
|
|
38
|
+
"customers.activities.overdue": "{count}건 기한 초과",
|
|
39
|
+
"customers.activities.seeAll": "전체 활동 {count}건 보기",
|
|
40
|
+
"customers.activities.seeMatching": "전체 활동 {total}건 중 {visible}건 표시 중",
|
|
41
|
+
"customers.activities.yearSeparator": "{year}",
|
|
42
|
+
"customers.activityComposer.cancel": "취소",
|
|
43
|
+
"customers.activityComposer.dateLabel": "날짜",
|
|
44
|
+
"customers.activityComposer.descriptionLabel": "설명",
|
|
45
|
+
"customers.activityComposer.descriptionPlaceholder": "무슨 일이 있었나요?",
|
|
46
|
+
"customers.activityComposer.error": "활동을 저장하지 못했습니다",
|
|
47
|
+
"customers.activityComposer.hideWeekPreview": "주간 미리보기 숨기기",
|
|
48
|
+
"customers.activityComposer.hint": "Cmd+Enter로 저장",
|
|
49
|
+
"customers.activityComposer.save": "활동 저장",
|
|
50
|
+
"customers.activityComposer.saveActivity": "활동 저장",
|
|
51
|
+
"customers.activityComposer.saved": "{{type}} 저장됨",
|
|
52
|
+
"customers.activityComposer.saving": "저장 중...",
|
|
53
|
+
"customers.activityComposer.schedule": "일정",
|
|
54
|
+
"customers.activityComposer.scheduledLabel": "예정일",
|
|
55
|
+
"customers.activityComposer.showWeekPreview": "주간 미리보기 표시",
|
|
56
|
+
"customers.activityComposer.title": "활동 기록",
|
|
57
|
+
"customers.activityComposer.today": "오늘",
|
|
58
|
+
"customers.activityComposer.types.call": "통화",
|
|
59
|
+
"customers.activityComposer.types.email": "이메일",
|
|
60
|
+
"customers.activityComposer.types.meeting": "미팅",
|
|
61
|
+
"customers.activityComposer.types.note": "메모",
|
|
62
|
+
"customers.activityComposer.types.task": "작업",
|
|
63
|
+
"customers.activityComposer.validation.descriptionRequired": "설명은 필수입니다",
|
|
64
|
+
"customers.activityComposer.validation.typeRequired": "활동 유형을 선택하세요",
|
|
65
|
+
"customers.activityComposer.weekPreviewTitle": "이번 주",
|
|
66
|
+
"customers.activityLog.direction.to": "에게",
|
|
67
|
+
"customers.activityLog.direction.with": "와 함께",
|
|
68
|
+
"customers.activityLog.emptyDescription": "날짜 범위를 넓히거나 필터를 일부 제거해 보세요.",
|
|
69
|
+
"customers.activityLog.error": "활동 이력을 불러오지 못했습니다",
|
|
70
|
+
"customers.activityLog.filters.dateRangeLabel": "날짜 범위",
|
|
71
|
+
"customers.activityLog.filters.sortLabel": "정렬 순서",
|
|
72
|
+
"customers.activityLog.searchPlaceholder": "제목, 메모, 작성자로 검색",
|
|
73
|
+
"customers.activityLog.sort.recent": "정렬: 최신순",
|
|
74
|
+
"customers.activityLog.sort.titleAsc": "정렬: 이름 오름차순(A-Z)",
|
|
75
|
+
"customers.activityLog.sort.titleDesc": "정렬: 이름 내림차순(Z-A)",
|
|
76
|
+
"customers.activityLog.title": "활동 이력",
|
|
77
|
+
"customers.ai.actions.actionItems": "실행 항목",
|
|
78
|
+
"customers.ai.actions.ai": "AI",
|
|
79
|
+
"customers.ai.actions.attendees": "참석자",
|
|
80
|
+
"customers.ai.actions.bulletize": "글머리 기호로 정리",
|
|
81
|
+
"customers.ai.actions.expand": "펼치기",
|
|
82
|
+
"customers.ai.actions.leadScore": "리드 점수",
|
|
83
|
+
"customers.ai.actions.notes": "메모",
|
|
84
|
+
"customers.ai.actions.replay": "다시 재생",
|
|
85
|
+
"customers.ai.actions.reply": "답장",
|
|
86
|
+
"customers.ai.actions.sentiment": "감성 분석",
|
|
87
|
+
"customers.ai.actions.showEmail": "이메일 보기",
|
|
88
|
+
"customers.ai.actions.summarize": "요약",
|
|
89
|
+
"customers.ai.actions.transcription": "녹취록",
|
|
90
|
+
"customers.ai.actions.translate": "번역",
|
|
91
|
+
"customers.ai.comingSoon": "곧 제공 예정",
|
|
92
|
+
"customers.ai.prefix": "AI:",
|
|
93
|
+
"customers.ai_assistant.agents.account.description": "사람, 회사, 거래, 활동을 살펴보세요.",
|
|
94
|
+
"customers.ai_assistant.agents.account.label": "CRM 어시스턴트",
|
|
95
|
+
"customers.ai_assistant.context.matchingDeals": "현재 보기에 거래 {count}건",
|
|
96
|
+
"customers.ai_assistant.context.matchingPeople": "현재 보기에 연락처 {count}건",
|
|
97
|
+
"customers.ai_assistant.context.selectedDeals": "거래 {count}건 선택됨",
|
|
98
|
+
"customers.ai_assistant.context.selectedPeople": "연락처 {count}건 선택됨",
|
|
99
|
+
"customers.ai_assistant.dealDetail.sheet.composerPlaceholder": "이 거래, 단계, 파이프라인에 대해 질문해 보세요...",
|
|
100
|
+
"customers.ai_assistant.dealDetail.sheet.description": "이 거래에 대해 질문하세요. 테넌트별 변경 정책 재정의가 활성화된 경우, 어시스턴트가 단계 변경을 제안할 수 있으며 저장 전에 사용자가 확인하게 됩니다.",
|
|
101
|
+
"customers.ai_assistant.dealDetail.sheet.title": "고객 AI 어시스턴트 — 거래",
|
|
102
|
+
"customers.ai_assistant.dealDetail.trigger.ariaLabel": "이 거래의 AI 어시스턴트 열기",
|
|
103
|
+
"customers.ai_assistant.dealDetail.trigger.label": "AI에게 질문",
|
|
104
|
+
"customers.ai_assistant.dock.subtitle": "고객",
|
|
105
|
+
"customers.ai_assistant.popover.heading": "AI 어시스턴트",
|
|
106
|
+
"customers.ai_assistant.sheet.composerPlaceholder": "연락처, 회사, 거래에 대해 질문해 보세요...",
|
|
107
|
+
"customers.ai_assistant.sheet.description": "읽기 전용 어시스턴트입니다. 이 목록 범위 내의 연락처, 회사, 거래, 활동에 대해 질문하세요.",
|
|
108
|
+
"customers.ai_assistant.sheet.descriptionWithSelection": "{count} 선택된 연락처로 작업합니다. 세부 사항, 거래, 회사 및 활동에 대해 물어보십시오.",
|
|
109
|
+
"customers.ai_assistant.sheet.descriptionWithSelectionCompanies": "{count} 선정 회사와 협력합니다. 거래, 연락처, 활동에 대해 물어보세요.",
|
|
110
|
+
"customers.ai_assistant.sheet.descriptionWithSelectionDeals": "선택한 거래 {count}건을 대상으로 작업 중입니다. 단계, 금액, 종료 예정일에 대해 질문하세요.",
|
|
111
|
+
"customers.ai_assistant.sheet.dock": "옆으로 고정",
|
|
112
|
+
"customers.ai_assistant.sheet.selectionPill": "선택된 {count}건 대상으로 작업 중",
|
|
113
|
+
"customers.ai_assistant.sheet.title": "고객 AI 어시스턴트",
|
|
114
|
+
"customers.ai_assistant.sheet.welcomeDescriptionAll": "고객, 회사, 거래에 대해 무엇이든 물어보세요.",
|
|
115
|
+
"customers.ai_assistant.sheet.welcomeDescriptionAllCompanies": "귀하의 회사, 거래, 활동에 대해 무엇이든 물어보세요.",
|
|
116
|
+
"customers.ai_assistant.sheet.welcomeDescriptionAllDeals": "거래, 파이프라인, 종료 예정일에 대해 질문해 보세요:",
|
|
117
|
+
"customers.ai_assistant.sheet.welcomeDescriptionSelection": "{count}가 선택한 연락처를 탐색할 준비가 되었습니다.",
|
|
118
|
+
"customers.ai_assistant.sheet.welcomeDescriptionSelectionCompanies": "{count} 선택한 회사를 탐색할 준비가 되었습니다.",
|
|
119
|
+
"customers.ai_assistant.sheet.welcomeDescriptionSelectionDeals": "선택한 거래 {count}건을 살펴볼 준비가 되었습니다:",
|
|
120
|
+
"customers.ai_assistant.sheet.welcomeTitle": "CRM 어시스턴트",
|
|
121
|
+
"customers.ai_assistant.suggestions.activityOverview": "활동 개요",
|
|
122
|
+
"customers.ai_assistant.suggestions.atRiskSelectedDeals": "위험에 처한 선택된 거래",
|
|
123
|
+
"customers.ai_assistant.suggestions.companiesActivityOverview": "활동 개요",
|
|
124
|
+
"customers.ai_assistant.suggestions.companiesForSelectedDeals": "선택된 거래의 회사",
|
|
125
|
+
"customers.ai_assistant.suggestions.companiesWithoutContacts": "연락처가 누락된 회사",
|
|
126
|
+
"customers.ai_assistant.suggestions.dealsAtRisk": "지연 위험이 있는 거래",
|
|
127
|
+
"customers.ai_assistant.suggestions.dealsClosingThisMonth": "이번 달 종료 예정 거래",
|
|
128
|
+
"customers.ai_assistant.suggestions.dealsForSelectedCompanies": "선택한 회사의 거래 보기",
|
|
129
|
+
"customers.ai_assistant.suggestions.findCompanies": "관련 회사 찾기",
|
|
130
|
+
"customers.ai_assistant.suggestions.findDeals": "선택한 연락처의 거래 보기",
|
|
131
|
+
"customers.ai_assistant.suggestions.peopleAtSelectedCompanies": "선택한 회사의 사람들을 나열합니다.",
|
|
132
|
+
"customers.ai_assistant.suggestions.recentDeals": "최근 거래 보기",
|
|
133
|
+
"customers.ai_assistant.suggestions.searchCompanies": "회사 검색",
|
|
134
|
+
"customers.ai_assistant.suggestions.searchDeals": "거래 검색",
|
|
135
|
+
"customers.ai_assistant.suggestions.searchPeople": "연락처 검색",
|
|
136
|
+
"customers.ai_assistant.suggestions.summarizeSelected": "선택한 연락처 요약",
|
|
137
|
+
"customers.ai_assistant.suggestions.summarizeSelectedCompanies": "선정된 기업을 요약",
|
|
138
|
+
"customers.ai_assistant.suggestions.summarizeSelectedDeals": "선택한 거래 요약",
|
|
139
|
+
"customers.ai_assistant.suggestions.topCompanies": "상위 회사 목록",
|
|
140
|
+
"customers.ai_assistant.suggestions.topCompaniesByDeals": "거래 가치 기준 상위 기업",
|
|
141
|
+
"customers.ai_assistant.suggestions.topDealsByValue": "금액 기준 상위 거래",
|
|
142
|
+
"customers.ai_assistant.suggestions.totalOpenDealValue": "진행 중인 거래의 총 금액",
|
|
143
|
+
"customers.ai_assistant.trigger.ariaLabel": "연락처용 AI 어시스턴트 열기",
|
|
144
|
+
"customers.ai_assistant.trigger.ariaLabelCompanies": "기업을 위한 개방형 AI 도우미",
|
|
145
|
+
"customers.ai_assistant.trigger.ariaLabelDeals": "거래용 AI 어시스턴트 열기",
|
|
146
|
+
"customers.ai_assistant.trigger.label": "AI",
|
|
147
|
+
"customers.ai_assistant.trigger.moreAgentsAriaLabel": "AI 도우미를 선택하세요",
|
|
148
|
+
"customers.assignableStaff.forbidden": "할당 가능한 직원을 로드할 수 있는 권한이 부족합니다.",
|
|
149
|
+
"customers.assignableStaff.loadError": "팀원을 불러올 수 없습니다. 권한을 확인한 후 다시 시도하세요.",
|
|
150
|
+
"customers.audit.activities.create": "활동 생성",
|
|
151
|
+
"customers.audit.activities.delete": "활동 삭제",
|
|
152
|
+
"customers.audit.activities.update": "활동 수정",
|
|
153
|
+
"customers.audit.addresses.create": "주소 생성",
|
|
154
|
+
"customers.audit.addresses.delete": "주소 삭제",
|
|
155
|
+
"customers.audit.addresses.update": "주소 수정",
|
|
156
|
+
"customers.audit.comments.create": "메모 생성",
|
|
157
|
+
"customers.audit.comments.delete": "메모 삭제",
|
|
158
|
+
"customers.audit.comments.update": "메모 수정",
|
|
159
|
+
"customers.audit.companies.create": "회사 생성",
|
|
160
|
+
"customers.audit.companies.delete": "회사 삭제",
|
|
161
|
+
"customers.audit.companies.update": "회사 수정",
|
|
162
|
+
"customers.audit.deals.create": "거래 생성",
|
|
163
|
+
"customers.audit.deals.delete": "거래 삭제",
|
|
164
|
+
"customers.audit.deals.update": "거래 수정",
|
|
165
|
+
"customers.audit.dictionaryEntries.create": "고객 사전 항목 추가",
|
|
166
|
+
"customers.audit.dictionaryEntries.delete": "고객 사전 항목 삭제",
|
|
167
|
+
"customers.audit.dictionaryEntries.update": "고객 사전 항목 수정",
|
|
168
|
+
"customers.audit.entityRoles.create": "엔터티 역할 생성",
|
|
169
|
+
"customers.audit.entityRoles.delete": "엔터티 역할 삭제",
|
|
170
|
+
"customers.audit.entityRoles.update": "엔터티 역할 수정",
|
|
171
|
+
"customers.audit.interactions.cancel": "상호작용 취소",
|
|
172
|
+
"customers.audit.interactions.complete": "상호작용 완료",
|
|
173
|
+
"customers.audit.interactions.create": "상호작용 생성",
|
|
174
|
+
"customers.audit.interactions.delete": "상호작용 삭제",
|
|
175
|
+
"customers.audit.interactions.update": "상호작용 수정",
|
|
176
|
+
"customers.audit.labels.assign": "라벨 지정",
|
|
177
|
+
"customers.audit.labels.create": "라벨 생성",
|
|
178
|
+
"customers.audit.labels.unassign": "라벨 지정 해제",
|
|
179
|
+
"customers.audit.people.create": "연락처 생성",
|
|
180
|
+
"customers.audit.people.delete": "연락처 삭제",
|
|
181
|
+
"customers.audit.people.update": "연락처 수정",
|
|
182
|
+
"customers.audit.personCompanyLinks.create": "연락처를 회사에 연결",
|
|
183
|
+
"customers.audit.personCompanyLinks.delete": "연락처와 회사 연결 해제",
|
|
184
|
+
"customers.audit.personCompanyLinks.update": "연락처-회사 연결 수정",
|
|
185
|
+
"customers.audit.tags.assign": "태그 지정",
|
|
186
|
+
"customers.audit.tags.create": "태그 생성",
|
|
187
|
+
"customers.audit.tags.delete": "태그 삭제",
|
|
188
|
+
"customers.audit.tags.unassign": "태그 지정 해제",
|
|
189
|
+
"customers.audit.tags.update": "태그 수정",
|
|
190
|
+
"customers.audit.todos.create": "고객 작업 생성",
|
|
191
|
+
"customers.audit.todos.link": "할 일 연결",
|
|
192
|
+
"customers.audit.todos.unlink": "할 일 연결 해제",
|
|
193
|
+
"customers.calendar.actions.newEvent": "새 이벤트",
|
|
194
|
+
"customers.calendar.agenda.eventsCount.few": "이벤트 {count}건",
|
|
195
|
+
"customers.calendar.agenda.eventsCount.many": "이벤트 {count}건",
|
|
196
|
+
"customers.calendar.agenda.eventsCount.one": "이벤트 {count}건",
|
|
197
|
+
"customers.calendar.agenda.eventsCount.other": "이벤트 {count}건",
|
|
198
|
+
"customers.calendar.agenda.today": "오늘",
|
|
199
|
+
"customers.calendar.agenda.tomorrow": "내일",
|
|
200
|
+
"customers.calendar.cards.allDay": "종일",
|
|
201
|
+
"customers.calendar.cards.cancelError": "이벤트를 취소하지 못했습니다",
|
|
202
|
+
"customers.calendar.cards.cancelSuccess": "이벤트가 취소되었습니다",
|
|
203
|
+
"customers.calendar.cards.cancelled": "취소됨",
|
|
204
|
+
"customers.calendar.cards.conflictedCount": "{count}건 충돌",
|
|
205
|
+
"customers.calendar.cards.dayLater": "1일 후",
|
|
206
|
+
"customers.calendar.cards.daysLater": "{days}일 후",
|
|
207
|
+
"customers.calendar.cards.join": "미팅 참가",
|
|
208
|
+
"customers.calendar.cards.menu.cancel": "취소",
|
|
209
|
+
"customers.calendar.cards.menu.edit": "수정",
|
|
210
|
+
"customers.calendar.cards.menu.label": "이벤트 작업",
|
|
211
|
+
"customers.calendar.cards.menu.open": "열기",
|
|
212
|
+
"customers.calendar.cards.seeConflict": "충돌 보기",
|
|
213
|
+
"customers.calendar.cards.today": "오늘",
|
|
214
|
+
"customers.calendar.category.event": "이벤트",
|
|
215
|
+
"customers.calendar.category.meeting": "미팅",
|
|
216
|
+
"customers.calendar.category.other": "기타",
|
|
217
|
+
"customers.calendar.category.task": "작업",
|
|
218
|
+
"customers.calendar.day.fri": "금",
|
|
219
|
+
"customers.calendar.day.mon": "월",
|
|
220
|
+
"customers.calendar.day.sat": "토",
|
|
221
|
+
"customers.calendar.day.sun": "일",
|
|
222
|
+
"customers.calendar.day.thu": "목",
|
|
223
|
+
"customers.calendar.day.tue": "화",
|
|
224
|
+
"customers.calendar.day.wed": "수",
|
|
225
|
+
"customers.calendar.editor.addPeoplePlaceholder": "직원 또는 고객 추가…",
|
|
226
|
+
"customers.calendar.editor.addRecipientPlaceholder": "받는 사람 추가…",
|
|
227
|
+
"customers.calendar.editor.allDay": "종일",
|
|
228
|
+
"customers.calendar.editor.assignee": "담당자",
|
|
229
|
+
"customers.calendar.editor.assigneePlaceholder": "팀원에게 배정…",
|
|
230
|
+
"customers.calendar.editor.attendees": "참석자",
|
|
231
|
+
"customers.calendar.editor.cancel": "취소",
|
|
232
|
+
"customers.calendar.editor.category": "카테고리",
|
|
233
|
+
"customers.calendar.editor.close": "닫기",
|
|
234
|
+
"customers.calendar.editor.conflictTitle": "일정 충돌",
|
|
235
|
+
"customers.calendar.editor.conflictWarning": "다음과 겹칩니다: {items}",
|
|
236
|
+
"customers.calendar.editor.customerBadge": "고객",
|
|
237
|
+
"customers.calendar.editor.dates.due": "마감일",
|
|
238
|
+
"customers.calendar.editor.dates.ends": "종료",
|
|
239
|
+
"customers.calendar.editor.dates.logged": "기록됨",
|
|
240
|
+
"customers.calendar.editor.dates.sent": "발송됨",
|
|
241
|
+
"customers.calendar.editor.dates.starts": "시작",
|
|
242
|
+
"customers.calendar.editor.dates.when": "일시",
|
|
243
|
+
"customers.calendar.editor.dealBadge": "{name} · 거래",
|
|
244
|
+
"customers.calendar.editor.dealBadgeSuffix": "거래",
|
|
245
|
+
"customers.calendar.editor.dealNone": "연결된 거래 없음",
|
|
246
|
+
"customers.calendar.editor.dealsSection": "거래",
|
|
247
|
+
"customers.calendar.editor.description": "설명",
|
|
248
|
+
"customers.calendar.editor.descriptionPlaceholder": "세부 정보 추가…",
|
|
249
|
+
"customers.calendar.editor.error": "이벤트를 저장하지 못했습니다",
|
|
250
|
+
"customers.calendar.editor.location": "장소",
|
|
251
|
+
"customers.calendar.editor.locationPlaceholder": "장소 또는 링크 추가…",
|
|
252
|
+
"customers.calendar.editor.multiDayHint": "여러 날 이벤트 · {count}일",
|
|
253
|
+
"customers.calendar.editor.noResults": "결과 없음",
|
|
254
|
+
"customers.calendar.editor.participants": "참가자",
|
|
255
|
+
"customers.calendar.editor.phoneLink": "전화 / 링크",
|
|
256
|
+
"customers.calendar.editor.phoneLinkPlaceholder": "전화번호 또는 링크 추가…",
|
|
257
|
+
"customers.calendar.editor.phoneSuggestion.add": "추가하다",
|
|
258
|
+
"customers.calendar.editor.phoneSuggestion.use": "{name}의 번호를 사용하세요",
|
|
259
|
+
"customers.calendar.editor.priority.high": "높음",
|
|
260
|
+
"customers.calendar.editor.priority.label": "우선순위",
|
|
261
|
+
"customers.calendar.editor.priority.low": "낮음",
|
|
262
|
+
"customers.calendar.editor.priority.medium": "보통",
|
|
263
|
+
"customers.calendar.editor.relatedTo": "관련 대상",
|
|
264
|
+
"customers.calendar.editor.relatedToPlaceholder": "연락처 또는 회사 검색…",
|
|
265
|
+
"customers.calendar.editor.removePerson": "{name} 제거",
|
|
266
|
+
"customers.calendar.editor.removeRelated": "관련 레코드 지우기",
|
|
267
|
+
"customers.calendar.editor.removeResource": "{name} 제거",
|
|
268
|
+
"customers.calendar.editor.repeat.after": "이후",
|
|
269
|
+
"customers.calendar.editor.repeat.days.fri": "금",
|
|
270
|
+
"customers.calendar.editor.repeat.days.mon": "월",
|
|
271
|
+
"customers.calendar.editor.repeat.days.sat": "토",
|
|
272
|
+
"customers.calendar.editor.repeat.days.sun": "일",
|
|
273
|
+
"customers.calendar.editor.repeat.days.thu": "목",
|
|
274
|
+
"customers.calendar.editor.repeat.days.tue": "화",
|
|
275
|
+
"customers.calendar.editor.repeat.days.wed": "수",
|
|
276
|
+
"customers.calendar.editor.repeat.ends": "종료",
|
|
277
|
+
"customers.calendar.editor.repeat.freq.daily": "매일",
|
|
278
|
+
"customers.calendar.editor.repeat.freq.none": "반복 안 함",
|
|
279
|
+
"customers.calendar.editor.repeat.freq.weekly": "매주",
|
|
280
|
+
"customers.calendar.editor.repeat.label": "반복",
|
|
281
|
+
"customers.calendar.editor.repeat.never": "안 함",
|
|
282
|
+
"customers.calendar.editor.repeat.onDate": "특정 날짜",
|
|
283
|
+
"customers.calendar.editor.repeat.times": "회",
|
|
284
|
+
"customers.calendar.editor.resourceTypes.all": "모든 유형",
|
|
285
|
+
"customers.calendar.editor.resourceTypes.filterLabel": "리소스 유형",
|
|
286
|
+
"customers.calendar.editor.resourceTypes.moreHint": "{total} 중 {shown} 표시 — 범위를 좁히려면 계속 입력하세요.",
|
|
287
|
+
"customers.calendar.editor.resourceTypes.searchPlaceholder": "검색 유형…",
|
|
288
|
+
"customers.calendar.editor.resources": "자원",
|
|
289
|
+
"customers.calendar.editor.resourcesPlaceholder": "리소스 추가…",
|
|
290
|
+
"customers.calendar.editor.save": "이벤트 저장",
|
|
291
|
+
"customers.calendar.editor.saved": "이벤트가 저장되었습니다",
|
|
292
|
+
"customers.calendar.editor.saving": "저장 중…",
|
|
293
|
+
"customers.calendar.editor.searching": "검색 중…",
|
|
294
|
+
"customers.calendar.editor.title.create": "새 이벤트",
|
|
295
|
+
"customers.calendar.editor.title.edit": "이벤트 수정",
|
|
296
|
+
"customers.calendar.editor.titleLabel.email": "제목",
|
|
297
|
+
"customers.calendar.editor.titleLabel.generic": "제목",
|
|
298
|
+
"customers.calendar.editor.titleLabel.note": "메모",
|
|
299
|
+
"customers.calendar.editor.titlePlaceholder": "제목 추가…",
|
|
300
|
+
"customers.calendar.editor.to": "받는 사람",
|
|
301
|
+
"customers.calendar.editor.typeSwitcher": "이벤트 유형",
|
|
302
|
+
"customers.calendar.editor.types.call": "통화",
|
|
303
|
+
"customers.calendar.editor.types.email": "이메일",
|
|
304
|
+
"customers.calendar.editor.types.event": "이벤트",
|
|
305
|
+
"customers.calendar.editor.types.meeting": "미팅",
|
|
306
|
+
"customers.calendar.editor.types.note": "메모",
|
|
307
|
+
"customers.calendar.editor.types.task": "작업",
|
|
308
|
+
"customers.calendar.editor.validation.assigneeRequired": "이 작업을 팀 구성원에게 할당",
|
|
309
|
+
"customers.calendar.editor.validation.endsBeforeStarts": "종료 시각은 시작 시각 이후여야 합니다",
|
|
310
|
+
"customers.calendar.editor.validation.relatedToRequired": "이 이벤트에 연결할 연락처 또는 회사를 선택하세요",
|
|
311
|
+
"customers.calendar.editor.validation.titleRequired": "제목은 필수입니다",
|
|
312
|
+
"customers.calendar.empty.action": "새 이벤트",
|
|
313
|
+
"customers.calendar.empty.agenda": "이 기간에 예정된 일정이 없습니다",
|
|
314
|
+
"customers.calendar.empty.day": "이 날 예정된 일정이 없습니다",
|
|
315
|
+
"customers.calendar.empty.description": "미팅, 이벤트 또는 작업을 계획해 이번 주 일정을 채워보세요.",
|
|
316
|
+
"customers.calendar.empty.month": "이번 달 예정된 일정이 없습니다",
|
|
317
|
+
"customers.calendar.empty.week": "이번 주 예정된 일정이 없습니다",
|
|
318
|
+
"customers.calendar.errors.loadFailed": "캘린더 이벤트를 불러오지 못했습니다.",
|
|
319
|
+
"customers.calendar.errors.retry": "다시 시도",
|
|
320
|
+
"customers.calendar.footer.timezone": "표준 시간대: {timezone}",
|
|
321
|
+
"customers.calendar.grid.allDay": "종일",
|
|
322
|
+
"customers.calendar.grid.conflictCount": "충돌 1건",
|
|
323
|
+
"customers.calendar.grid.conflictsCount": "충돌 {count}건",
|
|
324
|
+
"customers.calendar.grid.more": "+{count}개 더보기",
|
|
325
|
+
"customers.calendar.grid.nextDay": "다음 날",
|
|
326
|
+
"customers.calendar.grid.nonWorking": "휴무일",
|
|
327
|
+
"customers.calendar.grid.onPlatform": "{platform}에서",
|
|
328
|
+
"customers.calendar.grid.previousDay": "이전 날",
|
|
329
|
+
"customers.calendar.grid.untitled": "제목 없음",
|
|
330
|
+
"customers.calendar.grid.venue": "장소: {name}",
|
|
331
|
+
"customers.calendar.header.titleAgenda": "예정된 일정",
|
|
332
|
+
"customers.calendar.header.titleDay": "{date}",
|
|
333
|
+
"customers.calendar.header.titleMonth": "{date}",
|
|
334
|
+
"customers.calendar.loading": "캘린더를 불러오는 중…",
|
|
335
|
+
"customers.calendar.locale": "ko",
|
|
336
|
+
"customers.calendar.nav.title": "캘린더",
|
|
337
|
+
"customers.calendar.nextWeek": "다음 주",
|
|
338
|
+
"customers.calendar.notice.truncated": "이 범위의 처음 {count}개 항목만 표시합니다.",
|
|
339
|
+
"customers.calendar.peek.attendee": "참석자 1명",
|
|
340
|
+
"customers.calendar.peek.attendees": "참석자 {count}명",
|
|
341
|
+
"customers.calendar.peek.edit": "수정",
|
|
342
|
+
"customers.calendar.peek.editForbidden": "이벤트를 수정할 권한이 없습니다",
|
|
343
|
+
"customers.calendar.peek.join": "참가",
|
|
344
|
+
"customers.calendar.platform.meet": "Meet",
|
|
345
|
+
"customers.calendar.platform.slack": "Slack",
|
|
346
|
+
"customers.calendar.platform.teams": "Teams",
|
|
347
|
+
"customers.calendar.platform.zoom": "Zoom",
|
|
348
|
+
"customers.calendar.platformFull.meet": "Google Meet",
|
|
349
|
+
"customers.calendar.platformFull.slack": "Slack",
|
|
350
|
+
"customers.calendar.platformFull.teams": "Microsoft Teams",
|
|
351
|
+
"customers.calendar.platformFull.zoom": "Zoom",
|
|
352
|
+
"customers.calendar.previousWeek": "이전 주",
|
|
353
|
+
"customers.calendar.settings.activityTypes": "활동 유형",
|
|
354
|
+
"customers.calendar.settings.activityTypesHint": "이벤트를 생성할 때 캘린더에 표시되는 활동 유형입니다. 워크스페이스 사전에서 초기화됩니다.",
|
|
355
|
+
"customers.calendar.settings.addCategory": "카테고리 추가…",
|
|
356
|
+
"customers.calendar.settings.addType": "유형 추가…",
|
|
357
|
+
"customers.calendar.settings.aiSummaries": "AI 요약 및 빠른 작업",
|
|
358
|
+
"customers.calendar.settings.cancel": "취소",
|
|
359
|
+
"customers.calendar.settings.close": "닫기",
|
|
360
|
+
"customers.calendar.settings.conflictScope": "충돌 범위",
|
|
361
|
+
"customers.calendar.settings.conflictScopeAll": "전체 조직 미팅",
|
|
362
|
+
"customers.calendar.settings.conflictScopeHint": "캘린더가 충돌로 표시할 대상의 겹침 범위를 선택하세요.",
|
|
363
|
+
"customers.calendar.settings.conflictScopeMine": "내 미팅만",
|
|
364
|
+
"customers.calendar.settings.conflictWarnings": "충돌 경고",
|
|
365
|
+
"customers.calendar.settings.eventCategories": "이벤트 카테고리",
|
|
366
|
+
"customers.calendar.settings.eventCategoriesHint": "직접 지정하는 그룹 라벨입니다(예: 팀 미팅, 영업 통화). 이벤트 생성 시 선택할 수 있습니다.",
|
|
367
|
+
"customers.calendar.settings.max": "(최대 {count}개)",
|
|
368
|
+
"customers.calendar.settings.removeTag": "{tag} 제거",
|
|
369
|
+
"customers.calendar.settings.save": "변경사항 저장",
|
|
370
|
+
"customers.calendar.settings.saved": "캘린더 설정이 저장되었습니다",
|
|
371
|
+
"customers.calendar.settings.showCrmActivities": "캘린더에 CRM 활동 표시",
|
|
372
|
+
"customers.calendar.settings.showWeekends": "주말 표시",
|
|
373
|
+
"customers.calendar.settings.subtitle": "캘린더 모듈을 사용자 지정하세요.",
|
|
374
|
+
"customers.calendar.settings.title": "사용자 지정",
|
|
375
|
+
"customers.calendar.shortcuts.agenda": "일정 목록",
|
|
376
|
+
"customers.calendar.shortcuts.dayView": "일간 보기",
|
|
377
|
+
"customers.calendar.shortcuts.description": "다음 단축키로 캘린더를 더 빠르게 탐색하세요.",
|
|
378
|
+
"customers.calendar.shortcuts.help": "단축키",
|
|
379
|
+
"customers.calendar.shortcuts.month": "월간",
|
|
380
|
+
"customers.calendar.shortcuts.newEvent": "새 이벤트",
|
|
381
|
+
"customers.calendar.shortcuts.search": "검색",
|
|
382
|
+
"customers.calendar.shortcuts.title": "키보드 단축키",
|
|
383
|
+
"customers.calendar.shortcuts.today": "오늘",
|
|
384
|
+
"customers.calendar.shortcuts.week": "주간",
|
|
385
|
+
"customers.calendar.tabs.all": "전체 일정",
|
|
386
|
+
"customers.calendar.tabs.events": "이벤트",
|
|
387
|
+
"customers.calendar.tabs.meetings": "미팅",
|
|
388
|
+
"customers.calendar.thisWeek": "이번 주",
|
|
389
|
+
"customers.calendar.tomorrow": "내일",
|
|
390
|
+
"customers.calendar.toolbar.filters.allOwners": "전체 담당자",
|
|
391
|
+
"customers.calendar.toolbar.filters.allStatuses": "전체 상태",
|
|
392
|
+
"customers.calendar.toolbar.filters.apply": "적용",
|
|
393
|
+
"customers.calendar.toolbar.filters.clear": "지우기",
|
|
394
|
+
"customers.calendar.toolbar.filters.label": "필터",
|
|
395
|
+
"customers.calendar.toolbar.filters.owner": "담당자",
|
|
396
|
+
"customers.calendar.toolbar.filters.status": "상태",
|
|
397
|
+
"customers.calendar.toolbar.filters.statuses.canceled": "취소됨",
|
|
398
|
+
"customers.calendar.toolbar.filters.statuses.done": "완료",
|
|
399
|
+
"customers.calendar.toolbar.filters.statuses.planned": "예정",
|
|
400
|
+
"customers.calendar.toolbar.filters.types": "유형",
|
|
401
|
+
"customers.calendar.toolbar.presetLabel": "날짜 범위 프리셋",
|
|
402
|
+
"customers.calendar.toolbar.presetPlaceholder": "사용자 지정 범위",
|
|
403
|
+
"customers.calendar.toolbar.presets.next30": "향후 30일",
|
|
404
|
+
"customers.calendar.toolbar.presets.next7": "향후 7일",
|
|
405
|
+
"customers.calendar.toolbar.presets.thisMonth": "이번 달",
|
|
406
|
+
"customers.calendar.toolbar.presets.thisWeek": "이번 주",
|
|
407
|
+
"customers.calendar.toolbar.searchPlaceholder": "이벤트 검색…",
|
|
408
|
+
"customers.calendar.toolbar.settings": "캘린더 설정",
|
|
409
|
+
"customers.calendar.toolbar.today": "오늘",
|
|
410
|
+
"customers.calendar.views.agenda": "일정 목록",
|
|
411
|
+
"customers.calendar.views.day": "일간",
|
|
412
|
+
"customers.calendar.views.label": "캘린더 보기",
|
|
413
|
+
"customers.calendar.views.month": "월간",
|
|
414
|
+
"customers.calendar.views.week": "주간",
|
|
415
|
+
"customers.changelog.actions.assign": "지정",
|
|
416
|
+
"customers.changelog.actions.create": "생성",
|
|
417
|
+
"customers.changelog.actions.delete": "삭제",
|
|
418
|
+
"customers.changelog.actions.edit": "수정",
|
|
419
|
+
"customers.changelog.actions.system": "시스템",
|
|
420
|
+
"customers.changelog.allActions": "전체 작업",
|
|
421
|
+
"customers.changelog.allFields": "전체 필드",
|
|
422
|
+
"customers.changelog.allUsers": "전체 사용자",
|
|
423
|
+
"customers.changelog.col.action": "작업",
|
|
424
|
+
"customers.changelog.col.change": "변경 내용",
|
|
425
|
+
"customers.changelog.col.source": "출처",
|
|
426
|
+
"customers.changelog.col.user": "사용자",
|
|
427
|
+
"customers.changelog.col.when": "일시",
|
|
428
|
+
"customers.changelog.empty": "이 기간에 기록된 변경 사항이 없습니다.",
|
|
429
|
+
"customers.changelog.emptyTitle": "이 기간에 변경 사항 없음",
|
|
430
|
+
"customers.changelog.error": "변경 이력을 불러오지 못했습니다",
|
|
431
|
+
"customers.changelog.exportCsv": "CSV로 내보내기",
|
|
432
|
+
"customers.changelog.exportError": "변경 이력을 내보내지 못했습니다",
|
|
433
|
+
"customers.changelog.filter": "필터",
|
|
434
|
+
"customers.changelog.filters.empty": "일치하는 옵션이 없습니다",
|
|
435
|
+
"customers.changelog.filters.search": "검색",
|
|
436
|
+
"customers.changelog.filters.selectedCount": "{{count}}개 선택됨",
|
|
437
|
+
"customers.changelog.groupLabel.today": "오늘",
|
|
438
|
+
"customers.changelog.groupLabel.yesterday": "어제",
|
|
439
|
+
"customers.changelog.kpi.active": "활성",
|
|
440
|
+
"customers.changelog.kpi.criticalDescription": "상태, 단계, 역할",
|
|
441
|
+
"customers.changelog.kpi.criticalFields": "중요 필드",
|
|
442
|
+
"customers.changelog.kpi.period": "최근 {{days}}일",
|
|
443
|
+
"customers.changelog.kpi.today": "오늘",
|
|
444
|
+
"customers.changelog.kpi.totalChanges": "전체 변경 사항",
|
|
445
|
+
"customers.changelog.kpi.users": "사용자",
|
|
446
|
+
"customers.changelog.kpi.vsYesterday": "어제 대비",
|
|
447
|
+
"customers.changelog.last30days": "최근 30일",
|
|
448
|
+
"customers.changelog.last7days": "최근 7일",
|
|
449
|
+
"customers.changelog.last90days": "최근 90일",
|
|
450
|
+
"customers.changelog.loading": "변경 사항을 불러오는 중...",
|
|
451
|
+
"customers.changelog.newer": "최신",
|
|
452
|
+
"customers.changelog.next": "다음",
|
|
453
|
+
"customers.changelog.older": "이전",
|
|
454
|
+
"customers.changelog.previous": "이전",
|
|
455
|
+
"customers.changelog.showing": "전체 {{total}}건 중 {{shown}}건 표시",
|
|
456
|
+
"customers.changelog.showingWithPeriod": "전체 {{total}}건 중 {{shown}}건 표시 · 최근 {{days}}일",
|
|
457
|
+
"customers.changelog.source.api": "API",
|
|
458
|
+
"customers.changelog.source.system": "시스템",
|
|
459
|
+
"customers.changelog.source.ui": "UI",
|
|
460
|
+
"customers.changelog.title": "변경 이력",
|
|
461
|
+
"customers.changelog.user.system": "시스템",
|
|
462
|
+
"customers.companies.create.title": "회사 등록",
|
|
463
|
+
"customers.companies.dashboard.activeDeal": "진행 중인 거래",
|
|
464
|
+
"customers.companies.dashboard.created": "생성일",
|
|
465
|
+
"customers.companies.dashboard.details": "상세 정보",
|
|
466
|
+
"customers.companies.dashboard.dueOn": "마감: {{date}}",
|
|
467
|
+
"customers.companies.dashboard.hiddenTiles": "{{count}}개 타일 숨김",
|
|
468
|
+
"customers.companies.dashboard.hideTile": "타일 숨기기",
|
|
469
|
+
"customers.companies.dashboard.kpi.activeDeals": "진행 중인 거래",
|
|
470
|
+
"customers.companies.dashboard.kpi.activities": "활동",
|
|
471
|
+
"customers.companies.dashboard.kpi.clientSince": "고객 등록일",
|
|
472
|
+
"customers.companies.dashboard.kpi.completedDeals": "완료된 거래",
|
|
473
|
+
"customers.companies.dashboard.kpi.last12months": "최근 12개월",
|
|
474
|
+
"customers.companies.dashboard.kpi.ltv": "고객 가치(LTV)",
|
|
475
|
+
"customers.companies.dashboard.kpi.noInteractions": "아직 상호작용이 없습니다",
|
|
476
|
+
"customers.companies.dashboard.kpi.noWonDeals": "성사된 거래 없음",
|
|
477
|
+
"customers.companies.dashboard.kpi.wonDeals": "총 성사된 거래",
|
|
478
|
+
"customers.companies.dashboard.kpi.year": "년",
|
|
479
|
+
"customers.companies.dashboard.kpi.years": "년",
|
|
480
|
+
"customers.companies.dashboard.last7days": "최근 7일",
|
|
481
|
+
"customers.companies.dashboard.newTask": "새 작업",
|
|
482
|
+
"customers.companies.dashboard.noActivity": "최근 활동이 없습니다",
|
|
483
|
+
"customers.companies.dashboard.noDeals": "진행 중인 거래가 없습니다",
|
|
484
|
+
"customers.companies.dashboard.noMeetings": "예정된 미팅이 없습니다",
|
|
485
|
+
"customers.companies.dashboard.noTasks": "미완료 작업이 없습니다",
|
|
486
|
+
"customers.companies.dashboard.openTasks": "미완료 작업",
|
|
487
|
+
"customers.companies.dashboard.overdueBy": "{{days}}일 지연됨",
|
|
488
|
+
"customers.companies.dashboard.potentialValue": "예상 가치",
|
|
489
|
+
"customers.companies.dashboard.recentActivity": "최근 활동",
|
|
490
|
+
"customers.companies.dashboard.relationshipHealth": "관계 상태",
|
|
491
|
+
"customers.companies.dashboard.seeAll": "전체 보기",
|
|
492
|
+
"customers.companies.dashboard.seeAllActivity": "전체 활동 {{count}}건 보기",
|
|
493
|
+
"customers.companies.dashboard.showAll": "모두 보기",
|
|
494
|
+
"customers.companies.dashboard.upcomingMeetings": "예정된 미팅",
|
|
495
|
+
"customers.companies.delete.blocked": "회사를 삭제할 수 없습니다: {{blockers}}. 먼저 연결을 해제하거나 다른 항목으로 재할당해 주세요.",
|
|
496
|
+
"customers.companies.delete.blockers.deals": "연결된 거래 ({{count}}건)",
|
|
497
|
+
"customers.companies.delete.blockers.directPeople": "이 회사를 주 소속 회사로 지정한 연락처 ({{count}}명)",
|
|
498
|
+
"customers.companies.delete.blockers.persons": "연결된 연락처 ({{count}}명)",
|
|
499
|
+
"customers.companies.detail.actions.addDeal": "거래 추가",
|
|
500
|
+
"customers.companies.detail.actions.backToList": "회사 목록으로 돌아가기",
|
|
501
|
+
"customers.companies.detail.actions.cancel": "취소",
|
|
502
|
+
"customers.companies.detail.actions.delete": "회사 삭제",
|
|
503
|
+
"customers.companies.detail.actions.editEmail": "이메일 수정",
|
|
504
|
+
"customers.companies.detail.actions.editPhone": "전화번호 수정",
|
|
505
|
+
"customers.companies.detail.actions.history": "이력",
|
|
506
|
+
"customers.companies.detail.actions.manageTags": "태그 수정",
|
|
507
|
+
"customers.companies.detail.actions.more": "더 보기",
|
|
508
|
+
"customers.companies.detail.actions.save": "저장",
|
|
509
|
+
"customers.companies.detail.actions.sendMessage": "메시지 보내기",
|
|
510
|
+
"customers.companies.detail.activeDeal": "진행 중인 거래",
|
|
511
|
+
"customers.companies.detail.activities.add": "활동 기록",
|
|
512
|
+
"customers.companies.detail.activities.loading": "활동 내역을 불러오는 중…",
|
|
513
|
+
"customers.companies.detail.addresses.add": "주소 추가",
|
|
514
|
+
"customers.companies.detail.addresses.error": "주소 저장에 실패했습니다.",
|
|
515
|
+
"customers.companies.detail.billing.address": "주소",
|
|
516
|
+
"customers.companies.detail.billing.currency": "통화",
|
|
517
|
+
"customers.companies.detail.billing.name": "이름",
|
|
518
|
+
"customers.companies.detail.billing.paymentTerms": "결제 조건",
|
|
519
|
+
"customers.companies.detail.copied": "클립보드에 복사되었습니다",
|
|
520
|
+
"customers.companies.detail.copy": "복사",
|
|
521
|
+
"customers.companies.detail.createdAt": "생성일: {{date}}",
|
|
522
|
+
"customers.companies.detail.currency.add": "통화 추가",
|
|
523
|
+
"customers.companies.detail.currency.addPrompt": "통화 코드를 입력해 주세요.",
|
|
524
|
+
"customers.companies.detail.currency.cancel": "취소",
|
|
525
|
+
"customers.companies.detail.currency.clear": "지우기",
|
|
526
|
+
"customers.companies.detail.currency.createError": "통화 추가에 실패했습니다.",
|
|
527
|
+
"customers.companies.detail.currency.dialogTitle": "통화 추가",
|
|
528
|
+
"customers.companies.detail.currency.emptyError": "통화 코드는 필수입니다.",
|
|
529
|
+
"customers.companies.detail.currency.errorLoad": "통화 사전을 불러오지 못했습니다.",
|
|
530
|
+
"customers.companies.detail.currency.errorRequired": "통화 코드는 필수입니다.",
|
|
531
|
+
"customers.companies.detail.currency.errorSave": "통화 옵션 저장에 실패했습니다.",
|
|
532
|
+
"customers.companies.detail.currency.fetchError": "통화 목록을 불러오지 못했습니다.",
|
|
533
|
+
"customers.companies.detail.currency.invalidAmount": "유효한 금액을 입력해 주세요.",
|
|
534
|
+
"customers.companies.detail.currency.labelLabel": "라벨",
|
|
535
|
+
"customers.companies.detail.currency.labelPlaceholder": "UI에 표시될 이름",
|
|
536
|
+
"customers.companies.detail.currency.loading": "통화 목록을 불러오는 중…",
|
|
537
|
+
"customers.companies.detail.currency.manage": "통화 사전 관리",
|
|
538
|
+
"customers.companies.detail.currency.manageTitle": "통화 관리",
|
|
539
|
+
"customers.companies.detail.currency.placeholder": "통화 선택…",
|
|
540
|
+
"customers.companies.detail.currency.save": "저장",
|
|
541
|
+
"customers.companies.detail.currency.saveShortcutHint": "Enter 키를 눌러 저장하세요",
|
|
542
|
+
"customers.companies.detail.currency.success": "통화가 추가되었습니다.",
|
|
543
|
+
"customers.companies.detail.currency.valueLabel": "통화 코드",
|
|
544
|
+
"customers.companies.detail.currency.valuePlaceholder": "예: USD",
|
|
545
|
+
"customers.companies.detail.deals.loading": "거래를 불러오는 중…",
|
|
546
|
+
"customers.companies.detail.deleteConfirmDescription": "이 작업은 되돌릴 수 없습니다.",
|
|
547
|
+
"customers.companies.detail.deleteConfirmTitle": "회사를 삭제하시겠습니까?",
|
|
548
|
+
"customers.companies.detail.deleteError": "회사 삭제에 실패했습니다.",
|
|
549
|
+
"customers.companies.detail.employees": "직원 수",
|
|
550
|
+
"customers.companies.detail.empty.addresses": "등록된 주소가 없습니다.",
|
|
551
|
+
"customers.companies.detail.empty.comments": "아직 메모가 없습니다.",
|
|
552
|
+
"customers.companies.detail.empty.deals": "이 회사에 연결된 거래가 없습니다.",
|
|
553
|
+
"customers.companies.detail.empty.todos": "이 회사에 연결된 작업이 없습니다.",
|
|
554
|
+
"customers.companies.detail.emptyState.activities.action": "활동 기록",
|
|
555
|
+
"customers.companies.detail.emptyState.activities.title": "아직 기록된 활동이 없습니다",
|
|
556
|
+
"customers.companies.detail.emptyState.addresses.action": "주소 추가",
|
|
557
|
+
"customers.companies.detail.emptyState.addresses.title": "아직 등록된 주소가 없습니다",
|
|
558
|
+
"customers.companies.detail.emptyState.deals.action": "거래 생성",
|
|
559
|
+
"customers.companies.detail.emptyState.deals.title": "아직 거래가 없습니다",
|
|
560
|
+
"customers.companies.detail.emptyState.notes.action": "메모 작성",
|
|
561
|
+
"customers.companies.detail.emptyState.notes.title": "모두가 최신 정보를 공유하도록 하세요",
|
|
562
|
+
"customers.companies.detail.emptyState.people.action": "연락처 생성",
|
|
563
|
+
"customers.companies.detail.emptyState.people.title": "담당 팀을 구성해 보세요",
|
|
564
|
+
"customers.companies.detail.emptyState.tasks.action": "작업 생성",
|
|
565
|
+
"customers.companies.detail.emptyState.tasks.title": "다음에 할 일을 계획하세요",
|
|
566
|
+
"customers.companies.detail.entityType": "회사",
|
|
567
|
+
"customers.companies.detail.error.load": "회사 정보를 불러오지 못했습니다.",
|
|
568
|
+
"customers.companies.detail.error.notFound": "회사를 찾을 수 없습니다.",
|
|
569
|
+
"customers.companies.detail.fields.annualRevenue": "연 매출",
|
|
570
|
+
"customers.companies.detail.fields.annualRevenuePlaceholder": "금액을 입력하세요",
|
|
571
|
+
"customers.companies.detail.fields.brandName": "브랜드명",
|
|
572
|
+
"customers.companies.detail.fields.brandNamePlaceholder": "브랜드명을 추가하세요",
|
|
573
|
+
"customers.companies.detail.fields.description": "설명",
|
|
574
|
+
"customers.companies.detail.fields.descriptionPlaceholder": "회사를 설명해 주세요",
|
|
575
|
+
"customers.companies.detail.fields.displayName": "표시 이름",
|
|
576
|
+
"customers.companies.detail.fields.domain": "도메인",
|
|
577
|
+
"customers.companies.detail.fields.domainHelp": "example.com과 같은 순수 도메인 형식을 사용하세요.",
|
|
578
|
+
"customers.companies.detail.fields.domainPlaceholder": "example.com",
|
|
579
|
+
"customers.companies.detail.fields.industry": "업종",
|
|
580
|
+
"customers.companies.detail.fields.legalName": "법인명",
|
|
581
|
+
"customers.companies.detail.fields.legalNamePlaceholder": "법인명을 추가하세요",
|
|
582
|
+
"customers.companies.detail.fields.lifecycleStage": "라이프사이클 단계",
|
|
583
|
+
"customers.companies.detail.fields.sizeBucket": "회사 규모",
|
|
584
|
+
"customers.companies.detail.fields.sizeBucketPlaceholder": "규모 구간을 추가하세요",
|
|
585
|
+
"customers.companies.detail.fields.source": "출처",
|
|
586
|
+
"customers.companies.detail.fields.website": "웹사이트",
|
|
587
|
+
"customers.companies.detail.fields.websiteHelp": "https://example.com과 같은 전체 URL을 사용하세요.",
|
|
588
|
+
"customers.companies.detail.fields.websitePlaceholder": "https://example.com",
|
|
589
|
+
"customers.companies.detail.files.subtitle": "이 회사와 연결된 파일을 업로드하고 관리하세요.",
|
|
590
|
+
"customers.companies.detail.header.accountManager": "담당자",
|
|
591
|
+
"customers.companies.detail.header.employees": "직원 {count}명",
|
|
592
|
+
"customers.companies.detail.header.more": "더보기",
|
|
593
|
+
"customers.companies.detail.header.notAssigned": "미지정",
|
|
594
|
+
"customers.companies.detail.health.atRisk": "위험",
|
|
595
|
+
"customers.companies.detail.health.healthy": "양호",
|
|
596
|
+
"customers.companies.detail.health.lastContact": "마지막 연락",
|
|
597
|
+
"customers.companies.detail.health.title": "관계 상태",
|
|
598
|
+
"customers.companies.detail.health.watchful": "주의 필요",
|
|
599
|
+
"customers.companies.detail.highlights.annualRevenue": "연 매출",
|
|
600
|
+
"customers.companies.detail.highlights.annualRevenueCurrency": "통화",
|
|
601
|
+
"customers.companies.detail.highlights.annualRevenueCurrencyPlaceholder": "USD",
|
|
602
|
+
"customers.companies.detail.highlights.annualRevenuePlaceholder": "금액을 입력하세요",
|
|
603
|
+
"customers.companies.detail.highlights.brandName": "브랜드명",
|
|
604
|
+
"customers.companies.detail.highlights.brandNamePlaceholder": "브랜드명을 추가하세요",
|
|
605
|
+
"customers.companies.detail.highlights.industry": "업종",
|
|
606
|
+
"customers.companies.detail.highlights.industryPlaceholder": "업종을 추가하세요",
|
|
607
|
+
"customers.companies.detail.highlights.legalName": "법인명",
|
|
608
|
+
"customers.companies.detail.highlights.legalNamePlaceholder": "법인명을 추가하세요",
|
|
609
|
+
"customers.companies.detail.highlights.nextInteraction": "다음 상호작용",
|
|
610
|
+
"customers.companies.detail.highlights.nextInteractionHint": "가장 가까운 예정된 상호작용을 표시합니다. 마감일이 있는 작업을 생성하면 이 항목이 채워집니다.",
|
|
611
|
+
"customers.companies.detail.highlights.nextInteractionLegacyHint": "통합 상호작용 기능이 활성화된 경우 사용할 수 있습니다. 마감일이 있는 작업을 생성하면 다음 예정된 상호작용을 확인할 수 있습니다.",
|
|
612
|
+
"customers.companies.detail.highlights.primaryEmail": "기본 이메일",
|
|
613
|
+
"customers.companies.detail.highlights.primaryPhone": "기본 전화번호",
|
|
614
|
+
"customers.companies.detail.highlights.status": "상태",
|
|
615
|
+
"customers.companies.detail.highlights.website": "웹사이트",
|
|
616
|
+
"customers.companies.detail.highlights.websitePlaceholder": "https://example.com",
|
|
617
|
+
"customers.companies.detail.inline.annualRevenueCurrencyInvalid": "세 자리 통화 코드를 사용하세요 (예: USD).",
|
|
618
|
+
"customers.companies.detail.inline.annualRevenueInvalid": "0 이상의 숫자를 입력하세요.",
|
|
619
|
+
"customers.companies.detail.inline.emailInvalid": "유효한 이메일 주소를 입력하세요.",
|
|
620
|
+
"customers.companies.detail.inline.error": "회사 정보를 업데이트할 수 없습니다.",
|
|
621
|
+
"customers.companies.detail.inline.phoneInvalid": "전화번호가 너무 짧습니다.",
|
|
622
|
+
"customers.companies.detail.inline.websiteInvalid": "유효한 http(s) 주소를 사용하세요.",
|
|
623
|
+
"customers.companies.detail.lastContact": "마지막 연락",
|
|
624
|
+
"customers.companies.detail.loading": "회사 정보를 불러오는 중…",
|
|
625
|
+
"customers.companies.detail.nextStep.call": "전화",
|
|
626
|
+
"customers.companies.detail.nextStep.in": "{days}일 후",
|
|
627
|
+
"customers.companies.detail.nextStep.none": "예정된 상호작용이 없습니다",
|
|
628
|
+
"customers.companies.detail.nextStep.overdue": "{days}일 지연",
|
|
629
|
+
"customers.companies.detail.nextStep.proposal": "제안서",
|
|
630
|
+
"customers.companies.detail.nextStep.title": "다음 단계",
|
|
631
|
+
"customers.companies.detail.nextStep.today": "오늘",
|
|
632
|
+
"customers.companies.detail.nextStep.untitled": "예정된 상호작용",
|
|
633
|
+
"customers.companies.detail.noValue": "입력되지 않음",
|
|
634
|
+
"customers.companies.detail.notAssigned": "미지정",
|
|
635
|
+
"customers.companies.detail.notes.addLabel": "메모 추가",
|
|
636
|
+
"customers.companies.detail.notes.entityMissing": "현재 회사를 확인할 수 없습니다.",
|
|
637
|
+
"customers.companies.detail.notes.placeholder": "이 회사에 대한 메모를 작성하세요…",
|
|
638
|
+
"customers.companies.detail.people.add": "연락처 추가",
|
|
639
|
+
"customers.companies.detail.people.empty": "이 회사에 연결된 연락처가 아직 없습니다.",
|
|
640
|
+
"customers.companies.detail.people.filter": "필터",
|
|
641
|
+
"customers.companies.detail.people.helper": "이 회사에 연결된 연락처가 여기에 표시되며, 페이지를 벗어나지 않고 생성, 연결, 열기, 연결 해제를 할 수 있습니다.",
|
|
642
|
+
"customers.companies.detail.people.linkAction": "기존 연락처 연결",
|
|
643
|
+
"customers.companies.detail.people.linkCancel": "취소",
|
|
644
|
+
"customers.companies.detail.people.linkClear": "선택 해제",
|
|
645
|
+
"customers.companies.detail.people.linkClearVisible": "표시된 항목 선택 해제",
|
|
646
|
+
"customers.companies.detail.people.linkConfirm": "연락처 연결",
|
|
647
|
+
"customers.companies.detail.people.linkConfirmSelected": "선택 항목 연결",
|
|
648
|
+
"customers.companies.detail.people.linkDialog.description": "하나 이상의 기존 연락처를 검색하여 페이지를 벗어나지 않고 이 회사에 연결하세요.",
|
|
649
|
+
"customers.companies.detail.people.linkDialog.title": "기존 연락처 연결",
|
|
650
|
+
"customers.companies.detail.people.linkEmpty": "일치하는 연락처가 없습니다.",
|
|
651
|
+
"customers.companies.detail.people.linkError": "연락처를 회사에 연결하지 못했습니다.",
|
|
652
|
+
"customers.companies.detail.people.linkLoadError": "연락처를 불러오지 못했습니다.",
|
|
653
|
+
"customers.companies.detail.people.linkLoadMore": "연락처 더 불러오기",
|
|
654
|
+
"customers.companies.detail.people.linkLoading": "연락처를 검색하는 중…",
|
|
655
|
+
"customers.companies.detail.people.linkSearchPlaceholder": "이름 또는 이메일로 연락처 검색",
|
|
656
|
+
"customers.companies.detail.people.linkSelect": "연결",
|
|
657
|
+
"customers.companies.detail.people.linkSelectPerson": "{{name}} 선택",
|
|
658
|
+
"customers.companies.detail.people.linkSelectVisible": "표시된 항목 선택",
|
|
659
|
+
"customers.companies.detail.people.linkSelected": "선택됨",
|
|
660
|
+
"customers.companies.detail.people.linkSelectedCount": "{{count}}개 선택됨",
|
|
661
|
+
"customers.companies.detail.people.linkSelectionHint": "연결할 연락처를 하나 이상 선택하세요.",
|
|
662
|
+
"customers.companies.detail.people.linkStartTyping": "기존 연락처를 검색하려면 입력을 시작하세요.",
|
|
663
|
+
"customers.companies.detail.people.linkSubmitting": "연결하는 중…",
|
|
664
|
+
"customers.companies.detail.people.linkSuccess": "연락처가 회사에 연결되었습니다.",
|
|
665
|
+
"customers.companies.detail.people.linkSuccessMultiple": "연락처 {{count}}명이 회사에 연결되었습니다.",
|
|
666
|
+
"customers.companies.detail.people.linkedOn": "{{date}}에 연결됨",
|
|
667
|
+
"customers.companies.detail.people.loadError": "연락처를 불러오지 못했습니다.",
|
|
668
|
+
"customers.companies.detail.people.loading": "연락처를 불러오는 중…",
|
|
669
|
+
"customers.companies.detail.people.next": "다음",
|
|
670
|
+
"customers.companies.detail.people.noSearchResults": "검색 조건과 일치하는 연락처가 없습니다.",
|
|
671
|
+
"customers.companies.detail.people.open": "연락처 열기",
|
|
672
|
+
"customers.companies.detail.people.pageSummary": "{{total}} 페이지 중 {{page}} 페이지",
|
|
673
|
+
"customers.companies.detail.people.previous": "이전",
|
|
674
|
+
"customers.companies.detail.people.remove": "연결 해제",
|
|
675
|
+
"customers.companies.detail.people.removeError": "회사에서 연락처 연결 해제에 실패했습니다.",
|
|
676
|
+
"customers.companies.detail.people.removeSuccess": "회사에서 연락처가 연결 해제되었습니다.",
|
|
677
|
+
"customers.companies.detail.people.searchPlaceholder": "이름, 역할, 이메일로 검색...",
|
|
678
|
+
"customers.companies.detail.people.sectionSubtitle": "고객사 측 직원 및 의사결정권자",
|
|
679
|
+
"customers.companies.detail.people.sectionTitle": "연락처",
|
|
680
|
+
"customers.companies.detail.people.sortNameAsc": "정렬: 이름 오름차순",
|
|
681
|
+
"customers.companies.detail.people.sortNameDesc": "정렬: 이름 내림차순",
|
|
682
|
+
"customers.companies.detail.people.sortRecent": "정렬: 최근 연결순",
|
|
683
|
+
"customers.companies.detail.relativeTime.daysAgo": "{{days}}일 전",
|
|
684
|
+
"customers.companies.detail.relativeTime.monthsAgo": "{{months}}개월 전",
|
|
685
|
+
"customers.companies.detail.relativeTime.oneDayAgo": "1일 전",
|
|
686
|
+
"customers.companies.detail.relativeTime.today": "오늘",
|
|
687
|
+
"customers.companies.detail.relativeTime.weeksAgo": "{{weeks}}주 전",
|
|
688
|
+
"customers.companies.detail.roleInCompany": "이 회사에서 {{name}}의 역할",
|
|
689
|
+
"customers.companies.detail.sectionLoading": "불러오는 중…",
|
|
690
|
+
"customers.companies.detail.sections.customFields": "사용자 정의 필드",
|
|
691
|
+
"customers.companies.detail.sections.details": "회사 상세 정보",
|
|
692
|
+
"customers.companies.detail.tabs.activities": "활동",
|
|
693
|
+
"customers.companies.detail.tabs.activityLog": "활동 로그",
|
|
694
|
+
"customers.companies.detail.tabs.addresses": "주소",
|
|
695
|
+
"customers.companies.detail.tabs.analysis": "분석",
|
|
696
|
+
"customers.companies.detail.tabs.changelog": "변경 이력",
|
|
697
|
+
"customers.companies.detail.tabs.daneFiremy": "회사 데이터",
|
|
698
|
+
"customers.companies.detail.tabs.dashboard": "대시보드",
|
|
699
|
+
"customers.companies.detail.tabs.deals": "거래",
|
|
700
|
+
"customers.companies.detail.tabs.files": "파일",
|
|
701
|
+
"customers.companies.detail.tabs.label": "회사 상세 섹션",
|
|
702
|
+
"customers.companies.detail.tabs.notes": "메모",
|
|
703
|
+
"customers.companies.detail.tabs.people": "연락처",
|
|
704
|
+
"customers.companies.detail.tabs.tasks": "작업",
|
|
705
|
+
"customers.companies.detail.tasks.add": "작업 추가",
|
|
706
|
+
"customers.companies.detail.tasks.dialog.context": "이 작업은 {{name}}에 연결됩니다",
|
|
707
|
+
"customers.companies.detail.title": "회사 상세 정보",
|
|
708
|
+
"customers.companies.detail.untitled": "제목 없음",
|
|
709
|
+
"customers.companies.entityPlural": "회사",
|
|
710
|
+
"customers.companies.form.annualRevenue.error": "소수점 둘째 자리까지 유효한 금액을 입력하세요.",
|
|
711
|
+
"customers.companies.form.dictionary.addIndustry": "업종 추가",
|
|
712
|
+
"customers.companies.form.dictionary.addLifecycleStage": "라이프사이클 단계 추가",
|
|
713
|
+
"customers.companies.form.dictionary.addSource": "출처 추가",
|
|
714
|
+
"customers.companies.form.dictionary.addStatus": "상태 추가",
|
|
715
|
+
"customers.companies.form.dictionary.dialogTitleIndustry": "업종 추가",
|
|
716
|
+
"customers.companies.form.dictionary.dialogTitleLifecycleStage": "라이프사이클 단계 추가",
|
|
717
|
+
"customers.companies.form.dictionary.dialogTitleSource": "출처 추가",
|
|
718
|
+
"customers.companies.form.dictionary.dialogTitleStatus": "상태 추가",
|
|
719
|
+
"customers.companies.form.dictionary.promptIndustry": "새 업종 이름을 입력하세요",
|
|
720
|
+
"customers.companies.form.dictionary.promptLifecycleStage": "새 라이프사이클 단계 이름을 입력하세요",
|
|
721
|
+
"customers.companies.form.dictionary.promptSource": "새 출처 이름을 입력하세요",
|
|
722
|
+
"customers.companies.form.dictionary.promptStatus": "새 상태 이름을 입력하세요",
|
|
723
|
+
"customers.companies.form.displayName.error": "회사명은 필수입니다.",
|
|
724
|
+
"customers.companies.form.displayName.label": "표시 이름",
|
|
725
|
+
"customers.companies.form.displayName.placeholder": "회사명을 입력하세요",
|
|
726
|
+
"customers.companies.form.error.create": "회사 생성에 실패했습니다",
|
|
727
|
+
"customers.companies.form.groups.addresses": "주소",
|
|
728
|
+
"customers.companies.form.groups.businessProfile": "사업 프로필",
|
|
729
|
+
"customers.companies.form.groups.classification": "분류",
|
|
730
|
+
"customers.companies.form.groups.contact": "연락처 정보",
|
|
731
|
+
"customers.companies.form.groups.custom": "사용자 정의 필드",
|
|
732
|
+
"customers.companies.form.groups.customAttributes": "사용자 정의 속성",
|
|
733
|
+
"customers.companies.form.groups.details": "상세 정보",
|
|
734
|
+
"customers.companies.form.groups.identity": "기본 정보",
|
|
735
|
+
"customers.companies.form.groups.notes": "메모",
|
|
736
|
+
"customers.companies.form.groups.profile": "회사 프로필",
|
|
737
|
+
"customers.companies.form.industry.placeholder": "업종을 선택하세요",
|
|
738
|
+
"customers.companies.form.lifecycleStage": "라이프사이클 단계",
|
|
739
|
+
"customers.companies.form.lifecycleStage.placeholder": "라이프사이클 단계를 선택하세요",
|
|
740
|
+
"customers.companies.form.primaryEmail": "이메일 추가",
|
|
741
|
+
"customers.companies.form.primaryEmailPlaceholder": "name@example.com",
|
|
742
|
+
"customers.companies.form.primaryPhone": "전화번호 추가",
|
|
743
|
+
"customers.companies.form.primaryPhonePlaceholder": "+00 000 000 000",
|
|
744
|
+
"customers.companies.form.sections.businessProfile": "사업 프로필",
|
|
745
|
+
"customers.companies.form.sections.classification": "분류",
|
|
746
|
+
"customers.companies.form.sections.contact": "연락처 정보",
|
|
747
|
+
"customers.companies.form.sections.identity": "기본 정보",
|
|
748
|
+
"customers.companies.form.source": "출처",
|
|
749
|
+
"customers.companies.form.source.placeholder": "출처를 선택하세요",
|
|
750
|
+
"customers.companies.form.status": "상태",
|
|
751
|
+
"customers.companies.form.status.placeholder": "상태를 선택하세요",
|
|
752
|
+
"customers.companies.form.submit": "회사 등록",
|
|
753
|
+
"customers.companies.form.success": "회사가 생성되었습니다",
|
|
754
|
+
"customers.companies.form.updateSuccess": "회사 정보가 업데이트되었습니다.",
|
|
755
|
+
"customers.companies.list.actions.bulkDelete": "선택 항목 삭제",
|
|
756
|
+
"customers.companies.list.actions.delete": "삭제",
|
|
757
|
+
"customers.companies.list.actions.new": "새 회사",
|
|
758
|
+
"customers.companies.list.actions.openInNewTab": "새 탭에서 열기",
|
|
759
|
+
"customers.companies.list.actions.refresh": "새로고침",
|
|
760
|
+
"customers.companies.list.actions.view": "상세 보기",
|
|
761
|
+
"customers.companies.list.booleanNo": "아니요",
|
|
762
|
+
"customers.companies.list.booleanYes": "예",
|
|
763
|
+
"customers.companies.list.bulkDelete.action": "선택 항목 삭제",
|
|
764
|
+
"customers.companies.list.bulkDelete.description": "이 작업은 되돌릴 수 없습니다.",
|
|
765
|
+
"customers.companies.list.bulkDelete.failed": "회사 {count}개 삭제에 실패했습니다",
|
|
766
|
+
"customers.companies.list.bulkDelete.failedGroup": "회사 {count}개를 삭제하지 못했습니다: {message}",
|
|
767
|
+
"customers.companies.list.bulkDelete.operationLabel": "회사 {count}개 삭제",
|
|
768
|
+
"customers.companies.list.bulkDelete.partial": "전체 {total}개 중 {deleted}개 삭제됨; {failed}개 실패",
|
|
769
|
+
"customers.companies.list.bulkDelete.progressDescription": "삭제 대상으로 선정된 {count} 회사",
|
|
770
|
+
"customers.companies.list.bulkDelete.progressName": "선택한 회사 삭제",
|
|
771
|
+
"customers.companies.list.bulkDelete.success": "회사 {count}개가 삭제되었습니다",
|
|
772
|
+
"customers.companies.list.bulkDelete.title": "회사 {count}개를 삭제하시겠습니까?",
|
|
773
|
+
"customers.companies.list.columns.email": "이메일",
|
|
774
|
+
"customers.companies.list.columns.lifecycleStage": "라이프사이클 단계",
|
|
775
|
+
"customers.companies.list.columns.name": "이름",
|
|
776
|
+
"customers.companies.list.columns.nextInteraction": "다음 상호작용",
|
|
777
|
+
"customers.companies.list.columns.owner": "담당자",
|
|
778
|
+
"customers.companies.list.columns.source": "출처",
|
|
779
|
+
"customers.companies.list.columns.status": "상태",
|
|
780
|
+
"customers.companies.list.deleteConfirm": "{{name}}을(를) 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다.",
|
|
781
|
+
"customers.companies.list.deleteError": "회사를 삭제할 수 없습니다.",
|
|
782
|
+
"customers.companies.list.deleteFallbackName": "이 회사",
|
|
783
|
+
"customers.companies.list.deleteSuccess": "회사가 삭제되었습니다.",
|
|
784
|
+
"customers.companies.list.error.load": "회사 목록을 불러올 수 없습니다",
|
|
785
|
+
"customers.companies.list.export.full": "숨겨진 사용자 정의 필드를 포함한 모든 회사 필드를 내보냅니다.",
|
|
786
|
+
"customers.companies.list.export.view": "필터와 표시된 열이 적용된 현재 목록을 내보냅니다.",
|
|
787
|
+
"customers.companies.list.filters.createdAt": "생성일",
|
|
788
|
+
"customers.companies.list.filters.emailContains": "이메일 포함",
|
|
789
|
+
"customers.companies.list.filters.emailContainsPlaceholder": "info@example.com",
|
|
790
|
+
"customers.companies.list.filters.hasEmail": "이메일 있음",
|
|
791
|
+
"customers.companies.list.filters.hasNextInteraction": "다음 상호작용 있음",
|
|
792
|
+
"customers.companies.list.filters.hasPhone": "전화번호 있음",
|
|
793
|
+
"customers.companies.list.filters.lifecycleStage": "라이프사이클 단계",
|
|
794
|
+
"customers.companies.list.filters.source": "출처",
|
|
795
|
+
"customers.companies.list.filters.status": "상태",
|
|
796
|
+
"customers.companies.list.filters.tags": "태그",
|
|
797
|
+
"customers.companies.list.noValue": "설정되지 않음",
|
|
798
|
+
"customers.companies.list.searchPlaceholder": "이름, 이메일, 전화번호로 검색…",
|
|
799
|
+
"customers.companies.list.tags.loadError": "태그를 불러오지 못했습니다.",
|
|
800
|
+
"customers.companies.list.title": "회사",
|
|
801
|
+
"customers.companies.presets.inactive60": "60일 초과 비활성",
|
|
802
|
+
"customers.companies.presets.myAccounts": "내 담당 계정",
|
|
803
|
+
"customers.companies.presets.recentlyCreated": "최근 생성됨",
|
|
804
|
+
"customers.config.addressFormat.description": "고객 모듈 전반에서 주소 입력 폼과 표시 방식을 어떻게 구성할지 선택하세요.",
|
|
805
|
+
"customers.config.addressFormat.error": "주소 설정을 불러오지 못했습니다",
|
|
806
|
+
"customers.config.addressFormat.errorSave": "주소 설정 업데이트에 실패했습니다",
|
|
807
|
+
"customers.config.addressFormat.lineFirstDescription": "주소 1, 2행을 먼저 입력받은 후 우편번호, 시/군/구, 지역, 국가 순으로 입력받습니다.",
|
|
808
|
+
"customers.config.addressFormat.lineFirstTitle": "주소 행 우선",
|
|
809
|
+
"customers.config.addressFormat.loading": "현재 설정을 불러오는 중…",
|
|
810
|
+
"customers.config.addressFormat.streetFirstDescription": "우편번호, 시/군/구, 지역, 국가보다 먼저 도로명, 건물, 호수를 입력받습니다.",
|
|
811
|
+
"customers.config.addressFormat.streetFirstTitle": "도로명 우선 (유럽식)",
|
|
812
|
+
"customers.config.addressFormat.success": "주소 형식이 업데이트되었습니다",
|
|
813
|
+
"customers.config.addressFormat.title": "고객 주소 형식",
|
|
814
|
+
"customers.config.addressFormat.updating": "설정을 저장하는 중…",
|
|
815
|
+
"customers.config.dictionaries.actions.add": "항목 추가",
|
|
816
|
+
"customers.config.dictionaries.actions.delete": "삭제",
|
|
817
|
+
"customers.config.dictionaries.actions.edit": "수정",
|
|
818
|
+
"customers.config.dictionaries.actions.refresh": "새로고침",
|
|
819
|
+
"customers.config.dictionaries.appearance.empty": "없음",
|
|
820
|
+
"customers.config.dictionaries.columns.actions": "작업",
|
|
821
|
+
"customers.config.dictionaries.columns.appearance": "표시 스타일",
|
|
822
|
+
"customers.config.dictionaries.columns.label": "라벨",
|
|
823
|
+
"customers.config.dictionaries.columns.value": "값",
|
|
824
|
+
"customers.config.dictionaries.deleteConfirm": "\"{{value}}\" 항목을 삭제하시겠습니까?",
|
|
825
|
+
"customers.config.dictionaries.description": "고객 모듈에서 사용하는 사전(dictionary) 항목을 관리합니다.",
|
|
826
|
+
"customers.config.dictionaries.dialog.addTitle": "항목 추가",
|
|
827
|
+
"customers.config.dictionaries.dialog.cancel": "취소",
|
|
828
|
+
"customers.config.dictionaries.dialog.colorClear": "색상 제거",
|
|
829
|
+
"customers.config.dictionaries.dialog.colorHelp": "이 항목에 사용할 강조 색상을 선택하세요.",
|
|
830
|
+
"customers.config.dictionaries.dialog.colorLabel": "색상",
|
|
831
|
+
"customers.config.dictionaries.dialog.editTitle": "항목 편집",
|
|
832
|
+
"customers.config.dictionaries.dialog.iconBrowse": "아이콘 및 이모지 찾아보기",
|
|
833
|
+
"customers.config.dictionaries.dialog.iconClear": "아이콘 제거",
|
|
834
|
+
"customers.config.dictionaries.dialog.iconLabel": "아이콘",
|
|
835
|
+
"customers.config.dictionaries.dialog.iconPlaceholder": "이모지를 입력하거나 추천 항목 중 하나를 선택하세요.",
|
|
836
|
+
"customers.config.dictionaries.dialog.iconSearchEmpty": "검색어와 일치하는 아이콘이 없습니다.",
|
|
837
|
+
"customers.config.dictionaries.dialog.iconSearchPlaceholder": "아이콘 또는 이모지 검색…",
|
|
838
|
+
"customers.config.dictionaries.dialog.iconSuggestions": "추천 항목",
|
|
839
|
+
"customers.config.dictionaries.dialog.labelLabel": "라벨",
|
|
840
|
+
"customers.config.dictionaries.dialog.previewEmpty": "선택된 표시 스타일이 없습니다",
|
|
841
|
+
"customers.config.dictionaries.dialog.save": "저장",
|
|
842
|
+
"customers.config.dictionaries.dialog.valueLabel": "값",
|
|
843
|
+
"customers.config.dictionaries.empty": "아직 등록된 항목이 없습니다.",
|
|
844
|
+
"customers.config.dictionaries.error.delete": "사전 항목을 삭제하지 못했습니다.",
|
|
845
|
+
"customers.config.dictionaries.error.load": "사전 항목을 불러오지 못했습니다.",
|
|
846
|
+
"customers.config.dictionaries.error.save": "사전 항목을 저장하지 못했습니다.",
|
|
847
|
+
"customers.config.dictionaries.errors.duplicate": "이미 동일한 값의 항목이 존재합니다.",
|
|
848
|
+
"customers.config.dictionaries.errors.invalidColor": "색상은 #3366ff와 같은 올바른 16진수 값이어야 합니다.",
|
|
849
|
+
"customers.config.dictionaries.errors.invalidIcon": "아이콘은 짧은 이름 또는 이모지여야 합니다.",
|
|
850
|
+
"customers.config.dictionaries.errors.required": "값을 입력해 주세요.",
|
|
851
|
+
"customers.config.dictionaries.errors.roleTypeDeleteInUse": "이 역할 유형은 {{count}}개의 레코드에 지정되어 있습니다. 삭제하기 전에 해당 지정을 제거하거나 다른 값으로 변경하세요.",
|
|
852
|
+
"customers.config.dictionaries.errors.roleTypeValueInUse": "이 역할 유형은 {{count}}개의 레코드에 지정되어 있습니다. 값을 변경하기 전에 해당 지정을 제거하거나 다른 값으로 변경하세요.",
|
|
853
|
+
"customers.config.dictionaries.inherited.blocked": "상속된 항목은 상위 조직에서만 편집할 수 있습니다.",
|
|
854
|
+
"customers.config.dictionaries.inherited.label": "상속됨",
|
|
855
|
+
"customers.config.dictionaries.inherited.notice": "상속된 항목은 상위 조직에서 관리됩니다.",
|
|
856
|
+
"customers.config.dictionaries.inherited.tooltip": "상위 조직에서 관리 중",
|
|
857
|
+
"customers.config.dictionaries.roleTypes.deleteBlocked.text": "이 역할 유형은 {{count}}개의 레코드에 지정되어 있습니다. 삭제하기 전에 해당 지정을 제거하거나 다른 값으로 변경하세요.",
|
|
858
|
+
"customers.config.dictionaries.roleTypes.deleteBlocked.title": "사용 중인 역할 유형입니다",
|
|
859
|
+
"customers.config.dictionaries.roleTypes.usageCount": "{{count}}개의 레코드에서 사용 중",
|
|
860
|
+
"customers.config.dictionaries.searchPlaceholder": "항목 검색…",
|
|
861
|
+
"customers.config.dictionaries.sections.activityTypes.description": "고객 상호작용에 사용할 활동 유형을 정의합니다.",
|
|
862
|
+
"customers.config.dictionaries.sections.activityTypes.title": "활동 유형",
|
|
863
|
+
"customers.config.dictionaries.sections.addressTypes.description": "주소에 사용할 수 있는 주소 유형 옵션을 정의합니다.",
|
|
864
|
+
"customers.config.dictionaries.sections.addressTypes.title": "주소 유형",
|
|
865
|
+
"customers.config.dictionaries.sections.dealStatuses.description": "거래에 사용할 수 있는 상태를 관리합니다.",
|
|
866
|
+
"customers.config.dictionaries.sections.dealStatuses.title": "거래 상태",
|
|
867
|
+
"customers.config.dictionaries.sections.industries.description": "회사에서 사용하는 업종을 관리합니다.",
|
|
868
|
+
"customers.config.dictionaries.sections.industries.title": "업종",
|
|
869
|
+
"customers.config.dictionaries.sections.interactionStatuses.description": "작업 및 기록된 상호 작용에 사용할 수 있는 상태를 관리합니다.",
|
|
870
|
+
"customers.config.dictionaries.sections.interactionStatuses.title": "상호작용 상태",
|
|
871
|
+
"customers.config.dictionaries.sections.jobTitles.description": "직함과 그 표시 스타일을 설정합니다.",
|
|
872
|
+
"customers.config.dictionaries.sections.jobTitles.title": "직함",
|
|
873
|
+
"customers.config.dictionaries.sections.lifecycle.description": "고객 진행 상황을 추적할 라이프사이클 단계를 설정합니다.",
|
|
874
|
+
"customers.config.dictionaries.sections.lifecycle.title": "라이프사이클 단계",
|
|
875
|
+
"customers.config.dictionaries.sections.personCompanyRoles.description": "People 탭 배정에서 사용할 수 있는 소유 역할을 관리합니다.",
|
|
876
|
+
"customers.config.dictionaries.sections.personCompanyRoles.title": "역할 유형",
|
|
877
|
+
"customers.config.dictionaries.sections.pipelineStages.description": "거래 파이프라인에서 사용할 단계를 정의합니다.",
|
|
878
|
+
"customers.config.dictionaries.sections.pipelineStages.title": "파이프라인 단계",
|
|
879
|
+
"customers.config.dictionaries.sections.sources.description": "고객이 어떻게 유입되었는지를 기록합니다.",
|
|
880
|
+
"customers.config.dictionaries.sections.sources.title": "유입 경로",
|
|
881
|
+
"customers.config.dictionaries.sections.statuses.description": "고객 레코드에 사용할 수 있는 상태를 정의합니다.",
|
|
882
|
+
"customers.config.dictionaries.sections.statuses.title": "상태",
|
|
883
|
+
"customers.config.dictionaries.success.delete": "사전 항목이 삭제되었습니다.",
|
|
884
|
+
"customers.config.dictionaries.success.save": "사전 항목이 저장되었습니다.",
|
|
885
|
+
"customers.config.dictionaries.title": "고객 사전",
|
|
886
|
+
"customers.config.dictionarySorting.description": "드롭다운 및 설정 화면에서 고객 사전 값이 정렬되는 방식을 선택하세요.",
|
|
887
|
+
"customers.config.dictionarySorting.errorLoad": "사전 정렬 설정을 불러오지 못했습니다.",
|
|
888
|
+
"customers.config.dictionarySorting.errorSave": "사전 정렬 설정을 저장하지 못했습니다.",
|
|
889
|
+
"customers.config.dictionarySorting.loading": "사전 정렬 설정을 불러오는 중…",
|
|
890
|
+
"customers.config.dictionarySorting.success": "사전 정렬 설정이 저장되었습니다.",
|
|
891
|
+
"customers.config.dictionarySorting.title": "사전 정렬",
|
|
892
|
+
"customers.config.dictionarySorting.updating": "저장 중…",
|
|
893
|
+
"customers.config.nav.customers": "고객",
|
|
894
|
+
"customers.config.pipelineStages.deletePipelineDesc": "이 파이프라인과 모든 단계가 영구적으로 삭제됩니다. 여기에 배정된 거래는 파이프라인 배정을 잃게 됩니다.",
|
|
895
|
+
"customers.config.pipelineStages.deleteStageDesc": "이 단계가 영구적으로 삭제됩니다. 여기에 배정된 거래는 단계 배정을 잃게 됩니다.",
|
|
896
|
+
"customers.config.upgradeActions.interactionStatuses.cta": "시드 상호작용 상태",
|
|
897
|
+
"customers.config.upgradeActions.interactionStatuses.loading": "상호작용 상태 시드 중…",
|
|
898
|
+
"customers.config.upgradeActions.interactionStatuses.message": "CRM 작업과 기록된 상호 작용이 구성 가능한 상태 목록을 사용할 수 있도록 상호 작용 상태 사전을 시드합니다.",
|
|
899
|
+
"customers.config.upgradeActions.interactionStatuses.success": "상호작용 상태가 준비되었습니다.",
|
|
900
|
+
"customers.countries.ca": "캐나다",
|
|
901
|
+
"customers.countries.de": "독일",
|
|
902
|
+
"customers.countries.es": "스페인",
|
|
903
|
+
"customers.countries.fr": "프랑스",
|
|
904
|
+
"customers.countries.gb": "영국",
|
|
905
|
+
"customers.countries.it": "이탈리아",
|
|
906
|
+
"customers.countries.pl": "폴란드",
|
|
907
|
+
"customers.countries.us": "미국",
|
|
908
|
+
"customers.deal_analyzer.context.dealsInView": "{count} 거래가 진행 중입니다.",
|
|
909
|
+
"customers.deal_analyzer.context.selectedDeals": "{count} 거래 선택됨",
|
|
910
|
+
"customers.deal_analyzer.dock.subtitle": "거래",
|
|
911
|
+
"customers.deal_analyzer.sheet.composerPlaceholder": "지연된 거래 분석, 단계 이동 제안...",
|
|
912
|
+
"customers.deal_analyzer.sheet.description": "다단계 거래 상태 분석기. 중단된 거래를 표면화하고 승인을 위한 단계 전환을 제안합니다.",
|
|
913
|
+
"customers.deal_analyzer.sheet.descriptionWithSelection": "파이프라인 상태 및 단계 이동 제안에 대해 선택된 거래를 {count} 분석합니다.",
|
|
914
|
+
"customers.deal_analyzer.sheet.dock": "측면에 고정",
|
|
915
|
+
"customers.deal_analyzer.sheet.selectionPill": "{count} 거래에 대한 조치",
|
|
916
|
+
"customers.deal_analyzer.sheet.title": "거래 분석기",
|
|
917
|
+
"customers.deal_analyzer.sheet.welcomeDescriptionAll": "거래 파이프라인 상태를 분석하고 단계 이동을 제안합니다.",
|
|
918
|
+
"customers.deal_analyzer.sheet.welcomeDescriptionSelection": "귀하가 선택한 {count} 거래를 분석할 준비가 되었습니다:",
|
|
919
|
+
"customers.deal_analyzer.sheet.welcomeTitle": "거래 분석기",
|
|
920
|
+
"customers.deal_analyzer.suggestions.analyzeSelected": "선택된 거래 분석",
|
|
921
|
+
"customers.deal_analyzer.suggestions.analyzeStalledDeals": "중단된 거래 분석",
|
|
922
|
+
"customers.deal_analyzer.suggestions.overviewByStage": "거래 상태 개요",
|
|
923
|
+
"customers.deal_analyzer.suggestions.proposeStageMove": "선택한 거래에 대한 단계 이동 제안",
|
|
924
|
+
"customers.deal_analyzer.suggestions.showAtRiskPipeline": "위험에 처한 파이프라인 표시",
|
|
925
|
+
"customers.deal_analyzer.trigger.ariaLabel": "오픈 딜 분석기 AI 에이전트",
|
|
926
|
+
"customers.deals.create.associations.companiesPlaceholder": "이름 또는 도메인으로 회사 검색…",
|
|
927
|
+
"customers.deals.create.associations.peoplePlaceholder": "이름 또는 이메일로 사람 검색…",
|
|
928
|
+
"customers.deals.create.back": "거래 목록으로 돌아가기",
|
|
929
|
+
"customers.deals.create.cancel": "취소",
|
|
930
|
+
"customers.deals.create.error": "거래를 생성하지 못했습니다.",
|
|
931
|
+
"customers.deals.create.fields.datePlaceholder": "날짜 선택",
|
|
932
|
+
"customers.deals.create.fields.expectedCloseAt": "예상 종료일",
|
|
933
|
+
"customers.deals.create.fields.probability": "성사 확률",
|
|
934
|
+
"customers.deals.create.fields.stageOf": "· {total}단계 중 {position}단계",
|
|
935
|
+
"customers.deals.create.fields.title": "거래명",
|
|
936
|
+
"customers.deals.create.fields.valueAmount": "거래 금액",
|
|
937
|
+
"customers.deals.create.hints.pipelineStage": "단계는 선택한 파이프라인에 따라 달라집니다",
|
|
938
|
+
"customers.deals.create.hints.probability": "0 – 100%, 가중 파이프라인 가치 계산에 사용됩니다",
|
|
939
|
+
"customers.deals.create.hints.title": "파이프라인 카드에 표시되는 짧고 명확한 이름",
|
|
940
|
+
"customers.deals.create.hints.valueAmount": "이 기회에서 예상되는 매출",
|
|
941
|
+
"customers.deals.create.sections.associations.subtitle": "이 거래에 사람과 회사를 연결하세요",
|
|
942
|
+
"customers.deals.create.sections.associations.title": "연결",
|
|
943
|
+
"customers.deals.create.sections.custom.empty": "아직 거래에 정의된 커스텀 필드가 없습니다.",
|
|
944
|
+
"customers.deals.create.sections.custom.loading": "커스텀 필드를 불러오는 중…",
|
|
945
|
+
"customers.deals.create.sections.custom.manage": "필드 관리",
|
|
946
|
+
"customers.deals.create.sections.custom.subtitle": "이 테넌트에 {count}개의 필드가 정의되어 있습니다",
|
|
947
|
+
"customers.deals.create.sections.custom.title": "커스텀 속성",
|
|
948
|
+
"customers.deals.create.sections.details.subtitle": "핵심 기회 정보",
|
|
949
|
+
"customers.deals.create.submit": "거래 생성",
|
|
950
|
+
"customers.deals.create.tips.item1": "제목에는 회사명 + 짧은 산출물 형식을 사용하세요 (예: \"Copperleaf — Q3 갱신\")",
|
|
951
|
+
"customers.deals.create.tips.item2": "파이프라인 단계에 따라 확률을 설정하세요: 자격 검토 10-25%, 제안 30-50%, 협상 50-75%, 계약 75-90%",
|
|
952
|
+
"customers.deals.create.tips.item3": "핵심 의사결정자를 첫 번째 담당자로 연결하세요 — 활동에 대한 기본 이메일 참조(CC)를 받게 됩니다",
|
|
953
|
+
"customers.deals.create.tips.title": "더 나은 거래를 위한 팁",
|
|
954
|
+
"customers.deals.create.title": "거래 생성",
|
|
955
|
+
"customers.deals.detail.actions.apply": "적용",
|
|
956
|
+
"customers.deals.detail.actions.backToList": "거래 목록으로 돌아가기",
|
|
957
|
+
"customers.deals.detail.actions.cancel": "취소",
|
|
958
|
+
"customers.deals.detail.actions.delete": "삭제",
|
|
959
|
+
"customers.deals.detail.actions.moveStage": "단계 이동",
|
|
960
|
+
"customers.deals.detail.actions.save": "저장",
|
|
961
|
+
"customers.deals.detail.actions.sendMessage": "메시지 보내기",
|
|
962
|
+
"customers.deals.detail.activities.linkEntityDescription": "거래의 활동은 타임라인 소유권을 위해 고객 레코드가 필요합니다.",
|
|
963
|
+
"customers.deals.detail.activities.linkEntityTitle": "먼저 사람 또는 회사를 연결하세요",
|
|
964
|
+
"customers.deals.detail.activities.selectEntityDescription": "새 거래 활동 및 후속 조치를 소유할 사람 또는 회사를 선택하세요.",
|
|
965
|
+
"customers.deals.detail.activities.selectEntityLabel": "고객 레코드 선택",
|
|
966
|
+
"customers.deals.detail.activities.selectEntityPlaceholder": "사람 또는 회사 선택",
|
|
967
|
+
"customers.deals.detail.activities.selectEntityRequiredDescription": "활동을 기록하거나 예약하기 전에 새 거래 활동을 받을 고객 레코드를 선택하세요.",
|
|
968
|
+
"customers.deals.detail.activities.selectEntityRequiredTitle": "계속하려면 사람 또는 회사를 선택하세요",
|
|
969
|
+
"customers.deals.detail.activitiesAdd": "활동 기록",
|
|
970
|
+
"customers.deals.detail.activitiesEmptyAction": "활동 추가",
|
|
971
|
+
"customers.deals.detail.activitiesEmptyTitle": "아직 활동이 없습니다",
|
|
972
|
+
"customers.deals.detail.activitiesLoading": "활동을 불러오는 중…",
|
|
973
|
+
"customers.deals.detail.badge.deal": "거래",
|
|
974
|
+
"customers.deals.detail.badge.lost": "실패",
|
|
975
|
+
"customers.deals.detail.badge.won": "성사",
|
|
976
|
+
"customers.deals.detail.closeLostError": "거래를 실패로 표시하지 못했습니다.",
|
|
977
|
+
"customers.deals.detail.closeWonError": "거래를 성사로 표시하지 못했습니다.",
|
|
978
|
+
"customers.deals.detail.closure.lost": "실패",
|
|
979
|
+
"customers.deals.detail.closure.prompt": "거래 종료 — 결과 선택",
|
|
980
|
+
"customers.deals.detail.closure.won": "성사",
|
|
981
|
+
"customers.deals.detail.companiesEditorTitle": "연결된 회사 관리",
|
|
982
|
+
"customers.deals.detail.companiesNoDetails": "추가 세부 정보 없음",
|
|
983
|
+
"customers.deals.detail.companiesSearch": "연결된 회사 검색…",
|
|
984
|
+
"customers.deals.detail.companiesSection": "회사",
|
|
985
|
+
"customers.deals.detail.companiesSummaryMany": "{{count}}개 회사 연결됨",
|
|
986
|
+
"customers.deals.detail.companiesSummaryOne": "1개 회사 연결됨",
|
|
987
|
+
"customers.deals.detail.companiesUpdateError": "연결된 회사를 업데이트하지 못했습니다.",
|
|
988
|
+
"customers.deals.detail.customFields": "커스텀 데이터",
|
|
989
|
+
"customers.deals.detail.deleteConfirm": "이 거래를 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다.",
|
|
990
|
+
"customers.deals.detail.deleteConfirmDescription": "이 작업은 되돌릴 수 없습니다.",
|
|
991
|
+
"customers.deals.detail.deleteConfirmTitle": "거래를 삭제하시겠습니까?",
|
|
992
|
+
"customers.deals.detail.deleteError": "거래를 삭제하지 못했습니다.",
|
|
993
|
+
"customers.deals.detail.deleteSuccess": "거래가 삭제되었습니다.",
|
|
994
|
+
"customers.deals.detail.editAssignments": "담당자 배정 편집",
|
|
995
|
+
"customers.deals.detail.error.load": "거래를 불러오지 못했습니다.",
|
|
996
|
+
"customers.deals.detail.error.notFound": "거래를 찾을 수 없습니다.",
|
|
997
|
+
"customers.deals.detail.fields.expectedClose": "예상 종료일",
|
|
998
|
+
"customers.deals.detail.fields.pipeline": "파이프라인 단계",
|
|
999
|
+
"customers.deals.detail.fields.probability": "성사 확률",
|
|
1000
|
+
"customers.deals.detail.fields.value": "거래 금액",
|
|
1001
|
+
"customers.deals.detail.files.subtitle": "이 거래에 연결된 파일을 업로드하고 관리하세요.",
|
|
1002
|
+
"customers.deals.detail.formTitle": "거래 설정",
|
|
1003
|
+
"customers.deals.detail.goToSettings": "거래 세부 정보 편집",
|
|
1004
|
+
"customers.deals.detail.header.createdAt": "{{date}}에 생성됨",
|
|
1005
|
+
"customers.deals.detail.header.expectedClose": "예상 종료일 {{date}}",
|
|
1006
|
+
"customers.deals.detail.header.timeline": "{{created}}에 생성 · 예상 종료일 {{expected}}",
|
|
1007
|
+
"customers.deals.detail.highlights": "하이라이트",
|
|
1008
|
+
"customers.deals.detail.linkedEntities.clearAll": "모두 지우기",
|
|
1009
|
+
"customers.deals.detail.linkedEntities.clearVisible": "표시된 항목 지우기",
|
|
1010
|
+
"customers.deals.detail.linkedEntities.confirmButton": "링크 {{entity}}",
|
|
1011
|
+
"customers.deals.detail.linkedEntities.dialogSubtitle": "기존 {{entity}}를 이 거래에 연결",
|
|
1012
|
+
"customers.deals.detail.linkedEntities.dialogTitle": "연결된 {{entity}} 관리",
|
|
1013
|
+
"customers.deals.detail.linkedEntities.dialogTitleShort": "링크 {{entity}}",
|
|
1014
|
+
"customers.deals.detail.linkedEntities.empty": "아직 연결된 레코드가 없습니다.",
|
|
1015
|
+
"customers.deals.detail.linkedEntities.loadMore": "더 불러오기",
|
|
1016
|
+
"customers.deals.detail.linkedEntities.loading": "연결된 레코드를 불러오는 중…",
|
|
1017
|
+
"customers.deals.detail.linkedEntities.manage": "연결 관리",
|
|
1018
|
+
"customers.deals.detail.linkedEntities.noResults": "일치하는 레코드를 찾을 수 없습니다.",
|
|
1019
|
+
"customers.deals.detail.linkedEntities.noSearchMatches": "현재 검색어와 일치하는 연결된 레코드가 없습니다.",
|
|
1020
|
+
"customers.deals.detail.linkedEntities.noneSelected": "선택된 연결 레코드가 없습니다.",
|
|
1021
|
+
"customers.deals.detail.linkedEntities.remove": "제거",
|
|
1022
|
+
"customers.deals.detail.linkedEntities.saving": "저장 중…",
|
|
1023
|
+
"customers.deals.detail.linkedEntities.searchAll": "모든 {{entity}} 검색…",
|
|
1024
|
+
"customers.deals.detail.linkedEntities.searchResults": "검색 결과",
|
|
1025
|
+
"customers.deals.detail.linkedEntities.searching": "검색 중…",
|
|
1026
|
+
"customers.deals.detail.linkedEntities.sectionLabel": "{{entity}} 일치",
|
|
1027
|
+
"customers.deals.detail.linkedEntities.selectVisible": "표시된 항목 선택",
|
|
1028
|
+
"customers.deals.detail.linkedEntities.selectedTitle": "선택된 {{entity}}",
|
|
1029
|
+
"customers.deals.detail.linkedEntities.summary": "연결된 {{entity}} {{count}}개",
|
|
1030
|
+
"customers.deals.detail.loadError": "거래를 불러오지 못했습니다.",
|
|
1031
|
+
"customers.deals.detail.loading": "거래를 불러오는 중…",
|
|
1032
|
+
"customers.deals.detail.lost.cancel": "취소",
|
|
1033
|
+
"customers.deals.detail.lost.confirm": "실패로 표시",
|
|
1034
|
+
"customers.deals.detail.lost.dealsThisWeek": "이번 주 실패한 거래",
|
|
1035
|
+
"customers.deals.detail.lost.followUpFallbackTitle": "종료된 거래 다시 검토",
|
|
1036
|
+
"customers.deals.detail.lost.followUpTitle": "{{title}} 다시 검토",
|
|
1037
|
+
"customers.deals.detail.lost.nextHeading": "다음 할 일",
|
|
1038
|
+
"customers.deals.detail.lost.notesLabel": "실패 메모 (선택사항)",
|
|
1039
|
+
"customers.deals.detail.lost.notesPlaceholder": "실패에 대한 추가 정보...",
|
|
1040
|
+
"customers.deals.detail.lost.popupSubtitle": "뛰어난 팀도 가끔은 기회를 놓칠 수 있습니다",
|
|
1041
|
+
"customers.deals.detail.lost.popupSummary": "실패 · 사유: {{reason}}",
|
|
1042
|
+
"customers.deals.detail.lost.popupTitle": "이번엔 아쉽네요",
|
|
1043
|
+
"customers.deals.detail.lost.primaryAction": "파이프라인으로 돌아가기",
|
|
1044
|
+
"customers.deals.detail.lost.reason": "실패 사유",
|
|
1045
|
+
"customers.deals.detail.lost.reasonFallback": "알 수 없음",
|
|
1046
|
+
"customers.deals.detail.lost.reasonFallbackDescription": "설명이 없습니다.",
|
|
1047
|
+
"customers.deals.detail.lost.reasonHelp": "사전에서 가장 가까운 사유를 선택하세요.",
|
|
1048
|
+
"customers.deals.detail.lost.reasonLabel": "실패 사유",
|
|
1049
|
+
"customers.deals.detail.lost.reasonLoadError": "실패 사유를 불러올 수 없습니다.",
|
|
1050
|
+
"customers.deals.detail.lost.reasonLoading": "실패 사유를 불러오는 중...",
|
|
1051
|
+
"customers.deals.detail.lost.reasonLoadingShort": "불러오는 중...",
|
|
1052
|
+
"customers.deals.detail.lost.reasonPlaceholder": "실패 사유 선택",
|
|
1053
|
+
"customers.deals.detail.lost.reasonRequired": "실패 사유를 선택해 주세요",
|
|
1054
|
+
"customers.deals.detail.lost.reasonUnavailable": "설정된 실패 사유가 없습니다.",
|
|
1055
|
+
"customers.deals.detail.lost.salesCycle": "영업 주기",
|
|
1056
|
+
"customers.deals.detail.lost.secondaryAction": "Q3 알림 설정",
|
|
1057
|
+
"customers.deals.detail.lost.title": "거래를 실패로 표시하시겠습니까?",
|
|
1058
|
+
"customers.deals.detail.lost.warning": "이 작업은 단계를 '실패'로 설정하며, 'sales.reopen' 권한 없이는 되돌릴 수 없습니다",
|
|
1059
|
+
"customers.deals.detail.lost.warningTitle": "이 작업은 거래를 종료합니다",
|
|
1060
|
+
"customers.deals.detail.missingId": "거래 ID가 필요합니다.",
|
|
1061
|
+
"customers.deals.detail.noCompanies": "아직 이 거래에 연결된 회사가 없습니다.",
|
|
1062
|
+
"customers.deals.detail.noPeople": "아직 이 거래에 연결된 사람이 없습니다.",
|
|
1063
|
+
"customers.deals.detail.noPipeline": "파이프라인 없음",
|
|
1064
|
+
"customers.deals.detail.noStatus": "상태 없음",
|
|
1065
|
+
"customers.deals.detail.noValue": "제공되지 않음",
|
|
1066
|
+
"customers.deals.detail.notesAdd": "메모 추가",
|
|
1067
|
+
"customers.deals.detail.notesEmpty": "아직 메모가 없습니다.",
|
|
1068
|
+
"customers.deals.detail.notesEmptyAction": "메모 추가",
|
|
1069
|
+
"customers.deals.detail.notesEmptyTitle": "모두와 소통을 이어가세요",
|
|
1070
|
+
"customers.deals.detail.notesLoading": "메모를 불러오는 중…",
|
|
1071
|
+
"customers.deals.detail.peopleEditorTitle": "연결된 사람 관리",
|
|
1072
|
+
"customers.deals.detail.peopleNoDetails": "추가 세부 정보 없음",
|
|
1073
|
+
"customers.deals.detail.peopleSearch": "연결된 사람 검색…",
|
|
1074
|
+
"customers.deals.detail.peopleSection": "사람",
|
|
1075
|
+
"customers.deals.detail.peopleSummaryMany": "{{count}}명 연결됨",
|
|
1076
|
+
"customers.deals.detail.peopleSummaryOne": "1명 연결됨",
|
|
1077
|
+
"customers.deals.detail.peopleUpdateError": "연결된 사람을 업데이트하지 못했습니다.",
|
|
1078
|
+
"customers.deals.detail.pipeline.ariaClosedLost": "파이프라인 종료됨 — 거래 실패.",
|
|
1079
|
+
"customers.deals.detail.pipeline.ariaClosedWon": "파이프라인 종료됨 — 거래 성사.",
|
|
1080
|
+
"customers.deals.detail.pipeline.ariaLabel": "파이프라인 진행 상태",
|
|
1081
|
+
"customers.deals.detail.pipeline.ariaLabelNamed": "파이프라인 진행 상태 — {{name}}",
|
|
1082
|
+
"customers.deals.detail.pipeline.ariaValueText": "{{total}}단계 중 {{current}}단계: {{label}}",
|
|
1083
|
+
"customers.deals.detail.pipeline.current": "현재",
|
|
1084
|
+
"customers.deals.detail.pipeline.currentWithDate": "{{date}} · {{state}}",
|
|
1085
|
+
"customers.deals.detail.pipeline.defaultName": "현재 파이프라인",
|
|
1086
|
+
"customers.deals.detail.pipeline.label": "파이프라인 단계",
|
|
1087
|
+
"customers.deals.detail.pipeline.noCurrent": "현재 단계 없음",
|
|
1088
|
+
"customers.deals.detail.pipeline.stageOf": "{{total}}단계 중 {{current}}단계",
|
|
1089
|
+
"customers.deals.detail.saveError": "거래를 업데이트하지 못했습니다.",
|
|
1090
|
+
"customers.deals.detail.saveSuccess": "거래가 업데이트되었습니다.",
|
|
1091
|
+
"customers.deals.detail.stageMenu.description": "폼을 열지 않고 거래를 다음 단계로 이동합니다.",
|
|
1092
|
+
"customers.deals.detail.stageMenu.title": "파이프라인 단계 업데이트",
|
|
1093
|
+
"customers.deals.detail.stageUpdateError": "거래 단계를 업데이트하지 못했습니다.",
|
|
1094
|
+
"customers.deals.detail.stageUpdateSuccess": "거래 단계가 업데이트되었습니다.",
|
|
1095
|
+
"customers.deals.detail.summary": "{{status}} · {{pipeline}}",
|
|
1096
|
+
"customers.deals.detail.tabs.activities": "활동",
|
|
1097
|
+
"customers.deals.detail.tabs.changelog": "변경 이력",
|
|
1098
|
+
"customers.deals.detail.tabs.companies": "회사",
|
|
1099
|
+
"customers.deals.detail.tabs.companySingular": "회사",
|
|
1100
|
+
"customers.deals.detail.tabs.files": "파일",
|
|
1101
|
+
"customers.deals.detail.tabs.label": "거래 상세 섹션",
|
|
1102
|
+
"customers.deals.detail.tabs.notes": "메모",
|
|
1103
|
+
"customers.deals.detail.tabs.people": "사람",
|
|
1104
|
+
"customers.deals.detail.tabs.peopleSingular": "사람",
|
|
1105
|
+
"customers.deals.detail.title": "거래 상세 정보",
|
|
1106
|
+
"customers.deals.detail.unsavedCancel": "계속 편집",
|
|
1107
|
+
"customers.deals.detail.unsavedConfirm": "변경 사항 취소",
|
|
1108
|
+
"customers.deals.detail.unsavedDescription": "이 거래에 저장되지 않은 수정사항이 있습니다. 먼저 저장하거나 계속 폐기하세요.",
|
|
1109
|
+
"customers.deals.detail.unsavedTitle": "저장하지 않은 변경 사항을 취소하시겠습니까?",
|
|
1110
|
+
"customers.deals.detail.untitled": "제목 없는 거래",
|
|
1111
|
+
"customers.deals.detail.updateSuccess": "거래가 업데이트되었습니다.",
|
|
1112
|
+
"customers.deals.detail.won.closed": "종료됨",
|
|
1113
|
+
"customers.deals.detail.won.dealsThisWeek": "이번 주 거래",
|
|
1114
|
+
"customers.deals.detail.won.pipeline": "파이프라인",
|
|
1115
|
+
"customers.deals.detail.won.pipelineFallback": "현재 파이프라인",
|
|
1116
|
+
"customers.deals.detail.won.primaryAction": "영업 보고서 보기",
|
|
1117
|
+
"customers.deals.detail.won.rank": "분기 순위",
|
|
1118
|
+
"customers.deals.detail.won.salesCycle": "영업 주기",
|
|
1119
|
+
"customers.deals.detail.won.secondaryAction": "파이프라인으로 돌아가기",
|
|
1120
|
+
"customers.deals.detail.won.subtitle": "당신은 영업의 달인입니다!",
|
|
1121
|
+
"customers.deals.detail.won.title": "성공적으로 종료됨",
|
|
1122
|
+
"customers.deals.edit.errorLoad": "거래를 불러오지 못했습니다.",
|
|
1123
|
+
"customers.deals.edit.errorUpdate": "거래를 저장하지 못했습니다.",
|
|
1124
|
+
"customers.deals.edit.missingId": "거래 ID가 필요합니다.",
|
|
1125
|
+
"customers.deals.edit.notFound": "거래를 찾을 수 없습니다.",
|
|
1126
|
+
"customers.deals.entityPlural": "거래",
|
|
1127
|
+
"customers.deals.form.assignees.remove": "제거",
|
|
1128
|
+
"customers.deals.form.companies.empty": "아직 연결된 회사가 없습니다.",
|
|
1129
|
+
"customers.deals.form.companies.error": "회사를 불러오지 못했습니다.",
|
|
1130
|
+
"customers.deals.form.companies.loading": "회사를 검색하는 중…",
|
|
1131
|
+
"customers.deals.form.companies.noResults": "검색어와 일치하는 회사가 없습니다.",
|
|
1132
|
+
"customers.deals.form.companies.searchPlaceholder": "회사 검색…",
|
|
1133
|
+
"customers.deals.form.currency.add": "통화 추가",
|
|
1134
|
+
"customers.deals.form.currency.cancel": "취소",
|
|
1135
|
+
"customers.deals.form.currency.dialogTitle": "통화 추가",
|
|
1136
|
+
"customers.deals.form.currency.error": "통화 사전을 불러오지 못했습니다.",
|
|
1137
|
+
"customers.deals.form.currency.error.required": "통화 코드는 필수입니다.",
|
|
1138
|
+
"customers.deals.form.currency.labelLabel": "라벨",
|
|
1139
|
+
"customers.deals.form.currency.labelPlaceholder": "UI에 표시되는 이름",
|
|
1140
|
+
"customers.deals.form.currency.loading": "통화를 불러오는 중…",
|
|
1141
|
+
"customers.deals.form.currency.manage": "통화 사전 관리",
|
|
1142
|
+
"customers.deals.form.currency.missing": "통화 사전이 아직 설정되지 않았습니다.",
|
|
1143
|
+
"customers.deals.form.currency.placeholder": "통화 선택…",
|
|
1144
|
+
"customers.deals.form.currency.save": "저장",
|
|
1145
|
+
"customers.deals.form.currency.valueLabel": "통화 코드",
|
|
1146
|
+
"customers.deals.form.currency.valuePlaceholder": "예: USD",
|
|
1147
|
+
"customers.deals.form.dictionary.addPipelineStage": "파이프라인 단계 추가",
|
|
1148
|
+
"customers.deals.form.dictionary.addStatus": "거래 상태 추가",
|
|
1149
|
+
"customers.deals.form.dictionary.dialogTitlePipelineStage": "파이프라인 단계 추가",
|
|
1150
|
+
"customers.deals.form.dictionary.dialogTitleStatus": "거래 상태 추가",
|
|
1151
|
+
"customers.deals.form.dictionary.promptPipelineStage": "파이프라인 단계 이름을 입력하세요",
|
|
1152
|
+
"customers.deals.form.dictionary.promptStatus": "거래 상태 이름을 입력하세요",
|
|
1153
|
+
"customers.deals.form.people.empty": "아직 연결된 사람이 없습니다.",
|
|
1154
|
+
"customers.deals.form.people.error": "사람을 불러오지 못했습니다.",
|
|
1155
|
+
"customers.deals.form.people.loading": "사람을 검색하는 중…",
|
|
1156
|
+
"customers.deals.form.people.noResults": "검색어와 일치하는 사람이 없습니다.",
|
|
1157
|
+
"customers.deals.form.people.searchPlaceholder": "사람 검색…",
|
|
1158
|
+
"customers.deals.form.pipeline.placeholder": "파이프라인 단계 선택",
|
|
1159
|
+
"customers.deals.form.status.placeholder": "거래 상태 선택",
|
|
1160
|
+
"customers.deals.kanban.activityComposer.body": "메모",
|
|
1161
|
+
"customers.deals.kanban.activityComposer.body.placeholder": "무슨 일이 있었나요? 마크다운을 지원합니다.",
|
|
1162
|
+
"customers.deals.kanban.activityComposer.call": "통화 기록",
|
|
1163
|
+
"customers.deals.kanban.activityComposer.context": "거래: {title}",
|
|
1164
|
+
"customers.deals.kanban.activityComposer.email": "이메일 보내기",
|
|
1165
|
+
"customers.deals.kanban.activityComposer.error": "활동을 저장하지 못했습니다.",
|
|
1166
|
+
"customers.deals.kanban.activityComposer.noEntity": "여기서 활동을 기록하려면 먼저 이 거래에 회사를 연결하세요.",
|
|
1167
|
+
"customers.deals.kanban.activityComposer.note": "메모 추가",
|
|
1168
|
+
"customers.deals.kanban.activityComposer.phone": "전화번호",
|
|
1169
|
+
"customers.deals.kanban.activityComposer.required": "저장하기 전에 제목이나 내용을 입력하세요.",
|
|
1170
|
+
"customers.deals.kanban.activityComposer.required.email": "저장하기 전에 제목이나 내용을 입력하세요.",
|
|
1171
|
+
"customers.deals.kanban.activityComposer.required.titleOrBody": "저장하기 전에 제목이나 내용을 입력하세요.",
|
|
1172
|
+
"customers.deals.kanban.activityComposer.submit": "활동 저장",
|
|
1173
|
+
"customers.deals.kanban.activityComposer.success": "활동이 저장되었습니다.",
|
|
1174
|
+
"customers.deals.kanban.activityComposer.title": "제목",
|
|
1175
|
+
"customers.deals.kanban.activityComposer.title.placeholder": "짧은 요약 (선택사항)",
|
|
1176
|
+
"customers.deals.kanban.addStage.color": "색상",
|
|
1177
|
+
"customers.deals.kanban.addStage.color.amber": "호박색",
|
|
1178
|
+
"customers.deals.kanban.addStage.color.blue": "파란색",
|
|
1179
|
+
"customers.deals.kanban.addStage.color.brand": "보라색",
|
|
1180
|
+
"customers.deals.kanban.addStage.color.error": "빨간색",
|
|
1181
|
+
"customers.deals.kanban.addStage.color.gray": "회색",
|
|
1182
|
+
"customers.deals.kanban.addStage.color.green": "초록색",
|
|
1183
|
+
"customers.deals.kanban.addStage.color.info": "파란색",
|
|
1184
|
+
"customers.deals.kanban.addStage.color.neutral": "회색",
|
|
1185
|
+
"customers.deals.kanban.addStage.color.none": "색상 없음",
|
|
1186
|
+
"customers.deals.kanban.addStage.color.pink": "분홍색",
|
|
1187
|
+
"customers.deals.kanban.addStage.color.red": "빨간색",
|
|
1188
|
+
"customers.deals.kanban.addStage.color.success": "초록색",
|
|
1189
|
+
"customers.deals.kanban.addStage.color.violet": "보라색",
|
|
1190
|
+
"customers.deals.kanban.addStage.color.warning": "호박색",
|
|
1191
|
+
"customers.deals.kanban.addStage.context": "파이프라인: {pipeline}",
|
|
1192
|
+
"customers.deals.kanban.addStage.error": "단계를 추가하지 못했습니다.",
|
|
1193
|
+
"customers.deals.kanban.addStage.label": "단계 이름",
|
|
1194
|
+
"customers.deals.kanban.addStage.label.placeholder": "예: 발굴",
|
|
1195
|
+
"customers.deals.kanban.addStage.label.required": "단계 이름은 필수입니다.",
|
|
1196
|
+
"customers.deals.kanban.addStage.position": "파이프라인 내 위치",
|
|
1197
|
+
"customers.deals.kanban.addStage.position.after": "{label} 다음",
|
|
1198
|
+
"customers.deals.kanban.addStage.position.end": "맨 끝 (기본값)",
|
|
1199
|
+
"customers.deals.kanban.addStage.position.help": "칸반에서 새 단계가 표시될 위치를 선택하세요. 선택한 위치 이후의 기존 단계는 한 칸씩 오른쪽으로 이동합니다.",
|
|
1200
|
+
"customers.deals.kanban.addStage.position.start": "맨 앞",
|
|
1201
|
+
"customers.deals.kanban.addStage.submit": "단계 추가",
|
|
1202
|
+
"customers.deals.kanban.addStage.success": "단계가 추가되었습니다.",
|
|
1203
|
+
"customers.deals.kanban.addStage.title": "새 단계",
|
|
1204
|
+
"customers.deals.kanban.board.scrollNext": "다음 단계로 스크롤",
|
|
1205
|
+
"customers.deals.kanban.board.scrollPrev": "이전 단계로 스크롤",
|
|
1206
|
+
"customers.deals.kanban.boardSummary.breakdownTrigger": "세부 내역",
|
|
1207
|
+
"customers.deals.kanban.boardSummary.count": "거래 {count}건",
|
|
1208
|
+
"customers.deals.kanban.boardSummary.headingLabel": "파이프라인",
|
|
1209
|
+
"customers.deals.kanban.boardSummary.partial": "일부",
|
|
1210
|
+
"customers.deals.kanban.boardSummary.partialHint": "{currencies}의 환율 정보가 없어 합계에서 제외되었습니다",
|
|
1211
|
+
"customers.deals.kanban.breadcrumb.dashboard": "대시보드",
|
|
1212
|
+
"customers.deals.kanban.breadcrumb.deals": "거래",
|
|
1213
|
+
"customers.deals.kanban.bulk.aria.bar": "일괄 작업",
|
|
1214
|
+
"customers.deals.kanban.bulk.aria.clear": "선택 해제",
|
|
1215
|
+
"customers.deals.kanban.bulk.changeOwner": "담당자 변경",
|
|
1216
|
+
"customers.deals.kanban.bulk.changeOwner.confirm": "거래 {count}건 재배정",
|
|
1217
|
+
"customers.deals.kanban.bulk.changeOwner.empty": "직원을 찾을 수 없습니다.",
|
|
1218
|
+
"customers.deals.kanban.bulk.changeOwner.error": "일괄 담당자 업데이트를 시작하지 못했습니다.",
|
|
1219
|
+
"customers.deals.kanban.bulk.changeOwner.helper": "선택한 모든 거래를 소유할 직원을 선택하세요.",
|
|
1220
|
+
"customers.deals.kanban.bulk.changeOwner.progress.description": "거래 {count}건이 담당자 재배정 대기 중입니다",
|
|
1221
|
+
"customers.deals.kanban.bulk.changeOwner.progress.name": "선택한 거래를 새 담당자에게 재배정",
|
|
1222
|
+
"customers.deals.kanban.bulk.changeOwner.queued": "일괄 담당자 업데이트가 시작되었습니다 ({count}건).",
|
|
1223
|
+
"customers.deals.kanban.bulk.changeOwner.search": "이름 또는 이메일로 검색…",
|
|
1224
|
+
"customers.deals.kanban.bulk.changeOwner.title": "거래 {count}건의 담당자 변경",
|
|
1225
|
+
"customers.deals.kanban.bulk.changeStage": "단계 변경",
|
|
1226
|
+
"customers.deals.kanban.bulk.changeStage.confirm": "거래 {count}건 이동",
|
|
1227
|
+
"customers.deals.kanban.bulk.changeStage.context": "파이프라인: {pipeline}",
|
|
1228
|
+
"customers.deals.kanban.bulk.changeStage.error": "일괄 단계 업데이트를 시작하지 못했습니다.",
|
|
1229
|
+
"customers.deals.kanban.bulk.changeStage.progress.description": "거래 {count}건이 단계 업데이트 대기 중입니다",
|
|
1230
|
+
"customers.deals.kanban.bulk.changeStage.progress.name": "선택한 거래를 새 단계로 이동",
|
|
1231
|
+
"customers.deals.kanban.bulk.changeStage.queued": "일괄 단계 업데이트가 시작되었습니다 ({count}건).",
|
|
1232
|
+
"customers.deals.kanban.bulk.changeStage.title": "거래 {count}건의 단계 변경",
|
|
1233
|
+
"customers.deals.kanban.bulk.delete": "삭제",
|
|
1234
|
+
"customers.deals.kanban.bulk.delete.failedGroup": "거래 {count}건을 삭제하지 못했습니다: {message}",
|
|
1235
|
+
"customers.deals.kanban.bulk.delete.progress.description": "거래 {count}건이 삭제 대기 중입니다",
|
|
1236
|
+
"customers.deals.kanban.bulk.delete.progress.name": "선택한 거래 삭제",
|
|
1237
|
+
"customers.deals.kanban.bulk.delete.success": "거래 {count}건이 삭제되었습니다.",
|
|
1238
|
+
"customers.deals.kanban.bulk.delete.text": "이 작업은 되돌릴 수 없습니다.",
|
|
1239
|
+
"customers.deals.kanban.bulk.delete.title": "거래 {count}건을 삭제하시겠습니까?",
|
|
1240
|
+
"customers.deals.kanban.bulk.dragOverlayBadge": "{count}건 추가 선택됨",
|
|
1241
|
+
"customers.deals.kanban.bulk.exportCsv": "CSV 내보내기",
|
|
1242
|
+
"customers.deals.kanban.bulk.selectedCount": "선택됨",
|
|
1243
|
+
"customers.deals.kanban.bulk.totalValue": "총 {value}",
|
|
1244
|
+
"customers.deals.kanban.card.action.call": "전화",
|
|
1245
|
+
"customers.deals.kanban.card.action.disabledNoCompany": "활동을 기록하려면 먼저 이 거래에 회사를 연결하세요.",
|
|
1246
|
+
"customers.deals.kanban.card.action.email": "이메일",
|
|
1247
|
+
"customers.deals.kanban.card.action.note": "메모",
|
|
1248
|
+
"customers.deals.kanban.card.aria": "거래: {title}",
|
|
1249
|
+
"customers.deals.kanban.card.aria.menu": "거래 작업",
|
|
1250
|
+
"customers.deals.kanban.card.aria.moreCompanies": "회사 {count}개 더보기",
|
|
1251
|
+
"customers.deals.kanban.card.aria.openActivities": "진행 중인 활동 {count}개",
|
|
1252
|
+
"customers.deals.kanban.card.aria.probability": "확률: {value}",
|
|
1253
|
+
"customers.deals.kanban.card.aria.roledescription": "거래 카드",
|
|
1254
|
+
"customers.deals.kanban.card.aria.select": "거래 선택",
|
|
1255
|
+
"customers.deals.kanban.card.daysInStage": "{days}일째",
|
|
1256
|
+
"customers.deals.kanban.card.noValue": "금액 없음",
|
|
1257
|
+
"customers.deals.kanban.card.overdueLabel": "기한 초과",
|
|
1258
|
+
"customers.deals.kanban.card.statusOverdue": "기한 초과",
|
|
1259
|
+
"customers.deals.kanban.card.statusStuck": "정체됨",
|
|
1260
|
+
"customers.deals.kanban.comingSoon": "{feature} 기능은 다음 업데이트에서 제공됩니다.",
|
|
1261
|
+
"customers.deals.kanban.cta.customize": "보기 사용자 지정",
|
|
1262
|
+
"customers.deals.kanban.cta.newDeal": "새 거래",
|
|
1263
|
+
"customers.deals.kanban.cta.newStage": "새 단계",
|
|
1264
|
+
"customers.deals.kanban.cta.quickDeal": "빠른 거래",
|
|
1265
|
+
"customers.deals.kanban.currencyBreakdown.basePill": "기준",
|
|
1266
|
+
"customers.deals.kanban.currencyBreakdown.colCurrency": "통화",
|
|
1267
|
+
"customers.deals.kanban.currencyBreakdown.colDeals": "거래",
|
|
1268
|
+
"customers.deals.kanban.currencyBreakdown.colNativeTotal": "현지 통화 합계",
|
|
1269
|
+
"customers.deals.kanban.currencyBreakdown.footerCredit": "NBP 매매기준율 · {date}",
|
|
1270
|
+
"customers.deals.kanban.currencyBreakdown.headingCount": "(거래 {count}건)",
|
|
1271
|
+
"customers.deals.kanban.currencyBreakdown.title": "레인별 내역",
|
|
1272
|
+
"customers.deals.kanban.currencyFilter.allCurrencies": "전체 통화",
|
|
1273
|
+
"customers.deals.kanban.currencyFilter.apply": "필터 적용",
|
|
1274
|
+
"customers.deals.kanban.currencyFilter.chipLabel": "통화",
|
|
1275
|
+
"customers.deals.kanban.currencyFilter.footerCredit": "NBP 매매기준 환율 · {date}",
|
|
1276
|
+
"customers.deals.kanban.currencyFilter.subtitle": "{label} · 거래 {count}건 · {total} {currency}",
|
|
1277
|
+
"customers.deals.kanban.currencyFilter.title": "통화별로 칸반 필터링",
|
|
1278
|
+
"customers.deals.kanban.customize.actions": "작업",
|
|
1279
|
+
"customers.deals.kanban.customize.configCols": "카드 필드 구성",
|
|
1280
|
+
"customers.deals.kanban.customize.configCols.help": "표시/숨김/순서 변경",
|
|
1281
|
+
"customers.deals.kanban.customize.manageStages": "파이프라인 단계 관리",
|
|
1282
|
+
"customers.deals.kanban.customize.manageStages.help": "이름, 색상, 필수 필드 편집",
|
|
1283
|
+
"customers.deals.kanban.customize.reset": "기본값으로 재설정",
|
|
1284
|
+
"customers.deals.kanban.customize.resetDefault": "기본값으로 재설정",
|
|
1285
|
+
"customers.deals.kanban.customize.resetDefault.help": "필터를 지우고 열을 복원합니다",
|
|
1286
|
+
"customers.deals.kanban.customize.resetWidths": "열 너비 재설정",
|
|
1287
|
+
"customers.deals.kanban.customize.resetWidths.helpCount": "크기가 조정된 열 {count}개의 너비를 기본값으로 복원합니다",
|
|
1288
|
+
"customers.deals.kanban.customize.resetWidths.helpEmpty": "아직 크기가 조정된 열이 없습니다",
|
|
1289
|
+
"customers.deals.kanban.customize.title": "보기 사용자 지정",
|
|
1290
|
+
"customers.deals.kanban.filter.add": "+ 더보기",
|
|
1291
|
+
"customers.deals.kanban.filter.all": "전체",
|
|
1292
|
+
"customers.deals.kanban.filter.allCount": "전체 ({count})",
|
|
1293
|
+
"customers.deals.kanban.filter.any": "하나 이상",
|
|
1294
|
+
"customers.deals.kanban.filter.apply": "적용",
|
|
1295
|
+
"customers.deals.kanban.filter.aria.chip": "{label}(으)로 필터링",
|
|
1296
|
+
"customers.deals.kanban.filter.cancel": "취소",
|
|
1297
|
+
"customers.deals.kanban.filter.clear": "지우기",
|
|
1298
|
+
"customers.deals.kanban.filter.close": "닫기",
|
|
1299
|
+
"customers.deals.kanban.filter.close.title": "필터 · 예상 마감일",
|
|
1300
|
+
"customers.deals.kanban.filter.companies": "회사",
|
|
1301
|
+
"customers.deals.kanban.filter.from": "{date}부터",
|
|
1302
|
+
"customers.deals.kanban.filter.label": "필터",
|
|
1303
|
+
"customers.deals.kanban.filter.more": "필터 더보기",
|
|
1304
|
+
"customers.deals.kanban.filter.multipleSelected": "{count}개 선택됨",
|
|
1305
|
+
"customers.deals.kanban.filter.noResults": "일치하는 항목 없음",
|
|
1306
|
+
"customers.deals.kanban.filter.owner": "담당자",
|
|
1307
|
+
"customers.deals.kanban.filter.people": "연락처",
|
|
1308
|
+
"customers.deals.kanban.filter.pipeline": "파이프라인",
|
|
1309
|
+
"customers.deals.kanban.filter.pipeline.all": "전체 파이프라인",
|
|
1310
|
+
"customers.deals.kanban.filter.pipeline.allHelper": "파이프라인 {count}개",
|
|
1311
|
+
"customers.deals.kanban.filter.pipeline.selectedNone": "파이프라인 필터 없음",
|
|
1312
|
+
"customers.deals.kanban.filter.pipeline.selectedOne": "1개 선택됨 · {name}",
|
|
1313
|
+
"customers.deals.kanban.filter.pipeline.title": "필터 · 파이프라인",
|
|
1314
|
+
"customers.deals.kanban.filter.preset.next30": "향후 30일",
|
|
1315
|
+
"customers.deals.kanban.filter.preset.next90": "향후 90일",
|
|
1316
|
+
"customers.deals.kanban.filter.preset.overdue": "기한 초과",
|
|
1317
|
+
"customers.deals.kanban.filter.preset.thisMonth": "이번 달",
|
|
1318
|
+
"customers.deals.kanban.filter.preset.thisQuarter": "이번 분기",
|
|
1319
|
+
"customers.deals.kanban.filter.searchPlaceholder": "검색…",
|
|
1320
|
+
"customers.deals.kanban.filter.selected": "선택됨",
|
|
1321
|
+
"customers.deals.kanban.filter.status": "상태",
|
|
1322
|
+
"customers.deals.kanban.filter.status.lost": "실패",
|
|
1323
|
+
"customers.deals.kanban.filter.status.open": "열림",
|
|
1324
|
+
"customers.deals.kanban.filter.status.title": "필터 · 상태",
|
|
1325
|
+
"customers.deals.kanban.filter.status.won": "성사",
|
|
1326
|
+
"customers.deals.kanban.filter.title": "필터 · {label}",
|
|
1327
|
+
"customers.deals.kanban.filter.to": "까지",
|
|
1328
|
+
"customers.deals.kanban.filter.until": "{date}까지",
|
|
1329
|
+
"customers.deals.kanban.footer.count": "{pipeline} 파이프라인의 거래 {total}건 중 {visible}건 표시 중",
|
|
1330
|
+
"customers.deals.kanban.helper.dragHint": "카드를 레인 간에 드래그하여 단계를 변경하세요",
|
|
1331
|
+
"customers.deals.kanban.lane.aria.loadMore": "{stage}의 거래 더 불러오기",
|
|
1332
|
+
"customers.deals.kanban.lane.aria.partialCount": "{total}건 중 {visible}건 표시 중",
|
|
1333
|
+
"customers.deals.kanban.lane.aria.quickAdd": "{stage}에 거래 빠르게 추가",
|
|
1334
|
+
"customers.deals.kanban.lane.currencyBreakdown.count": "({count})",
|
|
1335
|
+
"customers.deals.kanban.lane.currencyBreakdown.missingRate": "{base}에 대한 환율이 없어 — 환산 합계에서 제외됨",
|
|
1336
|
+
"customers.deals.kanban.lane.currencyBreakdown.missingRatesHint": "{currencies}에 대한 환율이 없어 합계에서 제외되었습니다. 전체 환산 값을 보려면 환율을 설정하세요.",
|
|
1337
|
+
"customers.deals.kanban.lane.currencyBreakdown.partialTotal": "합계 (일부)",
|
|
1338
|
+
"customers.deals.kanban.lane.currencyBreakdown.title": "통화별 내역",
|
|
1339
|
+
"customers.deals.kanban.lane.currencyBreakdown.total": "합계",
|
|
1340
|
+
"customers.deals.kanban.lane.currencyBreakdown.trigger": "통화별 내역 보기 (통화 {count}개)",
|
|
1341
|
+
"customers.deals.kanban.lane.empty": "아직 이 단계에 거래가 없습니다.",
|
|
1342
|
+
"customers.deals.kanban.lane.loadMore": "더 보기 ({remaining})",
|
|
1343
|
+
"customers.deals.kanban.lane.loadingMore": "불러오는 중…",
|
|
1344
|
+
"customers.deals.kanban.lane.resizeHandle": "드래그하여 열 너비를 조정하세요. 더블클릭하면 너비가 초기화됩니다.",
|
|
1345
|
+
"customers.deals.kanban.menu.delete": "삭제",
|
|
1346
|
+
"customers.deals.kanban.menu.delete.confirmText": "이 작업은 되돌릴 수 없습니다.",
|
|
1347
|
+
"customers.deals.kanban.menu.delete.confirmTitle": "거래 “{title}”을(를) 삭제하시겠습니까?",
|
|
1348
|
+
"customers.deals.kanban.menu.delete.error": "거래를 삭제하지 못했습니다.",
|
|
1349
|
+
"customers.deals.kanban.menu.delete.success": "거래가 삭제되었습니다.",
|
|
1350
|
+
"customers.deals.kanban.menu.duplicate": "복제",
|
|
1351
|
+
"customers.deals.kanban.menu.duplicate.error": "거래를 복제하지 못했습니다.",
|
|
1352
|
+
"customers.deals.kanban.menu.duplicate.success": "거래가 복제되었습니다.",
|
|
1353
|
+
"customers.deals.kanban.menu.duplicate.titleSuffix": "{title} (사본)",
|
|
1354
|
+
"customers.deals.kanban.menu.edit": "편집",
|
|
1355
|
+
"customers.deals.kanban.menu.error.status": "거래 상태를 업데이트하지 못했습니다.",
|
|
1356
|
+
"customers.deals.kanban.menu.markLost": "실패로 표시",
|
|
1357
|
+
"customers.deals.kanban.menu.markLost.success": "거래가 실패로 표시되었습니다.",
|
|
1358
|
+
"customers.deals.kanban.menu.markWon": "성사로 표시",
|
|
1359
|
+
"customers.deals.kanban.menu.markWon.success": "거래가 성사로 표시되었습니다.",
|
|
1360
|
+
"customers.deals.kanban.menu.moveStage": "단계 이동…",
|
|
1361
|
+
"customers.deals.kanban.menu.open": "거래 열기",
|
|
1362
|
+
"customers.deals.kanban.pageTitle": "거래",
|
|
1363
|
+
"customers.deals.kanban.quickDeal.cancel": "취소",
|
|
1364
|
+
"customers.deals.kanban.quickDeal.company": "회사",
|
|
1365
|
+
"customers.deals.kanban.quickDeal.companyPh": "회사를 선택하거나 새로 추가하세요…",
|
|
1366
|
+
"customers.deals.kanban.quickDeal.context": "파이프라인: {pipeline} · 단계: {stage}",
|
|
1367
|
+
"customers.deals.kanban.quickDeal.currency": "통화",
|
|
1368
|
+
"customers.deals.kanban.quickDeal.description": "설명",
|
|
1369
|
+
"customers.deals.kanban.quickDeal.description.placeholder": "간단한 배경 정보, 의사결정권자 또는 다음 단계를 입력하세요. 마크다운을 지원합니다.",
|
|
1370
|
+
"customers.deals.kanban.quickDeal.expectedClose": "예상 마감일",
|
|
1371
|
+
"customers.deals.kanban.quickDeal.more": "추가 세부정보 (확률, 마감일, 설명)",
|
|
1372
|
+
"customers.deals.kanban.quickDeal.owner": "담당자",
|
|
1373
|
+
"customers.deals.kanban.quickDeal.probability": "확률",
|
|
1374
|
+
"customers.deals.kanban.quickDeal.status": "상태",
|
|
1375
|
+
"customers.deals.kanban.quickDeal.status.in_progress": "진행 중",
|
|
1376
|
+
"customers.deals.kanban.quickDeal.status.loose": "정체됨",
|
|
1377
|
+
"customers.deals.kanban.quickDeal.status.open": "열림",
|
|
1378
|
+
"customers.deals.kanban.quickDeal.status.win": "성사",
|
|
1379
|
+
"customers.deals.kanban.quickDeal.submit": "거래 추가",
|
|
1380
|
+
"customers.deals.kanban.quickDeal.success": "{stage}에 거래가 추가되었습니다.",
|
|
1381
|
+
"customers.deals.kanban.quickDeal.title": "빠른 거래",
|
|
1382
|
+
"customers.deals.kanban.quickDeal.title.label": "거래 제목",
|
|
1383
|
+
"customers.deals.kanban.quickDeal.title.placeholder": "예: Q3 확장 — 조명 패키지",
|
|
1384
|
+
"customers.deals.kanban.quickDeal.title.required": "제목은 필수입니다.",
|
|
1385
|
+
"customers.deals.kanban.quickDeal.value": "금액",
|
|
1386
|
+
"customers.deals.kanban.search.placeholder": "거래 검색…",
|
|
1387
|
+
"customers.deals.kanban.sort.default": "기본",
|
|
1388
|
+
"customers.deals.kanban.sort.defaultHint": "기본값: {label}",
|
|
1389
|
+
"customers.deals.kanban.sort.label": "정렬",
|
|
1390
|
+
"customers.deals.kanban.sort.option.closeSoonest": "마감일 (가까운 순)",
|
|
1391
|
+
"customers.deals.kanban.sort.option.createdNewest": "생성일 (최신순)",
|
|
1392
|
+
"customers.deals.kanban.sort.option.ownerAsc": "담당자 (A → Z)",
|
|
1393
|
+
"customers.deals.kanban.sort.option.probabilityHigh": "확률 (높은 순)",
|
|
1394
|
+
"customers.deals.kanban.sort.option.updatedNewest": "수정일 (최신순)",
|
|
1395
|
+
"customers.deals.kanban.sort.option.updatedOldest": "수정일 (오래된순)",
|
|
1396
|
+
"customers.deals.kanban.sort.option.valueHigh": "금액 (높은 순)",
|
|
1397
|
+
"customers.deals.kanban.sort.option.valueLow": "금액 (낮은 순)",
|
|
1398
|
+
"customers.deals.kanban.sort.title": "정렬 기준",
|
|
1399
|
+
"customers.deals.kanban.view.kanban": "칸반",
|
|
1400
|
+
"customers.deals.kanban.view.list": "목록",
|
|
1401
|
+
"customers.deals.kanban.view.map": "지도",
|
|
1402
|
+
"customers.deals.kanban.view.tablistLabel": "거래 보기",
|
|
1403
|
+
"customers.deals.list.actions.delete": "삭제",
|
|
1404
|
+
"customers.deals.list.actions.deleting": "삭제하는 중…",
|
|
1405
|
+
"customers.deals.list.actions.edit": "편집",
|
|
1406
|
+
"customers.deals.list.actions.new": "새 거래",
|
|
1407
|
+
"customers.deals.list.actions.openInNewTab": "새 탭에서 열기",
|
|
1408
|
+
"customers.deals.list.booleanNo": "아니요",
|
|
1409
|
+
"customers.deals.list.booleanYes": "예",
|
|
1410
|
+
"customers.deals.list.bulkDelete.action": "선택 항목 삭제",
|
|
1411
|
+
"customers.deals.list.bulkDelete.description": "이 작업은 되돌릴 수 없습니다.",
|
|
1412
|
+
"customers.deals.list.bulkDelete.failed": "거래 {count}건을 삭제하지 못했습니다",
|
|
1413
|
+
"customers.deals.list.bulkDelete.failedGroup": "거래 {count}건을 삭제할 수 없습니다: {message}",
|
|
1414
|
+
"customers.deals.list.bulkDelete.operationLabel": "거래 {count}건 삭제",
|
|
1415
|
+
"customers.deals.list.bulkDelete.partial": "거래 {total}건 중 {deleted}건 삭제됨; {failed}건 실패",
|
|
1416
|
+
"customers.deals.list.bulkDelete.progressDescription": "삭제를 위해 선택된 {count} 거래",
|
|
1417
|
+
"customers.deals.list.bulkDelete.progressName": "선택한 거래 삭제",
|
|
1418
|
+
"customers.deals.list.bulkDelete.success": "거래 {count}건 삭제됨",
|
|
1419
|
+
"customers.deals.list.bulkDelete.title": "거래 {count}건을 삭제하시겠습니까?",
|
|
1420
|
+
"customers.deals.list.close.lost": "실패",
|
|
1421
|
+
"customers.deals.list.close.overdue": "기한 초과",
|
|
1422
|
+
"customers.deals.list.close.won": "성사",
|
|
1423
|
+
"customers.deals.list.columns.companies": "회사",
|
|
1424
|
+
"customers.deals.list.columns.expectedClose": "예상 마감일",
|
|
1425
|
+
"customers.deals.list.columns.owner": "담당자",
|
|
1426
|
+
"customers.deals.list.columns.people": "연락처",
|
|
1427
|
+
"customers.deals.list.columns.pipeline": "파이프라인",
|
|
1428
|
+
"customers.deals.list.columns.pipelineStage": "파이프라인 단계",
|
|
1429
|
+
"customers.deals.list.columns.probability": "확률",
|
|
1430
|
+
"customers.deals.list.columns.status": "상태",
|
|
1431
|
+
"customers.deals.list.columns.title": "제목",
|
|
1432
|
+
"customers.deals.list.columns.updatedAt": "수정일",
|
|
1433
|
+
"customers.deals.list.columns.value": "금액",
|
|
1434
|
+
"customers.deals.list.deleteConfirm": "이 거래를 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다.",
|
|
1435
|
+
"customers.deals.list.deleteError": "거래를 삭제하지 못했습니다.",
|
|
1436
|
+
"customers.deals.list.deleteSuccess": "거래가 삭제되었습니다.",
|
|
1437
|
+
"customers.deals.list.error.load": "거래 목록을 불러올 수 없습니다",
|
|
1438
|
+
"customers.deals.list.filters.companies": "회사",
|
|
1439
|
+
"customers.deals.list.filters.companiesPlaceholder": "회사로 필터링",
|
|
1440
|
+
"customers.deals.list.filters.needsAttention": "주의 필요",
|
|
1441
|
+
"customers.deals.list.filters.needsAttentionRemove": "주의 필요 필터 제거",
|
|
1442
|
+
"customers.deals.list.filters.people": "연락처",
|
|
1443
|
+
"customers.deals.list.filters.peoplePlaceholder": "연락처로 필터링",
|
|
1444
|
+
"customers.deals.list.kpi.activeAcrossPipelines": "{pipelines}에 걸쳐 {deals}",
|
|
1445
|
+
"customers.deals.list.kpi.activeDeals": "활성 거래",
|
|
1446
|
+
"customers.deals.list.kpi.avgDeal": "평균 거래 {value}",
|
|
1447
|
+
"customers.deals.list.kpi.currencyApproxMissing": "근사치입니다. 환율이 없는 {currencies} 거래는 제외되었습니다.",
|
|
1448
|
+
"customers.deals.list.kpi.currencyApproxNoBase": "근사치입니다. 기준 통화가 설정되어 있지 않습니다.",
|
|
1449
|
+
"customers.deals.list.kpi.deltaTooltip": "이전 기간 대비",
|
|
1450
|
+
"customers.deals.list.kpi.deltaUnavailable": "비교할 변동 없음",
|
|
1451
|
+
"customers.deals.list.kpi.error": "거래 지표를 불러올 수 없습니다",
|
|
1452
|
+
"customers.deals.list.kpi.frag.activeDeals.few": "활성 거래 {count}건",
|
|
1453
|
+
"customers.deals.list.kpi.frag.activeDeals.many": "활성 거래 {count}건",
|
|
1454
|
+
"customers.deals.list.kpi.frag.activeDeals.one": "활성 거래 {count}건",
|
|
1455
|
+
"customers.deals.list.kpi.frag.activeDeals.other": "활성 거래 {count}건",
|
|
1456
|
+
"customers.deals.list.kpi.frag.dealsClosed.few": "이번 분기에 거래 {count}건 마감",
|
|
1457
|
+
"customers.deals.list.kpi.frag.dealsClosed.many": "이번 분기에 거래 {count}건 마감",
|
|
1458
|
+
"customers.deals.list.kpi.frag.dealsClosed.one": "이번 분기에 거래 {count}건 마감",
|
|
1459
|
+
"customers.deals.list.kpi.frag.dealsClosed.other": "이번 분기에 거래 {count}건 마감",
|
|
1460
|
+
"customers.deals.list.kpi.frag.needAttention.few": "{count}건 주의 필요",
|
|
1461
|
+
"customers.deals.list.kpi.frag.needAttention.many": "{count}건 주의 필요",
|
|
1462
|
+
"customers.deals.list.kpi.frag.needAttention.one": "{count}건 주의 필요",
|
|
1463
|
+
"customers.deals.list.kpi.frag.needAttention.other": "{count}건 주의 필요",
|
|
1464
|
+
"customers.deals.list.kpi.frag.owners.few": "담당자 {count}명",
|
|
1465
|
+
"customers.deals.list.kpi.frag.owners.many": "담당자 {count}명",
|
|
1466
|
+
"customers.deals.list.kpi.frag.owners.one": "담당자 {count}명",
|
|
1467
|
+
"customers.deals.list.kpi.frag.owners.other": "담당자 {count}명",
|
|
1468
|
+
"customers.deals.list.kpi.frag.pipelines.few": "파이프라인 {count}개",
|
|
1469
|
+
"customers.deals.list.kpi.frag.pipelines.many": "파이프라인 {count}개",
|
|
1470
|
+
"customers.deals.list.kpi.frag.pipelines.one": "파이프라인 {count}개",
|
|
1471
|
+
"customers.deals.list.kpi.frag.pipelines.other": "파이프라인 {count}개",
|
|
1472
|
+
"customers.deals.list.kpi.fromLastQuarter": "지난 분기 대비 {value}%",
|
|
1473
|
+
"customers.deals.list.kpi.ownersNeedAttention": "{owners} · {attention}",
|
|
1474
|
+
"customers.deals.list.kpi.pipelineValue": "파이프라인 금액",
|
|
1475
|
+
"customers.deals.list.kpi.retry": "다시 시도",
|
|
1476
|
+
"customers.deals.list.kpi.scopeAllPipelinesThisQuarter": "전체 파이프라인 · 이번 분기",
|
|
1477
|
+
"customers.deals.list.kpi.unassignedStage": "미지정",
|
|
1478
|
+
"customers.deals.list.kpi.updating": "지표 업데이트 중",
|
|
1479
|
+
"customers.deals.list.kpi.winRate": "성사율",
|
|
1480
|
+
"customers.deals.list.kpi.wonThisQuarter": "이번 분기 성사",
|
|
1481
|
+
"customers.deals.list.noValue": "설정 안 됨",
|
|
1482
|
+
"customers.deals.list.refresh": "새로고침",
|
|
1483
|
+
"customers.deals.list.searchPlaceholder": "제목, 설명으로 검색…",
|
|
1484
|
+
"customers.deals.list.title": "거래",
|
|
1485
|
+
"customers.deals.list.unknownOwner": "담당자 없음",
|
|
1486
|
+
"customers.deals.list.unnamedCompany": "이름 없는 회사",
|
|
1487
|
+
"customers.deals.list.unnamedPerson": "이름 없는 연락처",
|
|
1488
|
+
"customers.deals.map.canvas.label": "거래 지도",
|
|
1489
|
+
"customers.deals.map.canvas.loading": "지도를 불러오는 중…",
|
|
1490
|
+
"customers.deals.map.legend.title": "단계",
|
|
1491
|
+
"customers.deals.map.loadError": "지도에 표시할 거래를 불러오지 못했습니다.",
|
|
1492
|
+
"customers.deals.map.panel.count": "{count}건 위치 확인됨",
|
|
1493
|
+
"customers.deals.map.panel.empty.description": "회사 또는 연락처 주소에 위도와 경도를 추가하면 여기에 거래를 표시할 수 있습니다.",
|
|
1494
|
+
"customers.deals.map.panel.empty.title": "아직 지도에 표시된 거래가 없습니다",
|
|
1495
|
+
"customers.deals.map.panel.hint": "거래 또는 지도 핀을 클릭하면 미리 볼 수 있습니다.",
|
|
1496
|
+
"customers.deals.map.panel.noAddress": "주소 좌표 없음",
|
|
1497
|
+
"customers.deals.map.panel.sort.label": "거래 패널 정렬",
|
|
1498
|
+
"customers.deals.map.panel.sort.listOrder": "목록 순서",
|
|
1499
|
+
"customers.deals.map.panel.sort.proximity": "가까운 순",
|
|
1500
|
+
"customers.deals.map.panel.title": "위치가 있는 거래",
|
|
1501
|
+
"customers.deals.map.preview.close": "미리보기 닫기",
|
|
1502
|
+
"customers.deals.map.preview.closeShort": "마감 {date}",
|
|
1503
|
+
"customers.deals.map.preview.openDeal": "거래 열기",
|
|
1504
|
+
"customers.deals.map.preview.probabilityShort": "{value}%",
|
|
1505
|
+
"customers.deals.map.retry": "다시 시도",
|
|
1506
|
+
"customers.deals.map.truncated": "위치가 확인된 거래 {total}건 중 처음 {count}건을 표시 중입니다 — 필터를 조정해 지도를 좁혀보세요.",
|
|
1507
|
+
"customers.deals.pipeline.actions.openDeal": "거래 열기",
|
|
1508
|
+
"customers.deals.pipeline.card.expectedClose": "예상 마감일",
|
|
1509
|
+
"customers.deals.pipeline.card.probability": "확률",
|
|
1510
|
+
"customers.deals.pipeline.card.value": "금액",
|
|
1511
|
+
"customers.deals.pipeline.countLabel": "거래: {count}",
|
|
1512
|
+
"customers.deals.pipeline.emptyLane": "아직 이 단계에 거래가 없습니다.",
|
|
1513
|
+
"customers.deals.pipeline.limitNotice": "처음 {count}건의 거래를 표시 중입니다. 더 보려면 필터를 조정하세요.",
|
|
1514
|
+
"customers.deals.pipeline.loadError": "거래를 불러오지 못했습니다.",
|
|
1515
|
+
"customers.deals.pipeline.manageStages": "단계 관리",
|
|
1516
|
+
"customers.deals.pipeline.moveError": "거래 단계를 업데이트하지 못했습니다.",
|
|
1517
|
+
"customers.deals.pipeline.moveSuccess": "거래가 업데이트되었습니다.",
|
|
1518
|
+
"customers.deals.pipeline.noExpectedClose": "날짜 없음",
|
|
1519
|
+
"customers.deals.pipeline.noPipeline": "선택된 파이프라인이 없습니다. 설정에서 파이프라인을 생성하세요.",
|
|
1520
|
+
"customers.deals.pipeline.noProbability": "해당 없음",
|
|
1521
|
+
"customers.deals.pipeline.noStages": "거래 추적을 시작하려면 파이프라인 단계를 정의하세요.",
|
|
1522
|
+
"customers.deals.pipeline.sort.createdAt": "생성일 (최신순)",
|
|
1523
|
+
"customers.deals.pipeline.sort.expectedCloseAt": "예상 마감일 (가까운 순)",
|
|
1524
|
+
"customers.deals.pipeline.sort.label": "정렬 기준",
|
|
1525
|
+
"customers.deals.pipeline.sort.probability": "확률 (높은 순)",
|
|
1526
|
+
"customers.deals.pipeline.subtitle": "파이프라인 단계별로 거래를 추적하고, 레인 간에 드래그하여 진행 상황을 업데이트하세요.",
|
|
1527
|
+
"customers.deals.pipeline.switch.label": "파이프라인",
|
|
1528
|
+
"customers.deals.pipeline.title": "영업 파이프라인",
|
|
1529
|
+
"customers.deals.pipeline.unassigned": "단계 없음",
|
|
1530
|
+
"customers.deals.pipeline.unassignedDisabled": "\"단계 없음\"으로 이동하는 것은 지원되지 않습니다.",
|
|
1531
|
+
"customers.deals.pipeline.untitled": "제목 없는 거래",
|
|
1532
|
+
"customers.deals.presets.closingMonth": "이번 달 마감",
|
|
1533
|
+
"customers.deals.presets.myDeals": "내 거래",
|
|
1534
|
+
"customers.deals.presets.wonQuarter": "이번 분기 성사",
|
|
1535
|
+
"customers.detail.comingSoon": "곧 제공됩니다",
|
|
1536
|
+
"customers.detail.saveGuide": "프로필 필드는 메인 저장 버튼으로 저장됩니다. 태그는 자동으로 저장됩니다. 아래의 관련 섹션들은 각자의 탭과 패널 내에서 독립적으로 저장됩니다.",
|
|
1537
|
+
"customers.dictionaryEntries.create": "고객 사전 항목 추가",
|
|
1538
|
+
"customers.dictionaryEntries.delete": "고객 사전 항목 삭제",
|
|
1539
|
+
"customers.dictionaryEntries.update": "고객 사전 항목 업데이트",
|
|
1540
|
+
"customers.email.compose.addCc": "+ 참조",
|
|
1541
|
+
"customers.email.compose.addCc.ariaLabel": "참조 수신자 추가",
|
|
1542
|
+
"customers.email.compose.body": "본문",
|
|
1543
|
+
"customers.email.compose.bodyPlaceholder": "메시지를 입력하세요...",
|
|
1544
|
+
"customers.email.compose.button": "이메일 보내기",
|
|
1545
|
+
"customers.email.compose.cancel": "취소",
|
|
1546
|
+
"customers.email.compose.cc": "참조",
|
|
1547
|
+
"customers.email.compose.ccPlaceholder": "cc@example.com",
|
|
1548
|
+
"customers.email.compose.noChannel.cta": "메일함 연결하기",
|
|
1549
|
+
"customers.email.compose.replyTitle": "답장",
|
|
1550
|
+
"customers.email.compose.selectChannel": "계정 선택",
|
|
1551
|
+
"customers.email.compose.send": "보내기",
|
|
1552
|
+
"customers.email.compose.sendAs": "보내는 계정",
|
|
1553
|
+
"customers.email.compose.sending": "보내는 중...",
|
|
1554
|
+
"customers.email.compose.sent": "이메일이 전송되었습니다",
|
|
1555
|
+
"customers.email.compose.subject": "제목",
|
|
1556
|
+
"customers.email.compose.subjectPlaceholder": "이메일 제목",
|
|
1557
|
+
"customers.email.compose.title": "이메일 작성",
|
|
1558
|
+
"customers.email.compose.to": "받는 사람",
|
|
1559
|
+
"customers.email.compose.toPlaceholder": "recipient@example.com",
|
|
1560
|
+
"customers.email.compose.visibility": "공개 범위",
|
|
1561
|
+
"customers.email.compose.visibilityPrivate": "나만 보기",
|
|
1562
|
+
"customers.email.compose.visibilityShared": "팀원에게 공개",
|
|
1563
|
+
"customers.email.errors.deliveryFailed": "전송 실패 — 발송되지 않음",
|
|
1564
|
+
"customers.email.errors.flipFailed": "공개 범위 업데이트 실패",
|
|
1565
|
+
"customers.email.errors.sendFailed": "전송 실패",
|
|
1566
|
+
"customers.email.sync.button": "동기화",
|
|
1567
|
+
"customers.email.sync.failed": "메일함 동기화에 실패했습니다",
|
|
1568
|
+
"customers.email.sync.success": "동기화가 시작되었습니다 — 새 답장은 몇 초 후에 표시됩니다.",
|
|
1569
|
+
"customers.email.sync.syncing": "동기화하는 중...",
|
|
1570
|
+
"customers.email.sync.tooltip": "메일함에서 새 답장 확인",
|
|
1571
|
+
"customers.email.threads.loadFailed": "이메일을 불러오지 못했습니다",
|
|
1572
|
+
"customers.email.timeline.actionsAria": "이메일 작업",
|
|
1573
|
+
"customers.email.timeline.forward": "전달",
|
|
1574
|
+
"customers.email.timeline.reply": "답장",
|
|
1575
|
+
"customers.email.timeline.replyAll": "전체 답장",
|
|
1576
|
+
"customers.email.visibility.flipToPrivate.label": "비공개로 전환",
|
|
1577
|
+
"customers.email.visibility.flipToPrivate.success": "이메일이 비공개로 전환되었습니다",
|
|
1578
|
+
"customers.email.visibility.flipToShared.label": "팀원과 공유",
|
|
1579
|
+
"customers.email.visibility.flipToShared.success": "이메일이 팀원과 공유되었습니다",
|
|
1580
|
+
"customers.errors.access_denied": "접근이 거부되었습니다",
|
|
1581
|
+
"customers.errors.activity_required": "활동 ID가 필요합니다",
|
|
1582
|
+
"customers.errors.address_required": "주소 ID가 필요합니다",
|
|
1583
|
+
"customers.errors.assign_failed": "태그를 할당하지 못했습니다",
|
|
1584
|
+
"customers.errors.assignable_staff_load_failed": "할당 가능한 직원을 불러오지 못했습니다",
|
|
1585
|
+
"customers.errors.authentication_required": "인증이 필요합니다",
|
|
1586
|
+
"customers.errors.bulk_enqueue_failed": "일괄 작업을 대기열에 추가하지 못했습니다",
|
|
1587
|
+
"customers.errors.comment_required": "댓글 ID가 필요합니다",
|
|
1588
|
+
"customers.errors.company_not_found": "회사를 찾을 수 없습니다",
|
|
1589
|
+
"customers.errors.company_people_load_failed": "연결된 연락처를 불러오지 못했습니다",
|
|
1590
|
+
"customers.errors.company_required": "회사 ID가 필요합니다",
|
|
1591
|
+
"customers.errors.context_required": "조직 및 테넌트 컨텍스트가 필요합니다",
|
|
1592
|
+
"customers.errors.customer_label_tables_missing": "고객 라벨 테이블이 없습니다. yarn db:migrate를 실행하세요.",
|
|
1593
|
+
"customers.errors.customer_not_found": "고객을 찾을 수 없습니다",
|
|
1594
|
+
"customers.errors.deal_companies_load_failed": "연결된 회사를 불러오지 못했습니다",
|
|
1595
|
+
"customers.errors.deal_not_closed": "거래가 마감되지 않았습니다",
|
|
1596
|
+
"customers.errors.deal_not_found": "거래를 찾을 수 없습니다",
|
|
1597
|
+
"customers.errors.deal_people_load_failed": "연결된 연락처를 불러오지 못했습니다",
|
|
1598
|
+
"customers.errors.deal_required": "거래 ID가 필요합니다",
|
|
1599
|
+
"customers.errors.entity_not_found": "항목을 찾을 수 없습니다",
|
|
1600
|
+
"customers.errors.failed_to_assign_label": "라벨을 할당하지 못했습니다",
|
|
1601
|
+
"customers.errors.failed_to_assign_role": "역할을 할당하지 못했습니다",
|
|
1602
|
+
"customers.errors.failed_to_delete_role": "역할을 삭제하지 못했습니다",
|
|
1603
|
+
"customers.errors.failed_to_load_roles": "역할을 불러오지 못했습니다",
|
|
1604
|
+
"customers.errors.failed_to_update_role": "역할을 업데이트하지 못했습니다",
|
|
1605
|
+
"customers.errors.interaction_required": "상호작용 ID가 필요합니다",
|
|
1606
|
+
"customers.errors.internal": "내부 서버 오류",
|
|
1607
|
+
"customers.errors.internalError": "내부 서버 오류",
|
|
1608
|
+
"customers.errors.invalid_date_time": "잘못된 날짜/시간입니다",
|
|
1609
|
+
"customers.errors.invalid_payload": "잘못된 요청 데이터입니다",
|
|
1610
|
+
"customers.errors.invalid_query": "잘못된 쿼리 매개변수입니다",
|
|
1611
|
+
"customers.errors.kind_settings_load_failed": "유형 설정을 불러오지 못했습니다",
|
|
1612
|
+
"customers.errors.label_duplicate": "이 슬러그를 가진 라벨이 이미 존재합니다",
|
|
1613
|
+
"customers.errors.label_not_found": "라벨을 찾을 수 없습니다",
|
|
1614
|
+
"customers.errors.labels_load_failed": "라벨을 불러오지 못했습니다",
|
|
1615
|
+
"customers.errors.lookup_failed": "사전 항목을 불러오지 못했습니다",
|
|
1616
|
+
"customers.errors.organization_forbidden": "조직에 접근할 수 없습니다",
|
|
1617
|
+
"customers.errors.organization_required": "조직 컨텍스트가 필요합니다",
|
|
1618
|
+
"customers.errors.person_company_link_not_found": "연락처-회사 연결을 찾을 수 없습니다",
|
|
1619
|
+
"customers.errors.person_not_found": "연락처를 찾을 수 없습니다",
|
|
1620
|
+
"customers.errors.person_profile_not_found": "연락처 프로필을 찾을 수 없습니다",
|
|
1621
|
+
"customers.errors.person_required": "연락처 ID가 필요합니다",
|
|
1622
|
+
"customers.errors.primaryPersonMustBeLinked": "기본 담당자가 거래에 연결되어야 합니다.",
|
|
1623
|
+
"customers.errors.profile_must_be_object": "profile은 객체여야 합니다",
|
|
1624
|
+
"customers.errors.profile_unsupported_field": "지원되지 않는 프로필 필드입니다: {{field}}",
|
|
1625
|
+
"customers.errors.role_not_found": "역할을 찾을 수 없습니다",
|
|
1626
|
+
"customers.errors.save_failed": "고객 레코드를 저장하지 못했습니다.",
|
|
1627
|
+
"customers.errors.tag_required": "태그 ID가 필요합니다",
|
|
1628
|
+
"customers.errors.tenant_required": "테넌트 컨텍스트가 필요합니다",
|
|
1629
|
+
"customers.errors.todo_create_failed": "할 일을 생성하지 못했습니다",
|
|
1630
|
+
"customers.errors.todo_entity_not_found": "고객을 찾을 수 없습니다",
|
|
1631
|
+
"customers.errors.todo_entity_required": "고객 참조가 필요합니다",
|
|
1632
|
+
"customers.errors.todo_link_failed": "할 일을 연결하지 못했습니다",
|
|
1633
|
+
"customers.errors.todo_link_required": "할 일 연결 ID가 필요합니다",
|
|
1634
|
+
"customers.errors.todo_list_failed": "고객 작업을 불러오지 못했습니다",
|
|
1635
|
+
"customers.errors.todo_scope_forbidden": "이 조직에서는 고객에 접근할 수 없습니다",
|
|
1636
|
+
"customers.errors.todo_unlink_failed": "할 일 연결을 해제하지 못했습니다",
|
|
1637
|
+
"customers.errors.unassign_failed": "태그 할당을 해제하지 못했습니다",
|
|
1638
|
+
"customers.errors.unauthorized": "권한이 없습니다",
|
|
1639
|
+
"customers.errors.validationFailed": "유효성 검사에 실패했습니다",
|
|
1640
|
+
"customers.fields.bankIban": "은행 / IBAN",
|
|
1641
|
+
"customers.filters.currentUser": "현재 사용자",
|
|
1642
|
+
"customers.health.daysAgo": "{{days}}일 전",
|
|
1643
|
+
"customers.health.lastContact": "마지막 연락",
|
|
1644
|
+
"customers.health.today": "오늘",
|
|
1645
|
+
"customers.interactions.cancel.confirm": "이 상호작용을 취소하시겠습니까?",
|
|
1646
|
+
"customers.interactions.cancel.error": "상호작용을 취소하지 못했습니다.",
|
|
1647
|
+
"customers.interactions.cancel.success": "상호작용이 취소되었습니다.",
|
|
1648
|
+
"customers.interactions.complete.error": "상호작용을 완료 처리하지 못했습니다.",
|
|
1649
|
+
"customers.interactions.complete.success": "상호작용이 완료되었습니다.",
|
|
1650
|
+
"customers.interactions.create.error": "상호작용을 생성하지 못했습니다.",
|
|
1651
|
+
"customers.interactions.create.success": "상호작용이 생성되었습니다.",
|
|
1652
|
+
"customers.interactions.cursor.invalid": "잘못된 커서입니다.",
|
|
1653
|
+
"customers.interactions.delete.confirm": "이 상호작용을 삭제하시겠습니까?",
|
|
1654
|
+
"customers.interactions.delete.error": "상호작용을 삭제하지 못했습니다.",
|
|
1655
|
+
"customers.interactions.delete.success": "상호작용이 삭제되었습니다.",
|
|
1656
|
+
"customers.interactions.empty": "아직 상호작용이 없습니다.",
|
|
1657
|
+
"customers.interactions.form.body": "메모",
|
|
1658
|
+
"customers.interactions.form.dealId": "연결된 거래",
|
|
1659
|
+
"customers.interactions.form.interactionType": "유형",
|
|
1660
|
+
"customers.interactions.form.ownerUserId": "담당자",
|
|
1661
|
+
"customers.interactions.form.priority": "우선순위",
|
|
1662
|
+
"customers.interactions.form.scheduledAt": "예정 일시",
|
|
1663
|
+
"customers.interactions.form.title": "제목",
|
|
1664
|
+
"customers.interactions.legacyAdapters.disabled": "이 레거시 어댑터는 비활성화되었습니다. 대신 /api/customers/interactions를 사용하세요.",
|
|
1665
|
+
"customers.interactions.list.title": "상호작용",
|
|
1666
|
+
"customers.interactions.load.error": "상호작용을 불러오지 못했습니다.",
|
|
1667
|
+
"customers.interactions.status.canceled": "취소됨",
|
|
1668
|
+
"customers.interactions.status.done": "완료",
|
|
1669
|
+
"customers.interactions.status.in_progress": "진행중",
|
|
1670
|
+
"customers.interactions.status.planned": "예정",
|
|
1671
|
+
"customers.interactions.status.waiting": "대기 중/차단됨",
|
|
1672
|
+
"customers.interactions.update.error": "상호작용을 수정하지 못했습니다.",
|
|
1673
|
+
"customers.interactions.update.success": "상호작용이 수정되었습니다.",
|
|
1674
|
+
"customers.linking.actions.cancel": "취소",
|
|
1675
|
+
"customers.linking.actions.save": "연결 저장",
|
|
1676
|
+
"customers.linking.actions.saving": "저장 중…",
|
|
1677
|
+
"customers.linking.company.addNew": "새 회사 추가",
|
|
1678
|
+
"customers.linking.company.confirmButton": "회사 연결",
|
|
1679
|
+
"customers.linking.company.dialogDescription": "페이지를 벗어나지 않고 기존 회사를 검색하고, 기본 관계를 변경하고, 연결할 수 있습니다.",
|
|
1680
|
+
"customers.linking.company.dialogSubtitle": "이 사람에게 기존 회사를 연결합니다",
|
|
1681
|
+
"customers.linking.company.dialogSubtitleFor": "{{name}}에게 기존 회사를 연결합니다",
|
|
1682
|
+
"customers.linking.company.dialogTitle": "회사 연결",
|
|
1683
|
+
"customers.linking.company.searchEmpty": "일치하는 회사를 찾을 수 없습니다.",
|
|
1684
|
+
"customers.linking.company.searchPlaceholder": "전체 회사 검색…",
|
|
1685
|
+
"customers.linking.company.sectionLabel": "일치하는 회사",
|
|
1686
|
+
"customers.linking.company.selectedEmpty": "선택된 회사가 없습니다.",
|
|
1687
|
+
"customers.linking.deal.addNew": "새 거래 추가",
|
|
1688
|
+
"customers.linking.deal.confirmButton": "거래 연결",
|
|
1689
|
+
"customers.linking.deal.dialogDescription": "이 레코드에 연결할 기존 거래를 검색하세요.",
|
|
1690
|
+
"customers.linking.deal.dialogSubtitle": "기존 거래를 이 레코드에 연결",
|
|
1691
|
+
"customers.linking.deal.dialogTitle": "거래 연결",
|
|
1692
|
+
"customers.linking.deal.orphanWarning": "이 거래에는 연결된 다른 항목이 없습니다. 나중에 연결을 해제하면 접근할 수 없게 됩니다.",
|
|
1693
|
+
"customers.linking.deal.orphanWarningTitle": "회사가 없는 거래",
|
|
1694
|
+
"customers.linking.deal.searchEmpty": "일치하는 거래를 찾을 수 없습니다.",
|
|
1695
|
+
"customers.linking.deal.searchPlaceholder": "전체 거래 검색…",
|
|
1696
|
+
"customers.linking.deal.sectionLabel": "일치하는 거래",
|
|
1697
|
+
"customers.linking.deal.selectedEmpty": "선택된 거래가 없습니다.",
|
|
1698
|
+
"customers.linking.orphanWarning.dismiss": "경고 닫기",
|
|
1699
|
+
"customers.linking.pagination.next": "다음 페이지",
|
|
1700
|
+
"customers.linking.pagination.nextShort": "다음",
|
|
1701
|
+
"customers.linking.pagination.pageOf": "{{total}} 중 {{page}} 페이지",
|
|
1702
|
+
"customers.linking.pagination.previous": "이전 페이지",
|
|
1703
|
+
"customers.linking.pagination.previousShort": "이전",
|
|
1704
|
+
"customers.linking.person.addNew": "새 사람 추가",
|
|
1705
|
+
"customers.linking.person.addNewSubtitle": "회사는 자동으로 채워집니다.",
|
|
1706
|
+
"customers.linking.person.confirmButton": "사람 연결",
|
|
1707
|
+
"customers.linking.person.dialogDescription": "페이지를 벗어나지 않고 기존 사람을 검색하여 이 레코드에 연결할 수 있습니다.",
|
|
1708
|
+
"customers.linking.person.dialogSubtitle": "기존 연락처를 이 회사에 연결",
|
|
1709
|
+
"customers.linking.person.dialogSubtitleFor": "기존 연락처를 {{name}}에 연결",
|
|
1710
|
+
"customers.linking.person.dialogTitle": "사람 연결",
|
|
1711
|
+
"customers.linking.person.searchEmpty": "일치하는 사람을 찾을 수 없습니다.",
|
|
1712
|
+
"customers.linking.person.searchPlaceholder": "전체 사람 검색…",
|
|
1713
|
+
"customers.linking.person.sectionLabel": "일치하는 연락처",
|
|
1714
|
+
"customers.linking.person.selectedEmpty": "선택된 사람이 없습니다.",
|
|
1715
|
+
"customers.linking.preview.empty": "왼쪽에서 항목을 선택하면 여기에 상세 정보가 표시됩니다.",
|
|
1716
|
+
"customers.linking.preview.label": "미리보기",
|
|
1717
|
+
"customers.linking.preview.loading": "상세 정보를 불러오는 중…",
|
|
1718
|
+
"customers.linking.primary.badge": "기본",
|
|
1719
|
+
"customers.linking.primary.current": "기본",
|
|
1720
|
+
"customers.linking.primary.help": "연결된 레코드 중 기본으로 처리할 항목을 선택하세요.",
|
|
1721
|
+
"customers.linking.primary.set": "기본으로 설정",
|
|
1722
|
+
"customers.linking.primary.setAction": "기본으로 설정",
|
|
1723
|
+
"customers.linking.resultsCount": "{{count}}건의 결과",
|
|
1724
|
+
"customers.linking.searchResults": "검색 결과",
|
|
1725
|
+
"customers.linking.searching": "검색 중…",
|
|
1726
|
+
"customers.linking.selectEntity": "{{name}} 선택",
|
|
1727
|
+
"customers.linking.selected.clearAll": "지우기",
|
|
1728
|
+
"customers.linking.selected.count": "{{count}}개 선택됨",
|
|
1729
|
+
"customers.linking.selected.label": "선택됨",
|
|
1730
|
+
"customers.linking.selected.remove": "제거",
|
|
1731
|
+
"customers.linking.selected.title": "선택됨",
|
|
1732
|
+
"customers.linking.settings.label": "연결 설정",
|
|
1733
|
+
"customers.messageObjects.company.title": "회사",
|
|
1734
|
+
"customers.messageObjects.deal.title": "거래",
|
|
1735
|
+
"customers.messageObjects.notFound": "찾을 수 없음",
|
|
1736
|
+
"customers.messageObjects.person.title": "사람",
|
|
1737
|
+
"customers.nav.activities": "활동",
|
|
1738
|
+
"customers.nav.companies": "회사",
|
|
1739
|
+
"customers.nav.companies.create": "새 회사",
|
|
1740
|
+
"customers.nav.deals": "거래",
|
|
1741
|
+
"customers.nav.deals.map": "거래 지도",
|
|
1742
|
+
"customers.nav.deals.pipeline": "영업 파이프라인",
|
|
1743
|
+
"customers.nav.group": "고객",
|
|
1744
|
+
"customers.nav.people": "사람",
|
|
1745
|
+
"customers.nav.people.create": "새 사람",
|
|
1746
|
+
"customers.notifications.deal.lost.body": "{dealTitle}이(가) 실패로 표시되었습니다",
|
|
1747
|
+
"customers.notifications.deal.lost.title": "거래 실패",
|
|
1748
|
+
"customers.notifications.deal.won.body": "{dealTitle}이(가) 성사로 표시되었습니다{dealValue, select, other { ({dealValue})}}",
|
|
1749
|
+
"customers.notifications.deal.won.title": "거래 성사",
|
|
1750
|
+
"customers.people.card.defaultStage": "고객",
|
|
1751
|
+
"customers.people.card.linkedOn": "{{date}}에 연결됨",
|
|
1752
|
+
"customers.people.card.more": "더 보기",
|
|
1753
|
+
"customers.people.card.open": "사람 상세 보기",
|
|
1754
|
+
"customers.people.card.source": "출처",
|
|
1755
|
+
"customers.people.card.toggleStar": "즐겨찾기 토글",
|
|
1756
|
+
"customers.people.card.unlink": "연결 해제",
|
|
1757
|
+
"customers.people.create.title": "사람 생성",
|
|
1758
|
+
"customers.people.createDialog.auto": "자동",
|
|
1759
|
+
"customers.people.createDialog.autoLink": "회사에 자동 연결됨",
|
|
1760
|
+
"customers.people.createDialog.cancel": "취소",
|
|
1761
|
+
"customers.people.createDialog.company": "회사",
|
|
1762
|
+
"customers.people.createDialog.contact": "연락처",
|
|
1763
|
+
"customers.people.createDialog.creating": "생성 중...",
|
|
1764
|
+
"customers.people.createDialog.description": "설명",
|
|
1765
|
+
"customers.people.createDialog.displayNamePreview": "표시 이름 미리보기",
|
|
1766
|
+
"customers.people.createDialog.editName": "이름 수정",
|
|
1767
|
+
"customers.people.createDialog.email": "기본 이메일",
|
|
1768
|
+
"customers.people.createDialog.error": "사람 생성에 실패했습니다",
|
|
1769
|
+
"customers.people.createDialog.firstName": "이름",
|
|
1770
|
+
"customers.people.createDialog.jobTitle": "직책",
|
|
1771
|
+
"customers.people.createDialog.lastName": "성",
|
|
1772
|
+
"customers.people.createDialog.notes": "메모",
|
|
1773
|
+
"customers.people.createDialog.personalData": "개인 정보",
|
|
1774
|
+
"customers.people.createDialog.phone": "기본 전화번호",
|
|
1775
|
+
"customers.people.createDialog.position": "직책 및 회사",
|
|
1776
|
+
"customers.people.createDialog.required": "* 표시된 항목은 필수입니다",
|
|
1777
|
+
"customers.people.createDialog.submit": "사람 생성",
|
|
1778
|
+
"customers.people.createDialog.success": "사람이 생성되고 회사에 연결되었습니다",
|
|
1779
|
+
"customers.people.createDialog.title": "새 사람 추가",
|
|
1780
|
+
"customers.people.decisionMakers.count": "핵심 인물 {{count}}명",
|
|
1781
|
+
"customers.people.decisionMakers.label": "의사결정권자",
|
|
1782
|
+
"customers.people.decisionMakers.more": "더 보기",
|
|
1783
|
+
"customers.people.decisionMakers.sendInvitation": "초대장 보내기",
|
|
1784
|
+
"customers.people.delete.blocked": "사람을 삭제할 수 없습니다: {{blockers}}. 먼저 연결을 해제하거나 재할당하세요.",
|
|
1785
|
+
"customers.people.delete.blockers.deals": "연결된 거래 ({{count}}건)",
|
|
1786
|
+
"customers.people.detail.actions.addDeal": "거래 추가",
|
|
1787
|
+
"customers.people.detail.actions.backToList": "사람 목록으로 돌아가기",
|
|
1788
|
+
"customers.people.detail.actions.cancel": "취소",
|
|
1789
|
+
"customers.people.detail.actions.delete": "삭제",
|
|
1790
|
+
"customers.people.detail.actions.editEmail": "이메일 수정",
|
|
1791
|
+
"customers.people.detail.actions.editPhone": "전화번호 수정",
|
|
1792
|
+
"customers.people.detail.actions.history": "이력",
|
|
1793
|
+
"customers.people.detail.actions.linkCompany": "회사 연결",
|
|
1794
|
+
"customers.people.detail.actions.linkTodo": "작업 연결",
|
|
1795
|
+
"customers.people.detail.actions.manageAddresses": "주소 관리",
|
|
1796
|
+
"customers.people.detail.actions.manageTags": "태그 편집",
|
|
1797
|
+
"customers.people.detail.actions.more": "더 보기",
|
|
1798
|
+
"customers.people.detail.actions.save": "저장",
|
|
1799
|
+
"customers.people.detail.actions.sendMessage": "메시지 보내기",
|
|
1800
|
+
"customers.people.detail.activities.add": "활동 추가",
|
|
1801
|
+
"customers.people.detail.activities.addTitle": "활동 추가",
|
|
1802
|
+
"customers.people.detail.activities.bodyPlaceholder": "상호작용 내용을 입력하세요",
|
|
1803
|
+
"customers.people.detail.activities.cancel": "취소",
|
|
1804
|
+
"customers.people.detail.activities.deleteConfirm": "이 활동을 삭제하시겠습니까? 버전 기록을 통해 복원할 수 있습니다.",
|
|
1805
|
+
"customers.people.detail.activities.deleteError": "활동을 삭제하지 못했습니다.",
|
|
1806
|
+
"customers.people.detail.activities.deleteSuccess": "활동이 삭제되었습니다.",
|
|
1807
|
+
"customers.people.detail.activities.editTitle": "활동 수정",
|
|
1808
|
+
"customers.people.detail.activities.entityMissing": "저장하기 전에 관련 고객을 선택하세요.",
|
|
1809
|
+
"customers.people.detail.activities.error": "활동을 저장하지 못했습니다",
|
|
1810
|
+
"customers.people.detail.activities.fields.body": "설명",
|
|
1811
|
+
"customers.people.detail.activities.fields.deal": "거래에 연결 (선택 사항)",
|
|
1812
|
+
"customers.people.detail.activities.fields.dealPlaceholder": "연결된 거래 없음",
|
|
1813
|
+
"customers.people.detail.activities.fields.entity": "고객에게 할당",
|
|
1814
|
+
"customers.people.detail.activities.fields.occurredAt": "발생 일시",
|
|
1815
|
+
"customers.people.detail.activities.fields.subject": "제목",
|
|
1816
|
+
"customers.people.detail.activities.fields.type": "유형",
|
|
1817
|
+
"customers.people.detail.activities.filterLabel": "필터:",
|
|
1818
|
+
"customers.people.detail.activities.form.customFields": "사용자 정의 필드",
|
|
1819
|
+
"customers.people.detail.activities.form.details": "활동 상세 정보",
|
|
1820
|
+
"customers.people.detail.activities.invalidDate": "유효한 날짜와 시간을 입력하세요",
|
|
1821
|
+
"customers.people.detail.activities.linkedDeal": "연결된 거래",
|
|
1822
|
+
"customers.people.detail.activities.loadError": "활동을 불러오지 못했습니다.",
|
|
1823
|
+
"customers.people.detail.activities.loadMore": "활동 더 불러오기",
|
|
1824
|
+
"customers.people.detail.activities.loading": "활동을 불러오는 중…",
|
|
1825
|
+
"customers.people.detail.activities.loggedBy": "{{user}}님이 기록함",
|
|
1826
|
+
"customers.people.detail.activities.moreFilters": "더 보기",
|
|
1827
|
+
"customers.people.detail.activities.noDate": "날짜가 입력되지 않음",
|
|
1828
|
+
"customers.people.detail.activities.save": "활동 저장 (⌘/Ctrl + Enter)",
|
|
1829
|
+
"customers.people.detail.activities.saving": "저장 중…",
|
|
1830
|
+
"customers.people.detail.activities.subjectPlaceholder": "제목 입력 (선택 사항)",
|
|
1831
|
+
"customers.people.detail.activities.success": "활동이 저장되었습니다",
|
|
1832
|
+
"customers.people.detail.activities.typeRequired": "활동 유형은 필수입니다",
|
|
1833
|
+
"customers.people.detail.activities.update": "활동 수정 (⌘/Ctrl + Enter)",
|
|
1834
|
+
"customers.people.detail.activities.updateSuccess": "활동이 수정되었습니다",
|
|
1835
|
+
"customers.people.detail.address": "주소",
|
|
1836
|
+
"customers.people.detail.addresses.add": "주소 추가",
|
|
1837
|
+
"customers.people.detail.addresses.addTitle": "주소 추가",
|
|
1838
|
+
"customers.people.detail.addresses.cancel": "취소",
|
|
1839
|
+
"customers.people.detail.addresses.countryClear": "선택 해제",
|
|
1840
|
+
"customers.people.detail.addresses.countryClose": "완료",
|
|
1841
|
+
"customers.people.detail.addresses.countryDialogDescription": "ISO 국가 코드를 검색하여 선택하세요.",
|
|
1842
|
+
"customers.people.detail.addresses.countryDialogTitle": "국가 선택",
|
|
1843
|
+
"customers.people.detail.addresses.countryEmpty": "일치하는 항목이 없습니다",
|
|
1844
|
+
"customers.people.detail.addresses.countryPlaceholder": "국가 선택",
|
|
1845
|
+
"customers.people.detail.addresses.countrySearch": "국가 검색",
|
|
1846
|
+
"customers.people.detail.addresses.deleteAction": "주소 삭제",
|
|
1847
|
+
"customers.people.detail.addresses.deleted": "주소가 삭제되었습니다",
|
|
1848
|
+
"customers.people.detail.addresses.editAction": "주소 수정",
|
|
1849
|
+
"customers.people.detail.addresses.editTitle": "주소 수정",
|
|
1850
|
+
"customers.people.detail.addresses.empty": "아직 주소가 없습니다",
|
|
1851
|
+
"customers.people.detail.addresses.emptyTitle": "아직 주소가 없습니다",
|
|
1852
|
+
"customers.people.detail.addresses.error": "주소를 저장하지 못했습니다",
|
|
1853
|
+
"customers.people.detail.addresses.fields.buildingNumber": "건물 번호",
|
|
1854
|
+
"customers.people.detail.addresses.fields.city": "도시",
|
|
1855
|
+
"customers.people.detail.addresses.fields.companyName": "회사명",
|
|
1856
|
+
"customers.people.detail.addresses.fields.country": "국가",
|
|
1857
|
+
"customers.people.detail.addresses.fields.flatNumber": "호실 / 아파트",
|
|
1858
|
+
"customers.people.detail.addresses.fields.label": "라벨",
|
|
1859
|
+
"customers.people.detail.addresses.fields.latitude": "위도",
|
|
1860
|
+
"customers.people.detail.addresses.fields.line1": "주소 1",
|
|
1861
|
+
"customers.people.detail.addresses.fields.line2": "주소 2",
|
|
1862
|
+
"customers.people.detail.addresses.fields.longitude": "경도",
|
|
1863
|
+
"customers.people.detail.addresses.fields.postalCode": "우편번호",
|
|
1864
|
+
"customers.people.detail.addresses.fields.primary": "기본 주소로 설정",
|
|
1865
|
+
"customers.people.detail.addresses.fields.region": "지역 / 주",
|
|
1866
|
+
"customers.people.detail.addresses.fields.street": "도로명",
|
|
1867
|
+
"customers.people.detail.addresses.fields.streetExtra": "추가 주소 정보",
|
|
1868
|
+
"customers.people.detail.addresses.fields.type": "주소 유형",
|
|
1869
|
+
"customers.people.detail.addresses.formatLoadError": "주소 설정을 불러오지 못했습니다",
|
|
1870
|
+
"customers.people.detail.addresses.formatLoading": "주소 설정을 불러오는 중…",
|
|
1871
|
+
"customers.people.detail.addresses.line1Required": "주소 1은 필수입니다",
|
|
1872
|
+
"customers.people.detail.addresses.lineFormatHint": "주소 줄 형식이 적용되어 있습니다.",
|
|
1873
|
+
"customers.people.detail.addresses.save": "주소 저장 ⌘⏎ / Ctrl+Enter",
|
|
1874
|
+
"customers.people.detail.addresses.saving": "저장 중…",
|
|
1875
|
+
"customers.people.detail.addresses.streetFormatHint": "도로명 우선 형식이 적용되어 있습니다.",
|
|
1876
|
+
"customers.people.detail.addresses.success": "주소가 저장되었습니다",
|
|
1877
|
+
"customers.people.detail.addresses.title": "주소",
|
|
1878
|
+
"customers.people.detail.addresses.types.add": "유형 추가",
|
|
1879
|
+
"customers.people.detail.addresses.types.addHint": "재사용할 새 주소 유형을 만드세요.",
|
|
1880
|
+
"customers.people.detail.addresses.types.cancel": "취소",
|
|
1881
|
+
"customers.people.detail.addresses.types.dialogTitle": "주소 유형 추가",
|
|
1882
|
+
"customers.people.detail.addresses.types.emptyError": "이름을 입력하세요",
|
|
1883
|
+
"customers.people.detail.addresses.types.error": "주소 유형을 불러오지 못했습니다",
|
|
1884
|
+
"customers.people.detail.addresses.types.errorSave": "주소 유형을 저장하지 못했습니다",
|
|
1885
|
+
"customers.people.detail.addresses.types.inputLabel": "이름",
|
|
1886
|
+
"customers.people.detail.addresses.types.inputPlaceholder": "청구지",
|
|
1887
|
+
"customers.people.detail.addresses.types.loading": "주소 유형을 불러오는 중…",
|
|
1888
|
+
"customers.people.detail.addresses.types.manage": "주소 유형 관리",
|
|
1889
|
+
"customers.people.detail.addresses.types.placeholder": "유형 선택",
|
|
1890
|
+
"customers.people.detail.addresses.types.prompt": "새 주소 유형 이름을 입력하세요.",
|
|
1891
|
+
"customers.people.detail.addresses.types.save": "저장",
|
|
1892
|
+
"customers.people.detail.addresses.types.saveError": "주소 유형을 저장하지 못했습니다.",
|
|
1893
|
+
"customers.people.detail.addresses.update": "주소 수정 ⌘⏎ / Ctrl+Enter",
|
|
1894
|
+
"customers.people.detail.addresses.updating": "수정 중…",
|
|
1895
|
+
"customers.people.detail.addresses.validation.coordinateRange": "{{field}}은(는) {{min}}에서 {{max}} 사이여야 합니다",
|
|
1896
|
+
"customers.people.detail.addresses.validation.generic": "{{field}}을(를) 확인하세요",
|
|
1897
|
+
"customers.people.detail.addresses.validation.invalid": "{{field}}의 값이 올바르지 않습니다",
|
|
1898
|
+
"customers.people.detail.addresses.validation.required": "{{field}}을(를) 입력하세요",
|
|
1899
|
+
"customers.people.detail.addresses.validation.tooLong": "{{field}}이(가) 너무 깁니다 (최대 {{max}}자)",
|
|
1900
|
+
"customers.people.detail.anonymous": "익명",
|
|
1901
|
+
"customers.people.detail.attachments.description": "이 레코드에 연결된 파일입니다.",
|
|
1902
|
+
"customers.people.detail.attachments.title": "첨부 파일",
|
|
1903
|
+
"customers.people.detail.companies.addAction": "회사 연결",
|
|
1904
|
+
"customers.people.detail.companies.addError": "회사를 연결하지 못했습니다.",
|
|
1905
|
+
"customers.people.detail.companies.addSuccess": "회사가 연결되었습니다.",
|
|
1906
|
+
"customers.people.detail.companies.adding": "연결 중…",
|
|
1907
|
+
"customers.people.detail.companies.alreadyLinked": "이미 연결된 회사입니다.",
|
|
1908
|
+
"customers.people.detail.companies.clearVisible": "표시된 항목 지우기",
|
|
1909
|
+
"customers.people.detail.companies.dialogApply": "적용",
|
|
1910
|
+
"customers.people.detail.companies.dialogCancel": "취소",
|
|
1911
|
+
"customers.people.detail.companies.dialogDescription": "페이지를 벗어나지 않고 하나 이상의 회사를 검색하고, 기본 관계를 변경하고, 연결을 제거할 수 있습니다.",
|
|
1912
|
+
"customers.people.detail.companies.dialogSaving": "저장 중…",
|
|
1913
|
+
"customers.people.detail.companies.dialogTitle": "연결된 회사 관리",
|
|
1914
|
+
"customers.people.detail.companies.linkLoadError": "회사를 불러오지 못했습니다.",
|
|
1915
|
+
"customers.people.detail.companies.loadError": "회사를 불러오지 못했습니다.",
|
|
1916
|
+
"customers.people.detail.companies.loadMore": "회사 더 불러오기",
|
|
1917
|
+
"customers.people.detail.companies.loading": "회사를 불러오는 중…",
|
|
1918
|
+
"customers.people.detail.companies.makePrimary": "기본으로 설정",
|
|
1919
|
+
"customers.people.detail.companies.manageAction": "연결 관리",
|
|
1920
|
+
"customers.people.detail.companies.manageError": "연결된 회사를 수정하지 못했습니다.",
|
|
1921
|
+
"customers.people.detail.companies.manageSuccess": "연결된 회사가 수정되었습니다.",
|
|
1922
|
+
"customers.people.detail.companies.manageTitle": "연결된 회사 관리",
|
|
1923
|
+
"customers.people.detail.companies.noSearchResults": "검색 조건에 맞는 연결된 회사가 없습니다.",
|
|
1924
|
+
"customers.people.detail.companies.primaryBadge": "기본",
|
|
1925
|
+
"customers.people.detail.companies.primaryError": "기본 회사를 수정하지 못했습니다.",
|
|
1926
|
+
"customers.people.detail.companies.primaryPending": "수정 중…",
|
|
1927
|
+
"customers.people.detail.companies.primarySuccess": "기본 회사가 수정되었습니다.",
|
|
1928
|
+
"customers.people.detail.companies.removeAction": "제거",
|
|
1929
|
+
"customers.people.detail.companies.removeError": "회사를 제거하지 못했습니다.",
|
|
1930
|
+
"customers.people.detail.companies.removeSuccess": "회사가 제거되었습니다.",
|
|
1931
|
+
"customers.people.detail.companies.removing": "제거 중…",
|
|
1932
|
+
"customers.people.detail.companies.searchAllPlaceholder": "전체 회사 검색…",
|
|
1933
|
+
"customers.people.detail.companies.searchEmpty": "일치하는 회사를 찾을 수 없습니다.",
|
|
1934
|
+
"customers.people.detail.companies.searchLoading": "회사를 검색하는 중…",
|
|
1935
|
+
"customers.people.detail.companies.searchPlaceholder": "연결된 회사 검색…",
|
|
1936
|
+
"customers.people.detail.companies.searchResults": "검색 결과",
|
|
1937
|
+
"customers.people.detail.companies.selectVisible": "표시된 항목 선택",
|
|
1938
|
+
"customers.people.detail.companies.selectedEmpty": "선택된 회사가 없습니다.",
|
|
1939
|
+
"customers.people.detail.companies.selectedSummary": "회사 {{count}}개",
|
|
1940
|
+
"customers.people.detail.companies.selectedTitle": "선택된 회사",
|
|
1941
|
+
"customers.people.detail.companies.setPrimary": "기본으로 설정",
|
|
1942
|
+
"customers.people.detail.companies.sortNameAsc": "정렬: 이름 오름차순",
|
|
1943
|
+
"customers.people.detail.companies.sortNameDesc": "정렬: 이름 내림차순",
|
|
1944
|
+
"customers.people.detail.companies.sortRecent": "정렬: 최근 활동순",
|
|
1945
|
+
"customers.people.detail.companies.subtitle": "이 사람에게 하나 이상의 회사를 연결하고 기본 관계를 선택하세요.",
|
|
1946
|
+
"customers.people.detail.companies.summary": "연결된 회사 {{count}}개",
|
|
1947
|
+
"customers.people.detail.companies.unlinkAction": "연결 해제",
|
|
1948
|
+
"customers.people.detail.companies.unlinkConfirm": "{{person}}에서 {{company}}의 연결을 해제하시겠습니까?",
|
|
1949
|
+
"customers.people.detail.companies.unlinkConfirmTitle": "회사 연결 해제",
|
|
1950
|
+
"customers.people.detail.companies.unlinkError": "회사 연결을 해제하지 못했습니다.",
|
|
1951
|
+
"customers.people.detail.companies.unlinkSuccess": "회사 연결이 해제되었습니다.",
|
|
1952
|
+
"customers.people.detail.company.current": "{{company}}",
|
|
1953
|
+
"customers.people.detail.company.empty": "할당된 회사 없음",
|
|
1954
|
+
"customers.people.detail.company.label": "회사",
|
|
1955
|
+
"customers.people.detail.company.loadError": "회사 정보를 불러올 수 없습니다.",
|
|
1956
|
+
"customers.people.detail.company.loading": "회사 정보를 불러오는 중…",
|
|
1957
|
+
"customers.people.detail.company.saveError": "회사 정보를 수정할 수 없습니다.",
|
|
1958
|
+
"customers.people.detail.company.unknown": "알 수 없는 회사",
|
|
1959
|
+
"customers.people.detail.customFields.defineFirst": "첫 항목 정의하기",
|
|
1960
|
+
"customers.people.detail.deals.addTitle": "거래 생성",
|
|
1961
|
+
"customers.people.detail.deals.cancel": "취소",
|
|
1962
|
+
"customers.people.detail.deals.closing": "종결 처리 중…",
|
|
1963
|
+
"customers.people.detail.deals.currencyInvalid": "통화는 3자리 코드여야 합니다",
|
|
1964
|
+
"customers.people.detail.deals.deleteConfirm": "이 거래를 삭제하시겠습니까? 버전 기록을 통해 복원할 수 있습니다.",
|
|
1965
|
+
"customers.people.detail.deals.deleteError": "거래를 삭제하지 못했습니다.",
|
|
1966
|
+
"customers.people.detail.deals.deleteSuccess": "거래가 삭제되었습니다.",
|
|
1967
|
+
"customers.people.detail.deals.descriptionTooLong": "설명이 너무 깁니다",
|
|
1968
|
+
"customers.people.detail.deals.edit": "거래 상세 정보 열기",
|
|
1969
|
+
"customers.people.detail.deals.editTitle": "거래 수정",
|
|
1970
|
+
"customers.people.detail.deals.error": "거래를 저장하지 못했습니다.",
|
|
1971
|
+
"customers.people.detail.deals.expectedCloseInvalid": "유효한 종료 예정일을 입력하세요",
|
|
1972
|
+
"customers.people.detail.deals.fields.companies": "회사",
|
|
1973
|
+
"customers.people.detail.deals.fields.description": "설명",
|
|
1974
|
+
"customers.people.detail.deals.fields.expectedCloseAt": "종료 예정일",
|
|
1975
|
+
"customers.people.detail.deals.fields.people": "사람",
|
|
1976
|
+
"customers.people.detail.deals.fields.pipelineStage": "파이프라인 단계",
|
|
1977
|
+
"customers.people.detail.deals.fields.probability": "성사 확률 (%)",
|
|
1978
|
+
"customers.people.detail.deals.fields.status": "상태",
|
|
1979
|
+
"customers.people.detail.deals.fields.title": "제목",
|
|
1980
|
+
"customers.people.detail.deals.fields.valueAmount": "거래 금액",
|
|
1981
|
+
"customers.people.detail.deals.fields.valueCurrency": "통화",
|
|
1982
|
+
"customers.people.detail.deals.form.associations": "연결 항목",
|
|
1983
|
+
"customers.people.detail.deals.form.customFields": "사용자 정의 필드",
|
|
1984
|
+
"customers.people.detail.deals.form.details": "거래 상세 정보",
|
|
1985
|
+
"customers.people.detail.deals.linkError": "거래를 연결하지 못했습니다.",
|
|
1986
|
+
"customers.people.detail.deals.linkExisting": "기존 거래 연결",
|
|
1987
|
+
"customers.people.detail.deals.linkSuccess": "거래가 연결되었습니다.",
|
|
1988
|
+
"customers.people.detail.deals.loadError": "거래를 불러오지 못했습니다.",
|
|
1989
|
+
"customers.people.detail.deals.loadMore": "거래 더 불러오기",
|
|
1990
|
+
"customers.people.detail.deals.loading": "거래를 불러오는 중…",
|
|
1991
|
+
"customers.people.detail.deals.markLost": "실패로 표시",
|
|
1992
|
+
"customers.people.detail.deals.markLostSuccess": "거래가 실패로 표시되었습니다.",
|
|
1993
|
+
"customers.people.detail.deals.openDeal": "거래 열기",
|
|
1994
|
+
"customers.people.detail.deals.pipelineIdInvalid": "유효한 파이프라인을 선택하세요.",
|
|
1995
|
+
"customers.people.detail.deals.pipelineStageIdInvalid": "유효한 파이프라인 단계를 선택하세요.",
|
|
1996
|
+
"customers.people.detail.deals.pipelineTooLong": "파이프라인 단계가 너무 깁니다",
|
|
1997
|
+
"customers.people.detail.deals.probabilityInvalid": "성사 확률은 0에서 100 사이여야 합니다",
|
|
1998
|
+
"customers.people.detail.deals.removeConfirm": "이 레코드에서 거래를 제거하시겠습니까? 거래 자체는 삭제되지 않습니다.",
|
|
1999
|
+
"customers.people.detail.deals.removeError": "이 레코드에서 거래를 제거하지 못했습니다.",
|
|
2000
|
+
"customers.people.detail.deals.removeSuccess": "이 레코드에서 거래가 제거되었습니다.",
|
|
2001
|
+
"customers.people.detail.deals.save": "거래 저장 (⌘/Ctrl + Enter)",
|
|
2002
|
+
"customers.people.detail.deals.saving": "저장 중…",
|
|
2003
|
+
"customers.people.detail.deals.statusTooLong": "상태 값이 너무 깁니다",
|
|
2004
|
+
"customers.people.detail.deals.success": "거래가 생성되었습니다",
|
|
2005
|
+
"customers.people.detail.deals.titleRequired": "제목은 필수입니다",
|
|
2006
|
+
"customers.people.detail.deals.titleTooLong": "제목이 너무 깁니다",
|
|
2007
|
+
"customers.people.detail.deals.unlinkConfirmCompany": "이 회사에서 거래의 연결을 해제하시겠습니까?",
|
|
2008
|
+
"customers.people.detail.deals.unlinkConfirmPerson": "이 사람에서 거래의 연결을 해제하시겠습니까?",
|
|
2009
|
+
"customers.people.detail.deals.unlinkDescription": "거래는 자체 상세 페이지에서 계속 확인할 수 있습니다.",
|
|
2010
|
+
"customers.people.detail.deals.unlinkError": "거래 연결을 해제하지 못했습니다.",
|
|
2011
|
+
"customers.people.detail.deals.unlinkSuccess": "거래 연결이 해제되었습니다.",
|
|
2012
|
+
"customers.people.detail.deals.unlinking": "연결 해제 중…",
|
|
2013
|
+
"customers.people.detail.deals.update": "거래 수정 (⌘/Ctrl + Enter)",
|
|
2014
|
+
"customers.people.detail.deals.updateError": "거래를 수정하지 못했습니다.",
|
|
2015
|
+
"customers.people.detail.deals.updateSuccess": "거래가 수정되었습니다.",
|
|
2016
|
+
"customers.people.detail.deals.valueInvalid": "유효한 금액을 입력하세요",
|
|
2017
|
+
"customers.people.detail.deleteConfirmDescription": "이 작업은 되돌릴 수 없습니다.",
|
|
2018
|
+
"customers.people.detail.deleteConfirmTitle": "사람을 삭제하시겠습니까?",
|
|
2019
|
+
"customers.people.detail.deleteError": "사람을 삭제하지 못했습니다.",
|
|
2020
|
+
"customers.people.detail.empty.activities": "아직 활동이 없습니다",
|
|
2021
|
+
"customers.people.detail.empty.addresses": "아직 주소가 없습니다",
|
|
2022
|
+
"customers.people.detail.empty.comments": "아직 메모가 없습니다",
|
|
2023
|
+
"customers.people.detail.empty.companies": "이 사람에게 연결된 회사가 없습니다.",
|
|
2024
|
+
"customers.people.detail.empty.deals": "아직 거래가 없습니다",
|
|
2025
|
+
"customers.people.detail.empty.tags": "아직 태그가 없습니다",
|
|
2026
|
+
"customers.people.detail.empty.todos": "연결된 작업이 없습니다",
|
|
2027
|
+
"customers.people.detail.emptyState.activities.action": "첫 활동 예약하기",
|
|
2028
|
+
"customers.people.detail.emptyState.activities.title": "아직 활동이 없습니다.",
|
|
2029
|
+
"customers.people.detail.emptyState.addresses.action": "첫 주소 추가하기",
|
|
2030
|
+
"customers.people.detail.emptyState.addresses.title": "아직 등록된 주소가 없습니다.",
|
|
2031
|
+
"customers.people.detail.emptyState.deals.action": "첫 거래 생성하기",
|
|
2032
|
+
"customers.people.detail.emptyState.deals.title": "아직 추적 중인 거래가 없습니다.",
|
|
2033
|
+
"customers.people.detail.emptyState.notes.action": "첫 메모 작성하기",
|
|
2034
|
+
"customers.people.detail.emptyState.notes.title": "아직 메모가 없습니다.",
|
|
2035
|
+
"customers.people.detail.emptyState.tasks.action": "첫 작업 추가하기",
|
|
2036
|
+
"customers.people.detail.emptyState.tasks.title": "아직 연결된 작업이 없습니다.",
|
|
2037
|
+
"customers.people.detail.error.load": "사람 상세 정보를 불러올 수 없습니다",
|
|
2038
|
+
"customers.people.detail.error.notFound": "사람을 찾을 수 없습니다",
|
|
2039
|
+
"customers.people.detail.fields.department": "부서",
|
|
2040
|
+
"customers.people.detail.fields.description": "설명",
|
|
2041
|
+
"customers.people.detail.fields.displayName": "표시 이름",
|
|
2042
|
+
"customers.people.detail.fields.jobTitle": "직책",
|
|
2043
|
+
"customers.people.detail.fields.lifecycleStage": "생명주기 단계",
|
|
2044
|
+
"customers.people.detail.fields.linkedIn": "LinkedIn",
|
|
2045
|
+
"customers.people.detail.fields.seniority": "직급 레벨",
|
|
2046
|
+
"customers.people.detail.fields.source": "소스",
|
|
2047
|
+
"customers.people.detail.fields.timezone": "시간대",
|
|
2048
|
+
"customers.people.detail.fields.twitter": "Twitter",
|
|
2049
|
+
"customers.people.detail.files.subtitle": "이 연락처와 연결된 파일을 업로드하고 관리하세요.",
|
|
2050
|
+
"customers.people.detail.header.at": "에서",
|
|
2051
|
+
"customers.people.detail.header.companies": "회사",
|
|
2052
|
+
"customers.people.detail.header.linkCompany": "회사 연결",
|
|
2053
|
+
"customers.people.detail.header.more": "더보기",
|
|
2054
|
+
"customers.people.detail.header.primary": "기본",
|
|
2055
|
+
"customers.people.detail.highlights.company": "회사",
|
|
2056
|
+
"customers.people.detail.highlights.nextInteraction": "다음 상호작용",
|
|
2057
|
+
"customers.people.detail.highlights.nextInteractionHint": "가장 가까운 예정된 상호작용을 표시합니다. 마감일이 있는 작업을 생성하면 이 항목이 채워집니다.",
|
|
2058
|
+
"customers.people.detail.highlights.nextInteractionLegacyHint": "통합 상호작용 기능이 활성화된 경우 사용할 수 있습니다. 마감일이 있는 작업을 생성하면 다음 예정된 상호작용을 확인할 수 있습니다.",
|
|
2059
|
+
"customers.people.detail.highlights.primaryEmail": "기본 이메일",
|
|
2060
|
+
"customers.people.detail.highlights.primaryPhone": "기본 전화번호",
|
|
2061
|
+
"customers.people.detail.highlights.status": "상태",
|
|
2062
|
+
"customers.people.detail.inline.cancel": "취소",
|
|
2063
|
+
"customers.people.detail.inline.clear": "지우기",
|
|
2064
|
+
"customers.people.detail.inline.emailChecking": "일치하는 레코드를 확인하는 중...",
|
|
2065
|
+
"customers.people.detail.inline.emailDuplicate": "이 이메일은 이미 {{name}}에 지정되어 있습니다.",
|
|
2066
|
+
"customers.people.detail.inline.emailDuplicateLink": "레코드 열기",
|
|
2067
|
+
"customers.people.detail.inline.emailInvalid": "유효한 이메일 주소를 입력하세요",
|
|
2068
|
+
"customers.people.detail.inline.error": "문제가 발생했습니다",
|
|
2069
|
+
"customers.people.detail.inline.linkedInInvalid": "LinkedIn 프로필 또는 페이지 URL을 입력하세요",
|
|
2070
|
+
"customers.people.detail.inline.nextInteractionAppearanceEmpty": "선택된 표시 스타일이 없습니다",
|
|
2071
|
+
"customers.people.detail.inline.nextInteractionColorClear": "색상 제거",
|
|
2072
|
+
"customers.people.detail.inline.nextInteractionColorHelp": "다음 상호작용을 강조할 색상을 선택하세요.",
|
|
2073
|
+
"customers.people.detail.inline.nextInteractionColorLabel": "강조 색상",
|
|
2074
|
+
"customers.people.detail.inline.nextInteractionIconBrowse": "아이콘 및 이모지 찾아보기",
|
|
2075
|
+
"customers.people.detail.inline.nextInteractionIconClear": "아이콘 제거",
|
|
2076
|
+
"customers.people.detail.inline.nextInteractionIconLabel": "아이콘",
|
|
2077
|
+
"customers.people.detail.inline.nextInteractionIconPlaceholder": "이모지를 입력하거나 추천 항목을 선택하세요",
|
|
2078
|
+
"customers.people.detail.inline.nextInteractionIconSearchEmpty": "검색 결과와 일치하는 아이콘이 없습니다",
|
|
2079
|
+
"customers.people.detail.inline.nextInteractionIconSearchPlaceholder": "아이콘 또는 이모지 검색…",
|
|
2080
|
+
"customers.people.detail.inline.nextInteractionIconSuggestions": "추천",
|
|
2081
|
+
"customers.people.detail.inline.nextInteractionInvalid": "유효한 날짜와 시간을 입력하세요",
|
|
2082
|
+
"customers.people.detail.inline.nextInteractionName": "상호작용 이름",
|
|
2083
|
+
"customers.people.detail.inline.nextInteractionRef": "참조 ID",
|
|
2084
|
+
"customers.people.detail.inline.phoneInvalid": "전화번호는 최소 3자 이상이어야 합니다",
|
|
2085
|
+
"customers.people.detail.inline.required": "이 필드는 필수입니다",
|
|
2086
|
+
"customers.people.detail.inline.save": "저장",
|
|
2087
|
+
"customers.people.detail.inline.saveShortcut": "저장 ⌘⏎ / Ctrl+Enter",
|
|
2088
|
+
"customers.people.detail.inline.twitterInvalid": "Twitter 프로필 URL을 입력하세요",
|
|
2089
|
+
"customers.people.detail.inline.urlInvalid": "유효한 URL을 입력하세요",
|
|
2090
|
+
"customers.people.detail.loading": "연락처 정보를 불러오는 중",
|
|
2091
|
+
"customers.people.detail.noValue": "설정되지 않음",
|
|
2092
|
+
"customers.people.detail.notes.add": "메모 추가",
|
|
2093
|
+
"customers.people.detail.notes.addLabel": "메모 추가",
|
|
2094
|
+
"customers.people.detail.notes.addShortcut": "메모 추가 ⌘⏎ / Ctrl+Enter",
|
|
2095
|
+
"customers.people.detail.notes.appearance.cancel": "취소",
|
|
2096
|
+
"customers.people.detail.notes.appearance.clearAll": "지우기",
|
|
2097
|
+
"customers.people.detail.notes.appearance.clearColor": "색상 지우기",
|
|
2098
|
+
"customers.people.detail.notes.appearance.colorHelp": "이 메모에 사용할 강조 색상을 선택하세요.",
|
|
2099
|
+
"customers.people.detail.notes.appearance.colorLabel": "메모 색상",
|
|
2100
|
+
"customers.people.detail.notes.appearance.edit": "표시 스타일 편집",
|
|
2101
|
+
"customers.people.detail.notes.appearance.error": "표시 스타일 업데이트에 실패했습니다",
|
|
2102
|
+
"customers.people.detail.notes.appearance.iconClear": "아이콘 지우기",
|
|
2103
|
+
"customers.people.detail.notes.appearance.iconLabel": "아이콘",
|
|
2104
|
+
"customers.people.detail.notes.appearance.iconPicker": "아이콘 찾아보기",
|
|
2105
|
+
"customers.people.detail.notes.appearance.iconPlaceholder": "이모지를 입력하거나 추천 항목을 선택하세요",
|
|
2106
|
+
"customers.people.detail.notes.appearance.iconSearchEmpty": "검색 결과와 일치하는 아이콘이 없습니다",
|
|
2107
|
+
"customers.people.detail.notes.appearance.iconSearchPlaceholder": "아이콘 또는 이모지 검색…",
|
|
2108
|
+
"customers.people.detail.notes.appearance.iconSuggestions": "추천",
|
|
2109
|
+
"customers.people.detail.notes.appearance.none": "표시 스타일 없음",
|
|
2110
|
+
"customers.people.detail.notes.appearance.previewEmpty": "선택된 표시 스타일이 없습니다",
|
|
2111
|
+
"customers.people.detail.notes.appearance.reset": "초기화",
|
|
2112
|
+
"customers.people.detail.notes.appearance.save": "표시 스타일 저장",
|
|
2113
|
+
"customers.people.detail.notes.appearance.saveShortcut": "표시 스타일 저장 ⌘⏎ / Ctrl+Enter",
|
|
2114
|
+
"customers.people.detail.notes.appearance.saving": "표시 스타일 저장 중…",
|
|
2115
|
+
"customers.people.detail.notes.appearance.toggleClose": "표시 스타일 숨기기",
|
|
2116
|
+
"customers.people.detail.notes.appearance.toggleOpen": "표시 스타일 사용자 지정",
|
|
2117
|
+
"customers.people.detail.notes.appearance.updated": "표시 스타일이 업데이트되었습니다",
|
|
2118
|
+
"customers.people.detail.notes.deleteConfirm": "이 메모를 삭제하시겠습니까? 버전 기록을 사용하여 복원할 수 있습니다.",
|
|
2119
|
+
"customers.people.detail.notes.deleteError": "메모 삭제에 실패했습니다",
|
|
2120
|
+
"customers.people.detail.notes.deleteSuccess": "메모가 삭제되었습니다",
|
|
2121
|
+
"customers.people.detail.notes.edit": "메모 편집",
|
|
2122
|
+
"customers.people.detail.notes.editorLoading": "편집기를 불러오는 중…",
|
|
2123
|
+
"customers.people.detail.notes.empty": "아직 메모가 없습니다",
|
|
2124
|
+
"customers.people.detail.notes.emptyTitle": "아직 메모가 없습니다",
|
|
2125
|
+
"customers.people.detail.notes.entityMissing": "현재 연락처를 확인할 수 없습니다.",
|
|
2126
|
+
"customers.people.detail.notes.error": "메모 저장에 실패했습니다",
|
|
2127
|
+
"customers.people.detail.notes.fields.deal": "거래에 연결 (선택 사항)",
|
|
2128
|
+
"customers.people.detail.notes.fields.dealPlaceholder": "연결된 거래 없음",
|
|
2129
|
+
"customers.people.detail.notes.fields.entity": "고객에게 할당",
|
|
2130
|
+
"customers.people.detail.notes.linkedDeal": "연결된 거래",
|
|
2131
|
+
"customers.people.detail.notes.loadError": "메모를 불러오지 못했습니다.",
|
|
2132
|
+
"customers.people.detail.notes.loadMore": "메모 더 불러오기",
|
|
2133
|
+
"customers.people.detail.notes.loading": "메모를 불러오는 중…",
|
|
2134
|
+
"customers.people.detail.notes.markdownDisable": "일반 텍스트로 전환",
|
|
2135
|
+
"customers.people.detail.notes.markdownEnable": "마크다운으로 전환",
|
|
2136
|
+
"customers.people.detail.notes.placeholder": "이 연락처에 대한 메모를 작성하세요…",
|
|
2137
|
+
"customers.people.detail.notes.saving": "저장 중…",
|
|
2138
|
+
"customers.people.detail.notes.submit": "메모 저장 ⌘⏎ / Ctrl+Enter",
|
|
2139
|
+
"customers.people.detail.notes.success": "메모가 저장되었습니다",
|
|
2140
|
+
"customers.people.detail.notes.unknownAuthor": "작성자 알 수 없음",
|
|
2141
|
+
"customers.people.detail.notes.updateError": "메모 업데이트에 실패했습니다",
|
|
2142
|
+
"customers.people.detail.notes.updateSuccess": "메모가 업데이트되었습니다",
|
|
2143
|
+
"customers.people.detail.notes.you": "나",
|
|
2144
|
+
"customers.people.detail.person": "연락처",
|
|
2145
|
+
"customers.people.detail.primary": "기본",
|
|
2146
|
+
"customers.people.detail.sectionLoading": "불러오는 중…",
|
|
2147
|
+
"customers.people.detail.sections.activities": "활동",
|
|
2148
|
+
"customers.people.detail.sections.addresses": "주소",
|
|
2149
|
+
"customers.people.detail.sections.comments": "메모",
|
|
2150
|
+
"customers.people.detail.sections.customFields": "사용자 지정 데이터",
|
|
2151
|
+
"customers.people.detail.sections.deals": "거래",
|
|
2152
|
+
"customers.people.detail.sections.details": "상세 정보",
|
|
2153
|
+
"customers.people.detail.sections.tags": "태그",
|
|
2154
|
+
"customers.people.detail.sections.todos": "작업",
|
|
2155
|
+
"customers.people.detail.tabs.activities": "활동",
|
|
2156
|
+
"customers.people.detail.tabs.addresses": "주소",
|
|
2157
|
+
"customers.people.detail.tabs.changelog": "변경 이력",
|
|
2158
|
+
"customers.people.detail.tabs.companies": "회사",
|
|
2159
|
+
"customers.people.detail.tabs.deals": "거래",
|
|
2160
|
+
"customers.people.detail.tabs.emails": "이메일",
|
|
2161
|
+
"customers.people.detail.tabs.files": "파일",
|
|
2162
|
+
"customers.people.detail.tabs.label": "연락처 상세 섹션",
|
|
2163
|
+
"customers.people.detail.tabs.notes": "메모",
|
|
2164
|
+
"customers.people.detail.tabs.personalData": "개인 정보",
|
|
2165
|
+
"customers.people.detail.tabs.tasks": "작업",
|
|
2166
|
+
"customers.people.detail.tags.assignError": "태그 할당에 실패했습니다.",
|
|
2167
|
+
"customers.people.detail.tags.autoSaveHint": "태그는 변경할 때마다 자동으로 저장됩니다.",
|
|
2168
|
+
"customers.people.detail.tags.cancelShortcut": "취소 (Esc)",
|
|
2169
|
+
"customers.people.detail.tags.createError": "태그 생성에 실패했습니다.",
|
|
2170
|
+
"customers.people.detail.tags.error": "태그 업데이트에 실패했습니다.",
|
|
2171
|
+
"customers.people.detail.tags.labelRequired": "태그 이름은 필수입니다.",
|
|
2172
|
+
"customers.people.detail.tags.loadError": "태그를 불러오지 못했습니다.",
|
|
2173
|
+
"customers.people.detail.tags.loading": "태그를 불러오는 중…",
|
|
2174
|
+
"customers.people.detail.tags.placeholder": "태그를 추가하려면 입력하세요",
|
|
2175
|
+
"customers.people.detail.tags.saveShortcut": "저장 ⌘⏎ / Ctrl+Enter",
|
|
2176
|
+
"customers.people.detail.tags.success": "태그가 업데이트되었습니다.",
|
|
2177
|
+
"customers.people.detail.tags.unassignError": "태그 제거에 실패했습니다.",
|
|
2178
|
+
"customers.people.detail.tasks.add": "작업 추가",
|
|
2179
|
+
"customers.people.detail.tasks.addTitle": "작업 추가",
|
|
2180
|
+
"customers.people.detail.tasks.cancel": "취소",
|
|
2181
|
+
"customers.people.detail.tasks.cancelAction": "작업 취소",
|
|
2182
|
+
"customers.people.detail.tasks.cancelError": "작업 취소에 실패했습니다",
|
|
2183
|
+
"customers.people.detail.tasks.cancelSuccess": "작업이 취소되었습니다",
|
|
2184
|
+
"customers.people.detail.tasks.completeSuccess": "작업이 완료로 표시되었습니다",
|
|
2185
|
+
"customers.people.detail.tasks.createSuccess": "작업이 생성되었습니다",
|
|
2186
|
+
"customers.people.detail.tasks.deleteError": "작업 제거에 실패했습니다",
|
|
2187
|
+
"customers.people.detail.tasks.deleteSuccess": "작업이 제거되었습니다",
|
|
2188
|
+
"customers.people.detail.tasks.dialog.context": "이 작업은 {{name}}에 연결됩니다",
|
|
2189
|
+
"customers.people.detail.tasks.dialog.createTitle": "작업 추가",
|
|
2190
|
+
"customers.people.detail.tasks.dialog.editTitle": "작업 편집",
|
|
2191
|
+
"customers.people.detail.tasks.dueLabel": "마감일 {{date}}",
|
|
2192
|
+
"customers.people.detail.tasks.error": "작업 생성에 실패했습니다",
|
|
2193
|
+
"customers.people.detail.tasks.fields.description": "설명",
|
|
2194
|
+
"customers.people.detail.tasks.fields.descriptionPlaceholder": "배경, 결과 또는 후속 조치 메모를 추가하세요",
|
|
2195
|
+
"customers.people.detail.tasks.fields.done": "완료로 표시",
|
|
2196
|
+
"customers.people.detail.tasks.fields.priority": "우선순위",
|
|
2197
|
+
"customers.people.detail.tasks.fields.priorityPlaceholder": "0-100",
|
|
2198
|
+
"customers.people.detail.tasks.fields.scheduledAt": "예정일",
|
|
2199
|
+
"customers.people.detail.tasks.fields.scheduledAtPlaceholder": "날짜와 시간을 선택하세요",
|
|
2200
|
+
"customers.people.detail.tasks.fields.status": "상태",
|
|
2201
|
+
"customers.people.detail.tasks.fields.statusPlaceholder": "상태를 선택하세요",
|
|
2202
|
+
"customers.people.detail.tasks.fields.title": "제목",
|
|
2203
|
+
"customers.people.detail.tasks.fields.titlePlaceholder": "작업 제목",
|
|
2204
|
+
"customers.people.detail.tasks.form.customFields": "작업 속성",
|
|
2205
|
+
"customers.people.detail.tasks.form.details": "작업 상세 정보",
|
|
2206
|
+
"customers.people.detail.tasks.form.status": "상태",
|
|
2207
|
+
"customers.people.detail.tasks.form.submitCreate": "작업 저장 (⌘/Ctrl + Enter)",
|
|
2208
|
+
"customers.people.detail.tasks.form.submitEdit": "작업 업데이트 (⌘/Ctrl + Enter)",
|
|
2209
|
+
"customers.people.detail.tasks.form.tips": "팁",
|
|
2210
|
+
"customers.people.detail.tasks.form.tipsBody": "작업은 기본 고객 양식과 별개로 저장됩니다. \"후속 통화\" 또는 \"가격 자료 발송\"과 같이 명확한 제목을 사용하세요.",
|
|
2211
|
+
"customers.people.detail.tasks.loadMore": "더 불러오기",
|
|
2212
|
+
"customers.people.detail.tasks.loading": "작업을 불러오는 중…",
|
|
2213
|
+
"customers.people.detail.tasks.loadingMore": "불러오는 중…",
|
|
2214
|
+
"customers.people.detail.tasks.openTask": "작업 열기",
|
|
2215
|
+
"customers.people.detail.tasks.priorityInvalid": "0에서 100 사이의 정수로 우선순위를 입력하세요.",
|
|
2216
|
+
"customers.people.detail.tasks.priorityLabel": "우선순위 {{priority}}",
|
|
2217
|
+
"customers.people.detail.tasks.reopenSuccess": "작업이 다시 열렸습니다",
|
|
2218
|
+
"customers.people.detail.tasks.save": "작업 저장",
|
|
2219
|
+
"customers.people.detail.tasks.saving": "저장 중…",
|
|
2220
|
+
"customers.people.detail.tasks.severity.high": "높은 심각도",
|
|
2221
|
+
"customers.people.detail.tasks.severity.low": "낮은 심각도",
|
|
2222
|
+
"customers.people.detail.tasks.severity.medium": "보통 심각도",
|
|
2223
|
+
"customers.people.detail.tasks.status.canceled": "취소됨",
|
|
2224
|
+
"customers.people.detail.tasks.success": "작업이 생성되었습니다",
|
|
2225
|
+
"customers.people.detail.tasks.titleRequired": "제목은 필수입니다",
|
|
2226
|
+
"customers.people.detail.tasks.toggleError": "작업 상태 업데이트에 실패했습니다",
|
|
2227
|
+
"customers.people.detail.tasks.untitled": "제목 없는 작업",
|
|
2228
|
+
"customers.people.detail.tasks.updateError": "작업 업데이트에 실패했습니다",
|
|
2229
|
+
"customers.people.detail.tasks.updateSuccess": "작업이 업데이트되었습니다",
|
|
2230
|
+
"customers.people.detail.tasks.viewAll": "모든 작업 보기",
|
|
2231
|
+
"customers.people.detail.title": "연락처 상세 정보",
|
|
2232
|
+
"customers.people.detail.untitled": "제목 없음",
|
|
2233
|
+
"customers.people.detail.zones.collapse": "양식 패널 접기",
|
|
2234
|
+
"customers.people.detail.zones.expand": "양식 패널 펼치기",
|
|
2235
|
+
"customers.people.entityPlural": "연락처",
|
|
2236
|
+
"customers.people.form.activityType.placeholder": "활동 유형을 선택하세요",
|
|
2237
|
+
"customers.people.form.addressType.placeholder": "주소 유형을 선택하세요",
|
|
2238
|
+
"customers.people.form.company": "회사",
|
|
2239
|
+
"customers.people.form.company.add": "회사 추가",
|
|
2240
|
+
"customers.people.form.company.dialogTitle": "회사 추가",
|
|
2241
|
+
"customers.people.form.company.inputLabel": "회사명",
|
|
2242
|
+
"customers.people.form.company.inputPlaceholder": "Acme Corporation",
|
|
2243
|
+
"customers.people.form.company.loading": "회사 목록을 불러오는 중…",
|
|
2244
|
+
"customers.people.form.company.placeholder": "회사를 선택하세요",
|
|
2245
|
+
"customers.people.form.company.prompt": "새 회사명을 입력하세요",
|
|
2246
|
+
"customers.people.form.department": "부서",
|
|
2247
|
+
"customers.people.form.description": "설명",
|
|
2248
|
+
"customers.people.form.dictionary.add": "항목 추가",
|
|
2249
|
+
"customers.people.form.dictionary.addActivityType": "활동 유형 추가",
|
|
2250
|
+
"customers.people.form.dictionary.addAddressType": "주소 유형 추가",
|
|
2251
|
+
"customers.people.form.dictionary.addJobTitle": "직함 추가",
|
|
2252
|
+
"customers.people.form.dictionary.addLifecycleStage": "라이프사이클 단계 추가",
|
|
2253
|
+
"customers.people.form.dictionary.addSource": "소스 추가",
|
|
2254
|
+
"customers.people.form.dictionary.addStatus": "상태 추가",
|
|
2255
|
+
"customers.people.form.dictionary.cancel": "취소",
|
|
2256
|
+
"customers.people.form.dictionary.dialogTitle": "사전 항목 추가",
|
|
2257
|
+
"customers.people.form.dictionary.dialogTitleActivityType": "활동 유형 추가",
|
|
2258
|
+
"customers.people.form.dictionary.dialogTitleAddressType": "주소 유형 추가",
|
|
2259
|
+
"customers.people.form.dictionary.dialogTitleJobTitle": "직함 추가",
|
|
2260
|
+
"customers.people.form.dictionary.dialogTitleLifecycleStage": "라이프사이클 단계 추가",
|
|
2261
|
+
"customers.people.form.dictionary.dialogTitleSource": "소스 추가",
|
|
2262
|
+
"customers.people.form.dictionary.dialogTitleStatus": "상태 추가",
|
|
2263
|
+
"customers.people.form.dictionary.error": "옵션 저장에 실패했습니다",
|
|
2264
|
+
"customers.people.form.dictionary.errorLoad": "옵션을 불러오지 못했습니다",
|
|
2265
|
+
"customers.people.form.dictionary.errorRequired": "이름을 입력하세요",
|
|
2266
|
+
"customers.people.form.dictionary.labelLabel": "라벨",
|
|
2267
|
+
"customers.people.form.dictionary.labelPlaceholder": "UI에 표시되는 이름",
|
|
2268
|
+
"customers.people.form.dictionary.loading": "옵션을 불러오는 중…",
|
|
2269
|
+
"customers.people.form.dictionary.manage": "사전 관리",
|
|
2270
|
+
"customers.people.form.dictionary.placeholder": "값을 선택하세요",
|
|
2271
|
+
"customers.people.form.dictionary.prompt": "이름을 입력하세요",
|
|
2272
|
+
"customers.people.form.dictionary.promptActivityType": "새 활동 유형 이름을 입력하세요",
|
|
2273
|
+
"customers.people.form.dictionary.promptAddressType": "새 주소 유형 이름을 입력하세요",
|
|
2274
|
+
"customers.people.form.dictionary.promptJobTitle": "새 직함을 입력하세요",
|
|
2275
|
+
"customers.people.form.dictionary.promptLifecycleStage": "새 라이프사이클 단계 이름을 입력하세요",
|
|
2276
|
+
"customers.people.form.dictionary.promptSource": "새 소스 이름을 입력하세요",
|
|
2277
|
+
"customers.people.form.dictionary.promptStatus": "새 상태 이름을 입력하세요",
|
|
2278
|
+
"customers.people.form.dictionary.save": "저장",
|
|
2279
|
+
"customers.people.form.dictionary.saveShortcut": "⌘/Ctrl + Enter",
|
|
2280
|
+
"customers.people.form.dictionary.valueLabel": "이름",
|
|
2281
|
+
"customers.people.form.dictionary.valuePlaceholder": "이름",
|
|
2282
|
+
"customers.people.form.displayName": "표시 이름",
|
|
2283
|
+
"customers.people.form.displayName.done": "완료",
|
|
2284
|
+
"customers.people.form.displayName.edit": "이름 편집",
|
|
2285
|
+
"customers.people.form.displayName.error": "표시 이름은 필수입니다",
|
|
2286
|
+
"customers.people.form.displayName.label": "표시 이름",
|
|
2287
|
+
"customers.people.form.displayName.placeholder": "표시 이름을 입력하세요",
|
|
2288
|
+
"customers.people.form.displayName.reset": "이름 & 성으로 초기화",
|
|
2289
|
+
"customers.people.form.displayNamePreview": "표시 이름 미리보기",
|
|
2290
|
+
"customers.people.form.displayNamePreview.empty": "이름이 여기에 표시됩니다",
|
|
2291
|
+
"customers.people.form.emailChecking": "기존 고객을 확인하는 중…",
|
|
2292
|
+
"customers.people.form.emailDuplicateLink": "레코드 열기",
|
|
2293
|
+
"customers.people.form.emailDuplicateNotice": "이 이메일은 이미 {{name}}에 지정되어 있습니다.",
|
|
2294
|
+
"customers.people.form.error.create": "연락처 생성에 실패했습니다",
|
|
2295
|
+
"customers.people.form.firstName": "이름",
|
|
2296
|
+
"customers.people.form.groups.addresses": "주소",
|
|
2297
|
+
"customers.people.form.groups.companyRole": "회사 및 역할",
|
|
2298
|
+
"customers.people.form.groups.custom": "사용자 지정 필드",
|
|
2299
|
+
"customers.people.form.groups.customAttributes": "사용자 지정 속성",
|
|
2300
|
+
"customers.people.form.groups.details": "상세 정보",
|
|
2301
|
+
"customers.people.form.groups.displayName": "표시 이름",
|
|
2302
|
+
"customers.people.form.groups.notes": "메모",
|
|
2303
|
+
"customers.people.form.groups.personalData": "개인 정보",
|
|
2304
|
+
"customers.people.form.groups.roles": "내 역할",
|
|
2305
|
+
"customers.people.form.groups.social": "소셜 및 링크",
|
|
2306
|
+
"customers.people.form.jobTitle": "직함",
|
|
2307
|
+
"customers.people.form.jobTitle.placeholder": "직함을 선택하세요",
|
|
2308
|
+
"customers.people.form.lastName": "성",
|
|
2309
|
+
"customers.people.form.lifecycleStage": "라이프사이클 단계",
|
|
2310
|
+
"customers.people.form.lifecycleStage.placeholder": "라이프사이클 단계를 선택하세요",
|
|
2311
|
+
"customers.people.form.linkedInUrl": "LinkedIn",
|
|
2312
|
+
"customers.people.form.linkedInUrl.placeholder": "https://www.linkedin.com/in/example",
|
|
2313
|
+
"customers.people.form.phoneChecking": "일치하는 전화번호를 확인하는 중…",
|
|
2314
|
+
"customers.people.form.phoneDuplicateLink": "레코드 열기",
|
|
2315
|
+
"customers.people.form.phoneDuplicateNotice": "이 전화번호는 이미 {{name}}에 지정되어 있습니다.",
|
|
2316
|
+
"customers.people.form.preferredName": "선호하는 이름",
|
|
2317
|
+
"customers.people.form.primaryEmail": "기본 이메일",
|
|
2318
|
+
"customers.people.form.primaryEmailPlaceholder": "name@example.com",
|
|
2319
|
+
"customers.people.form.primaryPhone": "기본 전화번호",
|
|
2320
|
+
"customers.people.form.primaryPhone.invalid": "국가 코드를 포함한 유효한 전화번호를 입력하세요 (예: +1 212 555 1234)",
|
|
2321
|
+
"customers.people.form.primaryPhonePlaceholder": "+00 000 000 000",
|
|
2322
|
+
"customers.people.form.sections.companyInformation": "회사 정보",
|
|
2323
|
+
"customers.people.form.sections.contactInformation": "연락처 정보",
|
|
2324
|
+
"customers.people.form.source": "소스",
|
|
2325
|
+
"customers.people.form.source.placeholder": "소스를 선택하세요",
|
|
2326
|
+
"customers.people.form.status": "상태",
|
|
2327
|
+
"customers.people.form.status.placeholder": "상태를 선택하세요",
|
|
2328
|
+
"customers.people.form.submit": "연락처 생성",
|
|
2329
|
+
"customers.people.form.success": "연락처가 생성되었습니다",
|
|
2330
|
+
"customers.people.form.twitterUrl": "X / Twitter",
|
|
2331
|
+
"customers.people.form.twitterUrl.placeholder": "https://x.com/example",
|
|
2332
|
+
"customers.people.form.updateSuccess": "연락처가 업데이트되었습니다.",
|
|
2333
|
+
"customers.people.list.actions.delete": "삭제",
|
|
2334
|
+
"customers.people.list.actions.new": "새 연락처",
|
|
2335
|
+
"customers.people.list.actions.openInNewTab": "새 탭에서 열기",
|
|
2336
|
+
"customers.people.list.actions.refresh": "새로고침",
|
|
2337
|
+
"customers.people.list.actions.view": "상세 보기",
|
|
2338
|
+
"customers.people.list.booleanNo": "아니요",
|
|
2339
|
+
"customers.people.list.booleanYes": "예",
|
|
2340
|
+
"customers.people.list.bulkDelete.action": "선택 항목 삭제",
|
|
2341
|
+
"customers.people.list.bulkDelete.description": "이 작업은 되돌릴 수 없습니다.",
|
|
2342
|
+
"customers.people.list.bulkDelete.failed": "{count}명의 연락처 삭제에 실패했습니다",
|
|
2343
|
+
"customers.people.list.bulkDelete.failedGroup": "{count}명의 연락처를 삭제할 수 없습니다: {message}",
|
|
2344
|
+
"customers.people.list.bulkDelete.operationLabel": "{count}명의 연락처 삭제",
|
|
2345
|
+
"customers.people.list.bulkDelete.partial": "{total}명 중 {deleted}명의 연락처가 삭제됨; {failed}명 실패",
|
|
2346
|
+
"customers.people.list.bulkDelete.progressDescription": "삭제 대상으로 선택된 {count}명",
|
|
2347
|
+
"customers.people.list.bulkDelete.progressName": "선택한 연락처 삭제",
|
|
2348
|
+
"customers.people.list.bulkDelete.success": "{count}명의 연락처가 삭제되었습니다",
|
|
2349
|
+
"customers.people.list.bulkDelete.title": "{count}명의 연락처를 삭제하시겠습니까?",
|
|
2350
|
+
"customers.people.list.columns.email": "이메일",
|
|
2351
|
+
"customers.people.list.columns.lifecycleStage": "라이프사이클 단계",
|
|
2352
|
+
"customers.people.list.columns.name": "이름",
|
|
2353
|
+
"customers.people.list.columns.nextInteraction": "다음 상호작용",
|
|
2354
|
+
"customers.people.list.columns.owner": "담당자",
|
|
2355
|
+
"customers.people.list.columns.source": "소스",
|
|
2356
|
+
"customers.people.list.columns.status": "상태",
|
|
2357
|
+
"customers.people.list.deleteConfirm": "{{name}}을(를) 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다.",
|
|
2358
|
+
"customers.people.list.deleteError": "연락처를 삭제할 수 없습니다.",
|
|
2359
|
+
"customers.people.list.deleteFallbackName": "이 연락처",
|
|
2360
|
+
"customers.people.list.deleteSuccess": "연락처가 삭제되었습니다.",
|
|
2361
|
+
"customers.people.list.error.load": "연락처 목록을 불러올 수 없습니다",
|
|
2362
|
+
"customers.people.list.export.full": "숨겨진 사용자 지정 필드를 포함한 모든 고객 필드를 내보냅니다.",
|
|
2363
|
+
"customers.people.list.export.view": "적용된 필터와 표시된 열을 기준으로 현재 목록을 내보냅니다.",
|
|
2364
|
+
"customers.people.list.filters.createdAt": "생성일",
|
|
2365
|
+
"customers.people.list.filters.emailContains": "이메일 포함",
|
|
2366
|
+
"customers.people.list.filters.emailContainsPlaceholder": "name@example.com",
|
|
2367
|
+
"customers.people.list.filters.hasEmail": "이메일 있음",
|
|
2368
|
+
"customers.people.list.filters.hasNextInteraction": "다음 상호작용 있음",
|
|
2369
|
+
"customers.people.list.filters.hasPhone": "전화번호 있음",
|
|
2370
|
+
"customers.people.list.filters.lifecycleStage": "라이프사이클 단계",
|
|
2371
|
+
"customers.people.list.filters.source": "소스",
|
|
2372
|
+
"customers.people.list.filters.status": "상태",
|
|
2373
|
+
"customers.people.list.filters.tags": "태그",
|
|
2374
|
+
"customers.people.list.noValue": "설정되지 않음",
|
|
2375
|
+
"customers.people.list.searchPlaceholder": "이름, 이메일, 전화번호로 검색…",
|
|
2376
|
+
"customers.people.list.title": "연락처",
|
|
2377
|
+
"customers.people.mobile.zoneSwitcher.activity": "활동",
|
|
2378
|
+
"customers.people.mobile.zoneSwitcher.ariaLabel": "영역 선택",
|
|
2379
|
+
"customers.people.mobile.zoneSwitcher.details": "상세 정보",
|
|
2380
|
+
"customers.people.presets.hotLeads": "관심 리드",
|
|
2381
|
+
"customers.people.presets.myContacts": "내 연락처",
|
|
2382
|
+
"customers.people.presets.recentlyActive": "최근 활동",
|
|
2383
|
+
"customers.people.presets.stale30": "30일 이상 정체",
|
|
2384
|
+
"customers.personTags.activeCount": "{{count}}개 선택됨",
|
|
2385
|
+
"customers.personTags.cancel": "취소",
|
|
2386
|
+
"customers.personTags.category.activity-types": "활동",
|
|
2387
|
+
"customers.personTags.category.deal-statuses": "거래 상태",
|
|
2388
|
+
"customers.personTags.category.industries": "업종",
|
|
2389
|
+
"customers.personTags.category.job-titles": "직함",
|
|
2390
|
+
"customers.personTags.category.labels": "라벨",
|
|
2391
|
+
"customers.personTags.category.lifecycle-stages": "라이프사이클",
|
|
2392
|
+
"customers.personTags.category.person-company-roles": "역할",
|
|
2393
|
+
"customers.personTags.category.renewal-quarters": "갱신 분기",
|
|
2394
|
+
"customers.personTags.category.sources": "소스",
|
|
2395
|
+
"customers.personTags.category.statuses": "상태",
|
|
2396
|
+
"customers.personTags.category.tags": "태그",
|
|
2397
|
+
"customers.personTags.category.temperature": "온도",
|
|
2398
|
+
"customers.personTags.createLabelError": "라벨 생성에 실패했습니다",
|
|
2399
|
+
"customers.personTags.description.customCategory": "사용자 지정 CRM 카테고리: {{name}}.",
|
|
2400
|
+
"customers.personTags.description.industries": "이 회사를 분류하는 데 사용되는 업종입니다.",
|
|
2401
|
+
"customers.personTags.description.jobTitles": "이 연락처에 사용되는 역할 또는 직함입니다.",
|
|
2402
|
+
"customers.personTags.description.labels": "이 레코드에서 바로 만들 수 있는 간단한 라벨입니다.",
|
|
2403
|
+
"customers.personTags.description.tags": "여러 레코드에 지정할 수 있는 공유 CRM 태그입니다.",
|
|
2404
|
+
"customers.personTags.emptyCategory": "이 카테고리에는 아직 추가된 항목이 없습니다.",
|
|
2405
|
+
"customers.personTags.emptyDictionaryCategory": "이 카테고리에는 아직 설정된 옵션이 없습니다.",
|
|
2406
|
+
"customers.personTags.emptySearchResults": "현재 검색어와 일치하는 옵션이 없습니다.",
|
|
2407
|
+
"customers.personTags.labels": "라벨",
|
|
2408
|
+
"customers.personTags.loading": "불러오는 중...",
|
|
2409
|
+
"customers.personTags.newLabel": "새 라벨",
|
|
2410
|
+
"customers.personTags.newLabelPlaceholder": "라벨 이름...",
|
|
2411
|
+
"customers.personTags.newTag": "새 태그",
|
|
2412
|
+
"customers.personTags.save": "저장",
|
|
2413
|
+
"customers.personTags.saveError": "태그 저장에 실패했습니다",
|
|
2414
|
+
"customers.personTags.saveSuccess": "태그가 업데이트되었습니다.",
|
|
2415
|
+
"customers.personTags.saving": "저장 중...",
|
|
2416
|
+
"customers.personTags.searchPlaceholder": "{{category}} 검색...",
|
|
2417
|
+
"customers.personTags.settingsButton": "태그 설정",
|
|
2418
|
+
"customers.personTags.title": "태그 편집",
|
|
2419
|
+
"customers.pipelines.actions.create": "파이프라인 추가",
|
|
2420
|
+
"customers.pipelines.actions.delete": "삭제",
|
|
2421
|
+
"customers.pipelines.actions.edit": "편집",
|
|
2422
|
+
"customers.pipelines.actions.hideStages": "단계 숨기기",
|
|
2423
|
+
"customers.pipelines.actions.manageStages": "단계 관리",
|
|
2424
|
+
"customers.pipelines.confirm.deleteConfirm": "삭제",
|
|
2425
|
+
"customers.pipelines.confirm.deleteDesc": "이 파이프라인을 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다.",
|
|
2426
|
+
"customers.pipelines.confirm.deleteTitle": "파이프라인 삭제",
|
|
2427
|
+
"customers.pipelines.confirm.stageDeleteConfirm": "삭제",
|
|
2428
|
+
"customers.pipelines.confirm.stageDeleteDesc": "이 단계를 삭제하시겠습니까?",
|
|
2429
|
+
"customers.pipelines.confirm.stageDeleteTitle": "단계 삭제",
|
|
2430
|
+
"customers.pipelines.defaultBadge": "기본값",
|
|
2431
|
+
"customers.pipelines.description": "영업 파이프라인과 단계를 관리합니다.",
|
|
2432
|
+
"customers.pipelines.dialog.cancel": "취소",
|
|
2433
|
+
"customers.pipelines.dialog.createTitle": "파이프라인 생성",
|
|
2434
|
+
"customers.pipelines.dialog.editTitle": "파이프라인 편집",
|
|
2435
|
+
"customers.pipelines.dialog.save": "저장",
|
|
2436
|
+
"customers.pipelines.empty": "아직 파이프라인이 없습니다. 새로 만들어 시작하세요.",
|
|
2437
|
+
"customers.pipelines.errors.createFailed": "파이프라인 생성에 실패했습니다",
|
|
2438
|
+
"customers.pipelines.errors.deleteFailed": "파이프라인 삭제에 실패했습니다",
|
|
2439
|
+
"customers.pipelines.errors.loadFailed": "파이프라인을 불러오지 못했습니다",
|
|
2440
|
+
"customers.pipelines.errors.reorderFailed": "단계 순서 변경에 실패했습니다",
|
|
2441
|
+
"customers.pipelines.errors.stageCreateFailed": "단계 생성에 실패했습니다",
|
|
2442
|
+
"customers.pipelines.errors.stageDeleteFailed": "단계 삭제에 실패했습니다",
|
|
2443
|
+
"customers.pipelines.errors.stageUpdateFailed": "단계 업데이트에 실패했습니다",
|
|
2444
|
+
"customers.pipelines.errors.stagesLoadFailed": "단계를 불러오지 못했습니다",
|
|
2445
|
+
"customers.pipelines.errors.updateFailed": "파이프라인을 업데이트하지 못했습니다",
|
|
2446
|
+
"customers.pipelines.flash.created": "파이프라인이 생성되었습니다",
|
|
2447
|
+
"customers.pipelines.flash.deleted": "파이프라인이 삭제되었습니다",
|
|
2448
|
+
"customers.pipelines.flash.stageCreated": "단계가 생성되었습니다",
|
|
2449
|
+
"customers.pipelines.flash.stageDeleted": "단계가 삭제되었습니다",
|
|
2450
|
+
"customers.pipelines.flash.stageUpdated": "단계가 업데이트되었습니다",
|
|
2451
|
+
"customers.pipelines.flash.updated": "파이프라인이 업데이트되었습니다",
|
|
2452
|
+
"customers.pipelines.form.isDefault": "기본 파이프라인으로 설정",
|
|
2453
|
+
"customers.pipelines.form.name": "이름",
|
|
2454
|
+
"customers.pipelines.form.namePlaceholder": "예: 신규 사업",
|
|
2455
|
+
"customers.pipelines.loading": "파이프라인을 불러오는 중…",
|
|
2456
|
+
"customers.pipelines.stageDialog.cancel": "취소",
|
|
2457
|
+
"customers.pipelines.stageDialog.createTitle": "단계 추가",
|
|
2458
|
+
"customers.pipelines.stageDialog.editTitle": "단계 편집",
|
|
2459
|
+
"customers.pipelines.stageDialog.save": "저장",
|
|
2460
|
+
"customers.pipelines.stageForm.color": "색상",
|
|
2461
|
+
"customers.pipelines.stageForm.colorClear": "색상 제거",
|
|
2462
|
+
"customers.pipelines.stageForm.icon": "아이콘",
|
|
2463
|
+
"customers.pipelines.stageForm.iconClear": "아이콘 제거",
|
|
2464
|
+
"customers.pipelines.stageForm.iconPicker": "아이콘 선택",
|
|
2465
|
+
"customers.pipelines.stageForm.iconPlaceholder": "예: lucide:star",
|
|
2466
|
+
"customers.pipelines.stageForm.iconSearch": "아이콘 검색…",
|
|
2467
|
+
"customers.pipelines.stageForm.iconSearchEmpty": "아이콘을 찾을 수 없습니다",
|
|
2468
|
+
"customers.pipelines.stageForm.iconSuggestions": "추천 아이콘",
|
|
2469
|
+
"customers.pipelines.stageForm.label": "라벨",
|
|
2470
|
+
"customers.pipelines.stageForm.labelPlaceholder": "예: 발굴",
|
|
2471
|
+
"customers.pipelines.stageForm.previewEmpty": "설정된 모양이 없습니다",
|
|
2472
|
+
"customers.pipelines.stages.add": "단계 추가",
|
|
2473
|
+
"customers.pipelines.stages.delete": "삭제",
|
|
2474
|
+
"customers.pipelines.stages.edit": "편집",
|
|
2475
|
+
"customers.pipelines.stages.empty": "아직 단계가 없습니다.",
|
|
2476
|
+
"customers.pipelines.stages.loading": "불러오는 중…",
|
|
2477
|
+
"customers.pipelines.stages.moveDown": "아래로 이동",
|
|
2478
|
+
"customers.pipelines.stages.moveUp": "위로 이동",
|
|
2479
|
+
"customers.pipelines.stages.title": "단계",
|
|
2480
|
+
"customers.pipelines.title": "영업 파이프라인",
|
|
2481
|
+
"customers.roles.addRole": "역할 추가",
|
|
2482
|
+
"customers.roles.assign": "배정",
|
|
2483
|
+
"customers.roles.assignError": "역할을 배정하지 못했습니다",
|
|
2484
|
+
"customers.roles.assignPlaceholder": "직원 검색...",
|
|
2485
|
+
"customers.roles.assigned": "역할이 배정되었습니다",
|
|
2486
|
+
"customers.roles.assignedDaysAgo": "{{count}}일 전 배정됨",
|
|
2487
|
+
"customers.roles.assignedToday": "오늘 배정됨",
|
|
2488
|
+
"customers.roles.assignedYesterday": "어제 배정됨",
|
|
2489
|
+
"customers.roles.assigning": "배정하는 중...",
|
|
2490
|
+
"customers.roles.call": "전화",
|
|
2491
|
+
"customers.roles.cancelAdd": "취소",
|
|
2492
|
+
"customers.roles.changeUser": "담당자 변경",
|
|
2493
|
+
"customers.roles.choosePerson": "담당자 선택",
|
|
2494
|
+
"customers.roles.configureRoleTypes": "역할 유형 설정",
|
|
2495
|
+
"customers.roles.defaultEntityName.company": "이 회사",
|
|
2496
|
+
"customers.roles.defaultEntityName.person": "이 연락처",
|
|
2497
|
+
"customers.roles.dialog.assign": "역할 배정",
|
|
2498
|
+
"customers.roles.dialog.change": "변경",
|
|
2499
|
+
"customers.roles.dialog.conflict": "충돌: {{roles}}",
|
|
2500
|
+
"customers.roles.dialog.constraint": "역할당 한 명만 배정할 수 있습니다. 배정은 언제든지 변경할 수 있습니다.",
|
|
2501
|
+
"customers.roles.dialog.defaultEntity.company": "이 회사",
|
|
2502
|
+
"customers.roles.dialog.defaultEntity.person": "이 연락처",
|
|
2503
|
+
"customers.roles.dialog.footerNote": "역할당 한 명 · 언제든지 변경 가능",
|
|
2504
|
+
"customers.roles.dialog.loadMore": "더 보기",
|
|
2505
|
+
"customers.roles.dialog.loadingMore": "더 불러오는 중...",
|
|
2506
|
+
"customers.roles.dialog.manageRoleTypes": "역할 유형 관리",
|
|
2507
|
+
"customers.roles.dialog.next": "다음",
|
|
2508
|
+
"customers.roles.dialog.noAvailableRoles": "사용 가능한 모든 역할 유형이 이미 배정되었습니다.",
|
|
2509
|
+
"customers.roles.dialog.noResults": "일치하는 팀원을 찾을 수 없습니다.",
|
|
2510
|
+
"customers.roles.dialog.preview": "배정 미리보기",
|
|
2511
|
+
"customers.roles.dialog.roleTypeLabel": "역할 유형",
|
|
2512
|
+
"customers.roles.dialog.searchPlaceholder": "이름, 이메일 또는 팀으로 검색...",
|
|
2513
|
+
"customers.roles.dialog.sourceBadge.dictionary": "사전",
|
|
2514
|
+
"customers.roles.dialog.step1": "역할 유형",
|
|
2515
|
+
"customers.roles.dialog.step2": "담당자 선택",
|
|
2516
|
+
"customers.roles.dialog.step3": "확인",
|
|
2517
|
+
"customers.roles.dialog.subtitle": "{{name}}에 대한 다중 역할 배정",
|
|
2518
|
+
"customers.roles.dialog.team.all": "전체",
|
|
2519
|
+
"customers.roles.dialog.team.unassigned": "팀 없음",
|
|
2520
|
+
"customers.roles.dialog.teamLabel": "팀원 선택",
|
|
2521
|
+
"customers.roles.dialog.title": "역할 배정",
|
|
2522
|
+
"customers.roles.dialog.visibleCount": "{{total}} 팀원 중 {{shown}} 표시 중",
|
|
2523
|
+
"customers.roles.email": "이메일 보내기",
|
|
2524
|
+
"customers.roles.emailUnavailable": "이메일 없음",
|
|
2525
|
+
"customers.roles.emptySlot": "배정되지 않음",
|
|
2526
|
+
"customers.roles.emptyState": "아직 배정된 역할이 없습니다. 아래를 클릭해 담당자를 배정하세요.",
|
|
2527
|
+
"customers.roles.groupTitle": "역할",
|
|
2528
|
+
"customers.roles.groupTitle.company": "{{name}}의 역할",
|
|
2529
|
+
"customers.roles.groupTitle.person": "{{name}}와(과)의 내 역할",
|
|
2530
|
+
"customers.roles.loadFailed": "역할 배정을 불러오지 못했습니다.",
|
|
2531
|
+
"customers.roles.loading": "역할을 불러오는 중...",
|
|
2532
|
+
"customers.roles.moreActions": "추가 작업",
|
|
2533
|
+
"customers.roles.noRoleTypesDescription": "여기서 담당자를 배정하기 전에 고객 관리 설정에서 역할 유형을 먼저 생성하세요.",
|
|
2534
|
+
"customers.roles.noRoleTypesTitle": "설정된 역할 유형이 없습니다",
|
|
2535
|
+
"customers.roles.phoneUnavailable": "전화번호 없음",
|
|
2536
|
+
"customers.roles.remove": "역할 제거",
|
|
2537
|
+
"customers.roles.removeConfirm": "이 역할 배정을 제거하시겠습니까?",
|
|
2538
|
+
"customers.roles.removeFailed": "역할 배정을 제거하지 못했습니다.",
|
|
2539
|
+
"customers.roles.roleTypeLabel": "역할 유형",
|
|
2540
|
+
"customers.roles.searchPlaceholder": "팀원 검색...",
|
|
2541
|
+
"customers.roles.searchUser": "직원 검색...",
|
|
2542
|
+
"customers.roles.selectRoleType": "역할 유형 선택...",
|
|
2543
|
+
"customers.roles.subtitle": "우리 측에서 이 관계를 담당하는 사람",
|
|
2544
|
+
"customers.roles.subtitle.company": "우리 측에서 이 회사를 담당하는 사람",
|
|
2545
|
+
"customers.roles.subtitle.person": "우리 측에서 이 관계를 담당하는 사람",
|
|
2546
|
+
"customers.roles.updateFailed": "역할 배정을 업데이트하지 못했습니다.",
|
|
2547
|
+
"customers.roles.userLabel": "배정 대상",
|
|
2548
|
+
"customers.schedule.addLink": "링크 추가",
|
|
2549
|
+
"customers.schedule.addParticipant": "참석자 추가",
|
|
2550
|
+
"customers.schedule.addVisibleLinks": "표시된 항목 모두 추가",
|
|
2551
|
+
"customers.schedule.addVisibleParticipants": "표시된 항목 모두 추가",
|
|
2552
|
+
"customers.schedule.allDay": "종일",
|
|
2553
|
+
"customers.schedule.attendees": "참석자",
|
|
2554
|
+
"customers.schedule.body": "본문",
|
|
2555
|
+
"customers.schedule.call.direction.inbound": "수신",
|
|
2556
|
+
"customers.schedule.call.direction.outbound": "발신",
|
|
2557
|
+
"customers.schedule.call.directionLabel": "방향",
|
|
2558
|
+
"customers.schedule.call.outcome.badNumber": "잘못된 번호",
|
|
2559
|
+
"customers.schedule.call.outcome.busy": "통화중",
|
|
2560
|
+
"customers.schedule.call.outcome.connected": "연결됨",
|
|
2561
|
+
"customers.schedule.call.outcome.noAnswer": "무응답",
|
|
2562
|
+
"customers.schedule.call.outcome.voicemail": "음성사서함",
|
|
2563
|
+
"customers.schedule.call.outcomeLabel": "결과",
|
|
2564
|
+
"customers.schedule.call.phoneLabel": "전화번호",
|
|
2565
|
+
"customers.schedule.call.phonePlaceholder": "+82 10 0000 0000",
|
|
2566
|
+
"customers.schedule.call.save": "통화 기록",
|
|
2567
|
+
"customers.schedule.call.subtitle": "방금 한 통화를 기록하거나 예약하세요",
|
|
2568
|
+
"customers.schedule.call.title": "통화 기록",
|
|
2569
|
+
"customers.schedule.callNotes": "통화 메모",
|
|
2570
|
+
"customers.schedule.cancel": "취소",
|
|
2571
|
+
"customers.schedule.conflict.description": "다음과 겹칩니다: {{items}}",
|
|
2572
|
+
"customers.schedule.conflict.title": "일정 충돌",
|
|
2573
|
+
"customers.schedule.connections": "연결",
|
|
2574
|
+
"customers.schedule.contact": "연락처",
|
|
2575
|
+
"customers.schedule.context": "타임라인: {{name}}",
|
|
2576
|
+
"customers.schedule.date": "날짜",
|
|
2577
|
+
"customers.schedule.description": "설명",
|
|
2578
|
+
"customers.schedule.descriptionPlaceholder": "세부 내용을 입력하세요...",
|
|
2579
|
+
"customers.schedule.details": "세부 정보",
|
|
2580
|
+
"customers.schedule.discardConfirm.cancel": "계속 편집",
|
|
2581
|
+
"customers.schedule.discardConfirm.confirm": "취소하고 나가기",
|
|
2582
|
+
"customers.schedule.discardConfirm.description": "이 활동에 저장하지 않은 변경 사항이 있습니다. 먼저 저장하거나 계속해서 취소할 수 있습니다.",
|
|
2583
|
+
"customers.schedule.discardConfirm.title": "저장하지 않은 변경 사항을 취소하시겠습니까?",
|
|
2584
|
+
"customers.schedule.dueDate": "기한 날짜",
|
|
2585
|
+
"customers.schedule.dueTime": "기한 시간",
|
|
2586
|
+
"customers.schedule.duration": "소요 시간",
|
|
2587
|
+
"customers.schedule.editTitle": "활동 편집",
|
|
2588
|
+
"customers.schedule.email.save": "이메일 보내기",
|
|
2589
|
+
"customers.schedule.email.subtitle": "추적 가능한 이메일을 작성하여 보내세요",
|
|
2590
|
+
"customers.schedule.email.title": "이메일 작성",
|
|
2591
|
+
"customers.schedule.error": "활동을 예약하지 못했습니다",
|
|
2592
|
+
"customers.schedule.estimate": "예상 시간",
|
|
2593
|
+
"customers.schedule.guestPerm.invite": "다른 사람 초대",
|
|
2594
|
+
"customers.schedule.guestPerm.modify": "수정",
|
|
2595
|
+
"customers.schedule.guestPerm.seeList": "목록 보기",
|
|
2596
|
+
"customers.schedule.guestPermissions": "게스트 권한:",
|
|
2597
|
+
"customers.schedule.linkType.company": "회사",
|
|
2598
|
+
"customers.schedule.linkType.deal": "거래",
|
|
2599
|
+
"customers.schedule.linkType.offer": "제안",
|
|
2600
|
+
"customers.schedule.linkedEntities": "연결된 항목",
|
|
2601
|
+
"customers.schedule.loadMore": "더 보기",
|
|
2602
|
+
"customers.schedule.location": "장소",
|
|
2603
|
+
"customers.schedule.locationPlaceholder": "장소 또는 회의 링크 추가...",
|
|
2604
|
+
"customers.schedule.meeting.save": "활동 저장",
|
|
2605
|
+
"customers.schedule.meeting.subtitle": "참석자와 함께 캘린더에 시간을 예약하세요",
|
|
2606
|
+
"customers.schedule.meeting.title": "새 회의",
|
|
2607
|
+
"customers.schedule.message": "메시지",
|
|
2608
|
+
"customers.schedule.noResults": "결과가 없습니다",
|
|
2609
|
+
"customers.schedule.note.content": "메모",
|
|
2610
|
+
"customers.schedule.note.save": "메모 저장",
|
|
2611
|
+
"customers.schedule.note.subtitle": "이 상호작용에 대한 메모를 남기세요",
|
|
2612
|
+
"customers.schedule.note.title": "메모 추가",
|
|
2613
|
+
"customers.schedule.participants": "참가자",
|
|
2614
|
+
"customers.schedule.recurrence.active": "반복",
|
|
2615
|
+
"customers.schedule.recurrence.afterCount": "{{count}}회 반복 후",
|
|
2616
|
+
"customers.schedule.recurrence.edit": "편집",
|
|
2617
|
+
"customers.schedule.recurrence.ends": "종료",
|
|
2618
|
+
"customers.schedule.recurrence.never": "종료 없음",
|
|
2619
|
+
"customers.schedule.recurrence.none": "반복 안 함",
|
|
2620
|
+
"customers.schedule.recurrence.onDate": "특정 날짜",
|
|
2621
|
+
"customers.schedule.recurrence.title": "반복 설정",
|
|
2622
|
+
"customers.schedule.reminder": "알림",
|
|
2623
|
+
"customers.schedule.reminder.dayBefore": "1일 전",
|
|
2624
|
+
"customers.schedule.reminder.daysBefore": "{days}일 전",
|
|
2625
|
+
"customers.schedule.reminder.hourBefore": "1시간 전",
|
|
2626
|
+
"customers.schedule.reminder.hoursBefore": "{hours}시간 전",
|
|
2627
|
+
"customers.schedule.reminder.minutesBefore": "{minutes}분 전",
|
|
2628
|
+
"customers.schedule.reminder.none": "없음",
|
|
2629
|
+
"customers.schedule.removeLink": "링크 제거",
|
|
2630
|
+
"customers.schedule.removeParticipant": "참석자 제거",
|
|
2631
|
+
"customers.schedule.rsvp.accepted": "수락",
|
|
2632
|
+
"customers.schedule.rsvp.declined": "거절",
|
|
2633
|
+
"customers.schedule.rsvp.label": "응답 현황:",
|
|
2634
|
+
"customers.schedule.rsvp.pending": "대기중",
|
|
2635
|
+
"customers.schedule.save": "활동 저장",
|
|
2636
|
+
"customers.schedule.saved": "활동이 예약되었습니다",
|
|
2637
|
+
"customers.schedule.saving": "저장하는 중...",
|
|
2638
|
+
"customers.schedule.searchEntity": "검색...",
|
|
2639
|
+
"customers.schedule.searchParticipant": "팀원 검색...",
|
|
2640
|
+
"customers.schedule.searching": "검색하는 중...",
|
|
2641
|
+
"customers.schedule.start": "시작",
|
|
2642
|
+
"customers.schedule.subject": "제목",
|
|
2643
|
+
"customers.schedule.subjectPlaceholder": "제목...",
|
|
2644
|
+
"customers.schedule.task.priority.high": "높음",
|
|
2645
|
+
"customers.schedule.task.priority.low": "낮음",
|
|
2646
|
+
"customers.schedule.task.priority.medium": "보통",
|
|
2647
|
+
"customers.schedule.task.priority.urgent": "긴급",
|
|
2648
|
+
"customers.schedule.task.priorityLabel": "우선순위",
|
|
2649
|
+
"customers.schedule.task.save": "작업 저장",
|
|
2650
|
+
"customers.schedule.task.subtitle": "후속 조치가 필요한 사항을 기록하세요",
|
|
2651
|
+
"customers.schedule.task.title": "새 작업",
|
|
2652
|
+
"customers.schedule.title": "활동 예약",
|
|
2653
|
+
"customers.schedule.titleLabel": "제목",
|
|
2654
|
+
"customers.schedule.titlePlaceholder": "활동 제목...",
|
|
2655
|
+
"customers.schedule.to": "받는 사람",
|
|
2656
|
+
"customers.schedule.types.call": "전화",
|
|
2657
|
+
"customers.schedule.types.email": "이메일",
|
|
2658
|
+
"customers.schedule.types.meeting": "회의",
|
|
2659
|
+
"customers.schedule.types.note": "메모",
|
|
2660
|
+
"customers.schedule.types.task": "작업",
|
|
2661
|
+
"customers.schedule.update": "활동 업데이트",
|
|
2662
|
+
"customers.schedule.visibility": "공개 범위",
|
|
2663
|
+
"customers.schedule.visibility.public": "전체 공개",
|
|
2664
|
+
"customers.schedule.visibility.team": "팀 전용",
|
|
2665
|
+
"customers.search.badge.activity": "활동",
|
|
2666
|
+
"customers.search.badge.company": "회사",
|
|
2667
|
+
"customers.search.badge.deal": "거래",
|
|
2668
|
+
"customers.search.badge.person": "사람",
|
|
2669
|
+
"customers.search.fallback.activity": "활동: {{type}}",
|
|
2670
|
+
"customers.search.fallback.activityUpdate": "업데이트",
|
|
2671
|
+
"customers.search.fallback.company": "회사",
|
|
2672
|
+
"customers.search.fallback.customerNote": "고객 메모",
|
|
2673
|
+
"customers.search.fallback.customerTask": "고객 업무",
|
|
2674
|
+
"customers.search.fallback.deal": "거래",
|
|
2675
|
+
"customers.search.fallback.person": "사람",
|
|
2676
|
+
"customers.search.link.edit": "편집하다",
|
|
2677
|
+
"customers.search.link.openCompany": "공개 회사",
|
|
2678
|
+
"customers.search.link.openDeal": "공개 거래",
|
|
2679
|
+
"customers.search.link.openPerson": "열린 사람",
|
|
2680
|
+
"customers.search.link.openTodo": "할 일 열기",
|
|
2681
|
+
"customers.search.link.viewCustomer": "고객 보기",
|
|
2682
|
+
"customers.tags.manage.addCategory": "새 카테고리",
|
|
2683
|
+
"customers.tags.manage.addCategoryPlaceholder": "카테고리 이름...",
|
|
2684
|
+
"customers.tags.manage.addCategoryRequired": "먼저 카테고리 이름을 입력하세요.",
|
|
2685
|
+
"customers.tags.manage.addValue": "새 값 추가",
|
|
2686
|
+
"customers.tags.manage.badge.required": "필수",
|
|
2687
|
+
"customers.tags.manage.badge.system": "시스템",
|
|
2688
|
+
"customers.tags.manage.categoryMode.multi": "다중 선택",
|
|
2689
|
+
"customers.tags.manage.categoryMode.single": "단일 선택",
|
|
2690
|
+
"customers.tags.manage.close": "취소",
|
|
2691
|
+
"customers.tags.manage.closeDialog": "닫기",
|
|
2692
|
+
"customers.tags.manage.columns.color": "색상",
|
|
2693
|
+
"customers.tags.manage.columns.icon": "아이콘",
|
|
2694
|
+
"customers.tags.manage.columns.label": "라벨",
|
|
2695
|
+
"customers.tags.manage.columns.slug": "슬러그",
|
|
2696
|
+
"customers.tags.manage.createCategory": "카테고리 생성",
|
|
2697
|
+
"customers.tags.manage.createCategoryError": "카테고리를 생성하지 못했습니다.",
|
|
2698
|
+
"customers.tags.manage.createCategorySuccess": "카테고리가 생성되었습니다.",
|
|
2699
|
+
"customers.tags.manage.creatingCategory": "생성하는 중...",
|
|
2700
|
+
"customers.tags.manage.customCategoryDescription": "맞춤 CRM 카테고리: {{name}}.",
|
|
2701
|
+
"customers.tags.manage.customCategoryNoteDescription": "이 카테고리를 사용해 팀에서 사용할 추가 CRM 값을 그룹화하고 관리하세요.",
|
|
2702
|
+
"customers.tags.manage.customCategoryNoteTitle": "맞춤 카테고리",
|
|
2703
|
+
"customers.tags.manage.defaultEntry": "새 레코드 생성 시 기본값",
|
|
2704
|
+
"customers.tags.manage.delete": "삭제",
|
|
2705
|
+
"customers.tags.manage.description.customers.custom_tags": "연락처, 회사, 연결된 거래에 대한 선택적 테넌트별 태그입니다.",
|
|
2706
|
+
"customers.tags.manage.description.customers.lifecycle_stage": "CRM 상세 페이지 전반에서 공유되는 파이프라인 연동 라이프사이클 값입니다.",
|
|
2707
|
+
"customers.tags.manage.description.customers.renewal_quarter": "CRM 상세 카드와 파이프라인 요약에 표시되는 분기 단위 갱신 보조 값입니다.",
|
|
2708
|
+
"customers.tags.manage.description.customers.source": "Zone 1 양식과 CRM 요약 배지에 사용되는 유입 경로 라벨입니다.",
|
|
2709
|
+
"customers.tags.manage.description.customers.status": "연락처, 회사, 거래 카드의 상단 영역에 표시되는 단일 선택 값입니다.",
|
|
2710
|
+
"customers.tags.manage.description.customers.temperature": "연락처 및 회사 헤더 배지에 사용되는 관심도(뜨거움/따뜻함/차가움) 표시 값입니다.",
|
|
2711
|
+
"customers.tags.manage.dragHandle": "드래그하여 순서 변경",
|
|
2712
|
+
"customers.tags.manage.entryNew": "새 사전 값",
|
|
2713
|
+
"customers.tags.manage.entrySaved": "기존 사전 값",
|
|
2714
|
+
"customers.tags.manage.icon.none": "아이콘 없음",
|
|
2715
|
+
"customers.tags.manage.loadError": "태그 사전을 불러오지 못했습니다.",
|
|
2716
|
+
"customers.tags.manage.loading": "불러오는 중...",
|
|
2717
|
+
"customers.tags.manage.moveDown": "아래로 이동",
|
|
2718
|
+
"customers.tags.manage.moveUp": "위로 이동",
|
|
2719
|
+
"customers.tags.manage.noDictionaries": "태그 카테고리를 찾을 수 없습니다. 설정에서 사전을 구성하세요.",
|
|
2720
|
+
"customers.tags.manage.noMatches": "현재 검색어와 일치하는 항목이 없습니다.",
|
|
2721
|
+
"customers.tags.manage.noteDescription.customers.custom_tags": "기본 제공 상태 사전으로 부족할 때 여기에 가벼운 CRM 전용 라벨을 추가하세요.",
|
|
2722
|
+
"customers.tags.manage.noteDescription.customers.lifecycle_stage": "라이프사이클 단계를 사용해 CRM 상세 화면 전반에서 연락처 및 회사 헤더의 시각적 일관성을 유지하세요.",
|
|
2723
|
+
"customers.tags.manage.noteDescription.customers.renewal_quarter": "분기 명칭을 일관되게 유지해 CRM 전반의 갱신 필터가 가독성을 유지하도록 하세요.",
|
|
2724
|
+
"customers.tags.manage.noteDescription.customers.source": "이 값들은 고객 양식과 보고서 필터에서 재사용됩니다.",
|
|
2725
|
+
"customers.tags.manage.noteDescription.customers.status": "상태는 고객 카드에서 필수 항목입니다. 기존 행은 편집할 수 있지만, 이 카테고리는 테넌트 전체에서 계속 사용 가능해야 합니다.",
|
|
2726
|
+
"customers.tags.manage.noteDescription.customers.temperature": "관심도 값은 CRM 헤더 배지와 거래 컨텍스트 칩의 시각적 강조에 영향을 줍니다.",
|
|
2727
|
+
"customers.tags.manage.noteTitle.customers.custom_tags": "맞춤 태그",
|
|
2728
|
+
"customers.tags.manage.noteTitle.customers.lifecycle_stage": "공유 라이프사이클 값",
|
|
2729
|
+
"customers.tags.manage.noteTitle.customers.renewal_quarter": "갱신 계획",
|
|
2730
|
+
"customers.tags.manage.noteTitle.customers.source": "유입 경로 사전",
|
|
2731
|
+
"customers.tags.manage.noteTitle.customers.status": "시스템 카테고리",
|
|
2732
|
+
"customers.tags.manage.noteTitle.customers.temperature": "영업 관심도",
|
|
2733
|
+
"customers.tags.manage.openFull": "태그 사전 관리...",
|
|
2734
|
+
"customers.tags.manage.save": "변경 사항 저장",
|
|
2735
|
+
"customers.tags.manage.saveError": "태그 사전을 저장하지 못했습니다.",
|
|
2736
|
+
"customers.tags.manage.saveSuccess": "태그 사전이 업데이트되었습니다.",
|
|
2737
|
+
"customers.tags.manage.saving": "저장하는 중...",
|
|
2738
|
+
"customers.tags.manage.scrollLeft": "카테고리를 왼쪽으로 스크롤",
|
|
2739
|
+
"customers.tags.manage.scrollRight": "카테고리를 오른쪽으로 스크롤",
|
|
2740
|
+
"customers.tags.manage.search": "값 검색...",
|
|
2741
|
+
"customers.tags.manage.selectCategory": "카테고리를 선택하세요",
|
|
2742
|
+
"customers.tags.manage.subtitle": "테넌트 전체에 적용되는 태그 사전",
|
|
2743
|
+
"customers.tags.manage.tenantNotice": "변경 사항은 테넌트 전체에 적용되며 즉시 반영됩니다.",
|
|
2744
|
+
"customers.tags.manage.title": "태그 관리",
|
|
2745
|
+
"customers.tags.manage.validation.required": "저장하기 전에 각 항목에는 라벨과 슬러그가 모두 있어야 합니다.",
|
|
2746
|
+
"customers.tasks.filters.all": "전체",
|
|
2747
|
+
"customers.tasks.filters.mine": "내 작업",
|
|
2748
|
+
"customers.tasks.filters.overdue": "기한 초과",
|
|
2749
|
+
"customers.temperature.cold": "이탈 위험",
|
|
2750
|
+
"customers.temperature.cool": "활동 저조",
|
|
2751
|
+
"customers.temperature.high": "높은 관심",
|
|
2752
|
+
"customers.temperature.hot": "우수 고객",
|
|
2753
|
+
"customers.temperature.low": "활동 저조",
|
|
2754
|
+
"customers.temperature.medium": "참여중",
|
|
2755
|
+
"customers.temperature.neutral": "참여중",
|
|
2756
|
+
"customers.temperature.warm": "높은 관심",
|
|
2757
|
+
"customers.timeline.author": "{{name}} 작성",
|
|
2758
|
+
"customers.timeline.date.today": "오늘",
|
|
2759
|
+
"customers.timeline.date.tomorrow": "내일",
|
|
2760
|
+
"customers.timeline.date.yesterday": "어제",
|
|
2761
|
+
"customers.timeline.edit": "편집",
|
|
2762
|
+
"customers.timeline.empty": "현재 필터와 일치하는 활동이 없습니다.",
|
|
2763
|
+
"customers.timeline.filter.all": "전체 활동",
|
|
2764
|
+
"customers.timeline.filter.call": "전화",
|
|
2765
|
+
"customers.timeline.filter.email": "이메일",
|
|
2766
|
+
"customers.timeline.filter.from": "시작일",
|
|
2767
|
+
"customers.timeline.filter.meeting": "회의",
|
|
2768
|
+
"customers.timeline.filter.note": "메모",
|
|
2769
|
+
"customers.timeline.filter.task": "작업",
|
|
2770
|
+
"customers.timeline.filter.to": "종료일",
|
|
2771
|
+
"customers.timeline.history.filtered": "필터 적용됨: {{types}} · {{count}}건",
|
|
2772
|
+
"customers.timeline.history.searchAriaLabel": "상호작용 이력 검색",
|
|
2773
|
+
"customers.timeline.history.searchPlaceholder": "검색...",
|
|
2774
|
+
"customers.timeline.history.seeAll": "전체 활동 {{count}}건 보기",
|
|
2775
|
+
"customers.timeline.history.title": "{{name}}과(와)의 상호작용 이력",
|
|
2776
|
+
"customers.timeline.history.titleGeneric": "상호작용 이력",
|
|
2777
|
+
"customers.timeline.more": "더 보기",
|
|
2778
|
+
"customers.timeline.pin": "고정",
|
|
2779
|
+
"customers.timeline.pinned": "고정됨",
|
|
2780
|
+
"customers.timeline.planned.cancel": "취소",
|
|
2781
|
+
"customers.timeline.planned.cancelError": "활동을 취소하지 못했습니다",
|
|
2782
|
+
"customers.timeline.planned.canceled": "활동이 취소되었습니다",
|
|
2783
|
+
"customers.timeline.planned.completed": "활동이 완료되었습니다",
|
|
2784
|
+
"customers.timeline.planned.error": "활동을 완료 처리하지 못했습니다",
|
|
2785
|
+
"customers.timeline.planned.markDone": "완료 처리",
|
|
2786
|
+
"customers.timeline.planned.overdue": "기한 초과",
|
|
2787
|
+
"customers.timeline.planned.overdueCount": "기한 초과",
|
|
2788
|
+
"customers.timeline.planned.overdueDays": "{{days}}일 지남",
|
|
2789
|
+
"customers.timeline.planned.overdueSince": "어제부터 초과",
|
|
2790
|
+
"customers.timeline.planned.overdueToday": "오늘 마감",
|
|
2791
|
+
"customers.timeline.planned.reschedule": "일정 변경",
|
|
2792
|
+
"customers.timeline.planned.schedule": "예약",
|
|
2793
|
+
"customers.timeline.planned.title": "예정된 활동",
|
|
2794
|
+
"customers.timeline.planned.upcoming": "다가오는 일정",
|
|
2795
|
+
"customers.timeline.unpin": "고정 해제",
|
|
2796
|
+
"customers.widgets.common.unknown": "알 수 없음",
|
|
2797
|
+
"customers.widgets.common.unknownDate": "날짜 정보 없음",
|
|
2798
|
+
"customers.widgets.common.viewRecord": "레코드 보기",
|
|
2799
|
+
"customers.widgets.newCustomers.actions.refresh": "새로고침",
|
|
2800
|
+
"customers.widgets.newCustomers.empty": "신규 고객이 아직 없습니다.",
|
|
2801
|
+
"customers.widgets.newCustomers.error": "신규 고객을 불러올 수 없습니다.",
|
|
2802
|
+
"customers.widgets.newCustomers.filters.all": "전체 고객",
|
|
2803
|
+
"customers.widgets.newCustomers.filters.company": "회사만",
|
|
2804
|
+
"customers.widgets.newCustomers.filters.person": "연락처만",
|
|
2805
|
+
"customers.widgets.newCustomers.kind.company": "회사",
|
|
2806
|
+
"customers.widgets.newCustomers.kind.person": "연락처",
|
|
2807
|
+
"customers.widgets.newCustomers.kind.unknown": "고객",
|
|
2808
|
+
"customers.widgets.newCustomers.settings.kind": "필터",
|
|
2809
|
+
"customers.widgets.newCustomers.settings.pageSize": "표시할 항목 수",
|
|
2810
|
+
"customers.widgets.newCustomers.subtitle": "최근 추가된 연락처 또는 회사입니다.",
|
|
2811
|
+
"customers.widgets.newCustomers.title": "신규 고객",
|
|
2812
|
+
"customers.widgets.newDeals.actions.refresh": "새로고침",
|
|
2813
|
+
"customers.widgets.newDeals.empty": "신규 거래가 아직 없습니다.",
|
|
2814
|
+
"customers.widgets.newDeals.error": "신규 거래를 불러올 수 없습니다.",
|
|
2815
|
+
"customers.widgets.newDeals.settings.pageSize": "표시할 항목 수",
|
|
2816
|
+
"customers.widgets.newDeals.subtitle": "최근 생성된 고객 거래입니다.",
|
|
2817
|
+
"customers.widgets.newDeals.title": "신규 거래",
|
|
2818
|
+
"customers.widgets.newDeals.untitled": "제목 없는 거래",
|
|
2819
|
+
"customers.widgets.nextInteractions.actions.refresh": "새로고침",
|
|
2820
|
+
"customers.widgets.nextInteractions.empty": "예정된 상호작용이 없습니다.",
|
|
2821
|
+
"customers.widgets.nextInteractions.error": "다가오는 상호작용을 불러올 수 없습니다.",
|
|
2822
|
+
"customers.widgets.nextInteractions.settings.includePast": "기한 초과된 상호작용 포함",
|
|
2823
|
+
"customers.widgets.nextInteractions.settings.pageSize": "표시할 항목 수",
|
|
2824
|
+
"customers.widgets.nextInteractions.subtitle": "예정된 고객 상호작용을 미리 확인하세요.",
|
|
2825
|
+
"customers.widgets.nextInteractions.title": "다음 상호작용",
|
|
2826
|
+
"customers.widgets.todos.actions.refresh": "새로고침",
|
|
2827
|
+
"customers.widgets.todos.empty": "고객 관련 작업이 아직 없습니다.",
|
|
2828
|
+
"customers.widgets.todos.error": "고객 관련 작업을 불러올 수 없습니다.",
|
|
2829
|
+
"customers.widgets.todos.settings.help": "위젯 설정은 내 대시보드 레이아웃에만 적용됩니다.",
|
|
2830
|
+
"customers.widgets.todos.settings.pageSize": "표시할 항목 수",
|
|
2831
|
+
"customers.widgets.todos.subtitle": "고객 레코드에 연결된 최근 할 일입니다.",
|
|
2832
|
+
"customers.widgets.todos.title": "고객 관련 작업",
|
|
2833
|
+
"customers.widgets.todos.untitled": "제목 없는 작업",
|
|
2834
|
+
"customers.workPlan.customerTodos.page.title": "고객 관련 작업",
|
|
2835
|
+
"customers.workPlan.customerTodos.table.actions.openCustomer": "고객 열기",
|
|
2836
|
+
"customers.workPlan.customerTodos.table.actions.openTask": "작업 열기",
|
|
2837
|
+
"customers.workPlan.customerTodos.table.actions.refresh": "새로고침",
|
|
2838
|
+
"customers.workPlan.customerTodos.table.column.createdAt": "연결일",
|
|
2839
|
+
"customers.workPlan.customerTodos.table.column.customer": "고객",
|
|
2840
|
+
"customers.workPlan.customerTodos.table.column.done": "완료",
|
|
2841
|
+
"customers.workPlan.customerTodos.table.column.source": "출처",
|
|
2842
|
+
"customers.workPlan.customerTodos.table.column.todo": "작업",
|
|
2843
|
+
"customers.workPlan.customerTodos.table.column.todo.unnamed": "제목 없는 작업",
|
|
2844
|
+
"customers.workPlan.customerTodos.table.error.load": "고객 관련 작업을 불러오지 못했습니다.",
|
|
2845
|
+
"customers.workPlan.customerTodos.table.export.full": "숨겨진 속성을 포함해 연결된 모든 작업 필드를 내보냅니다.",
|
|
2846
|
+
"customers.workPlan.customerTodos.table.export.view": "현재 목록을 필터와 표시된 열 기준으로 내보냅니다.",
|
|
2847
|
+
"customers.workPlan.customerTodos.table.filters.done": "완료 상태",
|
|
2848
|
+
"customers.workPlan.customerTodos.table.filters.doneOption.any": "전체",
|
|
2849
|
+
"customers.workPlan.customerTodos.table.filters.doneOption.completed": "완료됨",
|
|
2850
|
+
"customers.workPlan.customerTodos.table.filters.doneOption.open": "진행중",
|
|
2851
|
+
"customers.workPlan.customerTodos.table.flash.refreshed": "작업 목록을 새로고침했습니다",
|
|
2852
|
+
"customers.workPlan.customerTodos.table.state.empty": "고객 관련 작업이 아직 없습니다.",
|
|
2853
|
+
"customers.workPlan.customerTodos.table.state.noMatches": "필터와 일치하는 작업이 없습니다.",
|
|
2854
|
+
"customers.workPlan.customerTodos.table.title": "고객 관련 작업"
|
|
2855
|
+
}
|