box-ui-elements 16.0.0-beta.8 → 16.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/explorer.css +1 -1
- package/dist/explorer.js +19 -58
- package/dist/openwith.css +1 -1
- package/dist/openwith.js +10 -10
- package/dist/picker.css +1 -1
- package/dist/picker.js +12 -12
- package/dist/preview.css +1 -1
- package/dist/preview.js +17 -56
- package/dist/sharing.css +1 -1
- package/dist/sharing.js +34 -34
- package/dist/sidebar.css +1 -1
- package/dist/sidebar.js +17 -56
- package/dist/uploader.css +1 -1
- package/dist/uploader.js +12 -12
- package/es/api/APIFactory.js +27 -0
- package/es/api/APIFactory.js.flow +26 -0
- package/es/api/APIFactory.js.map +1 -1
- package/es/api/Annotations.js +180 -27
- package/es/api/Annotations.js.flow +150 -14
- package/es/api/Annotations.js.map +1 -1
- package/es/api/Comments.js +2 -2
- package/es/api/Comments.js.flow +5 -4
- package/es/api/Comments.js.map +1 -1
- package/es/api/Feed.js +578 -69
- package/es/api/Feed.js.flow +677 -17
- package/es/api/Feed.js.map +1 -1
- package/es/api/FileCollaborators.js +29 -0
- package/es/api/FileCollaborators.js.flow +30 -0
- package/es/api/FileCollaborators.js.map +1 -1
- package/es/api/ThreadedComments.js +64 -27
- package/es/api/ThreadedComments.js.flow +54 -29
- package/es/api/ThreadedComments.js.map +1 -1
- package/es/api/fixtures.js +381 -0
- package/es/api/fixtures.js.flow +401 -0
- package/es/api/fixtures.js.map +1 -0
- package/es/api/messages.js +4 -0
- package/es/api/messages.js.flow +5 -0
- package/es/api/messages.js.map +1 -1
- package/es/api/utils.js +33 -0
- package/es/api/utils.js.flow +30 -0
- package/es/api/utils.js.map +1 -0
- package/es/common/types/annotations.js.flow +18 -10
- package/es/common/types/feed.js +1 -1
- package/es/common/types/feed.js.flow +40 -4
- package/es/common/types/feed.js.map +1 -1
- package/es/components/accessible-svg/AccessibleSVG.stories.js +20 -0
- package/es/components/accessible-svg/AccessibleSVG.stories.js.map +1 -0
- package/es/components/badge/Badge.stories.js +1 -13
- package/es/components/badge/Badge.stories.js.map +1 -1
- package/es/components/badge/BetaBadge.stories.js +10 -0
- package/es/components/badge/BetaBadge.stories.js.map +1 -0
- package/es/components/badge/TrialBadge.stories.js +10 -0
- package/es/components/badge/TrialBadge.stories.js.map +1 -0
- package/es/components/badge/UpgradeBadge.stories.js +10 -0
- package/es/components/badge/UpgradeBadge.stories.js.map +1 -0
- package/es/components/breadcrumb/Breadcrumb.js +48 -35
- package/es/components/breadcrumb/Breadcrumb.js.flow +68 -42
- package/es/components/breadcrumb/Breadcrumb.js.map +1 -1
- package/es/components/breadcrumb/EllipsisCrumb.js +5 -3
- package/es/components/breadcrumb/EllipsisCrumb.js.flow +10 -6
- package/es/components/breadcrumb/EllipsisCrumb.js.map +1 -1
- package/es/components/count-badge/CountBadge.stories.js +1 -1
- package/es/components/count-badge/CountBadge.stories.js.map +1 -1
- package/es/components/draggable-list/DraggableList.stories.js +119 -5
- package/es/components/draggable-list/DraggableList.stories.js.map +1 -1
- package/es/components/dropdown-menu/DropdownMenu.js +9 -0
- package/es/components/dropdown-menu/DropdownMenu.js.flow +11 -0
- package/es/components/dropdown-menu/DropdownMenu.js.map +1 -1
- package/es/components/dropdown-menu/DropdownMenu.scss +3 -3
- package/es/components/infinite-scroll/InfiniteScroll.js +4 -2
- package/es/components/infinite-scroll/InfiniteScroll.js.map +1 -1
- package/es/components/modal/Modal.scss +5 -1
- package/es/components/search-form/SearchForm.js +1 -1
- package/es/components/search-form/SearchForm.js.flow +1 -1
- package/es/components/search-form/SearchForm.js.map +1 -1
- package/es/components/table/makeSelectable.js +304 -97
- package/es/components/table/makeSelectable.js.flow +299 -98
- package/es/components/table/makeSelectable.js.map +1 -1
- package/es/components/tooltip/Tooltip.js +3 -2
- package/es/components/tooltip/Tooltip.js.map +1 -1
- package/es/constants.js +11 -0
- package/es/constants.js.flow +11 -0
- package/es/constants.js.map +1 -1
- package/es/elements/common/annotator-context/index.js +1 -0
- package/es/elements/common/annotator-context/index.js.flow +4 -0
- package/es/elements/common/annotator-context/index.js.map +1 -1
- package/es/elements/common/annotator-context/types.js +12 -0
- package/es/elements/common/annotator-context/types.js.flow +77 -35
- package/es/elements/common/annotator-context/types.js.map +1 -1
- package/es/elements/common/annotator-context/useAnnotatorEvents.js +205 -0
- package/es/elements/common/annotator-context/useAnnotatorEvents.js.flow +52 -0
- package/es/elements/common/annotator-context/useAnnotatorEvents.js.map +1 -0
- package/es/elements/common/annotator-context/withAnnotations.js +224 -5
- package/es/elements/common/annotator-context/withAnnotations.js.flow +73 -36
- package/es/elements/common/annotator-context/withAnnotations.js.map +1 -1
- package/es/elements/common/annotator-context/withAnnotatorContext.js +12 -4
- package/es/elements/common/annotator-context/withAnnotatorContext.js.flow +29 -9
- package/es/elements/common/annotator-context/withAnnotatorContext.js.map +1 -1
- package/es/elements/common/current-user/index.js +3 -0
- package/es/elements/common/current-user/index.js.flow +8 -0
- package/es/elements/common/current-user/index.js.map +1 -0
- package/es/elements/common/current-user/withCurrentUser.js +139 -0
- package/es/elements/common/current-user/withCurrentUser.js.flow +40 -0
- package/es/elements/common/current-user/withCurrentUser.js.map +1 -0
- package/es/elements/common/flowTypes.js.flow +22 -4
- package/es/elements/common/flowTypes.js.map +1 -1
- package/es/elements/common/interactionTargets.js +2 -0
- package/es/elements/common/interactionTargets.js.flow +2 -0
- package/es/elements/common/interactionTargets.js.map +1 -1
- package/es/elements/common/logger/Logger.js +1 -1
- package/es/elements/common/logger/Logger.js.flow +1 -1
- package/es/elements/common/logger/Logger.js.map +1 -1
- package/es/elements/common/messages.js +4 -0
- package/es/elements/common/messages.js.flow +5 -0
- package/es/elements/common/messages.js.map +1 -1
- package/es/elements/content-explorer/DeleteConfirmationDialog.js +2 -1
- package/es/elements/content-explorer/DeleteConfirmationDialog.js.flow +3 -1
- package/es/elements/content-explorer/DeleteConfirmationDialog.js.map +1 -1
- package/es/elements/content-explorer/DeleteConfirmationDialog.scss +5 -0
- package/es/elements/content-explorer/stories/DeleteConfirmationDialog.stories.js +58 -0
- package/es/elements/content-explorer/stories/DeleteConfirmationDialog.stories.js.flow +60 -0
- package/es/elements/content-explorer/stories/DeleteConfirmationDialog.stories.js.map +1 -0
- package/es/elements/content-sidebar/ActivitySidebar.js +323 -197
- package/es/elements/content-sidebar/ActivitySidebar.js.flow +381 -154
- package/es/elements/content-sidebar/ActivitySidebar.js.map +1 -1
- package/es/elements/content-sidebar/ActivitySidebarFilter.js +52 -0
- package/es/elements/content-sidebar/ActivitySidebarFilter.js.flow +59 -0
- package/es/elements/content-sidebar/ActivitySidebarFilter.js.map +1 -0
- package/es/elements/content-sidebar/ActivitySidebarFilter.scss +4 -0
- package/es/elements/content-sidebar/DetailsSidebar.js +50 -25
- package/es/elements/content-sidebar/DetailsSidebar.js.flow +32 -4
- package/es/elements/content-sidebar/DetailsSidebar.js.map +1 -1
- package/es/elements/content-sidebar/Sidebar.js +4 -1
- package/es/elements/content-sidebar/Sidebar.js.flow +6 -1
- package/es/elements/content-sidebar/Sidebar.js.map +1 -1
- package/es/elements/content-sidebar/SidebarContentInsights.js +45 -0
- package/es/elements/content-sidebar/SidebarContentInsights.js.map +1 -0
- package/es/elements/content-sidebar/SidebarContentInsights.scss +6 -0
- package/es/elements/content-sidebar/SidebarPanels.js +2 -0
- package/es/elements/content-sidebar/SidebarPanels.js.flow +4 -0
- package/es/elements/content-sidebar/SidebarPanels.js.map +1 -1
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActiveState.js +91 -10
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActiveState.js.flow +122 -24
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActiveState.js.map +1 -1
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityFeed.js +27 -15
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityFeed.js.flow +59 -18
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityFeed.js.map +1 -1
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThread.js +101 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThread.js.flow +126 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThread.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThread.scss +17 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplies.js +69 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplies.js.flow +85 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplies.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplies.scss +16 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplyForm.js +62 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplyForm.js.flow +59 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplyForm.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplyForm.scss +22 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/activityFeedUtils.js +2 -2
- package/es/elements/content-sidebar/activity-feed/activity-feed/activityFeedUtils.js.flow +2 -2
- package/es/elements/content-sidebar/activity-feed/activity-feed/activityFeedUtils.js.map +1 -1
- package/es/elements/content-sidebar/activity-feed/activity-feed/fixtures.js +55 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/fixtures.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/messages.js +16 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/messages.js.flow +20 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/messages.js.map +1 -1
- package/es/elements/content-sidebar/activity-feed/annotation-thread/AnnotationThread.js +121 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/AnnotationThread.js.flow +117 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/AnnotationThread.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/AnnotationThread.scss +7 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/AnnotationThreadContent.js +75 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/AnnotationThreadContent.js.flow +105 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/AnnotationThreadContent.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/AnnotationThreadContent.scss +5 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/AnnotationThreadCreate.js +77 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/AnnotationThreadCreate.js.flow +86 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/AnnotationThreadCreate.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/AnnotationThreadCreate.scss +3 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/errors.js +11 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/errors.js.flow +26 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/errors.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/index.js +2 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/index.js.flow +1 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/index.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/messages.js +17 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/messages.js.flow +21 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/messages.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/useAnnotationAPI.js +180 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/useAnnotationAPI.js.flow +203 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/useAnnotationAPI.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/useRepliesAPI.js +124 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/useRepliesAPI.js.flow +121 -0
- package/es/elements/content-sidebar/activity-feed/annotation-thread/useRepliesAPI.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/annotations/AnnotationActivity.js +19 -5
- package/es/elements/content-sidebar/activity-feed/annotations/AnnotationActivity.js.flow +24 -4
- package/es/elements/content-sidebar/activity-feed/annotations/AnnotationActivity.js.map +1 -1
- package/es/elements/content-sidebar/activity-feed/annotations/AnnotationActivityMenu.js +25 -4
- package/es/elements/content-sidebar/activity-feed/annotations/AnnotationActivityMenu.js.flow +36 -2
- package/es/elements/content-sidebar/activity-feed/annotations/AnnotationActivityMenu.js.map +1 -1
- package/es/elements/content-sidebar/activity-feed/annotations/messages.js +8 -0
- package/es/elements/content-sidebar/activity-feed/annotations/messages.js.flow +10 -0
- package/es/elements/content-sidebar/activity-feed/annotations/messages.js.map +1 -1
- package/es/elements/content-sidebar/activity-feed/comment/Comment.js +61 -28
- package/es/elements/content-sidebar/activity-feed/comment/Comment.js.flow +54 -10
- package/es/elements/content-sidebar/activity-feed/comment/Comment.js.map +1 -1
- package/es/elements/content-sidebar/activity-feed/comment/messages.js +8 -0
- package/es/elements/content-sidebar/activity-feed/comment/messages.js.flow +10 -0
- package/es/elements/content-sidebar/activity-feed/comment/messages.js.map +1 -1
- package/es/elements/content-sidebar/activity-feed/comment-form/CommentForm.js +4 -2
- package/es/elements/content-sidebar/activity-feed/comment-form/CommentForm.js.flow +3 -1
- package/es/elements/content-sidebar/activity-feed/comment-form/CommentForm.js.map +1 -1
- package/es/elements/content-sidebar/activity-feed/common/activity-message/ActivityMessage.js +16 -5
- package/es/elements/content-sidebar/activity-feed/common/activity-message/ActivityMessage.js.flow +34 -4
- package/es/elements/content-sidebar/activity-feed/common/activity-message/ActivityMessage.js.map +1 -1
- package/es/elements/content-sidebar/activity-feed/common/activity-message/ActivityMessage.scss +40 -3
- package/es/elements/content-sidebar/activity-feed/common/activity-message/CollapsableMessage.js +49 -0
- package/es/elements/content-sidebar/activity-feed/common/activity-message/CollapsableMessage.js.flow +42 -0
- package/es/elements/content-sidebar/activity-feed/common/activity-message/CollapsableMessage.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/common/activity-message/CollapsableMessageToggle.js +21 -0
- package/es/elements/content-sidebar/activity-feed/common/activity-message/CollapsableMessageToggle.js.flow +24 -0
- package/es/elements/content-sidebar/activity-feed/common/activity-message/CollapsableMessageToggle.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/common/activity-message/messages.js +12 -0
- package/es/elements/content-sidebar/activity-feed/common/activity-message/messages.js.flow +15 -0
- package/es/elements/content-sidebar/activity-feed/common/activity-message/messages.js.map +1 -1
- package/es/elements/content-sidebar/activity-feed/common/activity-status/ActivityStatus.js +24 -0
- package/es/elements/content-sidebar/activity-feed/common/activity-status/ActivityStatus.js.flow +30 -0
- package/es/elements/content-sidebar/activity-feed/common/activity-status/ActivityStatus.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/common/activity-status/ActivityStatus.scss +6 -0
- package/es/elements/content-sidebar/activity-feed/common/activity-status/index.js +2 -0
- package/es/elements/content-sidebar/activity-feed/common/activity-status/index.js.flow +2 -0
- package/es/elements/content-sidebar/activity-feed/common/activity-status/index.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/common/activity-status/messages.js +9 -0
- package/es/elements/content-sidebar/activity-feed/common/activity-status/messages.js.flow +13 -0
- package/es/elements/content-sidebar/activity-feed/common/activity-status/messages.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/common/activity-timestamp/ActivityTimestamp.scss +1 -1
- package/es/elements/content-sidebar/fixtures.js +181 -0
- package/es/elements/content-sidebar/fixtures.js.flow +185 -0
- package/es/elements/content-sidebar/fixtures.js.map +1 -0
- package/es/elements/content-sidebar/flowTypes.js.flow +9 -25
- package/es/elements/content-sidebar/messages.js +8 -0
- package/es/elements/content-sidebar/messages.js.flow +10 -0
- package/es/elements/content-sidebar/messages.js.map +1 -1
- package/es/elements/content-sidebar/withErrorHandling.js.flow +1 -1
- package/es/elements/content-sidebar/withErrorHandling.js.map +1 -1
- package/es/elements/content-sidebar/withSidebarAnnotations.js +215 -30
- package/es/elements/content-sidebar/withSidebarAnnotations.js.flow +162 -11
- package/es/elements/content-sidebar/withSidebarAnnotations.js.map +1 -1
- package/es/elements/content-uploader/OverallUploadsProgressBar.js +10 -8
- package/es/elements/content-uploader/OverallUploadsProgressBar.js.flow +11 -12
- package/es/elements/content-uploader/OverallUploadsProgressBar.js.map +1 -1
- package/es/features/classification/Classification.scss +1 -1
- package/es/features/classification/security-controls/SecurityControlsItem.scss +1 -0
- package/es/features/classification/security-controls/messages.js +8 -0
- package/es/features/classification/security-controls/messages.js.flow +10 -0
- package/es/features/classification/security-controls/messages.js.map +1 -1
- package/es/features/classification/security-controls/utils.js +4 -7
- package/es/features/classification/security-controls/utils.js.flow +8 -12
- package/es/features/classification/security-controls/utils.js.map +1 -1
- package/es/features/content-explorer/content-explorer/ContentExplorer.js +6 -1
- package/es/features/content-explorer/content-explorer/ContentExplorer.js.flow +4 -0
- package/es/features/content-explorer/content-explorer/ContentExplorer.js.map +1 -1
- package/es/features/content-explorer/content-explorer/ContentExplorer.scss +4 -0
- package/es/features/content-explorer/content-explorer/ContentExplorerBreadcrumbs.js +15 -9
- package/es/features/content-explorer/content-explorer/ContentExplorerBreadcrumbs.js.flow +14 -11
- package/es/features/content-explorer/content-explorer/ContentExplorerBreadcrumbs.js.map +1 -1
- package/es/features/content-explorer/content-explorer/ContentExplorerHeaderActions.js +4 -1
- package/es/features/content-explorer/content-explorer/ContentExplorerHeaderActions.js.flow +4 -1
- package/es/features/content-explorer/content-explorer/ContentExplorerHeaderActions.js.map +1 -1
- package/es/features/content-explorer/content-explorer-modal/ContentExplorerModal.js +6 -3
- package/es/features/content-explorer/content-explorer-modal/ContentExplorerModal.js.flow +5 -1
- package/es/features/content-explorer/content-explorer-modal/ContentExplorerModal.js.map +1 -1
- package/es/features/content-explorer/content-explorer-modal-container/ContentExplorerModalContainer.js +6 -1
- package/es/features/content-explorer/content-explorer-modal-container/ContentExplorerModalContainer.js.flow +5 -1
- package/es/features/content-explorer/content-explorer-modal-container/ContentExplorerModalContainer.js.map +1 -1
- package/es/features/content-explorer/prop-types.js +7 -1
- package/es/features/content-explorer/prop-types.js.flow +8 -0
- package/es/features/content-explorer/prop-types.js.map +1 -1
- package/es/features/content-insights/CompactCount.js +24 -0
- package/es/features/content-insights/CompactCount.js.map +1 -0
- package/es/features/content-insights/ContentAnalyticsErrorState.js +35 -0
- package/es/features/content-insights/ContentAnalyticsErrorState.js.map +1 -0
- package/es/features/content-insights/ContentAnalyticsErrorState.scss +17 -0
- package/es/features/content-insights/ContentInsightsSummary.js +42 -0
- package/es/features/content-insights/ContentInsightsSummary.js.map +1 -0
- package/es/features/content-insights/ContentInsightsSummary.scss +12 -0
- package/es/features/content-insights/ContentInsightsSummaryGhostState.js +19 -0
- package/es/features/content-insights/ContentInsightsSummaryGhostState.js.map +1 -0
- package/es/features/content-insights/ContentInsightsSummaryGhostState.scss +9 -0
- package/es/features/content-insights/GraphCardGhostState.js +25 -0
- package/es/features/content-insights/GraphCardGhostState.js.map +1 -0
- package/es/features/content-insights/GraphCardGhostState.scss +18 -0
- package/es/features/content-insights/GraphCardPreviewsSummary.js +30 -0
- package/es/features/content-insights/GraphCardPreviewsSummary.js.map +1 -0
- package/es/features/content-insights/GraphCardPreviewsSummary.scss +10 -0
- package/es/features/content-insights/GraphGhostState.js +21 -0
- package/es/features/content-insights/GraphGhostState.js.map +1 -0
- package/es/features/content-insights/GraphGhostState.scss +11 -0
- package/es/features/content-insights/HeaderWithCount.js +23 -0
- package/es/features/content-insights/HeaderWithCount.js.map +1 -0
- package/es/features/content-insights/HeaderWithCount.scss +10 -0
- package/es/features/content-insights/MetricSummary.js +85 -0
- package/es/features/content-insights/MetricSummary.js.map +1 -0
- package/es/features/content-insights/MetricSummary.scss +14 -0
- package/es/features/content-insights/OpenContentInsightsButton.js +16 -0
- package/es/features/content-insights/OpenContentInsightsButton.js.map +1 -0
- package/es/features/content-insights/TrendPill.js +61 -0
- package/es/features/content-insights/TrendPill.js.map +1 -0
- package/es/features/content-insights/TrendPill.scss +33 -0
- package/es/features/content-insights/_mixins.scss +7 -0
- package/es/features/content-insights/_variables.scss +4 -0
- package/es/features/content-insights/charts/bar/Bar.js +57 -0
- package/es/features/content-insights/charts/bar/Bar.js.map +1 -0
- package/es/features/content-insights/charts/bar/Bar.scss +27 -0
- package/es/features/content-insights/charts/bar/BarChart.js +70 -0
- package/es/features/content-insights/charts/bar/BarChart.js.map +1 -0
- package/es/features/content-insights/charts/bar/BarChart.scss +56 -0
- package/es/features/content-insights/charts/types.js +2 -0
- package/es/{common/types/threadedComments.js.map → features/content-insights/charts/types.js.map} +1 -1
- package/es/features/content-insights/constants.js +54 -0
- package/es/features/content-insights/constants.js.map +1 -0
- package/es/features/content-insights/messages.js +69 -0
- package/es/features/content-insights/messages.js.map +1 -0
- package/es/features/content-insights/numberUtils.js +10 -0
- package/es/features/content-insights/numberUtils.js.map +1 -0
- package/es/features/content-insights/types.js +2 -0
- package/es/features/content-insights/types.js.map +1 -0
- package/es/features/item-details/ItemProperties.scss +1 -1
- package/es/features/shared-link-settings-modal/SharedLinkSettingsModal.js +5 -3
- package/es/features/shared-link-settings-modal/SharedLinkSettingsModal.js.flow +4 -2
- package/es/features/shared-link-settings-modal/SharedLinkSettingsModal.js.map +1 -1
- package/es/features/unified-share-modal/ContactRestrictionNotice.js +34 -8
- package/es/features/unified-share-modal/ContactRestrictionNotice.js.flow +36 -6
- package/es/features/unified-share-modal/ContactRestrictionNotice.js.map +1 -1
- package/es/features/unified-share-modal/EmailForm.js +59 -47
- package/es/features/unified-share-modal/EmailForm.js.flow +31 -13
- package/es/features/unified-share-modal/EmailForm.js.map +1 -1
- package/es/features/unified-share-modal/UnifiedShareForm.js +112 -103
- package/es/features/unified-share-modal/UnifiedShareForm.js.flow +25 -8
- package/es/features/unified-share-modal/UnifiedShareForm.js.map +1 -1
- package/es/features/unified-share-modal/UnifiedShareModal.js +1 -0
- package/es/features/unified-share-modal/UnifiedShareModal.js.flow +1 -0
- package/es/features/unified-share-modal/UnifiedShareModal.js.map +1 -1
- package/es/features/unified-share-modal/flowTypes.js.flow +4 -2
- package/es/features/unified-share-modal/flowTypes.js.map +1 -1
- package/es/features/unified-share-modal/messages.js +12 -8
- package/es/features/unified-share-modal/messages.js.flow +14 -8
- package/es/features/unified-share-modal/messages.js.map +1 -1
- package/es/features/unified-share-modal/utils/hasRestrictedContacts.js +9 -4
- package/es/features/unified-share-modal/utils/hasRestrictedContacts.js.flow +10 -3
- package/es/features/unified-share-modal/utils/hasRestrictedContacts.js.map +1 -1
- package/es/features/unified-share-modal/utils/isRestrictedContact.js +15 -0
- package/es/features/unified-share-modal/utils/isRestrictedContact.js.flow +21 -0
- package/es/features/unified-share-modal/utils/isRestrictedContact.js.map +1 -0
- package/es/icon/fill/Alert16.js +3 -2
- package/es/icon/fill/Alert16.js.flow +3 -2
- package/es/icon/fill/Alert16.js.map +1 -1
- package/es/icon/fill/AlertBadge16.js +31 -0
- package/es/icon/fill/AlertBadge16.js.flow +29 -0
- package/es/icon/fill/AlertBadge16.js.map +1 -0
- package/es/icon/fill/AlertBadge16.stories.js +13 -0
- package/es/icon/fill/AlertBadge16.stories.js.map +1 -0
- package/es/icon/fill/Info16.js +2 -2
- package/es/icon/fill/Info16.js.flow +1 -1
- package/es/icon/fill/Info16.js.map +1 -1
- package/es/icon/fill/InfoBadge16.js +30 -0
- package/es/icon/fill/InfoBadge16.js.flow +28 -0
- package/es/icon/fill/InfoBadge16.js.map +1 -0
- package/es/icon/fill/InfoBadge16.stories.js +13 -0
- package/es/icon/fill/InfoBadge16.stories.js.map +1 -0
- package/es/icon/fill/UserSettings16.js +38 -0
- package/es/icon/fill/UserSettings16.js.flow +38 -0
- package/es/icon/fill/UserSettings16.js.map +1 -0
- package/es/icon/fill/UserSettings16.stories.js +13 -0
- package/es/icon/fill/UserSettings16.stories.js.map +1 -0
- package/es/icon/line/AlertBubble16.js +31 -0
- package/es/icon/line/AlertBubble16.js.flow +29 -0
- package/es/icon/line/AlertBubble16.js.map +1 -0
- package/es/icon/line/AlertBubble16.stories.js +13 -0
- package/es/icon/line/AlertBubble16.stories.js.map +1 -0
- package/es/icon/line/AvatarXBadge16.js +45 -0
- package/es/icon/line/AvatarXBadge16.js.flow +39 -0
- package/es/icon/line/AvatarXBadge16.js.map +1 -0
- package/es/icon/line/AvatarXBadge16.stories.js +13 -0
- package/es/icon/line/AvatarXBadge16.stories.js.map +1 -0
- package/es/icon/line/CoEdit16.js +32 -0
- package/es/icon/line/CoEdit16.js.flow +30 -0
- package/es/icon/line/CoEdit16.js.map +1 -0
- package/es/icon/line/CoEdit16.stories.js +13 -0
- package/es/icon/line/CoEdit16.stories.js.map +1 -0
- package/es/icon/line/Collaborations16.js +32 -0
- package/es/icon/line/Collaborations16.js.flow +30 -0
- package/es/icon/line/Collaborations16.js.map +1 -0
- package/es/icon/line/Collaborations16.stories.js +13 -0
- package/es/icon/line/Collaborations16.stories.js.map +1 -0
- package/es/icon/line/CommentBubble16.js +35 -0
- package/es/icon/line/CommentBubble16.js.flow +34 -0
- package/es/icon/line/CommentBubble16.js.map +1 -0
- package/es/icon/line/CommentBubble16.stories.js +13 -0
- package/es/icon/line/CommentBubble16.stories.js.map +1 -0
- package/es/src/components/accessible-svg/AccessibleSVG.stories.d.ts +7 -0
- package/es/src/components/badge/Badge.stories.d.ts +0 -3
- package/es/src/components/badge/BetaBadge.stories.d.ts +6 -0
- package/es/src/components/badge/TrialBadge.stories.d.ts +6 -0
- package/es/src/components/badge/UpgradeBadge.stories.d.ts +6 -0
- package/es/src/components/draggable-list/DraggableList.stories.d.ts +3 -3
- package/es/src/components/infinite-scroll/InfiniteScroll.d.ts +1 -1
- package/es/src/components/tooltip/Tooltip.d.ts +2 -0
- package/es/src/elements/common/annotator-context/__tests__/useAnnotatorEvents.test.d.ts +1 -0
- package/es/src/elements/common/annotator-context/index.d.ts +1 -0
- package/es/src/elements/common/annotator-context/types.d.ts +28 -6
- package/es/src/elements/common/annotator-context/useAnnotatorEvents.d.ts +52 -0
- package/es/src/elements/common/annotator-context/withAnnotations.d.ts +11 -2
- package/es/src/elements/common/annotator-context/withAnnotatorContext.d.ts +6 -2
- package/es/src/elements/common/current-user/__tests__/withCurrentUser.test.d.ts +1 -0
- package/es/src/elements/common/current-user/index.d.ts +2 -0
- package/es/src/elements/common/current-user/withCurrentUser.d.ts +20 -0
- package/es/src/elements/content-sidebar/SidebarContentInsights.d.ts +15 -0
- package/es/src/elements/content-sidebar/__tests__/SidebarContentInsights.test.d.ts +1 -0
- package/es/src/elements/content-sidebar/activity-feed/activity-feed/fixtures.d.ts +55 -0
- package/es/src/features/content-insights/CompactCount.d.ts +15 -0
- package/es/src/features/content-insights/ContentAnalyticsErrorState.d.ts +7 -0
- package/es/src/features/content-insights/ContentInsightsSummary.d.ts +12 -0
- package/es/src/features/content-insights/ContentInsightsSummaryGhostState.d.ts +3 -0
- package/es/src/features/content-insights/GraphCardGhostState.d.ts +3 -0
- package/es/src/features/content-insights/GraphCardPreviewsSummary.d.ts +16 -0
- package/es/src/features/content-insights/GraphGhostState.d.ts +3 -0
- package/es/src/features/content-insights/HeaderWithCount.d.ts +7 -0
- package/es/src/features/content-insights/MetricSummary.d.ts +18 -0
- package/es/src/features/content-insights/OpenContentInsightsButton.d.ts +5 -0
- package/es/src/features/content-insights/TrendPill.d.ts +15 -0
- package/es/src/features/content-insights/__tests__/CompactCount.test.d.ts +1 -0
- package/es/src/features/content-insights/__tests__/ContentAnalyticsErrorState.test.d.ts +1 -0
- package/es/src/features/content-insights/__tests__/ContentInsightsSummary.test.d.ts +1 -0
- package/es/src/features/content-insights/__tests__/GraphCardPreviewsSummary.test.d.ts +1 -0
- package/es/src/features/content-insights/__tests__/HeaderWithCount.test.d.ts +1 -0
- package/es/src/features/content-insights/__tests__/MetricSummary.test.d.ts +1 -0
- package/es/src/features/content-insights/charts/bar/Bar.d.ts +11 -0
- package/es/src/features/content-insights/charts/bar/BarChart.d.ts +19 -0
- package/es/src/features/content-insights/charts/bar/__tests__/Bar.test.d.ts +1 -0
- package/es/src/features/content-insights/charts/bar/__tests__/BarChart.test.d.ts +1 -0
- package/es/src/features/content-insights/charts/types.d.ts +2 -0
- package/es/src/features/content-insights/constants.d.ts +27 -0
- package/es/src/features/content-insights/messages.d.ts +83 -0
- package/es/src/features/content-insights/numberUtils.d.ts +3 -0
- package/es/src/features/content-insights/types.d.ts +24 -0
- package/es/src/icon/fill/AlertBadge16.d.ts +13 -0
- package/es/src/icon/fill/AlertBadge16.stories.d.ts +9 -0
- package/es/src/icon/fill/InfoBadge16.d.ts +13 -0
- package/es/src/icon/fill/InfoBadge16.stories.d.ts +9 -0
- package/es/src/icon/fill/UserSettings16.d.ts +13 -0
- package/es/src/icon/fill/UserSettings16.stories.d.ts +9 -0
- package/es/src/icon/line/AlertBubble16.d.ts +13 -0
- package/es/src/icon/line/AlertBubble16.stories.d.ts +9 -0
- package/es/src/icon/line/AvatarXBadge16.d.ts +13 -0
- package/es/src/icon/line/AvatarXBadge16.stories.d.ts +9 -0
- package/es/src/icon/line/CoEdit16.d.ts +13 -0
- package/es/src/icon/line/CoEdit16.stories.d.ts +9 -0
- package/es/src/icon/line/Collaborations16.d.ts +13 -0
- package/es/src/icon/line/Collaborations16.stories.d.ts +9 -0
- package/es/src/icon/line/CommentBubble16.d.ts +13 -0
- package/es/src/icon/line/CommentBubble16.stories.d.ts +9 -0
- package/es/src/styles/variables.d.ts +3 -1
- package/es/styles/constants/_layout.scss +1 -1
- package/es/styles/constants/_media-queries.scss +2 -0
- package/es/styles/variables.js +6 -2
- package/es/styles/variables.js.flow +4 -2
- package/es/styles/variables.js.map +1 -1
- package/es/utils/error.js +5 -1
- package/es/utils/error.js.flow +5 -1
- package/es/utils/error.js.map +1 -1
- package/es/utils/fields.js +8 -3
- package/es/utils/fields.js.flow +21 -3
- package/es/utils/fields.js.map +1 -1
- package/es/utils/sorter.js.flow +2 -2
- package/es/utils/sorter.js.map +1 -1
- package/i18n/bn-IN.js +45 -7
- package/i18n/bn-IN.properties +83 -7
- package/i18n/da-DK.js +45 -7
- package/i18n/da-DK.properties +83 -7
- package/i18n/de-DE.js +45 -7
- package/i18n/de-DE.properties +83 -7
- package/i18n/en-AU.js +45 -7
- package/i18n/en-AU.properties +83 -7
- package/i18n/en-CA.js +45 -7
- package/i18n/en-CA.properties +83 -7
- package/i18n/en-GB.js +45 -7
- package/i18n/en-GB.properties +83 -7
- package/i18n/en-US.js +45 -7
- package/i18n/en-US.properties +83 -7
- package/i18n/en-x-pseudo.js +891 -854
- package/i18n/en-x-pseudo.properties +941 -843
- package/i18n/es-419.js +45 -7
- package/i18n/es-419.properties +83 -7
- package/i18n/es-ES.js +45 -7
- package/i18n/es-ES.properties +83 -7
- package/i18n/fi-FI.js +45 -7
- package/i18n/fi-FI.properties +83 -7
- package/i18n/fr-CA.js +45 -7
- package/i18n/fr-CA.properties +83 -7
- package/i18n/fr-FR.js +45 -7
- package/i18n/fr-FR.properties +83 -7
- package/i18n/hi-IN.js +45 -7
- package/i18n/hi-IN.properties +83 -7
- package/i18n/it-IT.js +45 -7
- package/i18n/it-IT.properties +83 -7
- package/i18n/ja-JP.js +47 -9
- package/i18n/ja-JP.properties +85 -9
- package/i18n/ko-KR.js +45 -7
- package/i18n/ko-KR.properties +83 -7
- package/i18n/nb-NO.js +45 -7
- package/i18n/nb-NO.properties +83 -7
- package/i18n/nl-NL.js +45 -7
- package/i18n/nl-NL.properties +83 -7
- package/i18n/pl-PL.js +45 -7
- package/i18n/pl-PL.properties +83 -7
- package/i18n/pt-BR.js +45 -7
- package/i18n/pt-BR.properties +83 -7
- package/i18n/ru-RU.js +45 -7
- package/i18n/ru-RU.properties +83 -7
- package/i18n/sv-SE.js +45 -7
- package/i18n/sv-SE.properties +83 -7
- package/i18n/tr-TR.js +45 -7
- package/i18n/tr-TR.properties +83 -7
- package/i18n/zh-CN.js +45 -7
- package/i18n/zh-CN.properties +83 -7
- package/i18n/zh-TW.js +45 -7
- package/i18n/zh-TW.properties +83 -7
- package/package.json +7 -8
- package/src/__mocks__/react-intl.js +4 -0
- package/src/api/APIFactory.js +26 -0
- package/src/api/Annotations.js +150 -14
- package/src/api/Comments.js +5 -4
- package/src/api/Feed.js +677 -17
- package/src/api/FileCollaborators.js +30 -0
- package/src/api/ThreadedComments.js +54 -29
- package/src/api/__tests__/Annotations.test.js +217 -11
- package/src/api/__tests__/Feed.test.js +699 -86
- package/src/api/__tests__/FileCollaborators.test.js +41 -0
- package/src/api/__tests__/ThreadedComments.test.js +47 -10
- package/src/api/__tests__/utils.test.js +11 -0
- package/src/api/fixtures.js +401 -0
- package/src/api/messages.js +5 -0
- package/src/api/utils.js +30 -0
- package/src/common/types/annotations.js +18 -10
- package/src/common/types/feed.js +40 -4
- package/src/components/accessible-svg/AccessibleSVG.stories.tsx +18 -0
- package/src/components/badge/Badge.stories.md +1 -7
- package/src/components/badge/Badge.stories.tsx +1 -10
- package/src/components/badge/BetaBadge.stories.tsx +9 -0
- package/src/components/badge/TrialBadge.stories.tsx +9 -0
- package/src/components/badge/UpgradeBadge.stories.tsx +9 -0
- package/src/components/breadcrumb/Breadcrumb.js +68 -42
- package/src/components/breadcrumb/EllipsisCrumb.js +10 -6
- package/src/components/count-badge/CountBadge.stories.tsx +1 -1
- package/src/components/draggable-list/DraggableList.stories.tsx +72 -5
- package/src/components/dropdown-menu/DropdownMenu.js +11 -0
- package/src/components/dropdown-menu/DropdownMenu.scss +3 -3
- package/src/components/dropdown-menu/__tests__/DropdownMenu.test.js +38 -0
- package/src/components/grid-view/__tests__/__snapshots__/GridViewSlider.test.js.snap +1 -0
- package/src/components/infinite-scroll/InfiniteScroll.md +1 -1
- package/src/components/infinite-scroll/InfiniteScroll.tsx +5 -2
- package/src/components/infinite-scroll/__tests__/InfiniteScroll.test.tsx +115 -127
- package/src/components/modal/Modal.scss +5 -1
- package/src/components/search-form/SearchForm.js +1 -1
- package/src/components/search-form/__tests__/SearchForm.test.js +25 -6
- package/src/components/sidebar-toggle-button/__tests__/__snapshots__/SidebarToggleButton.test.js.snap +4 -0
- package/src/components/table/__tests__/makeSelectable.test.js +654 -144
- package/src/components/table/makeSelectable.js +299 -98
- package/src/components/time/__tests__/ReadableTime.test.js +0 -1
- package/src/components/tooltip/Tooltip.tsx +5 -2
- package/src/components/tooltip/__tests__/Tooltip.test.tsx +10 -0
- package/src/components/tooltip/__tests__/__snapshots__/Tooltip.test.tsx.snap +1 -1
- package/src/constants.js +11 -0
- package/src/elements/common/annotator-context/__tests__/useAnnotatorEvents.test.tsx +509 -0
- package/src/elements/common/annotator-context/__tests__/withAnnotations.test.tsx +275 -12
- package/src/elements/common/annotator-context/__tests__/withAnnotatorContext.test.tsx +18 -6
- package/src/elements/common/annotator-context/index.js.flow +4 -0
- package/src/elements/common/annotator-context/index.ts +1 -0
- package/src/elements/common/annotator-context/types.js.flow +77 -35
- package/src/elements/common/annotator-context/types.ts +28 -6
- package/src/elements/common/annotator-context/useAnnotatorEvents.js.flow +52 -0
- package/src/elements/common/annotator-context/useAnnotatorEvents.ts +190 -0
- package/src/elements/common/annotator-context/withAnnotations.js.flow +73 -36
- package/src/elements/common/annotator-context/withAnnotations.tsx +170 -7
- package/src/elements/common/annotator-context/withAnnotatorContext.js.flow +29 -9
- package/src/elements/common/annotator-context/withAnnotatorContext.tsx +28 -5
- package/src/elements/common/current-user/__tests__/withCurrentUser.test.tsx +108 -0
- package/src/elements/common/current-user/index.js.flow +8 -0
- package/src/elements/common/current-user/index.ts +2 -0
- package/src/elements/common/current-user/withCurrentUser.js.flow +40 -0
- package/src/elements/common/current-user/withCurrentUser.tsx +139 -0
- package/src/elements/common/flowTypes.js +22 -4
- package/src/elements/common/interactionTargets.js +2 -0
- package/src/elements/common/logger/Logger.js +1 -1
- package/src/elements/common/messages.js +5 -0
- package/src/elements/content-explorer/DeleteConfirmationDialog.js +3 -1
- package/src/elements/content-explorer/DeleteConfirmationDialog.scss +5 -0
- package/src/elements/content-explorer/stories/DeleteConfirmationDialog.stories.js +60 -0
- package/src/elements/content-explorer/stories/DeleteConfirmationDialog.stories.md +1 -0
- package/src/elements/content-sidebar/ActivitySidebar.js +381 -154
- package/src/elements/content-sidebar/ActivitySidebarFilter.js +59 -0
- package/src/elements/content-sidebar/ActivitySidebarFilter.scss +4 -0
- package/src/elements/content-sidebar/DetailsSidebar.js +32 -4
- package/src/elements/content-sidebar/Sidebar.js +6 -1
- package/src/elements/content-sidebar/SidebarContentInsights.scss +6 -0
- package/src/elements/content-sidebar/SidebarContentInsights.tsx +57 -0
- package/src/elements/content-sidebar/SidebarPanels.js +4 -0
- package/src/elements/content-sidebar/__tests__/ActivitySidebar.test.js +533 -243
- package/src/elements/content-sidebar/__tests__/ActivitySidebarFilter.test.js +54 -0
- package/src/elements/content-sidebar/__tests__/DetailsSidebar.test.js +45 -0
- package/src/elements/content-sidebar/__tests__/Sidebar.test.js +1 -1
- package/src/elements/content-sidebar/__tests__/SidebarContentInsights.test.tsx +56 -0
- package/src/elements/content-sidebar/__tests__/SidebarPanels.test.js +4 -3
- package/src/elements/content-sidebar/__tests__/__snapshots__/ActivitySidebar.test.js.snap +29 -15
- package/src/elements/content-sidebar/__tests__/__snapshots__/SidebarFileProperties.test.js.snap +1 -0
- package/src/elements/content-sidebar/__tests__/withSidebarAnnotations.test.js +325 -32
- package/src/elements/content-sidebar/activity-feed/activity-feed/ActiveState.js +122 -24
- package/src/elements/content-sidebar/activity-feed/activity-feed/ActivityFeed.js +59 -18
- package/src/elements/content-sidebar/activity-feed/activity-feed/ActivityThread.js +126 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/ActivityThread.scss +17 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplies.js +85 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplies.scss +16 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplyForm.js +59 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplyForm.scss +22 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/__tests__/ActiveState.test.js +19 -5
- package/src/elements/content-sidebar/activity-feed/activity-feed/__tests__/ActivityFeed.test.js +22 -16
- package/src/elements/content-sidebar/activity-feed/activity-feed/__tests__/ActivityThread.test.js +80 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/__tests__/ActivityThreadReplies.test.js +24 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/__tests__/ActivityThreadRepliesForm.test.js +47 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/__tests__/__snapshots__/ActiveState.test.js.snap +74 -43
- package/src/elements/content-sidebar/activity-feed/activity-feed/__tests__/activityFeedUtils.test.js +8 -8
- package/src/elements/content-sidebar/activity-feed/activity-feed/activityFeedUtils.js +2 -2
- package/src/elements/content-sidebar/activity-feed/activity-feed/fixtures.ts +56 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/messages.js +20 -0
- package/src/elements/content-sidebar/activity-feed/annotation-thread/AnnotationThread.js +117 -0
- package/src/elements/content-sidebar/activity-feed/annotation-thread/AnnotationThread.scss +7 -0
- package/src/elements/content-sidebar/activity-feed/annotation-thread/AnnotationThreadContent.js +105 -0
- package/src/elements/content-sidebar/activity-feed/annotation-thread/AnnotationThreadContent.scss +5 -0
- package/src/elements/content-sidebar/activity-feed/annotation-thread/AnnotationThreadCreate.js +86 -0
- package/src/elements/content-sidebar/activity-feed/annotation-thread/AnnotationThreadCreate.scss +3 -0
- package/src/elements/content-sidebar/activity-feed/annotation-thread/__tests__/AnnotationThread.test.js +28 -0
- package/src/elements/content-sidebar/activity-feed/annotation-thread/__tests__/AnnotationThreadContent.test.js +89 -0
- package/src/elements/content-sidebar/activity-feed/annotation-thread/__tests__/AnnotationThreadCreate.test.js +103 -0
- package/src/elements/content-sidebar/activity-feed/annotation-thread/__tests__/useAnnotationAPI.test.js +202 -0
- package/src/elements/content-sidebar/activity-feed/annotation-thread/__tests__/useRepliesAPI.test.js +99 -0
- package/src/elements/content-sidebar/activity-feed/annotation-thread/errors.js +26 -0
- package/src/elements/content-sidebar/activity-feed/annotation-thread/index.js +1 -0
- package/src/elements/content-sidebar/activity-feed/annotation-thread/messages.js +21 -0
- package/src/elements/content-sidebar/activity-feed/annotation-thread/useAnnotationAPI.js +203 -0
- package/src/elements/content-sidebar/activity-feed/annotation-thread/useRepliesAPI.js +121 -0
- package/src/elements/content-sidebar/activity-feed/annotations/AnnotationActivity.js +24 -4
- package/src/elements/content-sidebar/activity-feed/annotations/AnnotationActivityMenu.js +36 -2
- package/src/elements/content-sidebar/activity-feed/annotations/__tests__/AnnotationActivity.test.js +14 -10
- package/src/elements/content-sidebar/activity-feed/annotations/__tests__/AnnotationActivityMenu.test.js +35 -1
- package/src/elements/content-sidebar/activity-feed/annotations/messages.js +10 -0
- package/src/elements/content-sidebar/activity-feed/comment/Comment.js +54 -10
- package/src/elements/content-sidebar/activity-feed/comment/__tests__/Comment.test.js +152 -7
- package/src/elements/content-sidebar/activity-feed/comment/__tests__/__snapshots__/Comment.test.js.snap +12 -7
- package/src/elements/content-sidebar/activity-feed/comment/messages.js +10 -0
- package/src/elements/content-sidebar/activity-feed/comment-form/CommentForm.js +3 -1
- package/src/elements/content-sidebar/activity-feed/comment-form/__tests__/CommentForm.test.js +11 -0
- package/src/elements/content-sidebar/activity-feed/common/activity-message/ActivityMessage.js +34 -4
- package/src/elements/content-sidebar/activity-feed/common/activity-message/ActivityMessage.scss +40 -3
- package/src/elements/content-sidebar/activity-feed/common/activity-message/CollapsableMessage.js +42 -0
- package/src/elements/content-sidebar/activity-feed/common/activity-message/CollapsableMessageToggle.js +24 -0
- package/src/elements/content-sidebar/activity-feed/common/activity-message/__tests__/ActivityMessage.test.js +48 -1
- package/src/elements/content-sidebar/activity-feed/common/activity-message/messages.js +15 -0
- package/src/elements/content-sidebar/activity-feed/common/activity-status/ActivityStatus.js +30 -0
- package/src/elements/content-sidebar/activity-feed/common/activity-status/ActivityStatus.scss +6 -0
- package/src/elements/content-sidebar/activity-feed/common/activity-status/__tests__/ActivityStatus.test.js +19 -0
- package/src/elements/content-sidebar/activity-feed/common/activity-status/index.js +2 -0
- package/src/elements/content-sidebar/activity-feed/common/activity-status/messages.js +13 -0
- package/src/elements/content-sidebar/activity-feed/common/activity-timestamp/ActivityTimestamp.scss +1 -1
- package/src/elements/content-sidebar/activity-feed/task-new/__tests__/Task.test.js +4 -3
- package/src/elements/content-sidebar/activity-feed/task-new/__tests__/__snapshots__/Task.test.js.snap +1 -2
- package/src/elements/content-sidebar/fixtures.js +185 -0
- package/src/elements/content-sidebar/flowTypes.js +9 -25
- package/src/elements/content-sidebar/messages.js +10 -0
- package/src/elements/content-sidebar/withErrorHandling.js +1 -1
- package/src/elements/content-sidebar/withSidebarAnnotations.js +162 -11
- package/src/elements/content-uploader/OverallUploadsProgressBar.js +11 -12
- package/src/features/classification/Classification.scss +1 -1
- package/src/features/classification/security-controls/SecurityControlsItem.scss +1 -0
- package/src/features/classification/security-controls/__tests__/__snapshots__/utils.test.js.snap +18 -16
- package/src/features/classification/security-controls/__tests__/utils.test.js +13 -5
- package/src/features/classification/security-controls/messages.js +10 -0
- package/src/features/classification/security-controls/utils.js +8 -12
- package/src/features/collapsible-sidebar/__tests__/__snapshots__/CollapsibleSidebarLogo.test.js.snap +2 -0
- package/src/features/content-explorer/content-explorer/ContentExplorer.js +4 -0
- package/src/features/content-explorer/content-explorer/ContentExplorer.scss +4 -0
- package/src/features/content-explorer/content-explorer/ContentExplorerBreadcrumbs.js +14 -11
- package/src/features/content-explorer/content-explorer/ContentExplorerHeaderActions.js +4 -1
- package/src/features/content-explorer/content-explorer/__tests__/ContentExplorerBreadcrumbs.test.js +2 -2
- package/src/features/content-explorer/content-explorer-modal/ContentExplorerModal.js +5 -1
- package/src/features/content-explorer/content-explorer-modal/__tests__/__snapshots__/ContentExplorerModal.test.js.snap +1 -0
- package/src/features/content-explorer/content-explorer-modal-container/ContentExplorerModalContainer.js +5 -1
- package/src/features/content-explorer/prop-types.js +8 -0
- package/src/features/content-insights/CompactCount.tsx +23 -0
- package/src/features/content-insights/ContentAnalyticsErrorState.scss +17 -0
- package/src/features/content-insights/ContentAnalyticsErrorState.tsx +44 -0
- package/src/features/content-insights/ContentInsightsSummary.scss +12 -0
- package/src/features/content-insights/ContentInsightsSummary.tsx +45 -0
- package/src/features/content-insights/ContentInsightsSummaryGhostState.scss +9 -0
- package/src/features/content-insights/ContentInsightsSummaryGhostState.tsx +18 -0
- package/src/features/content-insights/GraphCardGhostState.scss +18 -0
- package/src/features/content-insights/GraphCardGhostState.tsx +18 -0
- package/src/features/content-insights/GraphCardPreviewsSummary.scss +10 -0
- package/src/features/content-insights/GraphCardPreviewsSummary.tsx +40 -0
- package/src/features/content-insights/GraphGhostState.scss +11 -0
- package/src/features/content-insights/GraphGhostState.tsx +17 -0
- package/src/features/content-insights/HeaderWithCount.scss +10 -0
- package/src/features/content-insights/HeaderWithCount.tsx +24 -0
- package/src/features/content-insights/MetricSummary.scss +14 -0
- package/src/features/content-insights/MetricSummary.tsx +65 -0
- package/src/features/content-insights/OpenContentInsightsButton.tsx +20 -0
- package/src/features/content-insights/TrendPill.scss +33 -0
- package/src/features/content-insights/TrendPill.tsx +70 -0
- package/src/features/content-insights/__tests__/CompactCount.test.tsx +57 -0
- package/src/features/content-insights/__tests__/ContentAnalyticsErrorState.test.tsx +33 -0
- package/src/features/content-insights/__tests__/ContentInsightsSummary.test.tsx +81 -0
- package/src/features/content-insights/__tests__/GraphCardPreviewsSummary.test.tsx +35 -0
- package/src/features/content-insights/__tests__/HeaderWithCount.test.tsx +26 -0
- package/src/features/content-insights/__tests__/MetricSummary.test.tsx +88 -0
- package/src/features/content-insights/_mixins.scss +7 -0
- package/src/features/content-insights/_variables.scss +4 -0
- package/src/features/content-insights/charts/bar/Bar.scss +27 -0
- package/src/features/content-insights/charts/bar/Bar.tsx +48 -0
- package/src/features/content-insights/charts/bar/BarChart.scss +56 -0
- package/src/features/content-insights/charts/bar/BarChart.tsx +78 -0
- package/src/features/content-insights/charts/bar/__tests__/Bar.test.tsx +74 -0
- package/src/features/content-insights/charts/bar/__tests__/BarChart.test.tsx +110 -0
- package/src/features/content-insights/charts/types.ts +3 -0
- package/src/features/content-insights/constants.ts +60 -0
- package/src/features/content-insights/messages.ts +90 -0
- package/src/features/content-insights/numberUtils.ts +9 -0
- package/src/features/content-insights/types.ts +33 -0
- package/src/features/item-details/ItemProperties.scss +1 -1
- package/src/features/shared-link-settings-modal/SharedLinkSettingsModal.js +4 -2
- package/src/features/shared-link-settings-modal/__tests__/SharedLinkSettingsModal.test.js +22 -3
- package/src/features/shared-link-settings-modal/__tests__/__snapshots__/SharedLinkSettingsModal.test.js.snap +2 -1
- package/src/features/unified-share-modal/ContactRestrictionNotice.js +36 -6
- package/src/features/unified-share-modal/EmailForm.js +31 -13
- package/src/features/unified-share-modal/UnifiedShareForm.js +25 -8
- package/src/features/unified-share-modal/UnifiedShareModal.js +1 -0
- package/src/features/unified-share-modal/__tests__/ContactRestrictionNotice.test.js +55 -6
- package/src/features/unified-share-modal/__tests__/EmailForm.test.js +131 -24
- package/src/features/unified-share-modal/__tests__/UnifiedShareForm.test.js +89 -35
- package/src/features/unified-share-modal/__tests__/__snapshots__/UnifiedShareForm.test.js.snap +16 -0
- package/src/features/unified-share-modal/__tests__/__snapshots__/UnifiedShareModal.test.js.snap +17 -0
- package/src/features/unified-share-modal/flowTypes.js +4 -2
- package/src/features/unified-share-modal/messages.js +14 -8
- package/src/features/unified-share-modal/utils/__tests__/hasRestrictedContacts.test.js +24 -10
- package/src/features/unified-share-modal/utils/__tests__/isRestrictedContact.test.js +33 -0
- package/src/features/unified-share-modal/utils/hasRestrictedContacts.js +10 -3
- package/src/features/unified-share-modal/utils/isRestrictedContact.js +21 -0
- package/src/features/virtualized-table/__tests__/__snapshots__/VirtualizedTable.test.js.snap +1 -0
- package/src/icon/fill/Alert16.js.flow +3 -2
- package/src/icon/fill/Alert16.tsx +3 -2
- package/src/icon/fill/AlertBadge16.js.flow +29 -0
- package/src/icon/fill/AlertBadge16.stories.tsx +13 -0
- package/src/icon/fill/AlertBadge16.tsx +27 -0
- package/src/icon/fill/Info16.js.flow +1 -1
- package/src/icon/fill/Info16.tsx +1 -1
- package/src/icon/fill/InfoBadge16.js.flow +28 -0
- package/src/icon/fill/InfoBadge16.stories.tsx +13 -0
- package/src/icon/fill/InfoBadge16.tsx +26 -0
- package/src/icon/fill/UserSettings16.js.flow +38 -0
- package/src/icon/fill/UserSettings16.stories.tsx +13 -0
- package/src/icon/fill/UserSettings16.tsx +36 -0
- package/src/icon/line/AlertBubble16.js.flow +29 -0
- package/src/icon/line/AlertBubble16.stories.tsx +13 -0
- package/src/icon/line/AlertBubble16.tsx +27 -0
- package/src/icon/line/AvatarXBadge16.js.flow +39 -0
- package/src/icon/line/AvatarXBadge16.stories.tsx +13 -0
- package/src/icon/line/AvatarXBadge16.tsx +37 -0
- package/src/icon/line/CoEdit16.js.flow +30 -0
- package/src/icon/line/CoEdit16.stories.tsx +13 -0
- package/src/icon/line/CoEdit16.tsx +28 -0
- package/src/icon/line/Collaborations16.js.flow +30 -0
- package/src/icon/line/Collaborations16.stories.tsx +13 -0
- package/src/icon/line/Collaborations16.tsx +28 -0
- package/src/icon/line/CommentBubble16.js.flow +34 -0
- package/src/icon/line/CommentBubble16.stories.tsx +13 -0
- package/src/icon/line/CommentBubble16.tsx +32 -0
- package/src/styles/constants/_layout.scss +1 -1
- package/src/styles/constants/_media-queries.scss +2 -0
- package/src/styles/variables.js +4 -2
- package/src/styles/variables.json +4 -2
- package/src/styles/variables.ts +3 -1
- package/src/utils/__tests__/fields.test.js +23 -4
- package/src/utils/__tests__/sorter.test.js +3 -3
- package/src/utils/error.js +5 -1
- package/src/utils/fields.js +21 -3
- package/src/utils/sorter.js +2 -2
- package/es/common/types/threadedComments.js +0 -2
- package/es/common/types/threadedComments.js.flow +0 -9
- package/src/common/types/threadedComments.js +0 -9
package/i18n/fr-FR.properties
CHANGED
|
@@ -10,12 +10,30 @@ be.activitySidebar.activityFeed.annotationMissingError = Ce commentaire n'existe
|
|
|
10
10
|
be.activitySidebar.activityFeed.commentMissingError = Ce commentaire n'existe plus
|
|
11
11
|
# Error title
|
|
12
12
|
be.activitySidebar.activityFeed.feedInlineErrorTitle = Erreur
|
|
13
|
+
# Text to show to hide more replies of comment or annotation
|
|
14
|
+
be.activitySidebar.activityFeed.hideReplies = Masquer les réponses
|
|
15
|
+
# Text to show on button to start replying to comment
|
|
16
|
+
be.activitySidebar.activityFeed.reply = Répondre
|
|
17
|
+
# Text to show on reply form input placeholder
|
|
18
|
+
be.activitySidebar.activityFeed.replyInThread = Répondre dans le fil de discussion
|
|
19
|
+
# Text to show to get more replies of comment or annotation
|
|
20
|
+
be.activitySidebar.activityFeed.showReplies = Voir {repliesToLoadCount, plural, one {# réponse} other {# réponses}}
|
|
13
21
|
# Text to show when a task no longer exists
|
|
14
22
|
be.activitySidebar.activityFeed.taskMissingError = Cette tâche n'existe plus
|
|
23
|
+
# One of the dropdown options to select in order to filter comments
|
|
24
|
+
be.activitySidebarFilter.status.all = Tous les commentaires
|
|
25
|
+
# One of the dropdown options to select in order to filter comments
|
|
26
|
+
be.activitySidebarFilter.status.open = Commentaires non résolus
|
|
15
27
|
# Label for add action
|
|
16
28
|
be.add = Ajouter
|
|
17
29
|
# Text to display when app is disabled by applied access policy
|
|
18
30
|
be.additionalTab.blockedByShieldAccessPolicy = L'utilisation de cette application a été bloquée par une règle de sécurité.
|
|
31
|
+
# Error message when an annotation deletion fails
|
|
32
|
+
be.annotationThread.errorDeleteAnnotation = Une erreur s'est produite lors de la suppression de cet élément.
|
|
33
|
+
# Error message when an annotation update fails
|
|
34
|
+
be.annotationThread.errorEditAnnotation = Cette annotation n'a pas pu être modifiée.
|
|
35
|
+
# Error message when an annotation fetch fails
|
|
36
|
+
be.annotattionThread.errorFetchAnnotation = L'annotation n'a pas pu être récupérée.
|
|
19
37
|
# Error message when an app activity deletion fails
|
|
20
38
|
be.api.appActivityDeleteErrorMessage = Une erreur s'est produite lors de la suppression de cet élément.
|
|
21
39
|
# Error message when a comment creation fails due to a conflict
|
|
@@ -26,6 +44,8 @@ be.api.commentCreateErrorMessage = Une erreur s'est produite lors de la créatio
|
|
|
26
44
|
be.api.commentDeleteErrorMessage = Une erreur s'est produite lors de la suppression de ce commentaire.
|
|
27
45
|
# Error message when an annotation comment update fails
|
|
28
46
|
be.api.commentUpdateErrorMessage = Ce commentaire n'a pas pu être modifié.
|
|
47
|
+
# Error message when fetching for comment replies fails
|
|
48
|
+
be.api.repliesFetchErrorMessage = Les réponses à ce commentaire n'ont pas pu être chargées.
|
|
29
49
|
# Title shown when an error occurs performing an action on a task
|
|
30
50
|
be.api.taskActionErrorTitle = Erreur
|
|
31
51
|
# Error message when approving a task fails
|
|
@@ -62,6 +82,38 @@ be.choose = Sélectionner
|
|
|
62
82
|
be.close = Fermer
|
|
63
83
|
# Message to the user to collapse the Transcript entries
|
|
64
84
|
be.collapse = Réduire
|
|
85
|
+
# Text shown to users when opening the content insights flyout and there is an error
|
|
86
|
+
be.contentInsights.contentAnalyticsErrorText = Il y a eu un problème de chargement du contenu. Veuillez réessayer.
|
|
87
|
+
# Message shown when the user does not have access to view content insights anymore
|
|
88
|
+
be.contentInsights.contentAnalyticsPermissionError = Oups ! Vous n'avez plus accès à l'affichage des informations sur le contenu.
|
|
89
|
+
# Title for Content Insights section in file sidebar
|
|
90
|
+
be.contentInsights.contentInsightsTitle = Aperçus du contenu
|
|
91
|
+
# Label for the chart displaying the number of downloads over the selected time period
|
|
92
|
+
be.contentInsights.downloadGraphLabel = Graphique affichant le nombre de téléchargements sur la période sélectionnée
|
|
93
|
+
# Title for the content insights graph card regarding number of Previews
|
|
94
|
+
be.contentInsights.downloadGraphType = Téléchargements
|
|
95
|
+
# Open Content Insights button which opens the Content Insights Modal
|
|
96
|
+
be.contentInsights.openContentInsightsButton = Voir les détails
|
|
97
|
+
# Label for the chart displaying the number of users over the selected time period
|
|
98
|
+
be.contentInsights.peopleGraphLabel = Graphique affichant le nombre d'utilisateurs sur la période sélectionnée
|
|
99
|
+
# Title used to represent how many users have interacted with the file
|
|
100
|
+
be.contentInsights.peopleTitle = Utilisateurs
|
|
101
|
+
# Label for the chart displaying the number of previews over the selected time period
|
|
102
|
+
be.contentInsights.previewGraphLabel = Graphique affichant le nombre de prévisualisations sur la période sélectionnée
|
|
103
|
+
# Title for the content insights graph card regarding number of Previews
|
|
104
|
+
be.contentInsights.previewGraphType = Prévisualisations
|
|
105
|
+
# Label for the arrow indicator in the trend pill
|
|
106
|
+
be.contentInsights.trendDown = Tendance à la baisse
|
|
107
|
+
# Trend description for the content insights graph card regarding the count of events from the past month
|
|
108
|
+
be.contentInsights.trendMonth = Mois passé
|
|
109
|
+
# Trend description for the content insights graph card regarding the count of events from the past three months
|
|
110
|
+
be.contentInsights.trendThreeMonths = 3 DERNIERS MOIS
|
|
111
|
+
# Label for the arrow indicator in the trend pill
|
|
112
|
+
be.contentInsights.trendUp = Tendance à la hausse
|
|
113
|
+
# Trend description for the content insights graph card regarding the count of events from the past week
|
|
114
|
+
be.contentInsights.trendWeek = Semaine passée
|
|
115
|
+
# Trend description for the content insights graph card regarding the count of events from the past year
|
|
116
|
+
be.contentInsights.trendYear = Année passée
|
|
65
117
|
# Message that appears when the request for the ContentSharing Element is malformed.
|
|
66
118
|
be.contentSharing.badRequestError = La demande pour cet élément n'était pas conforme.
|
|
67
119
|
# Message that appears when collaborators cannot be retrieved in the ContentSharing Element.
|
|
@@ -92,6 +144,10 @@ be.contentSidebar.activityFeed.annotationActivity.annotationActivityDeletePrompt
|
|
|
92
144
|
be.contentSidebar.activityFeed.annotationActivity.annotationActivityEditMenuItem = Modifier
|
|
93
145
|
# Full data and time for annotation title
|
|
94
146
|
be.contentSidebar.activityFeed.annotationActivity.annotationActivityPostedFullDateTime = {time, date, full} à {time, time, short}
|
|
147
|
+
# Text to show on menu item to resolve the annotation comment
|
|
148
|
+
be.contentSidebar.activityFeed.annotationActivity.annotationActivityResolveMenuItem = Résolu
|
|
149
|
+
# Text to show on menu item to unresolve the annotation comment
|
|
150
|
+
be.contentSidebar.activityFeed.annotationActivity.annotationActivityUnresolveMenuItem = Non résolu
|
|
95
151
|
# Annotation activity item link shown on annotation activity
|
|
96
152
|
be.contentSidebar.activityFeed.annotationActivityPageItem = Page {number}
|
|
97
153
|
# Annotation activity item link shown on annotation activity for previous file version
|
|
@@ -106,6 +162,10 @@ be.contentSidebar.activityFeed.comment.commentDeletePrompt = Voulez-vous vraimen
|
|
|
106
162
|
be.contentSidebar.activityFeed.comment.commentEditMenuItem = Modifier
|
|
107
163
|
# Comment posted full date time for title
|
|
108
164
|
be.contentSidebar.activityFeed.comment.commentPostedFullDateTime = {time, date, full} à {time, time, short}
|
|
165
|
+
# Text to show on menu item to resolve the comment
|
|
166
|
+
be.contentSidebar.activityFeed.comment.commentResolveMenuItem = Résolu
|
|
167
|
+
# Text to show on menu item to unresolve the comment
|
|
168
|
+
be.contentSidebar.activityFeed.comment.commentUnresolveMenuItem = Non résolu
|
|
109
169
|
# Placeholder for approvers input
|
|
110
170
|
be.contentSidebar.activityFeed.commentForm.approvalAddAssignee = Ajoutez un destinataire
|
|
111
171
|
# Label for checkbox to add approvers to a comment
|
|
@@ -132,6 +192,14 @@ be.contentSidebar.activityFeed.commentForm.commentPost = Publier
|
|
|
132
192
|
be.contentSidebar.activityFeed.commentForm.commentWrite = Écrivez un commentaire
|
|
133
193
|
# Show original button for showing original comment
|
|
134
194
|
be.contentSidebar.activityFeed.commmon.showOriginalMessage = Afficher la publication d'origine
|
|
195
|
+
# Indicator of resolved status of Comment or Annotation, visible in Feed Item (in upper-case in supported language)
|
|
196
|
+
be.contentSidebar.activityFeed.common.activityStatusResolved = Résolu
|
|
197
|
+
# Label indicating that message was edited, should be lowercase
|
|
198
|
+
be.contentSidebar.activityFeed.common.editedMessage = (modifié)
|
|
199
|
+
# See less button for hiding part of long message
|
|
200
|
+
be.contentSidebar.activityFeed.common.seeLessMessage = Afficher moins
|
|
201
|
+
# See more button for showing whole long message
|
|
202
|
+
be.contentSidebar.activityFeed.common.seeMoreMessage = Afficher plus
|
|
135
203
|
# Translate button for translating comment
|
|
136
204
|
be.contentSidebar.activityFeed.common.translateMessage = Traduire
|
|
137
205
|
# Tooltip text for any task icon, explaining that the task only needs one assignee to complete.
|
|
@@ -514,6 +582,8 @@ be.shareDialogText = Lien partagé :
|
|
|
514
582
|
be.sidebarAccessStats = Statistiques d'accès
|
|
515
583
|
# Title for the preview activity feed.
|
|
516
584
|
be.sidebarActivityTitle = Activité
|
|
585
|
+
# Title for the sidebar content insights.
|
|
586
|
+
be.sidebarContentInsights = Aperçus du contenu
|
|
517
587
|
# Title for the preview details sidebar.
|
|
518
588
|
be.sidebarDetailsTitle = Détails
|
|
519
589
|
# Generic error content for file fetching.
|
|
@@ -1210,6 +1280,8 @@ boxui.securityControls.downloadExternal = Téléchargement restreint sur Box Dri
|
|
|
1210
1280
|
boxui.securityControls.externalCollabBlock = Collaboration externe restreinte.
|
|
1211
1281
|
# Bullet point that summarizes external collaboration restriction applied to classification
|
|
1212
1282
|
boxui.securityControls.externalCollabDomainList = Collaboration externe limitée aux domaines approuvés.
|
|
1283
|
+
# The text of a link to a help article for more information.
|
|
1284
|
+
boxui.securityControls.linkForMoreDetails = Cliquez ici pour en savoir plus.
|
|
1213
1285
|
# Bullet point that summarizes mobile download restrictions applied to classification, when restriction applies to external users
|
|
1214
1286
|
boxui.securityControls.mobileDownloadExternal = Téléchargement restreint sur mobile pour les utilisateurs externes.
|
|
1215
1287
|
# Bullet point that summarizes mobile download restrictions applied to classification, when restriction applies to external users and managed users except Owners/Co-Owners
|
|
@@ -1264,6 +1336,8 @@ boxui.securityControls.shortSign = Des restrictions s'appliquent à Sign
|
|
|
1264
1336
|
boxui.securityControls.shortWatermarking = Filigrane appliqué
|
|
1265
1337
|
# Button to display security controls modal
|
|
1266
1338
|
boxui.securityControls.viewAll = Tout afficher
|
|
1339
|
+
# Bullet point that summarizes watermarking applied to classification
|
|
1340
|
+
boxui.securityControls.watermarkingApplied = Le filigrane sera appliqué.
|
|
1267
1341
|
# Bullet point that summarizes web download restrictions applied to classification, when restriction applies to external users
|
|
1268
1342
|
boxui.securityControls.webDownloadExternal = Téléchargement restreint sur le Web pour les utilisateurs externes.
|
|
1269
1343
|
# Bullet point that summarizes web download restrictions applied to classification, when restriction applies to external users and managed users except Owners/Co-Owners
|
|
@@ -1513,15 +1587,17 @@ boxui.unifiedShare.collaborators.expirationTooltipClickableText = Date d'expirat
|
|
|
1513
1587
|
# Text to show when the number of contact email addresses displayed on a tooltip exceeds the maximum amount that can be displayed
|
|
1514
1588
|
boxui.unifiedShare.contactEmailsTooltipText = {emails}, et {remainingEmailsCount} autre(s)
|
|
1515
1589
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1516
|
-
boxui.unifiedShare.contactRestrictionNotice =
|
|
1590
|
+
boxui.unifiedShare.contactRestrictionNotice = {count, plural, one {{count} invitation} other {{count} invitations}} ne peut être envoyé car la collaboration externe est restreinte en raison de la politique de sécurité appliquée.
|
|
1517
1591
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to one or more of the selected contacts
|
|
1518
|
-
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier =
|
|
1592
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = {count, plural, one {{count} invitation} other {{count} invitations}} ne peut être envoyé en raison d'une politique de sécurité.
|
|
1519
1593
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts
|
|
1520
1594
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular = Les invitations ne peuvent pas être envoyées à {email} à cause d'une politique de sécurité.
|
|
1595
|
+
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts, which is a group
|
|
1596
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup = Les invitations ne peuvent pas être envoyées à « {groupName} » à cause d'une politique de sécurité.
|
|
1521
1597
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1522
1598
|
boxui.unifiedShare.contactRestrictionNoticeSingular = Les invitations ne peuvent pas être envoyées à {email}, car la collaboration externe est limitée en raison de la règle de sécurité appliquée.
|
|
1523
1599
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
|
1524
|
-
boxui.unifiedShare.contactRestrictionRemoveButtonLabel =
|
|
1600
|
+
boxui.unifiedShare.contactRestrictionRemoveButtonLabel = Supprimer pour continuer
|
|
1525
1601
|
# Error message when more than the maximum number of contacts is entered
|
|
1526
1602
|
boxui.unifiedShare.contactsExceedLimitError = Oups ! Le nombre maximal de collaborateurs pouvant être ajoutés en même temps est de {maxContacts} collaborateurs. Veuillez réessayer en divisant vos invitations en plusieurs lots.
|
|
1527
1603
|
# Text shown in share modal when there is at least one external collaborators
|
|
@@ -1575,13 +1651,13 @@ boxui.unifiedShare.inviteDisabledWeblinkTooltip = Impossible d'ajouter des colla
|
|
|
1575
1651
|
# Label of the field where a user designates who to invite to collaborate on an item
|
|
1576
1652
|
boxui.unifiedShare.inviteFieldLabel = Inviter des utilisateurs
|
|
1577
1653
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts and business justifications are allowed for bypassing restrictions
|
|
1578
|
-
boxui.unifiedShare.justifiableContactRestrictionNotice = Ce contenu nécessite
|
|
1654
|
+
boxui.unifiedShare.justifiableContactRestrictionNotice = Ce contenu nécessite une justification commerciale pour {count, plural, one {{count} invitation} other {{count} invitations}}. Veuillez sélectionner une justification d'activité ci-dessous.
|
|
1579
1655
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts and business justifications are allowed for bypassing restrictions
|
|
1580
1656
|
boxui.unifiedShare.justifiableContactRestrictionNoticeSingular = Ce contenu nécessite un justificatif opérationnel pour inviter {email}. Sélectionnez un justificatif opérationnel ci-dessous.
|
|
1581
1657
|
# Label for the button that removes restricted contacts on the contact restriction notice when business justifications are allowed for bypassing restrictions
|
|
1582
|
-
boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel = Vous pouvez
|
|
1658
|
+
boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel = Vous pouvez aussi supprimer pour continuer
|
|
1583
1659
|
# The error message that is displayed when a user tries to send invitations to external collaborators, but a business justification is required before proceeding
|
|
1584
|
-
boxui.unifiedShare.justificationRequiredError = Sélectionnez
|
|
1660
|
+
boxui.unifiedShare.justificationRequiredError = Sélectionnez une justification ou supprimez-la pour continuer
|
|
1585
1661
|
# The placeholder text of the select field that allows selecting a business justification reason
|
|
1586
1662
|
boxui.unifiedShare.justificationSelectPlaceholder = Sélectionner un justificatif
|
|
1587
1663
|
# Call to action text for allowing the user to create a new shared link
|
|
@@ -1637,7 +1713,7 @@ boxui.unifiedShare.removeLinkConfirmationTitle = Supprimer le lien partagé
|
|
|
1637
1713
|
# Tooltip description for not having access to remove link
|
|
1638
1714
|
boxui.unifiedShare.removeLinkTooltip = Vous n'êtes pas autorisé à supprimer le lien.
|
|
1639
1715
|
# The error message that is displayed when a user tries to send invitations to external collaborators, but restricted contacts need to be removed before proceeding
|
|
1640
|
-
boxui.unifiedShare.restrictedContactsError =
|
|
1716
|
+
boxui.unifiedShare.restrictedContactsError = Supprimer pour continuer
|
|
1641
1717
|
# Tooltip text for email shared link button (title-case)
|
|
1642
1718
|
boxui.unifiedShare.sendSharedLink = Envoyer un lien partagé
|
|
1643
1719
|
# Field label for shared link recipient list (title-case)
|
package/i18n/hi-IN.js
CHANGED
|
@@ -5,14 +5,24 @@ export default {
|
|
|
5
5
|
"be.activitySidebar.activityFeed.annotationMissingError": "यह टिप्पणी अब मौजूद नहीं है",
|
|
6
6
|
"be.activitySidebar.activityFeed.commentMissingError": "यह टिप्पणी अब मौजूद नहीं है",
|
|
7
7
|
"be.activitySidebar.activityFeed.feedInlineErrorTitle": "त्रुटि",
|
|
8
|
+
"be.activitySidebar.activityFeed.hideReplies": "जवाबों को छिपाएं",
|
|
9
|
+
"be.activitySidebar.activityFeed.reply": "जवाब दें",
|
|
10
|
+
"be.activitySidebar.activityFeed.replyInThread": "थ्रेड में जवाब दें",
|
|
11
|
+
"be.activitySidebar.activityFeed.showReplies": "{repliesToLoadCount, plural, one {# जवाब} other {# जवाब}} देखें",
|
|
8
12
|
"be.activitySidebar.activityFeed.taskMissingError": "यह कार्य अब मौजूद नहीं है",
|
|
13
|
+
"be.activitySidebarFilter.status.all": "सभी टिप्पणियाँ",
|
|
14
|
+
"be.activitySidebarFilter.status.open": "हल नहीं की गईं टिप्पणियाँ",
|
|
9
15
|
"be.add": "जोड़ें",
|
|
10
16
|
"be.additionalTab.blockedByShieldAccessPolicy": "सुरक्षा नीति के कारण इस ऐप का उपयोग ब्लॉक कर दिया गया है.",
|
|
17
|
+
"be.annotationThread.errorDeleteAnnotation": "यह आइटम हटाने में एक त्रुटि हुई.",
|
|
18
|
+
"be.annotationThread.errorEditAnnotation": "इस टिप्पणी को संशोधित नहीं किया जा सका.",
|
|
19
|
+
"be.annotattionThread.errorFetchAnnotation": "टिप्पणी को ढूंढा नहीं जा सका.",
|
|
11
20
|
"be.api.appActivityDeleteErrorMessage": "यह आइटम हटाने में एक त्रुटि हुई.",
|
|
12
21
|
"be.api.commentCreateConflictMessage": "यह टिप्पणी पहले से ही मौजूद है.",
|
|
13
22
|
"be.api.commentCreateErrorMessage": "यह टिप्पणी बनाने में एक त्रुटि हुई.",
|
|
14
23
|
"be.api.commentDeleteErrorMessage": "यह टिप्पणी हटाने में एक त्रुटि हुई.",
|
|
15
24
|
"be.api.commentUpdateErrorMessage": "यह टिप्पणी संशोधित नहीं की जा सकी.",
|
|
25
|
+
"be.api.repliesFetchErrorMessage": "इस टिप्पणी के जवाबों को लोड नहीं किया जा सका.",
|
|
16
26
|
"be.api.taskActionErrorTitle": "त्रुटि",
|
|
17
27
|
"be.api.taskApproveErrorMessage": "कार्य अनुमोदित करने के दौरान एक त्रुटि हुई. कृपया पेज रीफ़्रेश करें और फिर से कोशिश करें.",
|
|
18
28
|
"be.api.taskCompleteErrorMessage": "कार्य पूरा करने के दौरान एक त्रुटि हुई. कृपया पेज रीफ़्रेश करें और फिर से कोशिश करें.",
|
|
@@ -31,6 +41,22 @@ export default {
|
|
|
31
41
|
"be.choose": "चुनें",
|
|
32
42
|
"be.close": "बंद करें",
|
|
33
43
|
"be.collapse": "संकुचित करें",
|
|
44
|
+
"be.contentInsights.contentAnalyticsErrorText": "सामग्री इनसाइट को लोड करने में एक समस्या का सामना करना पड़ा था. कृपया फिर से कोशिश करें.",
|
|
45
|
+
"be.contentInsights.contentAnalyticsPermissionError": "ओह! अब आपके पास सामग्री इनसाइट देखने का एक्सेस नहीं है.",
|
|
46
|
+
"be.contentInsights.contentInsightsTitle": "सामग्री इनसाइट",
|
|
47
|
+
"be.contentInsights.downloadGraphLabel": "चयनित समय अवधि पर डाउनलोड की संख्या को प्रदर्शित करने वाला चार्ट",
|
|
48
|
+
"be.contentInsights.downloadGraphType": "डाउनलोड्स",
|
|
49
|
+
"be.contentInsights.openContentInsightsButton": "विवरण देखें",
|
|
50
|
+
"be.contentInsights.peopleGraphLabel": "चयनित समय अवधि पर उपयोगकर्ताओं की संख्या को प्रदर्शित करने वाला चार्ट",
|
|
51
|
+
"be.contentInsights.peopleTitle": "लोग",
|
|
52
|
+
"be.contentInsights.previewGraphLabel": "चयनित समय अवधि पर पूर्वावलोकन की संख्या को प्रदर्शित करने वाला चार्ट",
|
|
53
|
+
"be.contentInsights.previewGraphType": "पूर्वावलोकन",
|
|
54
|
+
"be.contentInsights.trendDown": "ट्रेंडिंग डाउन",
|
|
55
|
+
"be.contentInsights.trendMonth": "पिछला महीना",
|
|
56
|
+
"be.contentInsights.trendThreeMonths": "पिछले 3 महीने",
|
|
57
|
+
"be.contentInsights.trendUp": "ट्रेंडिंग अप",
|
|
58
|
+
"be.contentInsights.trendWeek": "पिछला सप्ताह",
|
|
59
|
+
"be.contentInsights.trendYear": "पिछला साल",
|
|
34
60
|
"be.contentSharing.badRequestError": "इस आइटम के लिए अनुरोध दोषपूर्ण था.",
|
|
35
61
|
"be.contentSharing.collaboratorsLoadingError": "इस आइटम के लिए सहयोगियों को फिर से प्राप्त नहीं किया जा सका.",
|
|
36
62
|
"be.contentSharing.getContactsError": "संपर्क फिर से प्राप्त नहीं किए जा सके.",
|
|
@@ -46,6 +72,8 @@ export default {
|
|
|
46
72
|
"be.contentSidebar.activityFeed.annotationActivity.annotationActivityDeletePrompt": "क्या आप वाकई इस टिप्पणी को स्थायी रूप से हटाना चाहते हैं?",
|
|
47
73
|
"be.contentSidebar.activityFeed.annotationActivity.annotationActivityEditMenuItem": "संशोधित करें",
|
|
48
74
|
"be.contentSidebar.activityFeed.annotationActivity.annotationActivityPostedFullDateTime": "{time, date, full} को {time, time, short} बजे",
|
|
75
|
+
"be.contentSidebar.activityFeed.annotationActivity.annotationActivityResolveMenuItem": "हल करें",
|
|
76
|
+
"be.contentSidebar.activityFeed.annotationActivity.annotationActivityUnresolveMenuItem": "हल न करें",
|
|
49
77
|
"be.contentSidebar.activityFeed.annotationActivityPageItem": "पेज {number}",
|
|
50
78
|
"be.contentSidebar.activityFeed.annotationActivityVersionLink": "वर्ज़न {number}",
|
|
51
79
|
"be.contentSidebar.activityFeed.annotationActivityVersionUnavailable": "वर्ज़न उपलब्ध नहीं है",
|
|
@@ -53,6 +81,8 @@ export default {
|
|
|
53
81
|
"be.contentSidebar.activityFeed.comment.commentDeletePrompt": "क्या आप वाकई इस टिप्पणी को स्थायी रूप से हटाना चाहते हैं?",
|
|
54
82
|
"be.contentSidebar.activityFeed.comment.commentEditMenuItem": "संशोधित करें",
|
|
55
83
|
"be.contentSidebar.activityFeed.comment.commentPostedFullDateTime": "{time, date, full} को {time, time, short} बजे",
|
|
84
|
+
"be.contentSidebar.activityFeed.comment.commentResolveMenuItem": "हल करें",
|
|
85
|
+
"be.contentSidebar.activityFeed.comment.commentUnresolveMenuItem": "हल न करें",
|
|
56
86
|
"be.contentSidebar.activityFeed.commentForm.approvalAddAssignee": "एक असाइनी जोड़ें",
|
|
57
87
|
"be.contentSidebar.activityFeed.commentForm.approvalAddTask": "कार्य जोड़ें",
|
|
58
88
|
"be.contentSidebar.activityFeed.commentForm.approvalAddTaskTooltip": "किसी व्यक्ति को कोई कार्य असाइन करने पर टिप्पणी बॉक्स में संदेश के साथ उन्हें एक सूचना भेजी जाएगी और उन्हें कार्य को स्वीकृत या अस्वीकृत करने की अनुमति होगी.",
|
|
@@ -66,6 +96,10 @@ export default {
|
|
|
66
96
|
"be.contentSidebar.activityFeed.commentForm.commentPost": "पोस्ट",
|
|
67
97
|
"be.contentSidebar.activityFeed.commentForm.commentWrite": "एक टिप्पणी लिखें",
|
|
68
98
|
"be.contentSidebar.activityFeed.commmon.showOriginalMessage": "मूल दिखाएँ",
|
|
99
|
+
"be.contentSidebar.activityFeed.common.activityStatusResolved": "हल किया गया",
|
|
100
|
+
"be.contentSidebar.activityFeed.common.editedMessage": "(edited)",
|
|
101
|
+
"be.contentSidebar.activityFeed.common.seeLessMessage": "See less",
|
|
102
|
+
"be.contentSidebar.activityFeed.common.seeMoreMessage": "See more",
|
|
69
103
|
"be.contentSidebar.activityFeed.common.translateMessage": "अनुवाद करें",
|
|
70
104
|
"be.contentSidebar.activityFeed.task.taskAnyAffordanceTooltip": "इस कार्य को पूर्ण करने के लिए केवल एक असाइनी की आवश्यकता है",
|
|
71
105
|
"be.contentSidebar.activityFeed.task.taskDeleteMenuItem": "कार्य हटाएँ",
|
|
@@ -257,6 +291,7 @@ export default {
|
|
|
257
291
|
"be.shareDialogText": "शेयर्ड लिंक:",
|
|
258
292
|
"be.sidebarAccessStats": "एक्सेस संबंधी आंकड़े",
|
|
259
293
|
"be.sidebarActivityTitle": "गतिविधि",
|
|
294
|
+
"be.sidebarContentInsights": "सामग्री इनसाइट",
|
|
260
295
|
"be.sidebarDetailsTitle": "विवरण",
|
|
261
296
|
"be.sidebarFileFetchingErrorContent": "आपकी Box फ़ाइल प्राप्त करने के दौरान एक त्रुटि हुई. कृपया पेज रीफ़्रेश करें और फिर से कोशिश करें.",
|
|
262
297
|
"be.sidebarHide": "साइडबार छिपाएं",
|
|
@@ -605,6 +640,7 @@ export default {
|
|
|
605
640
|
"boxui.securityControls.downloadExternal": "बाहरी उपयोगकर्ताओं के लिए Box Drive पर डाउनलोड प्रतिबंधित है.",
|
|
606
641
|
"boxui.securityControls.externalCollabBlock": "बाहरी सहयोग प्रतिबंधित.",
|
|
607
642
|
"boxui.securityControls.externalCollabDomainList": "बाहरी सहयोग स्वीकृत डोमेन तक ही सीमित है.",
|
|
643
|
+
"boxui.securityControls.linkForMoreDetails": "अधिक जानकारी के लिए यहां क्लिक करें.",
|
|
608
644
|
"boxui.securityControls.mobileDownloadExternal": "बाहरी उपयोगकर्ताओं के लिए मोबाइल पर डाउनलोड प्रतिबंधित है.",
|
|
609
645
|
"boxui.securityControls.mobileDownloadExternalOwners": "स्वामी/सह-स्वामी को छोड़कर, मोबाइल पर डाउनलोड करना प्रतिबंधित है. साथ ही बाहरी उपयोगकर्ताओं के लिए भी डाउनलोड प्रतिबंधित है.",
|
|
610
646
|
"boxui.securityControls.mobileDownloadExternalOwnersEditors": "स्वामी/सह-स्वामी/संपादक को छोड़कर, मोबाइल पर डाउनलोड करना प्रतिबंधित है. साथ ही बाहरी उपयोगकर्ताओं के लिए भी डाउनलोड प्रतिबंधित है.",
|
|
@@ -632,6 +668,7 @@ export default {
|
|
|
632
668
|
"boxui.securityControls.shortSign": "हस्ताक्षर प्रतिबंध लागू होते हैं",
|
|
633
669
|
"boxui.securityControls.shortWatermarking": "वाटरमार्किंग लागू होती है",
|
|
634
670
|
"boxui.securityControls.viewAll": "सभी देखें",
|
|
671
|
+
"boxui.securityControls.watermarkingApplied": "वॉटरमार्किंग को लागू किया जाएगा.",
|
|
635
672
|
"boxui.securityControls.webDownloadExternal": "बाहरी उपयोगकर्ताओं के लिए वेब पर डाउनलोड प्रतिबंधित है.",
|
|
636
673
|
"boxui.securityControls.webDownloadExternalOwners": "स्वामी/सह-स्वामी को छोड़कर, वेब पर डाउनलोड करना प्रतिबंधित है. साथ ही बाहरी उपयोगकर्ताओं के लिए भी डाउनलोड प्रतिबंधित है.",
|
|
637
674
|
"boxui.securityControls.webDownloadExternalOwnersEditors": "स्वामी/सह-स्वामी/संपादक को छोड़कर, वेब पर डाउनलोड करना प्रतिबंधित है. साथ ही बाहरी उपयोगकर्ताओं के लिए भी डाउनलोड प्रतिबंधित है.",
|
|
@@ -756,11 +793,12 @@ export default {
|
|
|
756
793
|
"boxui.unifiedShare.collaboratorListTitle": "‘{itemName}’ के लोग",
|
|
757
794
|
"boxui.unifiedShare.collaborators.expirationTooltipClickableText": "एक्सेस की समय सीमा {date} पर समाप्त होती है. विवरण के लिए क्लिक करें.",
|
|
758
795
|
"boxui.unifiedShare.contactEmailsTooltipText": "{emails}, और {remainingEmailsCount} अधिक",
|
|
759
|
-
"boxui.unifiedShare.contactRestrictionNotice": "{count, plural, one {{count}
|
|
760
|
-
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrier": "
|
|
796
|
+
"boxui.unifiedShare.contactRestrictionNotice": "{count, plural, one {{count} आमंत्रण} other {{count} आमंत्रणों}} को भेजा नहीं जा सकता क्योंकि लागू सुरक्षा नीति के कारण बाहरी सहयोग प्रतिबंधित है.",
|
|
797
|
+
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrier": "{count, plural, one {{count} आमंत्रण} other {{count} आमंत्रण}} को एक सुरक्षा नीति के कारण भेजा नहीं जा सकता.",
|
|
761
798
|
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular": "एक सुरक्षा नीति के कारण {email} को ईमेल नहीं भेजा जा सकता है.",
|
|
799
|
+
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup": "एक सुरक्षा नीति के कारण \"{groupName}\" को आमंत्रण भेजा नहीं जा सकता है.",
|
|
762
800
|
"boxui.unifiedShare.contactRestrictionNoticeSingular": "{email} पर आमंत्रण नहीं भेजे जा सकते क्योंकि लागू सुरक्षा नीति के कारण बाहरी सहयोग प्रतिबंधित है.",
|
|
763
|
-
"boxui.unifiedShare.contactRestrictionRemoveButtonLabel": "
|
|
801
|
+
"boxui.unifiedShare.contactRestrictionRemoveButtonLabel": "जारी रखने के लिए हटाएं",
|
|
764
802
|
"boxui.unifiedShare.contactsExceedLimitError": "ओह! एक बार में जोड़े जा सकने वाले सहयोगियों की अधिकतम संख्या {maxContacts} है. अपने आमंत्रणों को बैच में विभाजित करके फिर से प्रयास करें.",
|
|
765
803
|
"boxui.unifiedShare.contentSharedWithExternalCollaborators": "यह सामग्री बाहरी सहयोगियों के साथ शेयर की जाएगी.",
|
|
766
804
|
"boxui.unifiedShare.coownerLevelButtonLabel": "सह-स्वामी के रूप में आमंत्रित करें",
|
|
@@ -787,10 +825,10 @@ export default {
|
|
|
787
825
|
"boxui.unifiedShare.inviteDisabledTooltip": "सहयोगियों को आमंत्रित करने के लिए आपके पास अनुमति नहीं है.",
|
|
788
826
|
"boxui.unifiedShare.inviteDisabledWeblinkTooltip": "सहयोगियों को बुकमार्क्स में नहीं जोड़ा जा सकता है.",
|
|
789
827
|
"boxui.unifiedShare.inviteFieldLabel": "लोगों को आमंत्रित करें",
|
|
790
|
-
"boxui.unifiedShare.justifiableContactRestrictionNotice": "{count, plural, one {{count}
|
|
828
|
+
"boxui.unifiedShare.justifiableContactRestrictionNotice": "इस सामग्री के लिए {count, plural, one {{count} आमंत्रण} other {{count} आमंत्रणों}} से संबंधित एक व्यावसायिक प्रमाणिकता की आवश्यकता है. कृपया नीचे एक व्यावसायिक प्रामाणिकता का चयन करें.",
|
|
791
829
|
"boxui.unifiedShare.justifiableContactRestrictionNoticeSingular": "इस सामग्री के लिए {email} को आमंत्रित करने हेतु एक व्यावसायिक प्रामाणिकता की आवश्यकता है. कृपया नीचे व्यावसायिक प्रामाणिकता का चयन करें.",
|
|
792
|
-
"boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel": "वैकल्पिक रूप से,
|
|
793
|
-
"boxui.unifiedShare.justificationRequiredError": "जारी रखने के लिए
|
|
830
|
+
"boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel": "वैकल्पिक रूप से, जारी रखने के लिए हटाएं",
|
|
831
|
+
"boxui.unifiedShare.justificationRequiredError": "एक औचित्य या जारी रखने के लिए हटाएं का चयन करें",
|
|
794
832
|
"boxui.unifiedShare.justificationSelectPlaceholder": "प्रामाणिकता चुनें",
|
|
795
833
|
"boxui.unifiedShare.linkShareOff": "शेयर्ड लिंक बनाएँ",
|
|
796
834
|
"boxui.unifiedShare.linkShareOn": "शेयर्ड लिंक बनाया गया",
|
|
@@ -818,7 +856,7 @@ export default {
|
|
|
818
856
|
"boxui.unifiedShare.removeLinkConfirmationDescription": "इससे शेयर्ड लिंक स्थायी रूप से निकाल दी जाएगी. यदि इस आइटम को अन्य साइट पर एम्बेडेड किया जाता है तो इस पर एक्सेस प्राप्त नहीं की जा सकेगी. साथ ही साथ सभी कस्टम गुण, सेटिंग और समापन अवधि भी निकाल दी जाएंगी. क्या आप जारी रखना चाहते हैं?",
|
|
819
857
|
"boxui.unifiedShare.removeLinkConfirmationTitle": "शेयर्ड लिंक निकालें",
|
|
820
858
|
"boxui.unifiedShare.removeLinkTooltip": "आपके पास लिंक हटाने की अनुमति नहीं है.",
|
|
821
|
-
"boxui.unifiedShare.restrictedContactsError": "जारी रखने के लिए
|
|
859
|
+
"boxui.unifiedShare.restrictedContactsError": "जारी रखने के लिए हटाएं",
|
|
822
860
|
"boxui.unifiedShare.sendSharedLink": "शेयर्ड लिंक भेजें",
|
|
823
861
|
"boxui.unifiedShare.sendSharedLinkFieldLabel": "शेयर्ड लिंक ईमेल करें",
|
|
824
862
|
"boxui.unifiedShare.settingsButtonLabel": "शेयर्ड लिंक सेटिंग का पॉपअप खोलें",
|
package/i18n/hi-IN.properties
CHANGED
|
@@ -10,12 +10,30 @@ be.activitySidebar.activityFeed.annotationMissingError = यह टिप्प
|
|
|
10
10
|
be.activitySidebar.activityFeed.commentMissingError = यह टिप्पणी अब मौजूद नहीं है
|
|
11
11
|
# Error title
|
|
12
12
|
be.activitySidebar.activityFeed.feedInlineErrorTitle = त्रुटि
|
|
13
|
+
# Text to show to hide more replies of comment or annotation
|
|
14
|
+
be.activitySidebar.activityFeed.hideReplies = जवाबों को छिपाएं
|
|
15
|
+
# Text to show on button to start replying to comment
|
|
16
|
+
be.activitySidebar.activityFeed.reply = जवाब दें
|
|
17
|
+
# Text to show on reply form input placeholder
|
|
18
|
+
be.activitySidebar.activityFeed.replyInThread = थ्रेड में जवाब दें
|
|
19
|
+
# Text to show to get more replies of comment or annotation
|
|
20
|
+
be.activitySidebar.activityFeed.showReplies = {repliesToLoadCount, plural, one {# जवाब} other {# जवाब}} देखें
|
|
13
21
|
# Text to show when a task no longer exists
|
|
14
22
|
be.activitySidebar.activityFeed.taskMissingError = यह कार्य अब मौजूद नहीं है
|
|
23
|
+
# One of the dropdown options to select in order to filter comments
|
|
24
|
+
be.activitySidebarFilter.status.all = सभी टिप्पणियाँ
|
|
25
|
+
# One of the dropdown options to select in order to filter comments
|
|
26
|
+
be.activitySidebarFilter.status.open = हल नहीं की गईं टिप्पणियाँ
|
|
15
27
|
# Label for add action
|
|
16
28
|
be.add = जोड़ें
|
|
17
29
|
# Text to display when app is disabled by applied access policy
|
|
18
30
|
be.additionalTab.blockedByShieldAccessPolicy = सुरक्षा नीति के कारण इस ऐप का उपयोग ब्लॉक कर दिया गया है.
|
|
31
|
+
# Error message when an annotation deletion fails
|
|
32
|
+
be.annotationThread.errorDeleteAnnotation = यह आइटम हटाने में एक त्रुटि हुई.
|
|
33
|
+
# Error message when an annotation update fails
|
|
34
|
+
be.annotationThread.errorEditAnnotation = इस टिप्पणी को संशोधित नहीं किया जा सका.
|
|
35
|
+
# Error message when an annotation fetch fails
|
|
36
|
+
be.annotattionThread.errorFetchAnnotation = टिप्पणी को ढूंढा नहीं जा सका.
|
|
19
37
|
# Error message when an app activity deletion fails
|
|
20
38
|
be.api.appActivityDeleteErrorMessage = यह आइटम हटाने में एक त्रुटि हुई.
|
|
21
39
|
# Error message when a comment creation fails due to a conflict
|
|
@@ -26,6 +44,8 @@ be.api.commentCreateErrorMessage = यह टिप्पणी बनाने
|
|
|
26
44
|
be.api.commentDeleteErrorMessage = यह टिप्पणी हटाने में एक त्रुटि हुई.
|
|
27
45
|
# Error message when an annotation comment update fails
|
|
28
46
|
be.api.commentUpdateErrorMessage = यह टिप्पणी संशोधित नहीं की जा सकी.
|
|
47
|
+
# Error message when fetching for comment replies fails
|
|
48
|
+
be.api.repliesFetchErrorMessage = इस टिप्पणी के जवाबों को लोड नहीं किया जा सका.
|
|
29
49
|
# Title shown when an error occurs performing an action on a task
|
|
30
50
|
be.api.taskActionErrorTitle = त्रुटि
|
|
31
51
|
# Error message when approving a task fails
|
|
@@ -62,6 +82,38 @@ be.choose = चुनें
|
|
|
62
82
|
be.close = बंद करें
|
|
63
83
|
# Message to the user to collapse the Transcript entries
|
|
64
84
|
be.collapse = संकुचित करें
|
|
85
|
+
# Text shown to users when opening the content insights flyout and there is an error
|
|
86
|
+
be.contentInsights.contentAnalyticsErrorText = सामग्री इनसाइट को लोड करने में एक समस्या का सामना करना पड़ा था. कृपया फिर से कोशिश करें.
|
|
87
|
+
# Message shown when the user does not have access to view content insights anymore
|
|
88
|
+
be.contentInsights.contentAnalyticsPermissionError = ओह! अब आपके पास सामग्री इनसाइट देखने का एक्सेस नहीं है.
|
|
89
|
+
# Title for Content Insights section in file sidebar
|
|
90
|
+
be.contentInsights.contentInsightsTitle = सामग्री इनसाइट
|
|
91
|
+
# Label for the chart displaying the number of downloads over the selected time period
|
|
92
|
+
be.contentInsights.downloadGraphLabel = चयनित समय अवधि पर डाउनलोड की संख्या को प्रदर्शित करने वाला चार्ट
|
|
93
|
+
# Title for the content insights graph card regarding number of Previews
|
|
94
|
+
be.contentInsights.downloadGraphType = डाउनलोड्स
|
|
95
|
+
# Open Content Insights button which opens the Content Insights Modal
|
|
96
|
+
be.contentInsights.openContentInsightsButton = विवरण देखें
|
|
97
|
+
# Label for the chart displaying the number of users over the selected time period
|
|
98
|
+
be.contentInsights.peopleGraphLabel = चयनित समय अवधि पर उपयोगकर्ताओं की संख्या को प्रदर्शित करने वाला चार्ट
|
|
99
|
+
# Title used to represent how many users have interacted with the file
|
|
100
|
+
be.contentInsights.peopleTitle = लोग
|
|
101
|
+
# Label for the chart displaying the number of previews over the selected time period
|
|
102
|
+
be.contentInsights.previewGraphLabel = चयनित समय अवधि पर पूर्वावलोकन की संख्या को प्रदर्शित करने वाला चार्ट
|
|
103
|
+
# Title for the content insights graph card regarding number of Previews
|
|
104
|
+
be.contentInsights.previewGraphType = पूर्वावलोकन
|
|
105
|
+
# Label for the arrow indicator in the trend pill
|
|
106
|
+
be.contentInsights.trendDown = ट्रेंडिंग डाउन
|
|
107
|
+
# Trend description for the content insights graph card regarding the count of events from the past month
|
|
108
|
+
be.contentInsights.trendMonth = पिछला महीना
|
|
109
|
+
# Trend description for the content insights graph card regarding the count of events from the past three months
|
|
110
|
+
be.contentInsights.trendThreeMonths = पिछले 3 महीने
|
|
111
|
+
# Label for the arrow indicator in the trend pill
|
|
112
|
+
be.contentInsights.trendUp = ट्रेंडिंग अप
|
|
113
|
+
# Trend description for the content insights graph card regarding the count of events from the past week
|
|
114
|
+
be.contentInsights.trendWeek = पिछला सप्ताह
|
|
115
|
+
# Trend description for the content insights graph card regarding the count of events from the past year
|
|
116
|
+
be.contentInsights.trendYear = पिछला साल
|
|
65
117
|
# Message that appears when the request for the ContentSharing Element is malformed.
|
|
66
118
|
be.contentSharing.badRequestError = इस आइटम के लिए अनुरोध दोषपूर्ण था.
|
|
67
119
|
# Message that appears when collaborators cannot be retrieved in the ContentSharing Element.
|
|
@@ -92,6 +144,10 @@ be.contentSidebar.activityFeed.annotationActivity.annotationActivityDeletePrompt
|
|
|
92
144
|
be.contentSidebar.activityFeed.annotationActivity.annotationActivityEditMenuItem = संशोधित करें
|
|
93
145
|
# Full data and time for annotation title
|
|
94
146
|
be.contentSidebar.activityFeed.annotationActivity.annotationActivityPostedFullDateTime = {time, date, full} को {time, time, short} बजे
|
|
147
|
+
# Text to show on menu item to resolve the annotation comment
|
|
148
|
+
be.contentSidebar.activityFeed.annotationActivity.annotationActivityResolveMenuItem = हल करें
|
|
149
|
+
# Text to show on menu item to unresolve the annotation comment
|
|
150
|
+
be.contentSidebar.activityFeed.annotationActivity.annotationActivityUnresolveMenuItem = हल न करें
|
|
95
151
|
# Annotation activity item link shown on annotation activity
|
|
96
152
|
be.contentSidebar.activityFeed.annotationActivityPageItem = पेज {number}
|
|
97
153
|
# Annotation activity item link shown on annotation activity for previous file version
|
|
@@ -106,6 +162,10 @@ be.contentSidebar.activityFeed.comment.commentDeletePrompt = क्या आप
|
|
|
106
162
|
be.contentSidebar.activityFeed.comment.commentEditMenuItem = संशोधित करें
|
|
107
163
|
# Comment posted full date time for title
|
|
108
164
|
be.contentSidebar.activityFeed.comment.commentPostedFullDateTime = {time, date, full} को {time, time, short} बजे
|
|
165
|
+
# Text to show on menu item to resolve the comment
|
|
166
|
+
be.contentSidebar.activityFeed.comment.commentResolveMenuItem = हल करें
|
|
167
|
+
# Text to show on menu item to unresolve the comment
|
|
168
|
+
be.contentSidebar.activityFeed.comment.commentUnresolveMenuItem = हल न करें
|
|
109
169
|
# Placeholder for approvers input
|
|
110
170
|
be.contentSidebar.activityFeed.commentForm.approvalAddAssignee = एक असाइनी जोड़ें
|
|
111
171
|
# Label for checkbox to add approvers to a comment
|
|
@@ -132,6 +192,14 @@ be.contentSidebar.activityFeed.commentForm.commentPost = पोस्ट
|
|
|
132
192
|
be.contentSidebar.activityFeed.commentForm.commentWrite = एक टिप्पणी लिखें
|
|
133
193
|
# Show original button for showing original comment
|
|
134
194
|
be.contentSidebar.activityFeed.commmon.showOriginalMessage = मूल दिखाएँ
|
|
195
|
+
# Indicator of resolved status of Comment or Annotation, visible in Feed Item (in upper-case in supported language)
|
|
196
|
+
be.contentSidebar.activityFeed.common.activityStatusResolved = हल किया गया
|
|
197
|
+
# Label indicating that message was edited, should be lowercase
|
|
198
|
+
be.contentSidebar.activityFeed.common.editedMessage = (edited)
|
|
199
|
+
# See less button for hiding part of long message
|
|
200
|
+
be.contentSidebar.activityFeed.common.seeLessMessage = See less
|
|
201
|
+
# See more button for showing whole long message
|
|
202
|
+
be.contentSidebar.activityFeed.common.seeMoreMessage = See more
|
|
135
203
|
# Translate button for translating comment
|
|
136
204
|
be.contentSidebar.activityFeed.common.translateMessage = अनुवाद करें
|
|
137
205
|
# Tooltip text for any task icon, explaining that the task only needs one assignee to complete.
|
|
@@ -514,6 +582,8 @@ be.shareDialogText = शेयर्ड लिंक:
|
|
|
514
582
|
be.sidebarAccessStats = एक्सेस संबंधी आंकड़े
|
|
515
583
|
# Title for the preview activity feed.
|
|
516
584
|
be.sidebarActivityTitle = गतिविधि
|
|
585
|
+
# Title for the sidebar content insights.
|
|
586
|
+
be.sidebarContentInsights = सामग्री इनसाइट
|
|
517
587
|
# Title for the preview details sidebar.
|
|
518
588
|
be.sidebarDetailsTitle = विवरण
|
|
519
589
|
# Generic error content for file fetching.
|
|
@@ -1210,6 +1280,8 @@ boxui.securityControls.downloadExternal = बाहरी उपयोगकर
|
|
|
1210
1280
|
boxui.securityControls.externalCollabBlock = बाहरी सहयोग प्रतिबंधित.
|
|
1211
1281
|
# Bullet point that summarizes external collaboration restriction applied to classification
|
|
1212
1282
|
boxui.securityControls.externalCollabDomainList = बाहरी सहयोग स्वीकृत डोमेन तक ही सीमित है.
|
|
1283
|
+
# The text of a link to a help article for more information.
|
|
1284
|
+
boxui.securityControls.linkForMoreDetails = अधिक जानकारी के लिए यहां क्लिक करें.
|
|
1213
1285
|
# Bullet point that summarizes mobile download restrictions applied to classification, when restriction applies to external users
|
|
1214
1286
|
boxui.securityControls.mobileDownloadExternal = बाहरी उपयोगकर्ताओं के लिए मोबाइल पर डाउनलोड प्रतिबंधित है.
|
|
1215
1287
|
# Bullet point that summarizes mobile download restrictions applied to classification, when restriction applies to external users and managed users except Owners/Co-Owners
|
|
@@ -1264,6 +1336,8 @@ boxui.securityControls.shortSign = हस्ताक्षर प्रति
|
|
|
1264
1336
|
boxui.securityControls.shortWatermarking = वाटरमार्किंग लागू होती है
|
|
1265
1337
|
# Button to display security controls modal
|
|
1266
1338
|
boxui.securityControls.viewAll = सभी देखें
|
|
1339
|
+
# Bullet point that summarizes watermarking applied to classification
|
|
1340
|
+
boxui.securityControls.watermarkingApplied = वॉटरमार्किंग को लागू किया जाएगा.
|
|
1267
1341
|
# Bullet point that summarizes web download restrictions applied to classification, when restriction applies to external users
|
|
1268
1342
|
boxui.securityControls.webDownloadExternal = बाहरी उपयोगकर्ताओं के लिए वेब पर डाउनलोड प्रतिबंधित है.
|
|
1269
1343
|
# Bullet point that summarizes web download restrictions applied to classification, when restriction applies to external users and managed users except Owners/Co-Owners
|
|
@@ -1513,15 +1587,17 @@ boxui.unifiedShare.collaborators.expirationTooltipClickableText = एक्स
|
|
|
1513
1587
|
# Text to show when the number of contact email addresses displayed on a tooltip exceeds the maximum amount that can be displayed
|
|
1514
1588
|
boxui.unifiedShare.contactEmailsTooltipText = {emails}, और {remainingEmailsCount} अधिक
|
|
1515
1589
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1516
|
-
boxui.unifiedShare.contactRestrictionNotice = {count, plural, one {{count}
|
|
1590
|
+
boxui.unifiedShare.contactRestrictionNotice = {count, plural, one {{count} आमंत्रण} other {{count} आमंत्रणों}} को भेजा नहीं जा सकता क्योंकि लागू सुरक्षा नीति के कारण बाहरी सहयोग प्रतिबंधित है.
|
|
1517
1591
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to one or more of the selected contacts
|
|
1518
|
-
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier =
|
|
1592
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = {count, plural, one {{count} आमंत्रण} other {{count} आमंत्रण}} को एक सुरक्षा नीति के कारण भेजा नहीं जा सकता.
|
|
1519
1593
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts
|
|
1520
1594
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular = एक सुरक्षा नीति के कारण {email} को ईमेल नहीं भेजा जा सकता है.
|
|
1595
|
+
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts, which is a group
|
|
1596
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup = एक सुरक्षा नीति के कारण "{groupName}" को आमंत्रण भेजा नहीं जा सकता है.
|
|
1521
1597
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1522
1598
|
boxui.unifiedShare.contactRestrictionNoticeSingular = {email} पर आमंत्रण नहीं भेजे जा सकते क्योंकि लागू सुरक्षा नीति के कारण बाहरी सहयोग प्रतिबंधित है.
|
|
1523
1599
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
|
1524
|
-
boxui.unifiedShare.contactRestrictionRemoveButtonLabel =
|
|
1600
|
+
boxui.unifiedShare.contactRestrictionRemoveButtonLabel = जारी रखने के लिए हटाएं
|
|
1525
1601
|
# Error message when more than the maximum number of contacts is entered
|
|
1526
1602
|
boxui.unifiedShare.contactsExceedLimitError = ओह! एक बार में जोड़े जा सकने वाले सहयोगियों की अधिकतम संख्या {maxContacts} है. अपने आमंत्रणों को बैच में विभाजित करके फिर से प्रयास करें.
|
|
1527
1603
|
# Text shown in share modal when there is at least one external collaborators
|
|
@@ -1575,13 +1651,13 @@ boxui.unifiedShare.inviteDisabledWeblinkTooltip = सहयोगियों
|
|
|
1575
1651
|
# Label of the field where a user designates who to invite to collaborate on an item
|
|
1576
1652
|
boxui.unifiedShare.inviteFieldLabel = लोगों को आमंत्रित करें
|
|
1577
1653
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts and business justifications are allowed for bypassing restrictions
|
|
1578
|
-
boxui.unifiedShare.justifiableContactRestrictionNotice = {count, plural, one {{count}
|
|
1654
|
+
boxui.unifiedShare.justifiableContactRestrictionNotice = इस सामग्री के लिए {count, plural, one {{count} आमंत्रण} other {{count} आमंत्रणों}} से संबंधित एक व्यावसायिक प्रमाणिकता की आवश्यकता है. कृपया नीचे एक व्यावसायिक प्रामाणिकता का चयन करें.
|
|
1579
1655
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts and business justifications are allowed for bypassing restrictions
|
|
1580
1656
|
boxui.unifiedShare.justifiableContactRestrictionNoticeSingular = इस सामग्री के लिए {email} को आमंत्रित करने हेतु एक व्यावसायिक प्रामाणिकता की आवश्यकता है. कृपया नीचे व्यावसायिक प्रामाणिकता का चयन करें.
|
|
1581
1657
|
# Label for the button that removes restricted contacts on the contact restriction notice when business justifications are allowed for bypassing restrictions
|
|
1582
|
-
boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel = वैकल्पिक रूप से,
|
|
1658
|
+
boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel = वैकल्पिक रूप से, जारी रखने के लिए हटाएं
|
|
1583
1659
|
# The error message that is displayed when a user tries to send invitations to external collaborators, but a business justification is required before proceeding
|
|
1584
|
-
boxui.unifiedShare.justificationRequiredError = जारी रखने के लिए
|
|
1660
|
+
boxui.unifiedShare.justificationRequiredError = एक औचित्य या जारी रखने के लिए हटाएं का चयन करें
|
|
1585
1661
|
# The placeholder text of the select field that allows selecting a business justification reason
|
|
1586
1662
|
boxui.unifiedShare.justificationSelectPlaceholder = प्रामाणिकता चुनें
|
|
1587
1663
|
# Call to action text for allowing the user to create a new shared link
|
|
@@ -1637,7 +1713,7 @@ boxui.unifiedShare.removeLinkConfirmationTitle = शेयर्ड लिंक
|
|
|
1637
1713
|
# Tooltip description for not having access to remove link
|
|
1638
1714
|
boxui.unifiedShare.removeLinkTooltip = आपके पास लिंक हटाने की अनुमति नहीं है.
|
|
1639
1715
|
# The error message that is displayed when a user tries to send invitations to external collaborators, but restricted contacts need to be removed before proceeding
|
|
1640
|
-
boxui.unifiedShare.restrictedContactsError = जारी रखने के लिए
|
|
1716
|
+
boxui.unifiedShare.restrictedContactsError = जारी रखने के लिए हटाएं
|
|
1641
1717
|
# Tooltip text for email shared link button (title-case)
|
|
1642
1718
|
boxui.unifiedShare.sendSharedLink = शेयर्ड लिंक भेजें
|
|
1643
1719
|
# Field label for shared link recipient list (title-case)
|