@agent-native/core 0.77.24 → 0.78.1
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/corpus/README.md +2 -2
- package/corpus/core/CHANGELOG.md +20 -0
- package/corpus/core/docs/content/template-analytics.md +5 -0
- package/corpus/core/docs/content/tracking.md +45 -0
- package/corpus/core/package.json +3 -1
- package/corpus/core/src/agent/types.ts +22 -0
- package/corpus/core/src/client/AgentPanel.tsx +34 -18
- package/corpus/core/src/client/AssistantChat.tsx +40 -0
- package/corpus/core/src/client/agent-chat.ts +173 -0
- package/corpus/core/src/client/analytics.ts +141 -5
- package/corpus/core/src/client/composer/TiptapComposer.tsx +316 -60
- package/corpus/core/src/client/composer/extensions/MentionReference.tsx +3 -0
- package/corpus/core/src/client/composer/types.ts +22 -0
- package/corpus/core/src/client/index.ts +14 -0
- package/corpus/core/src/client/session-replay.ts +800 -0
- package/corpus/core/src/db/schema.ts +12 -0
- package/corpus/core/src/deploy/build.ts +75 -0
- package/corpus/core/src/private-blob/index.ts +18 -0
- package/corpus/core/src/private-blob/registry.ts +241 -0
- package/corpus/core/src/private-blob/types.ts +55 -0
- package/corpus/core/src/scripts/utils.ts +34 -6
- package/corpus/core/src/server/agent-chat-plugin.ts +10 -0
- package/corpus/core/src/server/email.ts +5 -0
- package/corpus/core/src/server/index.ts +1 -0
- package/corpus/core/src/styles/agent-native.css +24 -0
- package/corpus/templates/analytics/.agents/skills/dashboard-management/SKILL.md +1 -1
- package/corpus/templates/analytics/.agents/skills/session-replay/SKILL.md +43 -0
- package/corpus/templates/analytics/AGENTS.md +32 -1
- package/corpus/templates/analytics/DEVELOPING.md +9 -1
- package/corpus/templates/analytics/actions/delete-dashboard-report-subscription.ts +24 -0
- package/corpus/templates/analytics/actions/get-session-replay-events.ts +50 -0
- package/corpus/templates/analytics/actions/get-session-replay-summary.ts +27 -0
- package/corpus/templates/analytics/actions/list-dashboard-report-subscriptions.ts +24 -0
- package/corpus/templates/analytics/actions/list-session-recordings.ts +59 -0
- package/corpus/templates/analytics/actions/navigate.ts +15 -5
- package/corpus/templates/analytics/actions/query-agent-native-analytics.ts +2 -2
- package/corpus/templates/analytics/actions/save-dashboard-report-subscription.ts +36 -0
- package/corpus/templates/analytics/actions/send-dashboard-report-now.ts +60 -0
- package/corpus/templates/analytics/actions/view-screen.ts +50 -2
- package/corpus/templates/analytics/app/components/dashboard/SqlChart.tsx +51 -2
- package/corpus/templates/analytics/app/components/layout/Header.tsx +4 -1
- package/corpus/templates/analytics/app/components/layout/Layout.tsx +14 -2
- package/corpus/templates/analytics/app/components/layout/Sidebar.tsx +6 -6
- package/corpus/templates/analytics/app/hooks/use-navigation-state.ts +35 -6
- package/corpus/templates/analytics/app/i18n-data.ts +1119 -0
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/EmailReportDialog.tsx +437 -0
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/SqlChartCard.tsx +11 -12
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/dashboard-layout.ts +43 -0
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/index.tsx +136 -43
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/report-filters.ts +26 -0
- package/corpus/templates/analytics/app/pages/sessions/SessionDetailPage.tsx +450 -0
- package/corpus/templates/analytics/app/pages/sessions/SessionsPage.tsx +419 -0
- package/corpus/templates/analytics/app/routes/overview.tsx +13 -6
- package/corpus/templates/analytics/app/routes/sessions.$recordingId.tsx +10 -0
- package/corpus/templates/analytics/app/routes/sessions._index.tsx +10 -0
- package/corpus/templates/analytics/changelog/2026-06-25-analytics-now-opens-directly-to-ask-instead-of-the-old-overv.md +6 -0
- package/corpus/templates/analytics/changelog/2026-06-25-dashboard-charts-now-show-reliable-blue-placement-lines-whil.md +6 -0
- package/corpus/templates/analytics/changelog/2026-06-26-dashboards-can-now-send-scheduled-daily-email-reports-from-t.md +6 -0
- package/corpus/templates/analytics/changelog/2026-06-26-session-replay-browser-sessions-can-now-be-reviewed-from.md +6 -0
- package/corpus/templates/analytics/package.json +5 -2
- package/corpus/templates/analytics/scripts/emit-netlify-dashboard-report-cron.ts +131 -0
- package/corpus/templates/analytics/scripts/seed-session-replay.ts +198 -0
- package/corpus/templates/analytics/seeds/dashboards/agent-native-templates-first-party.json +140 -27
- package/corpus/templates/analytics/server/db/index.ts +12 -0
- package/corpus/templates/analytics/server/db/schema.ts +131 -0
- package/corpus/templates/analytics/server/handlers/session-replay.ts +281 -0
- package/corpus/templates/analytics/server/handlers/sql-query.ts +8 -348
- package/corpus/templates/analytics/server/jobs/dashboard-report.ts +66 -0
- package/corpus/templates/analytics/server/jobs/session-replay-retention.ts +29 -0
- package/corpus/templates/analytics/server/lib/dashboard-panel-query.ts +365 -0
- package/corpus/templates/analytics/server/lib/dashboard-report-subscriptions.ts +473 -0
- package/corpus/templates/analytics/server/lib/dashboard-report.ts +405 -0
- package/corpus/templates/analytics/server/lib/first-party-analytics.ts +63 -18
- package/corpus/templates/analytics/server/lib/first-party-metric-catalog.ts +98 -26
- package/corpus/templates/analytics/server/lib/session-replay.ts +1645 -0
- package/corpus/templates/analytics/server/plugins/auth.ts +1 -1
- package/corpus/templates/analytics/server/plugins/dashboard-report-jobs.ts +47 -0
- package/corpus/templates/analytics/server/plugins/db.ts +200 -0
- package/corpus/templates/analytics/server/plugins/session-replay-retention-jobs.ts +41 -0
- package/corpus/templates/analytics/server/routes/api/analytics/replay.options.ts +1 -0
- package/corpus/templates/analytics/server/routes/api/analytics/replay.post.ts +1 -0
- package/corpus/templates/analytics/server/routes/api/dashboard-reports/run.post.ts +61 -0
- package/corpus/templates/analytics/server/routes/api/session-replay/recordings/[recordingId]/chunks/[seq].get.ts +1 -0
- package/corpus/templates/analytics/server/routes/api/session-replay/recordings/[recordingId]/events.get.ts +1 -0
- package/corpus/templates/analytics/server/routes/api/session-replay/recordings/[recordingId]/manifest.get.ts +1 -0
- package/corpus/templates/analytics/server/routes/api/session-replay/recordings/[recordingId].get.ts +1 -0
- package/corpus/templates/analytics/server/routes/api/session-replay/recordings.get.ts +1 -0
- package/corpus/templates/assets/.agents/skills/asset-generation/SKILL.md +10 -2
- package/corpus/templates/assets/.agents/skills/image-generation/SKILL.md +14 -7
- package/corpus/templates/assets/.agents/skills/library-management/SKILL.md +12 -0
- package/corpus/templates/assets/AGENTS.md +18 -3
- package/corpus/templates/assets/actions/_image-model-default.ts +24 -0
- package/corpus/templates/assets/actions/dismiss-variant-slots.ts +15 -22
- package/corpus/templates/assets/actions/generate-asset.ts +30 -23
- package/corpus/templates/assets/actions/generate-image-batch.ts +76 -29
- package/corpus/templates/assets/actions/generate-image.ts +46 -30
- package/corpus/templates/assets/actions/generate-video.ts +18 -3
- package/corpus/templates/assets/actions/list-assets.ts +39 -8
- package/corpus/templates/assets/actions/list-libraries.ts +24 -2
- package/corpus/templates/assets/actions/navigate.ts +1 -1
- package/corpus/templates/assets/actions/open-asset-picker.ts +38 -1
- package/corpus/templates/assets/actions/refresh-generation-run.ts +10 -0
- package/corpus/templates/assets/actions/save-generated-image.ts +21 -19
- package/corpus/templates/assets/actions/variant-slots.ts +131 -28
- package/corpus/templates/assets/actions/view-screen.ts +9 -0
- package/corpus/templates/assets/app/components/generation/GenerationResults.tsx +425 -0
- package/corpus/templates/assets/app/components/layout/Header.tsx +3 -1
- package/corpus/templates/assets/app/components/layout/Layout.tsx +5 -0
- package/corpus/templates/assets/app/components/layout/Sidebar.tsx +4 -6
- package/corpus/templates/assets/app/hooks/use-navigation-state.ts +47 -21
- package/corpus/templates/assets/app/i18n-data.ts +1815 -0
- package/corpus/templates/assets/app/lib/libraries.ts +6 -0
- package/corpus/templates/assets/app/lib/picker-chat-handoff.ts +71 -0
- package/corpus/templates/assets/app/routes/_index.tsx +4 -0
- package/corpus/templates/assets/app/routes/asset.$id.tsx +2 -2
- package/corpus/templates/assets/app/routes/audit.tsx +1 -1
- package/corpus/templates/assets/app/routes/brand-kits.$id.tsx +1557 -2164
- package/corpus/templates/assets/app/routes/brand-kits._index.tsx +7 -191
- package/corpus/templates/assets/app/routes/brand-kits.tsx +1 -5
- package/corpus/templates/assets/app/routes/libraries.tsx +4 -4
- package/corpus/templates/assets/app/routes/library.$id.tsx +9 -7
- package/corpus/templates/assets/app/routes/library.tsx +1454 -175
- package/corpus/templates/assets/server/db/index.ts +1 -1
- package/corpus/templates/assets/server/lib/generation.ts +86 -15
- package/corpus/templates/assets/server/plugins/agent-chat.ts +196 -0
- package/corpus/templates/assets/server/plugins/db.ts +5 -0
- package/corpus/templates/assets/shared/api.ts +6 -3
- package/dist/agent/types.d.ts +21 -0
- package/dist/agent/types.d.ts.map +1 -1
- package/dist/agent/types.js.map +1 -1
- package/dist/client/AgentPanel.d.ts +6 -2
- package/dist/client/AgentPanel.d.ts.map +1 -1
- package/dist/client/AgentPanel.js +10 -4
- package/dist/client/AgentPanel.js.map +1 -1
- package/dist/client/AssistantChat.d.ts +6 -0
- package/dist/client/AssistantChat.d.ts.map +1 -1
- package/dist/client/AssistantChat.js +15 -3
- package/dist/client/AssistantChat.js.map +1 -1
- package/dist/client/agent-chat.d.ts +32 -0
- package/dist/client/agent-chat.d.ts.map +1 -1
- package/dist/client/agent-chat.js +113 -0
- package/dist/client/agent-chat.js.map +1 -1
- package/dist/client/analytics.d.ts +22 -3
- package/dist/client/analytics.d.ts.map +1 -1
- package/dist/client/analytics.js +96 -4
- package/dist/client/analytics.js.map +1 -1
- package/dist/client/composer/TiptapComposer.d.ts +2 -1
- package/dist/client/composer/TiptapComposer.d.ts.map +1 -1
- package/dist/client/composer/TiptapComposer.js +228 -56
- package/dist/client/composer/TiptapComposer.js.map +1 -1
- package/dist/client/composer/extensions/MentionReference.d.ts.map +1 -1
- package/dist/client/composer/extensions/MentionReference.js +3 -0
- package/dist/client/composer/extensions/MentionReference.js.map +1 -1
- package/dist/client/composer/types.d.ts +21 -0
- package/dist/client/composer/types.d.ts.map +1 -1
- package/dist/client/composer/types.js.map +1 -1
- package/dist/client/index.d.ts +2 -2
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +2 -2
- package/dist/client/index.js.map +1 -1
- package/dist/client/session-replay.d.ts +41 -0
- package/dist/client/session-replay.d.ts.map +1 -0
- package/dist/client/session-replay.js +595 -0
- package/dist/client/session-replay.js.map +1 -0
- package/dist/collab/awareness.d.ts +2 -2
- package/dist/collab/awareness.d.ts.map +1 -1
- package/dist/collab/routes.d.ts +2 -2
- package/dist/db/schema.d.ts +3 -1
- package/dist/db/schema.d.ts.map +1 -1
- package/dist/db/schema.js +6 -2
- package/dist/db/schema.js.map +1 -1
- package/dist/deploy/build.d.ts +8 -0
- package/dist/deploy/build.d.ts.map +1 -1
- package/dist/deploy/build.js +66 -0
- package/dist/deploy/build.js.map +1 -1
- package/dist/file-upload/actions/upload-image.d.ts +2 -2
- package/dist/notifications/routes.d.ts +3 -3
- package/dist/observability/routes.d.ts +8 -8
- package/dist/private-blob/index.d.ts +3 -0
- package/dist/private-blob/index.d.ts.map +1 -0
- package/dist/private-blob/index.js +2 -0
- package/dist/private-blob/index.js.map +1 -0
- package/dist/private-blob/registry.d.ts +10 -0
- package/dist/private-blob/registry.d.ts.map +1 -0
- package/dist/private-blob/registry.js +152 -0
- package/dist/private-blob/registry.js.map +1 -0
- package/dist/private-blob/types.d.ts +51 -0
- package/dist/private-blob/types.d.ts.map +1 -0
- package/dist/private-blob/types.js +2 -0
- package/dist/private-blob/types.js.map +1 -0
- package/dist/resources/handlers.d.ts +3 -3
- package/dist/scripts/utils.d.ts +4 -4
- package/dist/scripts/utils.d.ts.map +1 -1
- package/dist/scripts/utils.js +30 -6
- package/dist/scripts/utils.js.map +1 -1
- package/dist/server/agent-chat-plugin.d.ts.map +1 -1
- package/dist/server/agent-chat-plugin.js +5 -0
- package/dist/server/agent-chat-plugin.js.map +1 -1
- package/dist/server/agent-engine-api-key-route.d.ts +2 -2
- package/dist/server/email.d.ts +2 -0
- package/dist/server/email.d.ts.map +1 -1
- package/dist/server/email.js +3 -0
- package/dist/server/email.js.map +1 -1
- package/dist/server/index.d.ts +1 -1
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js.map +1 -1
- package/dist/server/transcribe-voice.d.ts +1 -1
- package/dist/styles/agent-native.css +24 -0
- package/docs/content/template-analytics.md +5 -0
- package/docs/content/tracking.md +45 -0
- package/package.json +3 -1
- package/corpus/templates/analytics/app/pages/overview/OverviewPage.tsx +0 -209
|
@@ -8,6 +8,7 @@ const enUS = {
|
|
|
8
8
|
dashboard: "Dashboard",
|
|
9
9
|
dataSources: "Data Sources",
|
|
10
10
|
dataDictionary: "Data Dictionary",
|
|
11
|
+
sessions: "Sessions",
|
|
11
12
|
templateCatalog: "Catalog",
|
|
12
13
|
dashboards: "Dashboards",
|
|
13
14
|
analyses: "Analyses",
|
|
@@ -197,6 +198,8 @@ const enUS = {
|
|
|
197
198
|
dashboard: "Dashboard - Analytics",
|
|
198
199
|
dataDictionary: "Data Dictionary - Analytics",
|
|
199
200
|
dataSources: "Data Sources - Analytics",
|
|
201
|
+
sessions: "Sessions - Analytics",
|
|
202
|
+
session: "Session Replay - Analytics",
|
|
200
203
|
tool: "Tool - Analytics",
|
|
201
204
|
extensions: "Extensions - Analytics",
|
|
202
205
|
overview: "Overview - Analytics",
|
|
@@ -383,6 +386,33 @@ const enUS = {
|
|
|
383
386
|
"No filters are currently active - this view will apply the default filter state.",
|
|
384
387
|
deleteViewTitle: "Delete view?",
|
|
385
388
|
deleteViewDescription: 'Delete view "{{name}}"? This cannot be undone.',
|
|
389
|
+
emailReports: "Email reports",
|
|
390
|
+
emailReportsDescription: 'Daily email snapshot for "{{name}}".',
|
|
391
|
+
existingReportSubscriptions: "Subscriptions",
|
|
392
|
+
newSubscription: "New",
|
|
393
|
+
noReportSubscriptions: "No subscriptions yet.",
|
|
394
|
+
reportName: "Name",
|
|
395
|
+
reportRecipients: "Recipients",
|
|
396
|
+
reportRecipientsPlaceholder: "analytics@example.com, ops@example.com",
|
|
397
|
+
reportRecipientsRequired: "Add at least one recipient.",
|
|
398
|
+
reportSendTime: "Send time",
|
|
399
|
+
reportTimezone: "Timezone",
|
|
400
|
+
reportEnabled: "Enabled",
|
|
401
|
+
reportFilterSnapshot: "{{count}} saved filters used by this report",
|
|
402
|
+
reportUseCurrentFilters: "Use current filters",
|
|
403
|
+
reportLastRun: "Last sent",
|
|
404
|
+
reportNextRun: "Next send",
|
|
405
|
+
reportSendNow: "Send now",
|
|
406
|
+
reportSending: "Sending...",
|
|
407
|
+
saveSubscription: "Save subscription",
|
|
408
|
+
updateSubscription: "Update subscription",
|
|
409
|
+
reportSubscriptionSaved: "Email report subscription saved.",
|
|
410
|
+
reportSubscriptionDeleted: "Email report subscription deleted.",
|
|
411
|
+
reportSent: "Dashboard report sent.",
|
|
412
|
+
reportSubscriptionSaveFailed: "Couldn't save subscription: {{message}}",
|
|
413
|
+
reportSubscriptionDeleteFailed: "Couldn't delete subscription: {{message}}",
|
|
414
|
+
reportSendFailed: "Couldn't send report: {{message}}",
|
|
415
|
+
never: "Never",
|
|
386
416
|
},
|
|
387
417
|
analyses: {
|
|
388
418
|
description: "Ad-hoc analyses that can be re-run anytime for fresh results",
|
|
@@ -702,6 +732,82 @@ const enUS = {
|
|
|
702
732
|
operationalPain: "Operational pain",
|
|
703
733
|
untitledTheme: "Untitled theme",
|
|
704
734
|
},
|
|
735
|
+
sessions: {
|
|
736
|
+
title: "Sessions",
|
|
737
|
+
description:
|
|
738
|
+
"Review first-party browser sessions and replay recordings captured by Agent Native Analytics.",
|
|
739
|
+
filters: "Filters",
|
|
740
|
+
filtersDescription:
|
|
741
|
+
"Filters are stored in the URL so the agent and shared links see the same session list.",
|
|
742
|
+
refresh: "Refresh",
|
|
743
|
+
searchPlaceholder: "Search session, visitor, URL, path...",
|
|
744
|
+
appPlaceholder: "App or template",
|
|
745
|
+
range: "Range",
|
|
746
|
+
replay: "Replay",
|
|
747
|
+
replayAll: "All sessions",
|
|
748
|
+
replayWith: "With replay",
|
|
749
|
+
replayWithout: "Without replay",
|
|
750
|
+
last24h: "Last 24h",
|
|
751
|
+
last7d: "Last 7d",
|
|
752
|
+
last30d: "Last 30d",
|
|
753
|
+
last90d: "Last 90d",
|
|
754
|
+
allTime: "All time",
|
|
755
|
+
showing: "{{count}} sessions",
|
|
756
|
+
truncated: "Showing the first replay events only.",
|
|
757
|
+
session: "Session",
|
|
758
|
+
visitor: "Visitor",
|
|
759
|
+
app: "App",
|
|
760
|
+
unknownApp: "Unknown app",
|
|
761
|
+
lastSeen: "Last seen",
|
|
762
|
+
duration: "Duration",
|
|
763
|
+
events: "Events",
|
|
764
|
+
chunks: "Chunks",
|
|
765
|
+
pages: "Pages",
|
|
766
|
+
replayReady: "Replay",
|
|
767
|
+
watchReplay: "Watch replay",
|
|
768
|
+
metadataOnly: "Replay unavailable",
|
|
769
|
+
noSessions: "No sessions found",
|
|
770
|
+
noSessionsDescription:
|
|
771
|
+
"Create an Analytics public key, configure tracking with session replay enabled, then visit the app in a browser.",
|
|
772
|
+
emptyStepKey: "Create key",
|
|
773
|
+
emptyStepEnv: "Configure SDK",
|
|
774
|
+
emptyStepVisit: "Visit app",
|
|
775
|
+
installSnippetTitle: "Add session replay",
|
|
776
|
+
backToSessions: "Back to sessions",
|
|
777
|
+
askAgent: "Ask agent about this session",
|
|
778
|
+
replayPlayer: "Replay player",
|
|
779
|
+
replayLoading: "Loading replay...",
|
|
780
|
+
replayUnavailable: "No replay chunks for this session",
|
|
781
|
+
replayUnavailableDescription:
|
|
782
|
+
"This recording has metadata, but no playable replay chunks were found.",
|
|
783
|
+
unavailableChunks: "{{count}} chunks could not be loaded.",
|
|
784
|
+
replayChunks: "Replay chunks",
|
|
785
|
+
replayChunksDescription:
|
|
786
|
+
"Scoped chunks used to reconstruct this replay. Provider URLs stay private.",
|
|
787
|
+
chunkAndEventCount: "{{chunks}} chunks, {{events}} replay events",
|
|
788
|
+
timeline: "Event timeline",
|
|
789
|
+
timelineDescription: "Showing the first {{count}} events in this session.",
|
|
790
|
+
sequence: "Sequence",
|
|
791
|
+
size: "Size",
|
|
792
|
+
checksum: "Checksum",
|
|
793
|
+
started: "Started",
|
|
794
|
+
signedIn: "Signed in",
|
|
795
|
+
anonymous: "Anonymous",
|
|
796
|
+
errors: "Errors",
|
|
797
|
+
errorCount: "{{count}} errors",
|
|
798
|
+
rageClicks: "{{count}} rage clicks",
|
|
799
|
+
replayEvents: "Replay events",
|
|
800
|
+
restart: "Restart",
|
|
801
|
+
play: "Play",
|
|
802
|
+
pause: "Pause",
|
|
803
|
+
loadFailed: "Couldn't load session replay: {{message}}",
|
|
804
|
+
noReplayEvents: "No rrweb events were found in the replay chunks.",
|
|
805
|
+
chunkCount: "{{count}} replay chunks",
|
|
806
|
+
url: "URL",
|
|
807
|
+
path: "Path",
|
|
808
|
+
eventName: "Event",
|
|
809
|
+
time: "Time",
|
|
810
|
+
},
|
|
705
811
|
catalog: {
|
|
706
812
|
description:
|
|
707
813
|
"Source-controlled dashboards ready to install into your workspace.",
|
|
@@ -3223,6 +3329,7 @@ function mergeMessages(overrides: {
|
|
|
3223
3329
|
sqlDashboard: { ...enUS.sqlDashboard, ...overrides.sqlDashboard },
|
|
3224
3330
|
analyses: { ...enUS.analyses, ...overrides.analyses },
|
|
3225
3331
|
overview: { ...enUS.overview, ...overrides.overview },
|
|
3332
|
+
sessions: { ...enUS.sessions, ...overrides.sessions },
|
|
3226
3333
|
catalog: { ...enUS.catalog, ...overrides.catalog },
|
|
3227
3334
|
};
|
|
3228
3335
|
}
|
|
@@ -6700,3 +6807,1015 @@ for (const [locale, overrides] of Object.entries(
|
|
|
6700
6807
|
Object.assign(messages[section], sectionOverrides);
|
|
6701
6808
|
}
|
|
6702
6809
|
}
|
|
6810
|
+
|
|
6811
|
+
const translatedSessionReplayTranslations = {
|
|
6812
|
+
"zh-CN": {
|
|
6813
|
+
navigation: { sessions: "会话" },
|
|
6814
|
+
routeTitles: {
|
|
6815
|
+
sessions: "会话 - Analytics",
|
|
6816
|
+
session: "会话回放 - Analytics",
|
|
6817
|
+
},
|
|
6818
|
+
sessions: {
|
|
6819
|
+
title: "会话",
|
|
6820
|
+
description:
|
|
6821
|
+
"查看 Agent Native Analytics 捕获的第一方浏览器会话和回放记录。",
|
|
6822
|
+
filters: "筛选器",
|
|
6823
|
+
filtersDescription:
|
|
6824
|
+
"筛选器保存在 URL 中,因此代理和共享链接会看到同一份会话列表。",
|
|
6825
|
+
refresh: "刷新",
|
|
6826
|
+
searchPlaceholder: "搜索会话、访客、URL、路径...",
|
|
6827
|
+
appPlaceholder: "应用或模板",
|
|
6828
|
+
range: "时间范围",
|
|
6829
|
+
replay: "回放",
|
|
6830
|
+
replayAll: "所有会话",
|
|
6831
|
+
replayWith: "有回放",
|
|
6832
|
+
replayWithout: "无回放",
|
|
6833
|
+
last24h: "过去 24 小时",
|
|
6834
|
+
last7d: "过去 7 天",
|
|
6835
|
+
last30d: "过去 30 天",
|
|
6836
|
+
last90d: "过去 90 天",
|
|
6837
|
+
allTime: "全部时间",
|
|
6838
|
+
showing: "{{count}} 个会话",
|
|
6839
|
+
truncated: "仅显示最近事件",
|
|
6840
|
+
session: "会话",
|
|
6841
|
+
visitor: "访客",
|
|
6842
|
+
app: "应用",
|
|
6843
|
+
unknownApp: "未知应用",
|
|
6844
|
+
lastSeen: "最后出现",
|
|
6845
|
+
duration: "持续时间",
|
|
6846
|
+
events: "事件",
|
|
6847
|
+
chunks: "分块",
|
|
6848
|
+
pages: "页面",
|
|
6849
|
+
replayReady: "回放",
|
|
6850
|
+
watchReplay: "观看回放",
|
|
6851
|
+
metadataOnly: "仅事件",
|
|
6852
|
+
noSessions: "未找到会话",
|
|
6853
|
+
noSessionsDescription:
|
|
6854
|
+
"创建 Analytics 公共密钥,配置已启用会话回放的跟踪,然后在浏览器中访问应用。",
|
|
6855
|
+
emptyStepKey: "创建密钥",
|
|
6856
|
+
emptyStepEnv: "配置 SDK",
|
|
6857
|
+
emptyStepVisit: "访问应用",
|
|
6858
|
+
installSnippetTitle: "添加会话回放",
|
|
6859
|
+
backToSessions: "返回会话",
|
|
6860
|
+
askAgent: "询问代理此会话",
|
|
6861
|
+
replayPlayer: "回放播放器",
|
|
6862
|
+
replayLoading: "正在加载回放...",
|
|
6863
|
+
replayUnavailable: "此会话没有回放分块",
|
|
6864
|
+
replayUnavailableDescription:
|
|
6865
|
+
"此会话有分析事件,但未找到 rrweb 分块事件。",
|
|
6866
|
+
replayChunks: "回放分块",
|
|
6867
|
+
replayChunksDescription:
|
|
6868
|
+
"用于重建此回放的受控分块。提供商 URL 保持私有。",
|
|
6869
|
+
timeline: "事件时间线",
|
|
6870
|
+
timelineDescription: "显示此会话的前 {{count}} 个事件。",
|
|
6871
|
+
started: "开始",
|
|
6872
|
+
signedIn: "已登录",
|
|
6873
|
+
anonymous: "匿名",
|
|
6874
|
+
replayEvents: "回放事件",
|
|
6875
|
+
restart: "重新开始",
|
|
6876
|
+
play: "播放",
|
|
6877
|
+
pause: "暂停",
|
|
6878
|
+
loadFailed: "无法加载会话回放:{{message}}",
|
|
6879
|
+
noReplayEvents: "回放分块中没有找到 rrweb 事件。",
|
|
6880
|
+
chunkCount: "{{count}} 个回放分块",
|
|
6881
|
+
url: "URL",
|
|
6882
|
+
path: "路径",
|
|
6883
|
+
eventName: "事件",
|
|
6884
|
+
time: "时间",
|
|
6885
|
+
},
|
|
6886
|
+
},
|
|
6887
|
+
"es-ES": {
|
|
6888
|
+
navigation: { sessions: "Sesiones" },
|
|
6889
|
+
routeTitles: {
|
|
6890
|
+
sessions: "Sesiones - Analytics",
|
|
6891
|
+
session: "Reproducción de sesión - Analytics",
|
|
6892
|
+
},
|
|
6893
|
+
sessions: {
|
|
6894
|
+
title: "Sesiones",
|
|
6895
|
+
description:
|
|
6896
|
+
"Revisa sesiones de navegador propias y grabaciones de reproducción capturadas por Agent Native Analytics.",
|
|
6897
|
+
filters: "Filtros",
|
|
6898
|
+
filtersDescription:
|
|
6899
|
+
"Los filtros se guardan en la URL para que el agente y los enlaces compartidos vean la misma lista de sesiones.",
|
|
6900
|
+
refresh: "Actualizar",
|
|
6901
|
+
searchPlaceholder: "Buscar sesión, visitante, URL, ruta...",
|
|
6902
|
+
appPlaceholder: "Aplicación o plantilla",
|
|
6903
|
+
range: "Intervalo",
|
|
6904
|
+
replay: "Reproducción",
|
|
6905
|
+
replayAll: "Todas las sesiones",
|
|
6906
|
+
replayWith: "Con reproducción",
|
|
6907
|
+
replayWithout: "Sin reproducción",
|
|
6908
|
+
last24h: "Últimas 24 h",
|
|
6909
|
+
last7d: "Últimos 7 días",
|
|
6910
|
+
last30d: "Últimos 30 días",
|
|
6911
|
+
last90d: "Últimos 90 días",
|
|
6912
|
+
allTime: "Todo el tiempo",
|
|
6913
|
+
showing: "{{count}} sesiones",
|
|
6914
|
+
truncated: "Mostrando solo eventos recientes",
|
|
6915
|
+
session: "Sesión",
|
|
6916
|
+
visitor: "Visitante",
|
|
6917
|
+
app: "Aplicación",
|
|
6918
|
+
unknownApp: "Aplicación desconocida",
|
|
6919
|
+
lastSeen: "Visto por última vez",
|
|
6920
|
+
duration: "Duración",
|
|
6921
|
+
events: "Eventos",
|
|
6922
|
+
chunks: "Fragmentos",
|
|
6923
|
+
pages: "Páginas",
|
|
6924
|
+
replayReady: "Reproducción",
|
|
6925
|
+
watchReplay: "Ver reproducción",
|
|
6926
|
+
metadataOnly: "Solo eventos",
|
|
6927
|
+
noSessions: "No se encontraron sesiones",
|
|
6928
|
+
noSessionsDescription:
|
|
6929
|
+
"Crea una clave pública de Analytics, configura el seguimiento con reproducción de sesión activada y luego visita la app en un navegador.",
|
|
6930
|
+
emptyStepKey: "Crear clave",
|
|
6931
|
+
emptyStepEnv: "Configurar SDK",
|
|
6932
|
+
emptyStepVisit: "Visitar app",
|
|
6933
|
+
installSnippetTitle: "Añadir reproducción de sesión",
|
|
6934
|
+
backToSessions: "Volver a sesiones",
|
|
6935
|
+
askAgent: "Preguntar al agente sobre esta sesión",
|
|
6936
|
+
replayPlayer: "Reproductor de sesión",
|
|
6937
|
+
replayLoading: "Cargando reproducción...",
|
|
6938
|
+
replayUnavailable: "Esta sesión no tiene fragmentos de reproducción",
|
|
6939
|
+
replayUnavailableDescription:
|
|
6940
|
+
"La sesión tiene eventos de analítica, pero no se encontraron eventos de fragmentos rrweb.",
|
|
6941
|
+
replayChunks: "Fragmentos de reproducción",
|
|
6942
|
+
replayChunksDescription:
|
|
6943
|
+
"Fragmentos con acceso controlado usados para reconstruir esta reproducción. Las URL del proveedor permanecen privadas.",
|
|
6944
|
+
timeline: "Línea de tiempo de eventos",
|
|
6945
|
+
timelineDescription:
|
|
6946
|
+
"Mostrando los primeros {{count}} eventos de esta sesión.",
|
|
6947
|
+
started: "Inicio",
|
|
6948
|
+
signedIn: "Con sesión iniciada",
|
|
6949
|
+
anonymous: "Anónimo",
|
|
6950
|
+
replayEvents: "Eventos de reproducción",
|
|
6951
|
+
restart: "Reiniciar",
|
|
6952
|
+
play: "Reproducir",
|
|
6953
|
+
pause: "Pausar",
|
|
6954
|
+
loadFailed: "No se pudo cargar la reproducción: {{message}}",
|
|
6955
|
+
noReplayEvents:
|
|
6956
|
+
"No se encontraron eventos rrweb en los fragmentos de reproducción.",
|
|
6957
|
+
chunkCount: "{{count}} fragmentos de reproducción",
|
|
6958
|
+
url: "URL",
|
|
6959
|
+
path: "Ruta",
|
|
6960
|
+
eventName: "Evento",
|
|
6961
|
+
time: "Hora",
|
|
6962
|
+
},
|
|
6963
|
+
},
|
|
6964
|
+
"fr-FR": {
|
|
6965
|
+
navigation: { sessions: "Sessions" },
|
|
6966
|
+
routeTitles: {
|
|
6967
|
+
sessions: "Liste des sessions - Analytics",
|
|
6968
|
+
session: "Relecture de session - Analytics",
|
|
6969
|
+
},
|
|
6970
|
+
sessions: {
|
|
6971
|
+
title: "Sessions",
|
|
6972
|
+
description:
|
|
6973
|
+
"Consultez les sessions de navigateur first-party et les enregistrements de relecture capturés par Agent Native Analytics.",
|
|
6974
|
+
filters: "Filtres",
|
|
6975
|
+
filtersDescription:
|
|
6976
|
+
"Les filtres sont stockés dans l'URL afin que l'agent et les liens partagés voient la même liste de sessions.",
|
|
6977
|
+
refresh: "Actualiser",
|
|
6978
|
+
searchPlaceholder: "Rechercher session, visiteur, URL, chemin...",
|
|
6979
|
+
appPlaceholder: "Application ou modèle",
|
|
6980
|
+
range: "Période",
|
|
6981
|
+
replay: "Relecture",
|
|
6982
|
+
replayAll: "Toutes les sessions",
|
|
6983
|
+
replayWith: "Avec relecture",
|
|
6984
|
+
replayWithout: "Sans relecture",
|
|
6985
|
+
last24h: "Dernières 24 h",
|
|
6986
|
+
last7d: "7 derniers jours",
|
|
6987
|
+
last30d: "30 derniers jours",
|
|
6988
|
+
last90d: "90 derniers jours",
|
|
6989
|
+
allTime: "Toute la période",
|
|
6990
|
+
showing: "{{count}} sessions",
|
|
6991
|
+
truncated: "Seuls les événements récents sont affichés",
|
|
6992
|
+
session: "Session",
|
|
6993
|
+
visitor: "Visiteur",
|
|
6994
|
+
app: "Application",
|
|
6995
|
+
unknownApp: "Application inconnue",
|
|
6996
|
+
lastSeen: "Dernière activité",
|
|
6997
|
+
duration: "Durée",
|
|
6998
|
+
events: "Événements",
|
|
6999
|
+
chunks: "Fragments",
|
|
7000
|
+
pages: "Pages",
|
|
7001
|
+
replayReady: "Relecture",
|
|
7002
|
+
watchReplay: "Voir la relecture",
|
|
7003
|
+
metadataOnly: "Événements seuls",
|
|
7004
|
+
noSessions: "Aucune session trouvée",
|
|
7005
|
+
noSessionsDescription:
|
|
7006
|
+
"Créez une clé publique Analytics, configurez le suivi avec la relecture de session activée, puis visitez l'application dans un navigateur.",
|
|
7007
|
+
emptyStepKey: "Créer une clé",
|
|
7008
|
+
emptyStepEnv: "Configurer le SDK",
|
|
7009
|
+
emptyStepVisit: "Visiter l'application",
|
|
7010
|
+
installSnippetTitle: "Ajouter la relecture de session",
|
|
7011
|
+
backToSessions: "Retour aux sessions",
|
|
7012
|
+
askAgent: "Demander à l'agent au sujet de cette session",
|
|
7013
|
+
replayPlayer: "Lecteur de relecture",
|
|
7014
|
+
replayLoading: "Chargement de la relecture...",
|
|
7015
|
+
replayUnavailable:
|
|
7016
|
+
"Aucun fragment de relecture n'est disponible pour cette session",
|
|
7017
|
+
replayUnavailableDescription:
|
|
7018
|
+
"La session contient des événements d'analyse, mais aucun fragment rrweb n'a été trouvé.",
|
|
7019
|
+
replayChunks: "Fragments de relecture",
|
|
7020
|
+
replayChunksDescription:
|
|
7021
|
+
"Fragments à accès contrôlé utilisés pour reconstruire cette relecture. Les URL du fournisseur restent privées.",
|
|
7022
|
+
timeline: "Chronologie des événements",
|
|
7023
|
+
timelineDescription:
|
|
7024
|
+
"Affichage des {{count}} premiers événements de cette session.",
|
|
7025
|
+
started: "Début",
|
|
7026
|
+
signedIn: "Connecté",
|
|
7027
|
+
anonymous: "Anonyme",
|
|
7028
|
+
replayEvents: "Événements de relecture",
|
|
7029
|
+
restart: "Redémarrer",
|
|
7030
|
+
play: "Lire",
|
|
7031
|
+
pause: "Pause",
|
|
7032
|
+
loadFailed: "Impossible de charger la relecture : {{message}}",
|
|
7033
|
+
noReplayEvents:
|
|
7034
|
+
"Aucun événement rrweb n'a été trouvé dans les fragments de relecture.",
|
|
7035
|
+
chunkCount: "{{count}} fragments de relecture",
|
|
7036
|
+
url: "URL",
|
|
7037
|
+
path: "Chemin",
|
|
7038
|
+
eventName: "Événement",
|
|
7039
|
+
time: "Heure",
|
|
7040
|
+
},
|
|
7041
|
+
},
|
|
7042
|
+
"de-DE": {
|
|
7043
|
+
navigation: { sessions: "Sitzungen" },
|
|
7044
|
+
routeTitles: {
|
|
7045
|
+
sessions: "Sitzungen - Analytics",
|
|
7046
|
+
session: "Sitzungswiedergabe - Analytics",
|
|
7047
|
+
},
|
|
7048
|
+
sessions: {
|
|
7049
|
+
title: "Sitzungen",
|
|
7050
|
+
description:
|
|
7051
|
+
"Prüfe First-Party-Browsersitzungen und Wiedergabeaufzeichnungen aus Agent Native Analytics.",
|
|
7052
|
+
filters: "Filter",
|
|
7053
|
+
filtersDescription:
|
|
7054
|
+
"Filter werden in der URL gespeichert, damit Agent und geteilte Links dieselbe Sitzungsliste sehen.",
|
|
7055
|
+
refresh: "Aktualisieren",
|
|
7056
|
+
searchPlaceholder: "Sitzung, Besucher, URL oder Pfad suchen...",
|
|
7057
|
+
appPlaceholder: "App oder Vorlage",
|
|
7058
|
+
range: "Zeitraum",
|
|
7059
|
+
replay: "Wiedergabe",
|
|
7060
|
+
replayAll: "Alle Sitzungen",
|
|
7061
|
+
replayWith: "Mit Wiedergabe",
|
|
7062
|
+
replayWithout: "Ohne Wiedergabe",
|
|
7063
|
+
last24h: "Letzte 24 Std.",
|
|
7064
|
+
last7d: "Letzte 7 Tage",
|
|
7065
|
+
last30d: "Letzte 30 Tage",
|
|
7066
|
+
last90d: "Letzte 90 Tage",
|
|
7067
|
+
allTime: "Gesamter Zeitraum",
|
|
7068
|
+
showing: "{{count}} Sitzungen",
|
|
7069
|
+
truncated: "Nur aktuelle Ereignisse werden angezeigt",
|
|
7070
|
+
session: "Sitzung",
|
|
7071
|
+
visitor: "Besucher",
|
|
7072
|
+
app: "App",
|
|
7073
|
+
unknownApp: "Unbekannte App",
|
|
7074
|
+
lastSeen: "Zuletzt gesehen",
|
|
7075
|
+
duration: "Dauer",
|
|
7076
|
+
events: "Ereignisse",
|
|
7077
|
+
chunks: "Chunks",
|
|
7078
|
+
pages: "Seiten",
|
|
7079
|
+
replayReady: "Wiedergabe",
|
|
7080
|
+
watchReplay: "Wiedergabe ansehen",
|
|
7081
|
+
metadataOnly: "Nur Ereignisse",
|
|
7082
|
+
noSessions: "Keine Sitzungen gefunden",
|
|
7083
|
+
noSessionsDescription:
|
|
7084
|
+
"Erstelle einen öffentlichen Analytics-Schlüssel, konfiguriere Tracking mit aktivierter Sitzungswiedergabe und besuche die App im Browser.",
|
|
7085
|
+
emptyStepKey: "Schlüssel erstellen",
|
|
7086
|
+
emptyStepEnv: "SDK konfigurieren",
|
|
7087
|
+
emptyStepVisit: "App besuchen",
|
|
7088
|
+
installSnippetTitle: "Sitzungswiedergabe hinzufügen",
|
|
7089
|
+
backToSessions: "Zurück zu Sitzungen",
|
|
7090
|
+
askAgent: "Agent zu dieser Sitzung fragen",
|
|
7091
|
+
replayPlayer: "Wiedergabe-Player",
|
|
7092
|
+
replayLoading: "Wiedergabe wird geladen...",
|
|
7093
|
+
replayUnavailable: "Keine Wiedergabe-Chunks für diese Sitzung",
|
|
7094
|
+
replayUnavailableDescription:
|
|
7095
|
+
"Die Sitzung enthält Analytics-Ereignisse, aber keine rrweb-Chunk-Ereignisse.",
|
|
7096
|
+
replayChunks: "Wiedergabe-Chunks",
|
|
7097
|
+
replayChunksDescription:
|
|
7098
|
+
"Zugriffsgeschützte Chunks zum Rekonstruieren dieser Wiedergabe. Anbieter-URLs bleiben privat.",
|
|
7099
|
+
timeline: "Ereignis-Timeline",
|
|
7100
|
+
timelineDescription:
|
|
7101
|
+
"Die ersten {{count}} Ereignisse dieser Sitzung werden angezeigt.",
|
|
7102
|
+
started: "Gestartet",
|
|
7103
|
+
signedIn: "Angemeldet",
|
|
7104
|
+
anonymous: "Anonym",
|
|
7105
|
+
replayEvents: "Wiedergabeereignisse",
|
|
7106
|
+
restart: "Neu starten",
|
|
7107
|
+
play: "Abspielen",
|
|
7108
|
+
pause: "Pausieren",
|
|
7109
|
+
loadFailed: "Sitzungswiedergabe konnte nicht geladen werden: {{message}}",
|
|
7110
|
+
noReplayEvents:
|
|
7111
|
+
"In den Wiedergabe-Chunks wurden keine rrweb-Ereignisse gefunden.",
|
|
7112
|
+
chunkCount: "{{count}} Wiedergabe-Chunks",
|
|
7113
|
+
url: "URL",
|
|
7114
|
+
path: "Pfad",
|
|
7115
|
+
eventName: "Ereignis",
|
|
7116
|
+
time: "Zeit",
|
|
7117
|
+
},
|
|
7118
|
+
},
|
|
7119
|
+
"ja-JP": {
|
|
7120
|
+
navigation: { sessions: "セッション" },
|
|
7121
|
+
routeTitles: {
|
|
7122
|
+
sessions: "セッション - Analytics",
|
|
7123
|
+
session: "セッションリプレイ - Analytics",
|
|
7124
|
+
},
|
|
7125
|
+
sessions: {
|
|
7126
|
+
title: "セッション",
|
|
7127
|
+
description:
|
|
7128
|
+
"Agent Native Analytics が取得したファーストパーティのブラウザーセッションとリプレイ記録を確認します。",
|
|
7129
|
+
filters: "フィルター",
|
|
7130
|
+
filtersDescription:
|
|
7131
|
+
"フィルターは URL に保存されるため、エージェントと共有リンクで同じセッション一覧を表示できます。",
|
|
7132
|
+
refresh: "更新",
|
|
7133
|
+
searchPlaceholder: "セッション、訪問者、URL、パスを検索...",
|
|
7134
|
+
appPlaceholder: "アプリまたはテンプレート",
|
|
7135
|
+
range: "期間",
|
|
7136
|
+
replay: "リプレイ",
|
|
7137
|
+
replayAll: "すべてのセッション",
|
|
7138
|
+
replayWith: "リプレイあり",
|
|
7139
|
+
replayWithout: "リプレイなし",
|
|
7140
|
+
last24h: "過去 24 時間",
|
|
7141
|
+
last7d: "過去 7 日間",
|
|
7142
|
+
last30d: "過去 30 日間",
|
|
7143
|
+
last90d: "過去 90 日間",
|
|
7144
|
+
allTime: "全期間",
|
|
7145
|
+
showing: "{{count}} 件のセッション",
|
|
7146
|
+
truncated: "最近のイベントのみ表示",
|
|
7147
|
+
session: "セッション",
|
|
7148
|
+
visitor: "訪問者",
|
|
7149
|
+
app: "アプリ",
|
|
7150
|
+
unknownApp: "不明なアプリ",
|
|
7151
|
+
lastSeen: "最終表示",
|
|
7152
|
+
duration: "期間",
|
|
7153
|
+
events: "イベント",
|
|
7154
|
+
chunks: "チャンク",
|
|
7155
|
+
pages: "ページ",
|
|
7156
|
+
replayReady: "リプレイ",
|
|
7157
|
+
watchReplay: "リプレイを見る",
|
|
7158
|
+
metadataOnly: "イベントのみ",
|
|
7159
|
+
noSessions: "セッションが見つかりません",
|
|
7160
|
+
noSessionsDescription:
|
|
7161
|
+
"Analytics の公開キーを作成し、セッションリプレイを有効にしたトラッキングを設定してから、ブラウザーでアプリを開いてください。",
|
|
7162
|
+
emptyStepKey: "キーを作成",
|
|
7163
|
+
emptyStepEnv: "SDK を設定",
|
|
7164
|
+
emptyStepVisit: "アプリを開く",
|
|
7165
|
+
installSnippetTitle: "セッションリプレイを追加",
|
|
7166
|
+
backToSessions: "セッションに戻る",
|
|
7167
|
+
askAgent: "このセッションについてエージェントに質問",
|
|
7168
|
+
replayPlayer: "リプレイプレイヤー",
|
|
7169
|
+
replayLoading: "リプレイを読み込み中...",
|
|
7170
|
+
replayUnavailable: "このセッションにはリプレイチャンクがありません",
|
|
7171
|
+
replayUnavailableDescription:
|
|
7172
|
+
"このセッションには分析イベントがありますが、rrweb チャンクイベントは見つかりませんでした。",
|
|
7173
|
+
replayChunks: "リプレイチャンク",
|
|
7174
|
+
replayChunksDescription:
|
|
7175
|
+
"このリプレイを再構築するためのスコープ付きチャンクです。プロバイダー URL は非公開のままです。",
|
|
7176
|
+
timeline: "イベントタイムライン",
|
|
7177
|
+
timelineDescription:
|
|
7178
|
+
"このセッションの最初の {{count}} 件のイベントを表示しています。",
|
|
7179
|
+
started: "開始",
|
|
7180
|
+
signedIn: "サインイン済み",
|
|
7181
|
+
anonymous: "匿名",
|
|
7182
|
+
replayEvents: "リプレイイベント",
|
|
7183
|
+
restart: "再開",
|
|
7184
|
+
play: "再生",
|
|
7185
|
+
pause: "一時停止",
|
|
7186
|
+
loadFailed: "セッションリプレイを読み込めませんでした: {{message}}",
|
|
7187
|
+
noReplayEvents:
|
|
7188
|
+
"リプレイチャンクに rrweb イベントが見つかりませんでした。",
|
|
7189
|
+
chunkCount: "{{count}} 件のリプレイチャンク",
|
|
7190
|
+
url: "URL",
|
|
7191
|
+
path: "パス",
|
|
7192
|
+
eventName: "イベント",
|
|
7193
|
+
time: "時刻",
|
|
7194
|
+
},
|
|
7195
|
+
},
|
|
7196
|
+
"ko-KR": {
|
|
7197
|
+
navigation: { sessions: "세션" },
|
|
7198
|
+
routeTitles: {
|
|
7199
|
+
sessions: "세션 - Analytics",
|
|
7200
|
+
session: "세션 리플레이 - Analytics",
|
|
7201
|
+
},
|
|
7202
|
+
sessions: {
|
|
7203
|
+
title: "세션",
|
|
7204
|
+
description:
|
|
7205
|
+
"Agent Native Analytics가 캡처한 퍼스트파티 브라우저 세션과 리플레이 기록을 검토합니다.",
|
|
7206
|
+
filters: "필터",
|
|
7207
|
+
filtersDescription:
|
|
7208
|
+
"필터는 URL에 저장되므로 에이전트와 공유 링크가 같은 세션 목록을 봅니다.",
|
|
7209
|
+
refresh: "새로 고침",
|
|
7210
|
+
searchPlaceholder: "세션, 방문자, URL, 경로 검색...",
|
|
7211
|
+
appPlaceholder: "앱 또는 템플릿",
|
|
7212
|
+
range: "기간",
|
|
7213
|
+
replay: "리플레이",
|
|
7214
|
+
replayAll: "모든 세션",
|
|
7215
|
+
replayWith: "리플레이 있음",
|
|
7216
|
+
replayWithout: "리플레이 없음",
|
|
7217
|
+
last24h: "최근 24시간",
|
|
7218
|
+
last7d: "최근 7일",
|
|
7219
|
+
last30d: "최근 30일",
|
|
7220
|
+
last90d: "최근 90일",
|
|
7221
|
+
allTime: "전체 기간",
|
|
7222
|
+
showing: "{{count}}개 세션",
|
|
7223
|
+
truncated: "최근 이벤트만 표시",
|
|
7224
|
+
session: "세션",
|
|
7225
|
+
visitor: "방문자",
|
|
7226
|
+
app: "앱",
|
|
7227
|
+
unknownApp: "알 수 없는 앱",
|
|
7228
|
+
lastSeen: "마지막 활동",
|
|
7229
|
+
duration: "지속 시간",
|
|
7230
|
+
events: "이벤트",
|
|
7231
|
+
chunks: "청크",
|
|
7232
|
+
pages: "페이지",
|
|
7233
|
+
replayReady: "리플레이",
|
|
7234
|
+
watchReplay: "리플레이 보기",
|
|
7235
|
+
metadataOnly: "이벤트만",
|
|
7236
|
+
noSessions: "세션을 찾을 수 없음",
|
|
7237
|
+
noSessionsDescription:
|
|
7238
|
+
"Analytics 공개 키를 만들고 세션 리플레이가 활성화된 추적을 구성한 다음 브라우저에서 앱을 방문하세요.",
|
|
7239
|
+
emptyStepKey: "키 만들기",
|
|
7240
|
+
emptyStepEnv: "SDK 구성",
|
|
7241
|
+
emptyStepVisit: "앱 방문",
|
|
7242
|
+
installSnippetTitle: "세션 리플레이 추가",
|
|
7243
|
+
backToSessions: "세션으로 돌아가기",
|
|
7244
|
+
askAgent: "이 세션에 대해 에이전트에게 질문",
|
|
7245
|
+
replayPlayer: "리플레이 플레이어",
|
|
7246
|
+
replayLoading: "리플레이 로드 중...",
|
|
7247
|
+
replayUnavailable: "이 세션에는 리플레이 청크가 없습니다",
|
|
7248
|
+
replayUnavailableDescription:
|
|
7249
|
+
"세션에는 분석 이벤트가 있지만 rrweb 청크 이벤트를 찾지 못했습니다.",
|
|
7250
|
+
replayChunks: "리플레이 청크",
|
|
7251
|
+
replayChunksDescription:
|
|
7252
|
+
"이 리플레이를 재구성하는 데 사용되는 범위 제한 청크입니다. 제공자 URL은 비공개로 유지됩니다.",
|
|
7253
|
+
timeline: "이벤트 타임라인",
|
|
7254
|
+
timelineDescription: "이 세션의 처음 {{count}}개 이벤트를 표시합니다.",
|
|
7255
|
+
started: "시작",
|
|
7256
|
+
signedIn: "로그인됨",
|
|
7257
|
+
anonymous: "익명",
|
|
7258
|
+
replayEvents: "리플레이 이벤트",
|
|
7259
|
+
restart: "다시 시작",
|
|
7260
|
+
play: "재생",
|
|
7261
|
+
pause: "일시 중지",
|
|
7262
|
+
loadFailed: "세션 리플레이를 로드할 수 없습니다: {{message}}",
|
|
7263
|
+
noReplayEvents: "리플레이 청크에서 rrweb 이벤트를 찾지 못했습니다.",
|
|
7264
|
+
chunkCount: "{{count}}개 리플레이 청크",
|
|
7265
|
+
url: "URL",
|
|
7266
|
+
path: "경로",
|
|
7267
|
+
eventName: "이벤트",
|
|
7268
|
+
time: "시간",
|
|
7269
|
+
},
|
|
7270
|
+
},
|
|
7271
|
+
"pt-BR": {
|
|
7272
|
+
navigation: { sessions: "Sessões" },
|
|
7273
|
+
routeTitles: {
|
|
7274
|
+
sessions: "Sessões - Analytics",
|
|
7275
|
+
session: "Replay de sessão - Analytics",
|
|
7276
|
+
},
|
|
7277
|
+
sessions: {
|
|
7278
|
+
title: "Sessões",
|
|
7279
|
+
description:
|
|
7280
|
+
"Revise sessões de navegador first-party e gravações de replay capturadas pelo Agent Native Analytics.",
|
|
7281
|
+
filters: "Filtros",
|
|
7282
|
+
filtersDescription:
|
|
7283
|
+
"Os filtros ficam salvos na URL para que o agente e links compartilhados vejam a mesma lista de sessões.",
|
|
7284
|
+
refresh: "Atualizar",
|
|
7285
|
+
searchPlaceholder: "Buscar sessão, visitante, URL, caminho...",
|
|
7286
|
+
appPlaceholder: "App ou template",
|
|
7287
|
+
range: "Período",
|
|
7288
|
+
replay: "Replay",
|
|
7289
|
+
replayAll: "Todas as sessões",
|
|
7290
|
+
replayWith: "Com replay",
|
|
7291
|
+
replayWithout: "Sem replay",
|
|
7292
|
+
last24h: "Últimas 24 h",
|
|
7293
|
+
last7d: "Últimos 7 dias",
|
|
7294
|
+
last30d: "Últimos 30 dias",
|
|
7295
|
+
last90d: "Últimos 90 dias",
|
|
7296
|
+
allTime: "Todo o período",
|
|
7297
|
+
showing: "{{count}} sessões",
|
|
7298
|
+
truncated: "Mostrando apenas eventos recentes",
|
|
7299
|
+
session: "Sessão",
|
|
7300
|
+
visitor: "Visitante",
|
|
7301
|
+
app: "App",
|
|
7302
|
+
unknownApp: "App desconhecido",
|
|
7303
|
+
lastSeen: "Visto por último",
|
|
7304
|
+
duration: "Duração",
|
|
7305
|
+
events: "Eventos",
|
|
7306
|
+
chunks: "Blocos",
|
|
7307
|
+
pages: "Páginas",
|
|
7308
|
+
replayReady: "Replay",
|
|
7309
|
+
watchReplay: "Ver replay",
|
|
7310
|
+
metadataOnly: "Somente eventos",
|
|
7311
|
+
noSessions: "Nenhuma sessão encontrada",
|
|
7312
|
+
noSessionsDescription:
|
|
7313
|
+
"Crie uma chave pública do Analytics, configure o tracking com replay de sessão ativado e visite o app em um navegador.",
|
|
7314
|
+
emptyStepKey: "Criar chave",
|
|
7315
|
+
emptyStepEnv: "Configurar SDK",
|
|
7316
|
+
emptyStepVisit: "Visitar app",
|
|
7317
|
+
installSnippetTitle: "Adicionar replay de sessão",
|
|
7318
|
+
backToSessions: "Voltar para sessões",
|
|
7319
|
+
askAgent: "Perguntar ao agente sobre esta sessão",
|
|
7320
|
+
replayPlayer: "Player de replay",
|
|
7321
|
+
replayLoading: "Carregando replay...",
|
|
7322
|
+
replayUnavailable: "Nenhum bloco de replay para esta sessão",
|
|
7323
|
+
replayUnavailableDescription:
|
|
7324
|
+
"A sessão tem eventos de analytics, mas nenhum evento de bloco rrweb foi encontrado.",
|
|
7325
|
+
replayChunks: "Blocos de replay",
|
|
7326
|
+
replayChunksDescription:
|
|
7327
|
+
"Blocos com escopo usados para reconstruir este replay. As URLs do provedor permanecem privadas.",
|
|
7328
|
+
timeline: "Linha do tempo de eventos",
|
|
7329
|
+
timelineDescription:
|
|
7330
|
+
"Mostrando os primeiros {{count}} eventos desta sessão.",
|
|
7331
|
+
started: "Início",
|
|
7332
|
+
signedIn: "Logado",
|
|
7333
|
+
anonymous: "Anônimo",
|
|
7334
|
+
replayEvents: "Eventos de replay",
|
|
7335
|
+
restart: "Reiniciar",
|
|
7336
|
+
play: "Reproduzir",
|
|
7337
|
+
pause: "Pausar",
|
|
7338
|
+
loadFailed: "Não foi possível carregar o replay: {{message}}",
|
|
7339
|
+
noReplayEvents:
|
|
7340
|
+
"Nenhum evento rrweb foi encontrado nos blocos de replay.",
|
|
7341
|
+
chunkCount: "{{count}} blocos de replay",
|
|
7342
|
+
url: "URL",
|
|
7343
|
+
path: "Caminho",
|
|
7344
|
+
eventName: "Evento",
|
|
7345
|
+
time: "Hora",
|
|
7346
|
+
},
|
|
7347
|
+
},
|
|
7348
|
+
"hi-IN": {
|
|
7349
|
+
navigation: { sessions: "सत्र" },
|
|
7350
|
+
routeTitles: {
|
|
7351
|
+
sessions: "सत्र - Analytics",
|
|
7352
|
+
session: "सत्र रीप्ले - Analytics",
|
|
7353
|
+
},
|
|
7354
|
+
sessions: {
|
|
7355
|
+
title: "सत्र",
|
|
7356
|
+
description:
|
|
7357
|
+
"Agent Native Analytics द्वारा कैप्चर किए गए प्रथम-पक्ष ब्राउज़र सत्र और रीप्ले रिकॉर्डिंग देखें।",
|
|
7358
|
+
filters: "फ़िल्टर",
|
|
7359
|
+
filtersDescription:
|
|
7360
|
+
"फ़िल्टर URL में सहेजे जाते हैं ताकि एजेंट और साझा लिंक वही सत्र सूची देखें।",
|
|
7361
|
+
refresh: "रीफ़्रेश",
|
|
7362
|
+
searchPlaceholder: "सत्र, विज़िटर, URL, पथ खोजें...",
|
|
7363
|
+
appPlaceholder: "ऐप या टेम्पलेट",
|
|
7364
|
+
range: "अवधि",
|
|
7365
|
+
replay: "रीप्ले",
|
|
7366
|
+
replayAll: "सभी सत्र",
|
|
7367
|
+
replayWith: "रीप्ले सहित",
|
|
7368
|
+
replayWithout: "रीप्ले बिना",
|
|
7369
|
+
last24h: "पिछले 24 घंटे",
|
|
7370
|
+
last7d: "पिछले 7 दिन",
|
|
7371
|
+
last30d: "पिछले 30 दिन",
|
|
7372
|
+
last90d: "पिछले 90 दिन",
|
|
7373
|
+
allTime: "सभी समय",
|
|
7374
|
+
showing: "{{count}} सत्र",
|
|
7375
|
+
truncated: "केवल हाल के इवेंट दिखाए जा रहे हैं",
|
|
7376
|
+
session: "सत्र",
|
|
7377
|
+
visitor: "विज़िटर",
|
|
7378
|
+
app: "ऐप",
|
|
7379
|
+
unknownApp: "अज्ञात ऐप",
|
|
7380
|
+
lastSeen: "अंतिम बार देखा गया",
|
|
7381
|
+
duration: "अवधि",
|
|
7382
|
+
events: "इवेंट",
|
|
7383
|
+
chunks: "चंक",
|
|
7384
|
+
pages: "पेज",
|
|
7385
|
+
replayReady: "रीप्ले",
|
|
7386
|
+
watchReplay: "रीप्ले देखें",
|
|
7387
|
+
metadataOnly: "केवल इवेंट",
|
|
7388
|
+
noSessions: "कोई सत्र नहीं मिला",
|
|
7389
|
+
noSessionsDescription:
|
|
7390
|
+
"Analytics सार्वजनिक कुंजी बनाएँ, सत्र रीप्ले सक्षम करके ट्रैकिंग कॉन्फ़िगर करें, फिर ब्राउज़र में ऐप खोलें।",
|
|
7391
|
+
emptyStepKey: "कुंजी बनाएँ",
|
|
7392
|
+
emptyStepEnv: "SDK कॉन्फ़िगर करें",
|
|
7393
|
+
emptyStepVisit: "ऐप खोलें",
|
|
7394
|
+
installSnippetTitle: "सत्र रीप्ले जोड़ें",
|
|
7395
|
+
backToSessions: "सत्रों पर वापस जाएँ",
|
|
7396
|
+
askAgent: "इस सत्र के बारे में एजेंट से पूछें",
|
|
7397
|
+
replayPlayer: "रीप्ले प्लेयर",
|
|
7398
|
+
replayLoading: "रीप्ले लोड हो रहा है...",
|
|
7399
|
+
replayUnavailable: "इस सत्र के लिए कोई रीप्ले चंक नहीं है",
|
|
7400
|
+
replayUnavailableDescription:
|
|
7401
|
+
"सत्र में analytics इवेंट हैं, लेकिन कोई rrweb चंक इवेंट नहीं मिला।",
|
|
7402
|
+
replayChunks: "रीप्ले चंक",
|
|
7403
|
+
replayChunksDescription:
|
|
7404
|
+
"इस रीप्ले को फिर से बनाने के लिए उपयोग किए गए स्कोप्ड चंक। प्रदाता URL निजी रहते हैं।",
|
|
7405
|
+
timeline: "इवेंट टाइमलाइन",
|
|
7406
|
+
timelineDescription: "इस सत्र के पहले {{count}} इवेंट दिखाए जा रहे हैं।",
|
|
7407
|
+
started: "शुरू हुआ",
|
|
7408
|
+
signedIn: "साइन इन",
|
|
7409
|
+
anonymous: "अनाम",
|
|
7410
|
+
replayEvents: "रीप्ले इवेंट",
|
|
7411
|
+
restart: "फिर शुरू करें",
|
|
7412
|
+
play: "चलाएँ",
|
|
7413
|
+
pause: "रोकें",
|
|
7414
|
+
loadFailed: "सत्र रीप्ले लोड नहीं हो सका: {{message}}",
|
|
7415
|
+
noReplayEvents: "रीप्ले चंक में कोई rrweb इवेंट नहीं मिला।",
|
|
7416
|
+
chunkCount: "{{count}} रीप्ले चंक",
|
|
7417
|
+
url: "URL",
|
|
7418
|
+
path: "पथ",
|
|
7419
|
+
eventName: "इवेंट",
|
|
7420
|
+
time: "समय",
|
|
7421
|
+
},
|
|
7422
|
+
},
|
|
7423
|
+
"ar-SA": {
|
|
7424
|
+
navigation: { sessions: "الجلسات" },
|
|
7425
|
+
routeTitles: {
|
|
7426
|
+
sessions: "الجلسات - Analytics",
|
|
7427
|
+
session: "إعادة تشغيل الجلسة - Analytics",
|
|
7428
|
+
},
|
|
7429
|
+
sessions: {
|
|
7430
|
+
title: "الجلسات",
|
|
7431
|
+
description:
|
|
7432
|
+
"راجع جلسات المتصفح من الطرف الأول وتسجيلات إعادة التشغيل التي يلتقطها Agent Native Analytics.",
|
|
7433
|
+
filters: "عوامل التصفية",
|
|
7434
|
+
filtersDescription:
|
|
7435
|
+
"تُحفظ عوامل التصفية في URL حتى يرى الوكيل والروابط المشتركة قائمة الجلسات نفسها.",
|
|
7436
|
+
refresh: "تحديث",
|
|
7437
|
+
searchPlaceholder: "ابحث عن جلسة أو زائر أو URL أو مسار...",
|
|
7438
|
+
appPlaceholder: "تطبيق أو قالب",
|
|
7439
|
+
range: "النطاق",
|
|
7440
|
+
replay: "إعادة التشغيل",
|
|
7441
|
+
replayAll: "كل الجلسات",
|
|
7442
|
+
replayWith: "مع إعادة التشغيل",
|
|
7443
|
+
replayWithout: "بدون إعادة التشغيل",
|
|
7444
|
+
last24h: "آخر 24 ساعة",
|
|
7445
|
+
last7d: "آخر 7 أيام",
|
|
7446
|
+
last30d: "آخر 30 يومًا",
|
|
7447
|
+
last90d: "آخر 90 يومًا",
|
|
7448
|
+
allTime: "كل الوقت",
|
|
7449
|
+
showing: "{{count}} جلسة",
|
|
7450
|
+
truncated: "يتم عرض الأحداث الحديثة فقط",
|
|
7451
|
+
session: "الجلسة",
|
|
7452
|
+
visitor: "الزائر",
|
|
7453
|
+
app: "التطبيق",
|
|
7454
|
+
unknownApp: "تطبيق غير معروف",
|
|
7455
|
+
lastSeen: "آخر ظهور",
|
|
7456
|
+
duration: "المدة",
|
|
7457
|
+
events: "الأحداث",
|
|
7458
|
+
chunks: "المقاطع",
|
|
7459
|
+
pages: "الصفحات",
|
|
7460
|
+
replayReady: "إعادة التشغيل",
|
|
7461
|
+
watchReplay: "مشاهدة إعادة التشغيل",
|
|
7462
|
+
metadataOnly: "الأحداث فقط",
|
|
7463
|
+
noSessions: "لم يتم العثور على جلسات",
|
|
7464
|
+
noSessionsDescription:
|
|
7465
|
+
"أنشئ مفتاح Analytics عامًا، واضبط التتبع مع تفعيل إعادة تشغيل الجلسة، ثم افتح التطبيق في المتصفح.",
|
|
7466
|
+
emptyStepKey: "إنشاء مفتاح",
|
|
7467
|
+
emptyStepEnv: "تكوين SDK",
|
|
7468
|
+
emptyStepVisit: "زيارة التطبيق",
|
|
7469
|
+
installSnippetTitle: "إضافة إعادة تشغيل الجلسة",
|
|
7470
|
+
backToSessions: "العودة إلى الجلسات",
|
|
7471
|
+
askAgent: "اسأل الوكيل عن هذه الجلسة",
|
|
7472
|
+
replayPlayer: "مشغل إعادة التشغيل",
|
|
7473
|
+
replayLoading: "جارٍ تحميل إعادة التشغيل...",
|
|
7474
|
+
replayUnavailable: "لا توجد مقاطع إعادة تشغيل لهذه الجلسة",
|
|
7475
|
+
replayUnavailableDescription:
|
|
7476
|
+
"تحتوي الجلسة على أحداث analytics، لكن لم يتم العثور على أحداث مقاطع rrweb.",
|
|
7477
|
+
replayChunks: "مقاطع إعادة التشغيل",
|
|
7478
|
+
replayChunksDescription:
|
|
7479
|
+
"مقاطع محددة النطاق تُستخدم لإعادة بناء هذا التسجيل. تبقى عناوين URL الخاصة بالمزوّد خاصة.",
|
|
7480
|
+
timeline: "الخط الزمني للأحداث",
|
|
7481
|
+
timelineDescription: "عرض أول {{count}} أحداث لهذه الجلسة.",
|
|
7482
|
+
started: "بدأت",
|
|
7483
|
+
signedIn: "تم تسجيل الدخول",
|
|
7484
|
+
anonymous: "مجهول",
|
|
7485
|
+
replayEvents: "أحداث إعادة التشغيل",
|
|
7486
|
+
restart: "إعادة البدء",
|
|
7487
|
+
play: "تشغيل",
|
|
7488
|
+
pause: "إيقاف مؤقت",
|
|
7489
|
+
loadFailed: "تعذر تحميل إعادة تشغيل الجلسة: {{message}}",
|
|
7490
|
+
noReplayEvents: "لم يتم العثور على أحداث rrweb في مقاطع إعادة التشغيل.",
|
|
7491
|
+
chunkCount: "{{count}} مقاطع إعادة تشغيل",
|
|
7492
|
+
url: "URL",
|
|
7493
|
+
path: "المسار",
|
|
7494
|
+
eventName: "الحدث",
|
|
7495
|
+
time: "الوقت",
|
|
7496
|
+
},
|
|
7497
|
+
},
|
|
7498
|
+
} satisfies Partial<Record<LocaleCode, AnalyticsPartialMessages>>;
|
|
7499
|
+
|
|
7500
|
+
for (const [locale, overrides] of Object.entries(
|
|
7501
|
+
translatedSessionReplayTranslations,
|
|
7502
|
+
) as Array<[LocaleCode, AnalyticsPartialMessages]>) {
|
|
7503
|
+
const messages = messagesByLocale[locale];
|
|
7504
|
+
if (!messages) continue;
|
|
7505
|
+
|
|
7506
|
+
for (const [section, sectionOverrides] of Object.entries(overrides) as Array<
|
|
7507
|
+
[Section, Partial<Messages[Section]>]
|
|
7508
|
+
>) {
|
|
7509
|
+
Object.assign(messages[section], sectionOverrides);
|
|
7510
|
+
}
|
|
7511
|
+
}
|
|
7512
|
+
|
|
7513
|
+
const translatedDashboardReportTranslations = {
|
|
7514
|
+
"zh-CN": {
|
|
7515
|
+
sqlDashboard: {
|
|
7516
|
+
emailReports: "电子邮件报告",
|
|
7517
|
+
emailReportsDescription: '"{{name}}" 的每日电子邮件快照。',
|
|
7518
|
+
existingReportSubscriptions: "订阅",
|
|
7519
|
+
newSubscription: "新建",
|
|
7520
|
+
noReportSubscriptions: "还没有订阅。",
|
|
7521
|
+
reportName: "名称",
|
|
7522
|
+
reportRecipients: "收件人",
|
|
7523
|
+
reportRecipientsPlaceholder: "analytics@example.com, ops@example.com",
|
|
7524
|
+
reportRecipientsRequired: "请至少添加一个收件人。",
|
|
7525
|
+
reportSendTime: "发送时间",
|
|
7526
|
+
reportTimezone: "时区",
|
|
7527
|
+
reportEnabled: "已启用",
|
|
7528
|
+
reportFilterSnapshot: "此报告使用 {{count}} 个已保存筛选器",
|
|
7529
|
+
reportUseCurrentFilters: "使用当前筛选器",
|
|
7530
|
+
reportLastRun: "上次发送",
|
|
7531
|
+
reportNextRun: "下次发送",
|
|
7532
|
+
reportSendNow: "立即发送",
|
|
7533
|
+
reportSending: "正在发送...",
|
|
7534
|
+
saveSubscription: "保存订阅",
|
|
7535
|
+
updateSubscription: "更新订阅",
|
|
7536
|
+
reportSubscriptionSaved: "电子邮件报告订阅已保存。",
|
|
7537
|
+
reportSubscriptionDeleted: "电子邮件报告订阅已删除。",
|
|
7538
|
+
reportSent: "仪表板报告已发送。",
|
|
7539
|
+
reportSubscriptionSaveFailed: "无法保存订阅:{{message}}",
|
|
7540
|
+
reportSubscriptionDeleteFailed: "无法删除订阅:{{message}}",
|
|
7541
|
+
reportSendFailed: "无法发送报告:{{message}}",
|
|
7542
|
+
never: "从不",
|
|
7543
|
+
},
|
|
7544
|
+
},
|
|
7545
|
+
"es-ES": {
|
|
7546
|
+
sqlDashboard: {
|
|
7547
|
+
emailReports: "Informes por correo",
|
|
7548
|
+
emailReportsDescription: 'Instantánea diaria por correo de "{{name}}".',
|
|
7549
|
+
existingReportSubscriptions: "Suscripciones",
|
|
7550
|
+
newSubscription: "Nueva",
|
|
7551
|
+
noReportSubscriptions: "Aún no hay suscripciones.",
|
|
7552
|
+
reportName: "Nombre",
|
|
7553
|
+
reportRecipients: "Destinatarios",
|
|
7554
|
+
reportRecipientsPlaceholder: "analytics@example.com, ops@example.com",
|
|
7555
|
+
reportRecipientsRequired: "Añade al menos un destinatario.",
|
|
7556
|
+
reportSendTime: "Hora de envío",
|
|
7557
|
+
reportTimezone: "Zona horaria",
|
|
7558
|
+
reportEnabled: "Activado",
|
|
7559
|
+
reportFilterSnapshot:
|
|
7560
|
+
"{{count}} filtros guardados usados por este informe",
|
|
7561
|
+
reportUseCurrentFilters: "Usar filtros actuales",
|
|
7562
|
+
reportLastRun: "Último envío",
|
|
7563
|
+
reportNextRun: "Próximo envío",
|
|
7564
|
+
reportSendNow: "Enviar ahora",
|
|
7565
|
+
reportSending: "Enviando...",
|
|
7566
|
+
saveSubscription: "Guardar suscripción",
|
|
7567
|
+
updateSubscription: "Actualizar suscripción",
|
|
7568
|
+
reportSubscriptionSaved: "Suscripción al informe guardada.",
|
|
7569
|
+
reportSubscriptionDeleted: "Suscripción al informe eliminada.",
|
|
7570
|
+
reportSent: "Informe del panel enviado.",
|
|
7571
|
+
reportSubscriptionSaveFailed:
|
|
7572
|
+
"No se pudo guardar la suscripción: {{message}}",
|
|
7573
|
+
reportSubscriptionDeleteFailed:
|
|
7574
|
+
"No se pudo eliminar la suscripción: {{message}}",
|
|
7575
|
+
reportSendFailed: "No se pudo enviar el informe: {{message}}",
|
|
7576
|
+
never: "Nunca",
|
|
7577
|
+
},
|
|
7578
|
+
},
|
|
7579
|
+
"fr-FR": {
|
|
7580
|
+
sqlDashboard: {
|
|
7581
|
+
emailReports: "Rapports par e-mail",
|
|
7582
|
+
emailReportsDescription:
|
|
7583
|
+
'Instantané quotidien par e-mail pour "{{name}}".',
|
|
7584
|
+
existingReportSubscriptions: "Abonnements",
|
|
7585
|
+
newSubscription: "Nouveau",
|
|
7586
|
+
noReportSubscriptions: "Aucun abonnement pour le moment.",
|
|
7587
|
+
reportName: "Nom",
|
|
7588
|
+
reportRecipients: "Destinataires",
|
|
7589
|
+
reportRecipientsPlaceholder: "analytics@example.com, ops@example.com",
|
|
7590
|
+
reportRecipientsRequired: "Ajoutez au moins un destinataire.",
|
|
7591
|
+
reportSendTime: "Heure d'envoi",
|
|
7592
|
+
reportTimezone: "Fuseau horaire",
|
|
7593
|
+
reportEnabled: "Activé",
|
|
7594
|
+
reportFilterSnapshot:
|
|
7595
|
+
"{{count}} filtres enregistrés utilisés par ce rapport",
|
|
7596
|
+
reportUseCurrentFilters: "Utiliser les filtres actuels",
|
|
7597
|
+
reportLastRun: "Dernier envoi",
|
|
7598
|
+
reportNextRun: "Prochain envoi",
|
|
7599
|
+
reportSendNow: "Envoyer maintenant",
|
|
7600
|
+
reportSending: "Envoi...",
|
|
7601
|
+
saveSubscription: "Enregistrer l'abonnement",
|
|
7602
|
+
updateSubscription: "Mettre à jour l'abonnement",
|
|
7603
|
+
reportSubscriptionSaved: "Abonnement au rapport enregistré.",
|
|
7604
|
+
reportSubscriptionDeleted: "Abonnement au rapport supprimé.",
|
|
7605
|
+
reportSent: "Rapport du tableau de bord envoyé.",
|
|
7606
|
+
reportSubscriptionSaveFailed:
|
|
7607
|
+
"Impossible d'enregistrer l'abonnement : {{message}}",
|
|
7608
|
+
reportSubscriptionDeleteFailed:
|
|
7609
|
+
"Impossible de supprimer l'abonnement : {{message}}",
|
|
7610
|
+
reportSendFailed: "Impossible d'envoyer le rapport : {{message}}",
|
|
7611
|
+
never: "Jamais",
|
|
7612
|
+
},
|
|
7613
|
+
},
|
|
7614
|
+
"de-DE": {
|
|
7615
|
+
sqlDashboard: {
|
|
7616
|
+
emailReports: "E-Mail-Berichte",
|
|
7617
|
+
emailReportsDescription: 'Täglicher E-Mail-Snapshot für "{{name}}".',
|
|
7618
|
+
existingReportSubscriptions: "Abonnements",
|
|
7619
|
+
newSubscription: "Neu",
|
|
7620
|
+
noReportSubscriptions: "Noch keine Abonnements.",
|
|
7621
|
+
reportName: "Name",
|
|
7622
|
+
reportRecipients: "Empfänger",
|
|
7623
|
+
reportRecipientsPlaceholder: "analytics@example.com, ops@example.com",
|
|
7624
|
+
reportRecipientsRequired: "Füge mindestens einen Empfänger hinzu.",
|
|
7625
|
+
reportSendTime: "Sendezeit",
|
|
7626
|
+
reportTimezone: "Zeitzone",
|
|
7627
|
+
reportEnabled: "Aktiviert",
|
|
7628
|
+
reportFilterSnapshot:
|
|
7629
|
+
"{{count}} gespeicherte Filter für diesen Bericht verwendet",
|
|
7630
|
+
reportUseCurrentFilters: "Aktuelle Filter verwenden",
|
|
7631
|
+
reportLastRun: "Zuletzt gesendet",
|
|
7632
|
+
reportNextRun: "Nächster Versand",
|
|
7633
|
+
reportSendNow: "Jetzt senden",
|
|
7634
|
+
reportSending: "Wird gesendet...",
|
|
7635
|
+
saveSubscription: "Abonnement speichern",
|
|
7636
|
+
updateSubscription: "Abonnement aktualisieren",
|
|
7637
|
+
reportSubscriptionSaved: "E-Mail-Bericht-Abonnement gespeichert.",
|
|
7638
|
+
reportSubscriptionDeleted: "E-Mail-Bericht-Abonnement gelöscht.",
|
|
7639
|
+
reportSent: "Dashboard-Bericht gesendet.",
|
|
7640
|
+
reportSubscriptionSaveFailed:
|
|
7641
|
+
"Abonnement konnte nicht gespeichert werden: {{message}}",
|
|
7642
|
+
reportSubscriptionDeleteFailed:
|
|
7643
|
+
"Abonnement konnte nicht gelöscht werden: {{message}}",
|
|
7644
|
+
reportSendFailed: "Bericht konnte nicht gesendet werden: {{message}}",
|
|
7645
|
+
never: "Nie",
|
|
7646
|
+
},
|
|
7647
|
+
},
|
|
7648
|
+
"ja-JP": {
|
|
7649
|
+
sqlDashboard: {
|
|
7650
|
+
emailReports: "メールレポート",
|
|
7651
|
+
emailReportsDescription: '"{{name}}" の毎日のメールスナップショット。',
|
|
7652
|
+
existingReportSubscriptions: "購読",
|
|
7653
|
+
newSubscription: "新規",
|
|
7654
|
+
noReportSubscriptions: "まだ購読はありません。",
|
|
7655
|
+
reportName: "名前",
|
|
7656
|
+
reportRecipients: "宛先",
|
|
7657
|
+
reportRecipientsPlaceholder: "analytics@example.com, ops@example.com",
|
|
7658
|
+
reportRecipientsRequired: "宛先を少なくとも 1 件追加してください。",
|
|
7659
|
+
reportSendTime: "送信時刻",
|
|
7660
|
+
reportTimezone: "タイムゾーン",
|
|
7661
|
+
reportEnabled: "有効",
|
|
7662
|
+
reportFilterSnapshot:
|
|
7663
|
+
"このレポートでは保存済みフィルター {{count}} 件を使用します",
|
|
7664
|
+
reportUseCurrentFilters: "現在のフィルターを使用",
|
|
7665
|
+
reportLastRun: "前回送信",
|
|
7666
|
+
reportNextRun: "次回送信",
|
|
7667
|
+
reportSendNow: "今すぐ送信",
|
|
7668
|
+
reportSending: "送信中...",
|
|
7669
|
+
saveSubscription: "購読を保存",
|
|
7670
|
+
updateSubscription: "購読を更新",
|
|
7671
|
+
reportSubscriptionSaved: "メールレポートの購読を保存しました。",
|
|
7672
|
+
reportSubscriptionDeleted: "メールレポートの購読を削除しました。",
|
|
7673
|
+
reportSent: "ダッシュボードレポートを送信しました。",
|
|
7674
|
+
reportSubscriptionSaveFailed: "購読を保存できませんでした: {{message}}",
|
|
7675
|
+
reportSubscriptionDeleteFailed: "購読を削除できませんでした: {{message}}",
|
|
7676
|
+
reportSendFailed: "レポートを送信できませんでした: {{message}}",
|
|
7677
|
+
never: "なし",
|
|
7678
|
+
},
|
|
7679
|
+
},
|
|
7680
|
+
"ko-KR": {
|
|
7681
|
+
sqlDashboard: {
|
|
7682
|
+
emailReports: "이메일 보고서",
|
|
7683
|
+
emailReportsDescription: '"{{name}}"의 일일 이메일 스냅샷입니다.',
|
|
7684
|
+
existingReportSubscriptions: "구독",
|
|
7685
|
+
newSubscription: "새로 만들기",
|
|
7686
|
+
noReportSubscriptions: "아직 구독이 없습니다.",
|
|
7687
|
+
reportName: "이름",
|
|
7688
|
+
reportRecipients: "수신자",
|
|
7689
|
+
reportRecipientsPlaceholder: "analytics@example.com, ops@example.com",
|
|
7690
|
+
reportRecipientsRequired: "수신자를 하나 이상 추가하세요.",
|
|
7691
|
+
reportSendTime: "전송 시간",
|
|
7692
|
+
reportTimezone: "시간대",
|
|
7693
|
+
reportEnabled: "사용",
|
|
7694
|
+
reportFilterSnapshot:
|
|
7695
|
+
"이 보고서에서 저장된 필터 {{count}}개를 사용합니다.",
|
|
7696
|
+
reportUseCurrentFilters: "현재 필터 사용",
|
|
7697
|
+
reportLastRun: "마지막 전송",
|
|
7698
|
+
reportNextRun: "다음 전송",
|
|
7699
|
+
reportSendNow: "지금 전송",
|
|
7700
|
+
reportSending: "전송 중...",
|
|
7701
|
+
saveSubscription: "구독 저장",
|
|
7702
|
+
updateSubscription: "구독 업데이트",
|
|
7703
|
+
reportSubscriptionSaved: "이메일 보고서 구독이 저장되었습니다.",
|
|
7704
|
+
reportSubscriptionDeleted: "이메일 보고서 구독이 삭제되었습니다.",
|
|
7705
|
+
reportSent: "대시보드 보고서가 전송되었습니다.",
|
|
7706
|
+
reportSubscriptionSaveFailed: "구독을 저장할 수 없음: {{message}}",
|
|
7707
|
+
reportSubscriptionDeleteFailed: "구독을 삭제할 수 없음: {{message}}",
|
|
7708
|
+
reportSendFailed: "보고서를 전송할 수 없음: {{message}}",
|
|
7709
|
+
never: "없음",
|
|
7710
|
+
},
|
|
7711
|
+
},
|
|
7712
|
+
"pt-BR": {
|
|
7713
|
+
sqlDashboard: {
|
|
7714
|
+
emailReports: "Relatórios por e-mail",
|
|
7715
|
+
emailReportsDescription: 'Snapshot diário por e-mail para "{{name}}".',
|
|
7716
|
+
existingReportSubscriptions: "Assinaturas",
|
|
7717
|
+
newSubscription: "Nova",
|
|
7718
|
+
noReportSubscriptions: "Ainda não há assinaturas.",
|
|
7719
|
+
reportName: "Nome",
|
|
7720
|
+
reportRecipients: "Destinatários",
|
|
7721
|
+
reportRecipientsPlaceholder: "analytics@example.com, ops@example.com",
|
|
7722
|
+
reportRecipientsRequired: "Adicione pelo menos um destinatário.",
|
|
7723
|
+
reportSendTime: "Hora de envio",
|
|
7724
|
+
reportTimezone: "Fuso horário",
|
|
7725
|
+
reportEnabled: "Ativado",
|
|
7726
|
+
reportFilterSnapshot:
|
|
7727
|
+
"{{count}} filtros salvos usados por este relatório",
|
|
7728
|
+
reportUseCurrentFilters: "Usar filtros atuais",
|
|
7729
|
+
reportLastRun: "Último envio",
|
|
7730
|
+
reportNextRun: "Próximo envio",
|
|
7731
|
+
reportSendNow: "Enviar agora",
|
|
7732
|
+
reportSending: "Enviando...",
|
|
7733
|
+
saveSubscription: "Salvar assinatura",
|
|
7734
|
+
updateSubscription: "Atualizar assinatura",
|
|
7735
|
+
reportSubscriptionSaved: "Assinatura do relatório por e-mail salva.",
|
|
7736
|
+
reportSubscriptionDeleted: "Assinatura do relatório por e-mail excluída.",
|
|
7737
|
+
reportSent: "Relatório do painel enviado.",
|
|
7738
|
+
reportSubscriptionSaveFailed:
|
|
7739
|
+
"Não foi possível salvar a assinatura: {{message}}",
|
|
7740
|
+
reportSubscriptionDeleteFailed:
|
|
7741
|
+
"Não foi possível excluir a assinatura: {{message}}",
|
|
7742
|
+
reportSendFailed: "Não foi possível enviar o relatório: {{message}}",
|
|
7743
|
+
never: "Nunca",
|
|
7744
|
+
},
|
|
7745
|
+
},
|
|
7746
|
+
"hi-IN": {
|
|
7747
|
+
sqlDashboard: {
|
|
7748
|
+
emailReports: "ईमेल रिपोर्ट",
|
|
7749
|
+
emailReportsDescription: '"{{name}}" के लिए दैनिक ईमेल स्नैपशॉट।',
|
|
7750
|
+
existingReportSubscriptions: "सब्सक्रिप्शन",
|
|
7751
|
+
newSubscription: "नया",
|
|
7752
|
+
noReportSubscriptions: "अभी कोई सब्सक्रिप्शन नहीं है।",
|
|
7753
|
+
reportName: "नाम",
|
|
7754
|
+
reportRecipients: "प्राप्तकर्ता",
|
|
7755
|
+
reportRecipientsPlaceholder: "analytics@example.com, ops@example.com",
|
|
7756
|
+
reportRecipientsRequired: "कम से कम एक प्राप्तकर्ता जोड़ें।",
|
|
7757
|
+
reportSendTime: "भेजने का समय",
|
|
7758
|
+
reportTimezone: "समय क्षेत्र",
|
|
7759
|
+
reportEnabled: "सक्षम",
|
|
7760
|
+
reportFilterSnapshot: "इस रिपोर्ट में {{count}} सहेजे गए फ़िल्टर इस्तेमाल होते हैं",
|
|
7761
|
+
reportUseCurrentFilters: "मौजूदा फ़िल्टर इस्तेमाल करें",
|
|
7762
|
+
reportLastRun: "आखिरी बार भेजा गया",
|
|
7763
|
+
reportNextRun: "अगला भेजना",
|
|
7764
|
+
reportSendNow: "अभी भेजें",
|
|
7765
|
+
reportSending: "भेजा जा रहा है...",
|
|
7766
|
+
saveSubscription: "सब्सक्रिप्शन सहेजें",
|
|
7767
|
+
updateSubscription: "सब्सक्रिप्शन अपडेट करें",
|
|
7768
|
+
reportSubscriptionSaved: "ईमेल रिपोर्ट सब्सक्रिप्शन सहेजा गया।",
|
|
7769
|
+
reportSubscriptionDeleted: "ईमेल रिपोर्ट सब्सक्रिप्शन हटाया गया।",
|
|
7770
|
+
reportSent: "डैशबोर्ड रिपोर्ट भेजी गई।",
|
|
7771
|
+
reportSubscriptionSaveFailed: "सब्सक्रिप्शन सहेजा नहीं जा सका: {{message}}",
|
|
7772
|
+
reportSubscriptionDeleteFailed: "सब्सक्रिप्शन हटाया नहीं जा सका: {{message}}",
|
|
7773
|
+
reportSendFailed: "रिपोर्ट भेजी नहीं जा सकी: {{message}}",
|
|
7774
|
+
never: "कभी नहीं",
|
|
7775
|
+
},
|
|
7776
|
+
},
|
|
7777
|
+
"ar-SA": {
|
|
7778
|
+
sqlDashboard: {
|
|
7779
|
+
emailReports: "تقارير البريد الإلكتروني",
|
|
7780
|
+
emailReportsDescription: 'لقطة بريد إلكتروني يومية لـ "{{name}}".',
|
|
7781
|
+
existingReportSubscriptions: "الاشتراكات",
|
|
7782
|
+
newSubscription: "جديد",
|
|
7783
|
+
noReportSubscriptions: "لا توجد اشتراكات بعد.",
|
|
7784
|
+
reportName: "الاسم",
|
|
7785
|
+
reportRecipients: "المستلمون",
|
|
7786
|
+
reportRecipientsPlaceholder: "analytics@example.com, ops@example.com",
|
|
7787
|
+
reportRecipientsRequired: "أضف مستلمًا واحدًا على الأقل.",
|
|
7788
|
+
reportSendTime: "وقت الإرسال",
|
|
7789
|
+
reportTimezone: "المنطقة الزمنية",
|
|
7790
|
+
reportEnabled: "مفعل",
|
|
7791
|
+
reportFilterSnapshot: "يستخدم هذا التقرير {{count}} عوامل تصفية محفوظة",
|
|
7792
|
+
reportUseCurrentFilters: "استخدام عوامل التصفية الحالية",
|
|
7793
|
+
reportLastRun: "آخر إرسال",
|
|
7794
|
+
reportNextRun: "الإرسال التالي",
|
|
7795
|
+
reportSendNow: "إرسال الآن",
|
|
7796
|
+
reportSending: "جارٍ الإرسال...",
|
|
7797
|
+
saveSubscription: "حفظ الاشتراك",
|
|
7798
|
+
updateSubscription: "تحديث الاشتراك",
|
|
7799
|
+
reportSubscriptionSaved: "تم حفظ اشتراك تقرير البريد الإلكتروني.",
|
|
7800
|
+
reportSubscriptionDeleted: "تم حذف اشتراك تقرير البريد الإلكتروني.",
|
|
7801
|
+
reportSent: "تم إرسال تقرير لوحة المعلومات.",
|
|
7802
|
+
reportSubscriptionSaveFailed: "تعذر حفظ الاشتراك: {{message}}",
|
|
7803
|
+
reportSubscriptionDeleteFailed: "تعذر حذف الاشتراك: {{message}}",
|
|
7804
|
+
reportSendFailed: "تعذر إرسال التقرير: {{message}}",
|
|
7805
|
+
never: "أبدًا",
|
|
7806
|
+
},
|
|
7807
|
+
},
|
|
7808
|
+
} satisfies Partial<Record<LocaleCode, AnalyticsPartialMessages>>;
|
|
7809
|
+
|
|
7810
|
+
for (const [locale, overrides] of Object.entries(
|
|
7811
|
+
translatedDashboardReportTranslations,
|
|
7812
|
+
) as Array<[LocaleCode, AnalyticsPartialMessages]>) {
|
|
7813
|
+
const messages = messagesByLocale[locale];
|
|
7814
|
+
if (!messages) continue;
|
|
7815
|
+
|
|
7816
|
+
for (const [section, sectionOverrides] of Object.entries(overrides) as Array<
|
|
7817
|
+
[Section, Partial<Messages[Section]>]
|
|
7818
|
+
>) {
|
|
7819
|
+
Object.assign(messages[section], sectionOverrides);
|
|
7820
|
+
}
|
|
7821
|
+
}
|