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
|
@@ -1,1692 +1,1790 @@
|
|
|
1
1
|
# The text for when the user does not have permissions to see access stats.
|
|
2
|
-
be.accessStatsPermissionsError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
2
|
+
be.accessStatsPermissionsError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ѕσřŕў, ŷŏų ďо ηöτ нãνě Ρęѓmìŝѕïőй ťσ şéē ţнē äćçèѕѕ ŝţάŧŝ ƒόŕ ťĥϊѕ ƒįĺè. 國國國國國國國國國國國國國國國國國國國國國⟧
|
|
3
3
|
# Full date time and time stamp
|
|
4
|
-
be.activityFeed.fullDateTime = ⟦萬萬萬萬 {time, date, full}
|
|
4
|
+
be.activityFeed.fullDateTime = ⟦萬萬萬萬 {time, date, full} ãţ {time, time, short} 國國國國⟧
|
|
5
5
|
# Error message for feed item API errors
|
|
6
|
-
be.activityFeedItemApiError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
6
|
+
be.activityFeedItemApiError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ťнёŕė шåŝ α Ρŗόьĺêm ľőǻďïńğ ţħĕ äċţїνίŧУ ƒёеď. Pĺεåѕĕ ѓëƒґĕśн ŧĥέ Ρǻġē òř ŧгÿ áğàίи ľαţéг. 國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
7
7
|
# Text to show when an annotation activity no longer exists
|
|
8
|
-
be.activitySidebar.activityFeed.annotationMissingError = ⟦萬萬萬萬萬萬萬萬
|
|
8
|
+
be.activitySidebar.activityFeed.annotationMissingError = ⟦萬萬萬萬萬萬萬萬 Τнįѕ čómmèήţ πø ļοпġëŕ εхïѕŧŝ 國國國國國國國國⟧
|
|
9
9
|
# Text to show when comment no longer exists
|
|
10
|
-
be.activitySidebar.activityFeed.commentMissingError = ⟦萬萬萬萬萬萬萬萬
|
|
10
|
+
be.activitySidebar.activityFeed.commentMissingError = ⟦萬萬萬萬萬萬萬萬 Ţĥιѕ ćômměņť ņό ĺóиğèг êхϊśţş 國國國國國國國國⟧
|
|
11
11
|
# Error title
|
|
12
|
-
be.activitySidebar.activityFeed.feedInlineErrorTitle = ⟦萬
|
|
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
|
-
be.activitySidebar.activityFeed.taskMissingError = ⟦萬萬萬萬萬萬萬
|
|
22
|
+
be.activitySidebar.activityFeed.taskMissingError = ⟦萬萬萬萬萬萬萬 Ŧнįś ŧàśκ πό ľøпġέŗ ëхíśŧѕ 國國國國國國國⟧
|
|
23
|
+
# One of the dropdown options to select in order to filter comments
|
|
24
|
+
be.activitySidebarFilter.status.all = ⟦萬萬萬 Ǻļĺ Čómméήťś 國國國⟧
|
|
25
|
+
# One of the dropdown options to select in order to filter comments
|
|
26
|
+
be.activitySidebarFilter.status.open = ⟦萬萬萬萬萬 Ųлѓêŝőļνéď Ćŏmmëņţś 國國國國國⟧
|
|
15
27
|
# Label for add action
|
|
16
|
-
be.add = ⟦
|
|
28
|
+
be.add = ⟦ Ăďď ⟧
|
|
17
29
|
# Text to display when app is disabled by applied access policy
|
|
18
|
-
be.additionalTab.blockedByShieldAccessPolicy = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
30
|
+
be.additionalTab.blockedByShieldAccessPolicy = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Úѕĕ ôƒ τħïŝ ãΡΡ ϊş ьĺöčķέď ďûê ţõ å ŝéĉцřīŧγ ΡôĺĩĉУ. 國國國國國國國國國國國國國國國⟧
|
|
31
|
+
# Error message when an annotation deletion fails
|
|
32
|
+
be.annotationThread.errorDeleteAnnotation = ⟦萬萬萬萬萬萬萬萬萬萬萬 Τħеŕε ŵάѕ áň έŗŕòř ďēļеţíήĝ ţĥĭş ìŧеm. 國國國國國國國國國國國⟧
|
|
33
|
+
# Error message when an annotation update fails
|
|
34
|
+
be.annotationThread.errorEditAnnotation = ⟦萬萬萬萬萬萬萬萬萬萬萬 Ťħїѕ ăŋлόţǻŧιóй сοµĺď ηõτ ьё mőďïƒĭéď. 國國國國國國國國國國國⟧
|
|
35
|
+
# Error message when an annotation fetch fails
|
|
36
|
+
be.annotattionThread.errorFetchAnnotation = ⟦萬萬萬萬萬萬萬萬萬萬 Ťне āήиστâŧïóи çōцľď ήσť вé ƒеţ¢ħêď. 國國國國國國國國國國⟧
|
|
19
37
|
# Error message when an app activity deletion fails
|
|
20
|
-
be.api.appActivityDeleteErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
38
|
+
be.api.appActivityDeleteErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬 Ţĥęґе ώâŝ ăŋ εŗŕоř ďěļēţϊпğ ţĥĩѕ ίτēm. 國國國國國國國國國國國⟧
|
|
21
39
|
# Error message when a comment creation fails due to a conflict
|
|
22
|
-
be.api.commentCreateConflictMessage = ⟦萬萬萬萬萬萬萬萬
|
|
40
|
+
be.api.commentCreateConflictMessage = ⟦萬萬萬萬萬萬萬萬 Τĥĩŝ çòmmεηŧ ăļřёąďý ĕ×īŝťѕ. 國國國國國國國國⟧
|
|
23
41
|
# Error message when a comment creation fails
|
|
24
|
-
be.api.commentCreateErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
42
|
+
be.api.commentCreateErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ţħéŕě ẁąѕ àň εŗгøř ćгęάŧĩŋĝ ťнĩŝ ĉőmmèńτ. 國國國國國國國國國國國國⟧
|
|
25
43
|
# Error message when a comment deletion fails
|
|
26
|
-
be.api.commentDeleteErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
44
|
+
be.api.commentDeleteErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Τнêгè ẁåŝ àʼn ĕѓŗŏѓ ďеľέτīʼnğ τħïѕ ĉőmmĕиť. 國國國國國國國國國國國國⟧
|
|
27
45
|
# Error message when an annotation comment update fails
|
|
28
|
-
be.api.commentUpdateErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
46
|
+
be.api.commentUpdateErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬 Τħĭş ćõmmėπτ ćοüľď ňότ вę mőďîƒīęď. 國國國國國國國國國國⟧
|
|
47
|
+
# Error message when fetching for comment replies fails
|
|
48
|
+
be.api.repliesFetchErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ţĥе яєΡľїεş ŧό τнίş ¢ømmĕйτ сòμľď ʼnŏţ вĕ ļőáďєď. 國國國國國國國國國國國國國國⟧
|
|
29
49
|
# Title shown when an error occurs performing an action on a task
|
|
30
|
-
be.api.taskActionErrorTitle = ⟦萬
|
|
50
|
+
be.api.taskActionErrorTitle = ⟦萬 Σяґøґ 國⟧
|
|
31
51
|
# Error message when approving a task fails
|
|
32
|
-
be.api.taskApproveErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
52
|
+
be.api.taskApproveErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Āи ėŗŗōг ĥäś ŏсċµŕřēď ŵнĭľě ãΡΡгóνϊʼnġ ŧнįŝ ţǻѕк. Pļεăѕè ŕëƒґĕşн τħè Ρāğê ăʼnď ťŗУ άĝąíл. 國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
33
53
|
# Error message when completing a task fails
|
|
34
|
-
be.api.taskCompleteErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
54
|
+
be.api.taskCompleteErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Άń ёґґσŗ ĥăѕ όčçųŗґęď ωħíļê çòmΡľĕτїʼnġ ŧĥîŝ ŧāŝķ. Pļēäѕе ŗєƒŗёŝĥ ŧħê Ρąğè âňď ţŗý ăĝãïй. 國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
35
55
|
# Error message when a task creation fails
|
|
36
|
-
be.api.taskCreateErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
56
|
+
be.api.taskCreateErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ăи ēґřòґ σĉсûґŗёď ώħįĺε ĉѓēåŧīʼnğ τĥίş ťäѕκ. Pĺêάŝε ŧґŷ áğαιл. 國國國國國國國國國國國國國國國國國國⟧
|
|
37
57
|
# Error message when a task deletion fails
|
|
38
|
-
be.api.taskDeleteErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
58
|
+
be.api.taskDeleteErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ťĥĕŕè ŵãś āʼn ēѓгóґ ŵĥїĺě ďéĺêţїиġ ťнìѕ ŧāѕķ. Pļέáŝė ŕĕƒгёśħ ţĥĕ Ρäğē ǻиď ţŗÿ âĝãįņ. 國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
39
59
|
# Warning message showing that, while the task was being created, the group assignee limit was exceeded by specified amount
|
|
40
|
-
be.api.taskGroupExceedsWarningTitle = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
60
|
+
be.api.taskGroupExceedsWarningTitle = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Όʼnε óя móяę ġŕòūΡś ¢åп пòţ ѓéćęĭνĕ ţĥιş τãşķ ăŝ ā ğŕόúΡ śìżĕ ¢ǻпйøτ ēхсėêď ţнє ļīmìŧ ŏƒ {max} αŝśīġπēèѕ Ρęґ ğґòμΡ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
41
61
|
# Error message when rejecting a task fails
|
|
42
|
-
be.api.taskRejectErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
62
|
+
be.api.taskRejectErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Áņ êŗŗŏŕ ĥãş øċćûŗгέď ẃħíľę яęĵë¢ťϊηġ ťĥιş ţαśк. Pľεāŝέ гěƒгėśħ τħё Ράĝĕ αиď ŧґγ áğàĩп. 國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
43
63
|
# Alt message if app activity icon is missing or cannot load
|
|
44
|
-
be.appActivity.altIcon = ⟦萬萬 {appActivityName}
|
|
64
|
+
be.appActivity.altIcon = ⟦萬萬 {appActivityName} Ĭċōņ 國國⟧
|
|
45
65
|
# Text to display in the delete app activity submit button
|
|
46
|
-
be.appActivity.deleteMenuItem = ⟦萬
|
|
66
|
+
be.appActivity.deleteMenuItem = ⟦萬 Ďěĺĕŧé 國⟧
|
|
47
67
|
# Confirmation prompt text to delete app activity
|
|
48
|
-
be.appActivity.deletePrompt = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
68
|
+
be.appActivity.deletePrompt = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Άгĕ ўοû şùґê Уõù ωàňŧ ťò Ρεŗmăиęņţľÿ ďėļêŧë ťĥїś äΡΡ ăсŧĭνīτγ? 國國國國國國國國國國國國國國國國國國⟧
|
|
49
69
|
# Label for back button
|
|
50
|
-
be.back = ⟦萬
|
|
70
|
+
be.back = ⟦萬 Бâсķ 國⟧
|
|
51
71
|
# Message when Box Tools cannot open a particular file type
|
|
52
|
-
be.boxEditBlacklistedError = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
72
|
+
be.boxEditBlacklistedError = ⟦萬萬萬萬萬萬萬萬萬萬 Ŧħįş ƒιľë ¢ãπńòţ вě σΡелĕď ļŏċǻĺľý 國國國國國國國國國國⟧
|
|
53
73
|
# Shown in the open with dropdown when an application is blocked by shield access policy.
|
|
54
|
-
be.boxEditErrorBlockedByPolicy = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
74
|
+
be.boxEditErrorBlockedByPolicy = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ľōĉàļ éďïτĩʼnğ ôƒ ŧĥîś ¢óήţêňţ нăş ьєëп ďįѕáвļёď вαśėď òп ãŋ ãсčëşś Ροľϊčÿ 國國國國國國國國國國國國國國國國國國國國國⟧
|
|
55
75
|
# Message shown telling user how to install Box Tools
|
|
56
|
-
be.boxToolsInstallMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
76
|
+
be.boxToolsInstallMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ίňѕţäļĺ {boxTools} ŧο óΡεи ţнίś ƒĭľё όň Уòúŗ ďеşķŧοΡ 國國國國國國國國國國國國國國⟧
|
|
57
77
|
# Label for cancel action.
|
|
58
|
-
be.cancel = ⟦萬
|
|
78
|
+
be.cancel = ⟦萬 Čàпčĕļ 國⟧
|
|
59
79
|
# Label for choose action.
|
|
60
|
-
be.choose = ⟦萬
|
|
80
|
+
be.choose = ⟦萬 Ċĥόòѕě 國⟧
|
|
61
81
|
# Label for close action.
|
|
62
|
-
be.close = ⟦萬
|
|
82
|
+
be.close = ⟦萬 Čĺόѕĕ 國⟧
|
|
63
83
|
# Message to the user to collapse the Transcript entries
|
|
64
|
-
be.collapse = ⟦萬萬
|
|
84
|
+
be.collapse = ⟦萬萬 ÇοľĺąΡŝё 國國⟧
|
|
85
|
+
# Text shown to users when opening the content insights flyout and there is an error
|
|
86
|
+
be.contentInsights.contentAnalyticsErrorText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Τĥëґε ẃāś α Ρгôвĺēm ļóâďįήğ çöʼnťêήŧ ĩηşιĝнţś. Pľëäşĕ ţŗў αġáίл. 國國國國國國國國國國國國國國國國國國⟧
|
|
87
|
+
# Message shown when the user does not have access to view content insights anymore
|
|
88
|
+
be.contentInsights.contentAnalyticsPermissionError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ÔõΡŝ! Ŷóû иő ľőńġεґ ĥάνё âčĉèşѕ ťό νϊεω çοлτєлŧ ĭʼnѕîġнţş. 國國國國國國國國國國國國國國國國國⟧
|
|
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 = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Čĥάѓť ďїŝΡļάỳїηġ τħë ʼnümвéг оƒ ďόŵńļóåďş σνєѓ ťħę śëľёĉŧëď ŧĩmê Ρёřіοď 國國國國國國國國國國國國國國國國國國國國⟧
|
|
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 = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ćнåяτ ďĩşΡľâγîлġ ťĥę йŭmвėґ όƒ µѕěŕş óνëя ŧħë śеľèċŧęď τímë Ρέŗïоď 國國國國國國國國國國國國國國國國國國國⟧
|
|
99
|
+
# Title used to represent how many users have interacted with the file
|
|
100
|
+
be.contentInsights.peopleTitle = ⟦萬 PÈΌPĹÉ 國⟧
|
|
101
|
+
# Label for the chart displaying the number of previews over the selected time period
|
|
102
|
+
be.contentInsights.previewGraphLabel = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ćнářτ ďīѕΡĺăỳιηġ ţнĕ иµmьέя òƒ Ρŗενіèшś σνея ťħę ŝèľěçτεď ţįmê Ρέѓïōď 國國國國國國國國國國國國國國國國國國國國⟧
|
|
103
|
+
# Title for the content insights graph card regarding number of Previews
|
|
104
|
+
be.contentInsights.previewGraphType = ⟦萬萬 PЯΕVĮЁЩŞ 國國⟧
|
|
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 = ⟦萬萬 PΑŜΤ ΜÓÑΤΗ 國國⟧
|
|
109
|
+
# Trend description for the content insights graph card regarding the count of events from the past three months
|
|
110
|
+
be.contentInsights.trendThreeMonths = ⟦萬萬萬 PĂŚŤ 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 = ⟦萬萬 PǺŜŦ ЩΣĘΚ 國國⟧
|
|
115
|
+
# Trend description for the content insights graph card regarding the count of events from the past year
|
|
116
|
+
be.contentInsights.trendYear = ⟦萬萬 PǺŜŢ ÝĒĂΓ 國國⟧
|
|
65
117
|
# Message that appears when the request for the ContentSharing Element is malformed.
|
|
66
|
-
be.contentSharing.badRequestError = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
118
|
+
be.contentSharing.badRequestError = ⟦萬萬萬萬萬萬萬萬萬萬萬 Ťħë гèqůĕşť ƒôг ŧħĭѕ ίţеm ẁāŝ mąļƒσřmëď. 國國國國國國國國國國國⟧
|
|
67
119
|
# Message that appears when collaborators cannot be retrieved in the ContentSharing Element.
|
|
68
|
-
be.contentSharing.collaboratorsLoadingError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
120
|
+
be.contentSharing.collaboratorsLoadingError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Čŏûĺď пοτ řèτѓíёνе çōļļαьōґâťσŗѕ ƒôя ŧнĩŝ іţêm. 國國國國國國國國國國國國國國⟧
|
|
69
121
|
# Message that appears when users cannot be retrieved in the ContentSharing Element.
|
|
70
|
-
be.contentSharing.getContactsError = ⟦萬萬萬萬萬萬萬萬
|
|
122
|
+
be.contentSharing.getContactsError = ⟦萬萬萬萬萬萬萬萬 Ċōüľď ήσţ гêŧгįėνě ċσʼnτâċŧѕ. 國國國國國國國國⟧
|
|
71
123
|
# Message that appears when the ContentSharing Element cannot be loaded.
|
|
72
|
-
be.contentSharing.loadingError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
124
|
+
be.contentSharing.loadingError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ċòμļď йοţ ĺòáď şħāřèď ĺíŋĸ ƒøř ţħίś їţĕm. 國國國國國國國國國國國國⟧
|
|
73
125
|
# Message that appears when the user cannot access the item for the ContentSharing Element.
|
|
74
|
-
be.contentSharing.noAccessError = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
126
|
+
be.contentSharing.noAccessError = ⟦萬萬萬萬萬萬萬萬萬萬 Ύõű ďô ήôť ĥάνë ãç¢êŝş ťõ ťħįŝ ĩťєm. 國國國國國國國國國國⟧
|
|
75
127
|
# Message that appears when the item for the ContentSharing Element cannot be found.
|
|
76
|
-
be.contentSharing.notFoundError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
128
|
+
be.contentSharing.notFoundError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Çŏūĺď ŋöţ ƒĭňď şĥãґеď ļιпκ ƒõѓ ţħιŝ įţém. 國國國國國國國國國國國國⟧
|
|
77
129
|
# Message that appears when collaborators cannot be added to the shared link in the ContentSharing Element.
|
|
78
|
-
be.contentSharing.sendInvitesError = ⟦萬萬萬萬萬萬
|
|
130
|
+
be.contentSharing.sendInvitesError = ⟦萬萬萬萬萬萬 Čöûĺď πσţ ѕêπď їʼnνîŧèş. 國國國國國國⟧
|
|
79
131
|
# Message that appears when collaborators were added to the shared link in the ContentSharing Element.
|
|
80
|
-
be.contentSharing.sendInvitesSuccess = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
132
|
+
be.contentSharing.sendInvitesSuccess = ⟦萬萬萬萬萬萬萬萬萬萬 ЅũčçěѕśƒμĺļУ іиνίτėď ĉòļļăьоŗǻŧôяŝ. 國國國國國國國國國國⟧
|
|
81
133
|
# Message that appears when the shared link in the ContentSharing Element was removed.
|
|
82
|
-
be.contentSharing.sharedLinkRemovalSuccess = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
134
|
+
be.contentSharing.sharedLinkRemovalSuccess = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Τħê śħαŕèď ĺïňĸ ƒôŕ τħìѕ ĩτёm ẁäş яĕmøνēď. 國國國國國國國國國國國國⟧
|
|
83
135
|
# Message that appears when the shared link settings in the ContentSharing Element were successfully updated.
|
|
84
|
-
be.contentSharing.sharedLinkSettingsUpdateSuccess = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
136
|
+
be.contentSharing.sharedLinkSettingsUpdateSuccess = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ťħĕ śнǻяęď ĺĩňк ƒóг τħīś ïţёm щαś şµсçеŝśƒűļľў μΡďáτєď. 國國國國國國國國國國國國國國國國⟧
|
|
85
137
|
# Message that appears when the shared link in the ContentSharing Element cannot be updated.
|
|
86
|
-
be.contentSharing.sharedLinkUpdateError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
138
|
+
be.contentSharing.sharedLinkUpdateError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Čόŭľď ʼnστ ūΡďąŧε ťĥέ ŝħąяеď ĺіπκ ƒőŗ ţħįŝ іťęm. 國國國國國國國國國國國國國國⟧
|
|
87
139
|
# Text to show on menu item to delete the annotation comment
|
|
88
|
-
be.contentSidebar.activityFeed.annotationActivity.annotationActivityDeleteMenuItem = ⟦萬
|
|
140
|
+
be.contentSidebar.activityFeed.annotationActivity.annotationActivityDeleteMenuItem = ⟦萬 Ðėľёţę 國⟧
|
|
89
141
|
# Confirmation prompt text to delete the annotation comment
|
|
90
|
-
be.contentSidebar.activityFeed.annotationActivity.annotationActivityDeletePrompt = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
142
|
+
be.contentSidebar.activityFeed.annotationActivity.annotationActivityDeletePrompt = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Âŗέ ỳσŭ śűгε ўòů ẃǻлŧ ŧó Ρĕґmαńēʼnτļÿ ďėļëτë ťніş çômmĕήτ? 國國國國國國國國國國國國國國國國國⟧
|
|
91
143
|
# Text to show on menu item to edit the annotation comment
|
|
92
|
-
be.contentSidebar.activityFeed.annotationActivity.annotationActivityEditMenuItem = ⟦萬
|
|
144
|
+
be.contentSidebar.activityFeed.annotationActivity.annotationActivityEditMenuItem = ⟦萬 Μόďίƒÿ 國⟧
|
|
93
145
|
# Full data and time for annotation title
|
|
94
|
-
be.contentSidebar.activityFeed.annotationActivity.annotationActivityPostedFullDateTime = ⟦萬萬萬萬 {time, date, full}
|
|
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
|
-
be.contentSidebar.activityFeed.annotationActivityPageItem = ⟦萬萬
|
|
152
|
+
be.contentSidebar.activityFeed.annotationActivityPageItem = ⟦萬萬 Păġé {number} 國國⟧
|
|
97
153
|
# Annotation activity item link shown on annotation activity for previous file version
|
|
98
|
-
be.contentSidebar.activityFeed.annotationActivityVersionLink = ⟦萬萬萬
|
|
154
|
+
be.contentSidebar.activityFeed.annotationActivityVersionLink = ⟦萬萬萬 Vëřŝìôʼn {number} 國國國⟧
|
|
99
155
|
# Annotation activity item link shown on annotation activity for previous file version that is unavailable
|
|
100
|
-
be.contentSidebar.activityFeed.annotationActivityVersionUnavailable = ⟦萬萬萬萬萬 V
|
|
156
|
+
be.contentSidebar.activityFeed.annotationActivityVersionUnavailable = ⟦萬萬萬萬萬 Vέѓŝιōň Űʼnăνàįĺąьľє 國國國國國⟧
|
|
101
157
|
# Text to show on menu item to delete comment
|
|
102
|
-
be.contentSidebar.activityFeed.comment.commentDeleteMenuItem = ⟦萬
|
|
158
|
+
be.contentSidebar.activityFeed.comment.commentDeleteMenuItem = ⟦萬 Ðēĺеťĕ 國⟧
|
|
103
159
|
# Confirmation prompt text to delete comment
|
|
104
|
-
be.contentSidebar.activityFeed.comment.commentDeletePrompt = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
160
|
+
be.contentSidebar.activityFeed.comment.commentDeletePrompt = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Αřē ÿоů şûŗé ўôū шǻņť ťò Ρêřmäηёйŧľў ďĕľěťê ŧнĩś ċόmmėйţ? 國國國國國國國國國國國國國國國國國⟧
|
|
105
161
|
# Text to show on menu item to edit comment
|
|
106
|
-
be.contentSidebar.activityFeed.comment.commentEditMenuItem = ⟦萬
|
|
162
|
+
be.contentSidebar.activityFeed.comment.commentEditMenuItem = ⟦萬 Мōďįƒŷ 國⟧
|
|
107
163
|
# Comment posted full date time for title
|
|
108
|
-
be.contentSidebar.activityFeed.comment.commentPostedFullDateTime = ⟦萬萬萬萬 {time, date, full}
|
|
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
|
-
be.contentSidebar.activityFeed.commentForm.approvalAddAssignee = ⟦萬萬萬萬 Áďď
|
|
170
|
+
be.contentSidebar.activityFeed.commentForm.approvalAddAssignee = ⟦萬萬萬萬 Áďď άň αŝѕįĝňėє 國國國國⟧
|
|
111
171
|
# Label for checkbox to add approvers to a comment
|
|
112
|
-
be.contentSidebar.activityFeed.commentForm.approvalAddTask = ⟦萬萬
|
|
172
|
+
be.contentSidebar.activityFeed.commentForm.approvalAddTask = ⟦萬萬 Âďď Ţåşķ 國國⟧
|
|
113
173
|
# Tooltip text for checkbox to add approvers to a comment
|
|
114
|
-
be.contentSidebar.activityFeed.commentForm.approvalAddTaskTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
174
|
+
be.contentSidebar.activityFeed.commentForm.approvalAddTaskTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Αŝŝίġиîπġ ā ŧãŝķ ŧō ŝόméöńе ωïļľ ŝėйď ţħέm ą йõťìƒĩĉáţїóп ωίŧħ ťħέ měşśάğĕ îη ŧнê ¢ōmmέʼnţ ьόх ǻηď âľļóŵ τĥęm τó âΡΡяóνе øя ďεήў. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
115
175
|
# Title for assignees input
|
|
116
|
-
be.contentSidebar.activityFeed.commentForm.approvalAssignees = ⟦萬萬
|
|
176
|
+
be.contentSidebar.activityFeed.commentForm.approvalAssignees = ⟦萬萬 Àѕśīĝňеєś 國國⟧
|
|
117
177
|
# Title for approvers due date input
|
|
118
|
-
be.contentSidebar.activityFeed.commentForm.approvalDueDate = ⟦萬萬
|
|
178
|
+
be.contentSidebar.activityFeed.commentForm.approvalDueDate = ⟦萬萬 Ďùė Ďăťé 國國⟧
|
|
119
179
|
# Placeholder for due date input
|
|
120
|
-
be.contentSidebar.activityFeed.commentForm.approvalSelectDate = ⟦萬萬萬
|
|
180
|
+
be.contentSidebar.activityFeed.commentForm.approvalSelectDate = ⟦萬萬萬 Śєľέ¢τ ã ďǻŧе 國國國⟧
|
|
121
181
|
# Mentioning call to action displayed below the comment input
|
|
122
|
-
be.contentSidebar.activityFeed.commentForm.atMentionTip = ⟦萬萬萬萬萬萬萬萬 @m
|
|
182
|
+
be.contentSidebar.activityFeed.commentForm.atMentionTip = ⟦萬萬萬萬萬萬萬萬 @mĕńţίôň ųşęřş ťø πóŧíƒУ ţħĕm. 國國國國國國國國⟧
|
|
123
183
|
# Mentioning call to action detailed description for screen reader users
|
|
124
|
-
be.contentSidebar.activityFeed.commentForm.atMentionTipDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
184
|
+
be.contentSidebar.activityFeed.commentForm.atMentionTipDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Úşé ťĥє @ ŝўmвòļ ťő mёйťìőʼn ŭѕęřŝ ãņď úśє ŧħè ùΡ ąŋď ďоŵп άřґøш кēўѕ ťο ś¢яøĺļ ţĥŕŏũğĥ αúťõçòmΡĺèťë ѕũĝĝёŝťíōήѕ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
125
185
|
# Text for cancel button
|
|
126
|
-
be.contentSidebar.activityFeed.commentForm.commentCancel = ⟦萬
|
|
186
|
+
be.contentSidebar.activityFeed.commentForm.commentCancel = ⟦萬 Çǻŋċëļ 國⟧
|
|
127
187
|
# Accessible label for comment input field
|
|
128
|
-
be.contentSidebar.activityFeed.commentForm.commentLabel = ⟦萬萬萬萬
|
|
188
|
+
be.contentSidebar.activityFeed.commentForm.commentLabel = ⟦萬萬萬萬 Ẁřīţè ä сømmëлť 國國國國⟧
|
|
129
189
|
# Text for post button
|
|
130
|
-
be.contentSidebar.activityFeed.commentForm.commentPost = ⟦萬
|
|
190
|
+
be.contentSidebar.activityFeed.commentForm.commentPost = ⟦萬 Pôŝŧ 國⟧
|
|
131
191
|
# Placeholder for comment input
|
|
132
|
-
be.contentSidebar.activityFeed.commentForm.commentWrite = ⟦萬萬萬萬
|
|
192
|
+
be.contentSidebar.activityFeed.commentForm.commentWrite = ⟦萬萬萬萬 Ẃґīŧє ã çőmmёлτ 國國國國⟧
|
|
133
193
|
# Show original button for showing original comment
|
|
134
|
-
be.contentSidebar.activityFeed.commmon.showOriginalMessage = ⟦萬萬萬
|
|
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 = ⟦萬萬 ҐĘŚÕĻVΣÐ 國國⟧
|
|
197
|
+
# Label indicating that message was edited, should be lowercase
|
|
198
|
+
be.contentSidebar.activityFeed.common.editedMessage = ⟦萬萬 (ėďĭţєď) 國國⟧
|
|
199
|
+
# See less button for hiding part of long message
|
|
200
|
+
be.contentSidebar.activityFeed.common.seeLessMessage = ⟦萬萬 Ŝέë ľêŝś 國國⟧
|
|
201
|
+
# See more button for showing whole long message
|
|
202
|
+
be.contentSidebar.activityFeed.common.seeMoreMessage = ⟦萬萬 Şéέ mōŗě 國國⟧
|
|
135
203
|
# Translate button for translating comment
|
|
136
|
-
be.contentSidebar.activityFeed.common.translateMessage = ⟦萬萬
|
|
204
|
+
be.contentSidebar.activityFeed.common.translateMessage = ⟦萬萬 Ťгǻʼnѕĺąŧė 國國⟧
|
|
137
205
|
# Tooltip text for any task icon, explaining that the task only needs one assignee to complete.
|
|
138
|
-
be.contentSidebar.activityFeed.task.taskAnyAffordanceTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
206
|
+
be.contentSidebar.activityFeed.task.taskAnyAffordanceTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Öйĺÿ őňě ąѕśîġŋèè ïş яęqüίŗеď ťŏ čοmΡľεţε ťнĭś ŧăśķ 國國國國國國國國國國國國國國國⟧
|
|
139
207
|
# Text to show on menu item to delete task
|
|
140
|
-
be.contentSidebar.activityFeed.task.taskDeleteMenuItem = ⟦萬萬萬
|
|
208
|
+
be.contentSidebar.activityFeed.task.taskDeleteMenuItem = ⟦萬萬萬 Ďêĺеţė ťąѕĸ 國國國⟧
|
|
141
209
|
# Confirmation prompt text to delete task
|
|
142
|
-
be.contentSidebar.activityFeed.task.taskDeletePrompt = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
210
|
+
be.contentSidebar.activityFeed.task.taskDeletePrompt = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ąяĕ ÿőŭ śŭяē ÿŏµ шάņŧ ťσ Ρèѓmåлĕņťĺγ ďєļèťĕ ťĥĭś ţǻşķ? 國國國國國國國國國國國國國國國國⟧
|
|
143
211
|
# Text to show on menu item to edit task
|
|
144
|
-
be.contentSidebar.activityFeed.task.taskEditMenuItem = ⟦萬萬萬
|
|
212
|
+
be.contentSidebar.activityFeed.task.taskEditMenuItem = ⟦萬萬萬 Мôďĩƒγ ţàśκ 國國國⟧
|
|
145
213
|
# Tooltip text for multi-file icon, explaining that the task involves multiple files
|
|
146
|
-
be.contentSidebar.activityFeed.task.taskMultipleFilesAffordanceTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
214
|
+
be.contentSidebar.activityFeed.task.taskMultipleFilesAffordanceTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ţнęґę āґė mûĺŧіΡĺє ƒĭļέş αѕśóсîâţèď ẃĭτĥ ţħίş ţąśκ 國國國國國國國國國國國國國國⟧
|
|
147
215
|
# Label for checkbox to set a task that requires only one assignee to complete.
|
|
148
|
-
be.contentSidebar.activityFeed.taskForm.taskAnyCheckboxLabel = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
216
|
+
be.contentSidebar.activityFeed.taskForm.taskAnyCheckboxLabel = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Øйľý óлė ãşśĩĝňéё îś ŗĕqùïґéď ŧô çōmΡļĕŧé τнĩś ŧàşķ 國國國國國國國國國國國國國國國⟧
|
|
149
217
|
# Text in tooltip explaining completion rule for an any assignee task (with optional groups).
|
|
150
|
-
be.contentSidebar.activityFeed.taskForm.taskAnyInfoGroupTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
218
|
+
be.contentSidebar.activityFeed.taskForm.taskAnyInfoGroupTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ѕéĺêçţίйğ ťħїş őΡťιоʼn ŵίľļ ѓêqµīяė õʼnļŷ øήê āśŝíġпёê ţø ċômΡľėţĕ ţнįŝ τäѕķ. Ţнϊŝ щîľľ іисľúďε àşѕіğпêєş ǻĉŗŏśś āļĺ ġґōûΡŝ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
151
219
|
# Text in tooltip explaining completion rule for an any assignee task.
|
|
152
|
-
be.contentSidebar.activityFeed.taskForm.taskAnyInfoTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
220
|
+
be.contentSidebar.activityFeed.taskForm.taskAnyInfoTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Βŷ ďεƒäµľţ, àļĺ ăşśîğήєëŝ ąяē řёqùіяëď ţό τάķє å¢ŧίõń вεƒōґė á ταśĸ ιѕ çοmΡļĕťè. Ŝеļĕćτįиğ ţĥīŝ öΡţіол ŵįĺļ ŗέqцιґē òήľγ ōʼnε ąśŝĭğпéė ţо čοmΡĺēťè ţнíś ŧáşк. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
153
221
|
# Warning message showing that, while the task was updated, not all assignees (1+) were removed
|
|
154
|
-
be.contentSidebar.activityFeed.taskForm.taskApprovalAssigneeRemovalWarningMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
222
|
+
be.contentSidebar.activityFeed.taskForm.taskApprovalAssigneeRemovalWarningMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Űńǻвĺĕ ţø ѓеmõνé ąѕśîĝиĕē(ŝ) ьèсãµśέ τĥê ťąśк îѕ ňощ ăΡΡŗòνėď. 國國國國國國國國國國國國國國國國國國⟧
|
|
155
223
|
# Title shown above error message when a task creation fails
|
|
156
|
-
be.contentSidebar.activityFeed.taskForm.taskCreateErrorTitle = ⟦萬
|
|
224
|
+
be.contentSidebar.activityFeed.taskForm.taskCreateErrorTitle = ⟦萬 Έřŕοŗ 國⟧
|
|
157
225
|
# Subheading for dropdown where user can select assignees and the item is a group
|
|
158
|
-
be.contentSidebar.activityFeed.taskForm.taskCreateGroupLabel = ⟦萬
|
|
226
|
+
be.contentSidebar.activityFeed.taskForm.taskCreateGroupLabel = ⟦萬 ĠяŏũΡ 國⟧
|
|
159
227
|
# Title shown above warning message when a task create/edit partially fails
|
|
160
|
-
be.contentSidebar.activityFeed.taskForm.taskEditWarningTitle = ⟦萬萬萬萬萬萬萬
|
|
228
|
+
be.contentSidebar.activityFeed.taskForm.taskEditWarningTitle = ⟦萬萬萬萬萬萬萬 Ţāŝк ÜΡďãŧєď ωϊτн Ęяŕōřś 國國國國國國國⟧
|
|
161
229
|
# Warning message showing that, while the task was updated, not all assignees (1+) were removed
|
|
162
|
-
be.contentSidebar.activityFeed.taskForm.taskGeneralAssigneeRemovalWarningMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
230
|
+
be.contentSidebar.activityFeed.taskForm.taskGeneralAssigneeRemovalWarningMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ūпǻвļĕ ťο ŗêmøνė ãѕѕіğиèε(ѕ) ьеćåúŝě ţнė ţåśк ϊś иоŵ сōmΡľĕŧêď. 國國國國國國國國國國國國國國國國國國⟧
|
|
163
231
|
# Title shown above warning message when task group exceeds limit
|
|
164
|
-
be.contentSidebar.activityFeed.taskForm.taskGroupExceedsWarningTitle = ⟦萬萬萬萬萬萬萬萬萬
|
|
232
|
+
be.contentSidebar.activityFeed.taskForm.taskGroupExceedsWarningTitle = ⟦萬萬萬萬萬萬萬萬萬 Êхċεęďèď māх ǻşŝīĝηёěѕ Ρёŕ ğгοúΡ 國國國國國國國國國⟧
|
|
165
233
|
# Error message when a task edit fails
|
|
166
|
-
be.contentSidebar.activityFeed.taskForm.taskUpdateErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
234
|
+
be.contentSidebar.activityFeed.taskForm.taskUpdateErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Áи èгяσя óĉćŭяѓęď ώĥϊļé møďīƒỳϊňġ ţħїѕ ťăŝķ. Pľēàѕє ŧгγ āğąīʼn. 國國國國國國國國國國國國國國國國國國⟧
|
|
167
235
|
# label for cancel button in create task popup
|
|
168
|
-
be.contentSidebar.activityFeed.taskForm.tasksAddTaskFormCancelLabel = ⟦萬
|
|
236
|
+
be.contentSidebar.activityFeed.taskForm.tasksAddTaskFormCancelLabel = ⟦萬 Ċàňсέļ 國⟧
|
|
169
237
|
# label for task create form due date input
|
|
170
|
-
be.contentSidebar.activityFeed.taskForm.tasksAddTaskFormDueDateLabel = ⟦萬萬
|
|
238
|
+
be.contentSidebar.activityFeed.taskForm.tasksAddTaskFormDueDateLabel = ⟦萬萬 Ðúё Ďąŧë 國國⟧
|
|
171
239
|
# label for task create form message input
|
|
172
|
-
be.contentSidebar.activityFeed.taskForm.tasksAddTaskFormMessageLabel = ⟦萬萬
|
|
240
|
+
be.contentSidebar.activityFeed.taskForm.tasksAddTaskFormMessageLabel = ⟦萬萬 Мëśŝăġé 國國⟧
|
|
173
241
|
# label for task create form assignee input
|
|
174
|
-
be.contentSidebar.activityFeed.taskForm.tasksAddTaskFormSelectAssigneesLabel = ⟦萬萬萬萬
|
|
242
|
+
be.contentSidebar.activityFeed.taskForm.tasksAddTaskFormSelectAssigneesLabel = ⟦萬萬萬萬 Ѕęľĕ¢ť Ąŝѕϊğηéėŝ 國國國國⟧
|
|
175
243
|
# label for create button in create task modal in create mode
|
|
176
|
-
be.contentSidebar.activityFeed.taskForm.tasksAddTaskFormSubmitLabel = ⟦萬
|
|
244
|
+
be.contentSidebar.activityFeed.taskForm.tasksAddTaskFormSubmitLabel = ⟦萬 Ĉŕëâţë 國⟧
|
|
177
245
|
# label for edit button in create task modal in edit mode
|
|
178
|
-
be.contentSidebar.activityFeed.taskForm.tasksEditTaskFormSubmitLabel = ⟦萬
|
|
246
|
+
be.contentSidebar.activityFeed.taskForm.tasksEditTaskFormSubmitLabel = ⟦萬 ŰΡďàŧё 國⟧
|
|
179
247
|
# Title for checkmark icon indicating someone completed a task
|
|
180
|
-
be.contentSidebar.activityFeed.taskNew.taskAssignmentCompleted = ⟦萬萬
|
|
248
|
+
be.contentSidebar.activityFeed.taskNew.taskAssignmentCompleted = ⟦萬萬 ĈόmΡľèťёď 國國⟧
|
|
181
249
|
# Error message when we failed to load the collaborators when user tries to edit a task
|
|
182
|
-
be.contentSidebar.activityFeed.taskNew.taskCollaboratorLoadErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
250
|
+
be.contentSidebar.activityFeed.taskNew.taskCollaboratorLoadErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Āπ ëгѓøŕ ĥăѕ öćċμřŗёď ẃħιĺë ļòάďίиġ çοĺľαвøѓãŧоŗŝ ƒøґ ťĥĭŝ τåśĸ. Pļėαşĕ ťгў αğάīй. 國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
183
251
|
# Label and date for task due date
|
|
184
|
-
be.contentSidebar.activityFeed.taskNew.taskDueDateLabel = ⟦萬萬
|
|
252
|
+
be.contentSidebar.activityFeed.taskNew.taskDueDateLabel = ⟦萬萬 Ďûέ: {date} 國國⟧
|
|
185
253
|
# Text for due date description formatted with relative date and relative time. (Upper-case in supported languages)
|
|
186
|
-
be.contentSidebar.activityFeed.taskNew.taskFeedStatusDue = ⟦萬萬
|
|
254
|
+
be.contentSidebar.activityFeed.taskNew.taskFeedStatusDue = ⟦萬萬 ĎЏÈ {dateTime} 國國⟧
|
|
187
255
|
# Button name to hide task assignee list
|
|
188
|
-
be.contentSidebar.activityFeed.taskNew.taskShowLessAssignees = ⟦萬萬
|
|
256
|
+
be.contentSidebar.activityFeed.taskNew.taskShowLessAssignees = ⟦萬萬 Şнőщ Ļěŝѕ 國國⟧
|
|
189
257
|
# Button name to expand task assignee list, additionalAssigneeCount is the number of additional task assignees that can be shown.
|
|
190
|
-
be.contentSidebar.activityFeed.taskNew.taskShowMoreAssignees = ⟦萬萬萬萬
|
|
258
|
+
be.contentSidebar.activityFeed.taskNew.taskShowMoreAssignees = ⟦萬萬萬萬 Śноω {additionalAssigneeCount} Μŏґĕ 國國國國⟧
|
|
191
259
|
# Button name to expand task assignee list, when there is an unknown number of assignees beyond additionalAssigneeCount.
|
|
192
|
-
be.contentSidebar.activityFeed.taskNew.taskShowMoreAssigneesOverflow = ⟦萬萬萬萬萬萬萬萬萬萬萬 {additionalAssigneeCount, plural, one {
|
|
260
|
+
be.contentSidebar.activityFeed.taskNew.taskShowMoreAssigneesOverflow = ⟦萬萬萬萬萬萬萬萬萬萬萬 {additionalAssigneeCount, plural, one {Ѕĥоω #+ Μŏŕе} other {Ŝĥόω #+ Μòґе}} 國國國國國國國國國國國⟧
|
|
193
261
|
# Approve option for an approval task
|
|
194
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedApproveAction = ⟦萬萬
|
|
262
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedApproveAction = ⟦萬萬 ÂΡΡяóνė 國國⟧
|
|
195
263
|
# Label for an approved task
|
|
196
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedApprovedLabel = ⟦萬萬
|
|
264
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedApprovedLabel = ⟦萬萬 ÃΡΡгονĕď 國國⟧
|
|
197
265
|
# Label for an approved task (in upper-case in supported language)
|
|
198
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedApprovedUppercaseLabel = ⟦萬萬
|
|
266
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedApprovedUppercaseLabel = ⟦萬萬 ÀPPЯΟVĚÐ 國國⟧
|
|
199
267
|
# Title for list of all task assignees
|
|
200
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedAssigneeListTitle = ⟦萬萬
|
|
268
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedAssigneeListTitle = ⟦萬萬 Àѕśїğлêęś 國國⟧
|
|
201
269
|
# Completion option for a general task
|
|
202
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedCompleteAction = ⟦萬萬萬萬
|
|
270
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedCompleteAction = ⟦萬萬萬萬 Μàгĸ āś ČómΡľεťё 國國國國⟧
|
|
203
271
|
# Label for a completed task
|
|
204
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedCompletedLabel = ⟦萬萬
|
|
272
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedCompletedLabel = ⟦萬萬 ÇømΡľëŧεď 國國⟧
|
|
205
273
|
# Label for an completed task (in upper-case in supported language)
|
|
206
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedCompletedUppercaseLabel = ⟦萬萬
|
|
274
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedCompletedUppercaseLabel = ⟦萬萬 ĊŐМPĽĔΤЁÐ 國國⟧
|
|
207
275
|
# Comment headline for an approval task
|
|
208
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedHeadlineApproval = ⟦萬萬萬萬萬萬萬萬萬 {user}
|
|
276
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedHeadlineApproval = ⟦萬萬萬萬萬萬萬萬萬 {user} αŝśīĝŋέď ąй ÃΡΡřоνąľ Ŧåŝκ 國國國國國國國國國⟧
|
|
209
277
|
# Comment headline for an approval task assigned to the current user
|
|
210
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedHeadlineApprovalCurrentUser = ⟦萬萬萬萬萬萬萬萬萬萬 {user}
|
|
278
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedHeadlineApprovalCurrentUser = ⟦萬萬萬萬萬萬萬萬萬萬 {user} âşѕĩĝňêď ўôų áņ ΑΡΡřôνáľ Τάŝк 國國國國國國國國國國⟧
|
|
211
279
|
# Comment headline for a general task
|
|
212
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedHeadlineGeneral = ⟦萬萬萬萬萬萬 {user}
|
|
280
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedHeadlineGeneral = ⟦萬萬萬萬萬萬 {user} åşşíġņéď â Τǻѕķ 國國國國國國⟧
|
|
213
281
|
# Comment headline for a general task assigned to the current user
|
|
214
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedHeadlineGeneralCurrentUser = ⟦萬萬萬萬萬萬萬 {user}
|
|
282
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedHeadlineGeneralCurrentUser = ⟦萬萬萬萬萬萬萬 {user} áśŝīġňëď γóµ ā Ťąŝκ 國國國國國國國⟧
|
|
215
283
|
# Label for a task in progress
|
|
216
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedInProgressLabel = ⟦萬萬萬
|
|
284
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedInProgressLabel = ⟦萬萬萬 İπ Pґøĝгέŝŝ 國國國⟧
|
|
217
285
|
# Label for a task in progress (in upper-case in supported language)
|
|
218
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedInProgressUppercaseLabel = ⟦萬萬萬
|
|
286
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedInProgressUppercaseLabel = ⟦萬萬萬 ÌИ PЯΘĞЯĚŜŜ 國國國⟧
|
|
219
287
|
# Label for button to expand flyout to see all task assignees
|
|
220
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedMoreAssigneesLabel = ⟦萬萬萬萬萬
|
|
288
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedMoreAssigneesLabel = ⟦萬萬萬萬萬 Şєĕ áļļ ǻşŝίĝňеęś 國國國國國⟧
|
|
221
289
|
# Reject option for an approval task
|
|
222
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedRejectAction = ⟦萬
|
|
290
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedRejectAction = ⟦萬 Ґëĵėĉτ 國⟧
|
|
223
291
|
# Label for a rejected task
|
|
224
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedRejectedLabel = ⟦萬萬
|
|
292
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedRejectedLabel = ⟦萬萬 Ŕēĵĕćŧєď 國國⟧
|
|
225
293
|
# Label for a task rejected (in upper-case in supported language)
|
|
226
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedRejectedUppercaseLabel = ⟦萬萬
|
|
294
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedRejectedUppercaseLabel = ⟦萬萬 ЃĖĴÉĊŦЄÐ 國國⟧
|
|
227
295
|
# Approved task status, where dateTime is a readable time like "Today at 2pm"
|
|
228
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedStatusApproved = ⟦萬萬萬萬
|
|
296
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedStatusApproved = ⟦萬萬萬萬 ÅΡΡŗóνěď {dateTime} 國國國國⟧
|
|
229
297
|
# Completed task status, where dateTime is a readable time like "Today at 2pm"
|
|
230
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedStatusCompleted = ⟦萬萬萬萬
|
|
298
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedStatusCompleted = ⟦萬萬萬萬 ĆömΡĺèţĕď {dateTime} 國國國國⟧
|
|
231
299
|
# Rejected task status, where dateTime is a readable time like "Today at 2pm"
|
|
232
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedStatusRejected = ⟦萬萬萬萬
|
|
300
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedStatusRejected = ⟦萬萬萬萬 Ѓεĵέçťεď {dateTime} 國國國國⟧
|
|
233
301
|
# View the details for a task
|
|
234
|
-
be.contentSidebar.activityFeed.taskNew.tasksFeedViewDetailsAction = ⟦萬萬萬萬萬 V
|
|
302
|
+
be.contentSidebar.activityFeed.taskNew.tasksFeedViewDetailsAction = ⟦萬萬萬萬萬 Vιęώ Τäŝк Ďėţăįļŝ 國國國國國⟧
|
|
235
303
|
# label for button that opens task popup
|
|
236
|
-
be.contentSidebar.addTask = ⟦萬萬
|
|
304
|
+
be.contentSidebar.addTask = ⟦萬萬 Ãďď Ţàŝκ 國國⟧
|
|
237
305
|
# label for menu item that opens approval task popup
|
|
238
|
-
be.contentSidebar.addTask.approval = ⟦萬萬萬
|
|
306
|
+
be.contentSidebar.addTask.approval = ⟦萬萬萬 ÅΡΡгονăľ Τåşк 國國國⟧
|
|
239
307
|
# description for menu item that opens approval task popup
|
|
240
|
-
be.contentSidebar.addTask.approval.description = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
308
|
+
be.contentSidebar.addTask.approval.description = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ǻŝѕīğήёéş ώĩľļ вë ŗėśΡøŋśїьļе ƒøř αΡΡřŏνιпġ ŏŕ яėĵéċţįŋğ ťάŝκş 國國國國國國國國國國國國國國國國國國⟧
|
|
241
309
|
# title for approval task popup
|
|
242
|
-
be.contentSidebar.addTask.approval.title = ⟦萬萬萬萬萬
|
|
310
|
+
be.contentSidebar.addTask.approval.title = ⟦萬萬萬萬萬 Ĉгεåτё ΑΡΡгõνăļ Ţáѕκ 國國國國國⟧
|
|
243
311
|
# label for menu item that opens general task popup
|
|
244
|
-
be.contentSidebar.addTask.general = ⟦萬萬萬
|
|
312
|
+
be.contentSidebar.addTask.general = ⟦萬萬萬 Ğεňėґąĺ Ταŝκ 國國國⟧
|
|
245
313
|
# description for menu item that opens general task popup
|
|
246
|
-
be.contentSidebar.addTask.general.description = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
314
|
+
be.contentSidebar.addTask.general.description = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ǻѕŝîğņêëś шϊĺľ вê ґέŝΡóпşівļĕ ƒόѓ măŕĸιʼnġ ŧǻşкś áѕ čòmΡļēťē 國國國國國國國國國國國國國國國國國⟧
|
|
247
315
|
# title for general task popup
|
|
248
|
-
be.contentSidebar.addTask.general.title = ⟦萬萬萬萬萬
|
|
316
|
+
be.contentSidebar.addTask.general.title = ⟦萬萬萬萬萬 Çяęãţĕ Ġеиεřάľ Ţαŝκ 國國國國國⟧
|
|
249
317
|
# body for first-time user experience tooltip shown to new users of Box Sign
|
|
250
|
-
be.contentSidebar.boxSignFtuxBody = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
318
|
+
be.contentSidebar.boxSignFtuxBody = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Śĩġň ďóĉúméńτŝ õг śєηď ѕіğʼnǻŧũŗě ѓεqμεŝτѕ, řïġнτ ƒѓôm шħēгė ýöùя čöŋŧейτ ļϊνëś 國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
251
319
|
# title for first-time user experience tooltip shown to new users of Box Sign
|
|
252
|
-
be.contentSidebar.boxSignFtuxTitle = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
320
|
+
be.contentSidebar.boxSignFtuxTitle = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 βô× Ѕìğπ - Ѕέçüѓĕ, śеǻmľèѕѕ ě-şĩĝпåťúŗèѕ ϊή βо× 國國國國國國國國國國國國國國⟧
|
|
253
321
|
# label for button that opens a Box Sign signature request experience
|
|
254
|
-
be.contentSidebar.boxSignRequest = ⟦萬萬萬萬萬
|
|
322
|
+
be.contentSidebar.boxSignRequest = ⟦萬萬萬萬萬 Řėqµεŝť Şĩġʼnàţūяę 國國國國國⟧
|
|
255
323
|
# Tooltip text for when Box Sign is blocked due to a security policy
|
|
256
|
-
be.contentSidebar.boxSignSecurityBlockedTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
324
|
+
be.contentSidebar.boxSignSecurityBlockedTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ŧнĭѕ äċτĩση їѕ űηάνäîļąвĺě ďūě τô ã śêċůŗîτỳ Ρóļįçỳ. 國國國國國國國國國國國國國國國⟧
|
|
257
325
|
# label for button that opens a Box Sign signature fulfillment experience
|
|
258
|
-
be.contentSidebar.boxSignSignature = ⟦萬
|
|
326
|
+
be.contentSidebar.boxSignSignature = ⟦萬 Śϊğπ 國⟧
|
|
259
327
|
# Tooltip text for when Box Sign is blocked due to an item being watermarked
|
|
260
|
-
be.contentSidebar.boxSignWatermarkBlockedTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
328
|
+
be.contentSidebar.boxSignWatermarkBlockedTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ŧħіş äсťįőň îś űŋàνäĩľâьľε, ьêćäùŝë ťĥε ƒíľε íѕ щāťěŕmâгкèď. 國國國國國國國國國國國國國國國國國⟧
|
|
261
329
|
# title for when editing an existing approval task
|
|
262
|
-
be.contentSidebar.editTask.approval.title = ⟦萬萬萬萬萬
|
|
330
|
+
be.contentSidebar.editTask.approval.title = ⟦萬萬萬萬萬 Мŏďїƒŷ ÄΡΡŗöνáļ Ťǻşκ 國國國國國⟧
|
|
263
331
|
# modal title for when editing an existing general task
|
|
264
|
-
be.contentSidebar.editTask.general.title = ⟦萬萬萬萬萬
|
|
332
|
+
be.contentSidebar.editTask.general.title = ⟦萬萬萬萬萬 Μόďїƒÿ Ġеŋêяăľ Ŧăśк 國國國國國⟧
|
|
265
333
|
# Label for copy action.
|
|
266
|
-
be.copy = ⟦萬
|
|
334
|
+
be.copy = ⟦萬 ĊòΡý 國⟧
|
|
267
335
|
# Label for create action.
|
|
268
|
-
be.create = ⟦萬
|
|
336
|
+
be.create = ⟦萬 Ĉґėāτĕ 國⟧
|
|
269
337
|
# Error text for create folder dialog when name is already in use
|
|
270
|
-
be.createDialogErrorInUse = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
338
|
+
be.createDialogErrorInUse = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Á ƒöĺďеѓ ώįţĥ τнέ śãmĕ пâmë äļŗéâďý е×іŝťѕ. 國國國國國國國國國國國國⟧
|
|
271
339
|
# Error text for create folder dialog when name is invalid
|
|
272
|
-
be.createDialogErrorInvalid = ⟦萬萬萬萬萬萬萬萬萬
|
|
340
|
+
be.createDialogErrorInvalid = ⟦萬萬萬萬萬萬萬萬萬 Ţħіŝ ίş âń ιηνåľίď ƒσļďėŕ ήǻmė. 國國國國國國國國國⟧
|
|
273
341
|
# Error text for create folder dialog when name is too long
|
|
274
|
-
be.createDialogErrorTooLong = ⟦萬萬萬萬萬萬萬萬
|
|
342
|
+
be.createDialogErrorTooLong = ⟦萬萬萬萬萬萬萬萬 Τнίś ƒôļďêŕ иãmé íŝ τôø ĺопğ. 國國國國國國國國⟧
|
|
275
343
|
# Label for create folder dialog
|
|
276
|
-
be.createDialogLabel = ⟦萬萬
|
|
344
|
+
be.createDialogLabel = ⟦萬萬 Иєẁ ₣όľďєґ 國國⟧
|
|
277
345
|
# Text for create folder dialog
|
|
278
|
-
be.createDialogText = ⟦萬萬萬萬萬
|
|
346
|
+
be.createDialogText = ⟦萬萬萬萬萬 Pĺĕàŝè ėņτєґ ã йämè. 國國國國國⟧
|
|
279
347
|
# Current user error message
|
|
280
|
-
be.currentUserErrorHeaderMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
348
|
+
be.currentUserErrorHeaderMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Śοmёťħïņĝ ẁéиţ шґōπġ ẃĥêʼn ƒēťċħιńġ ťħе ¢ũřŗĕπţ ùѕėґ. 國國國國國國國國國國國國國國國⟧
|
|
281
349
|
# Date ascending option shown in the share access drop down select.
|
|
282
|
-
be.dateASC = ⟦萬萬萬萬萬萬
|
|
350
|
+
be.dateASC = ⟦萬萬萬萬萬萬 Ďàţē: Øĺďéşŧ → Ňěщεѕţ 國國國國國國⟧
|
|
283
351
|
# Date descending option shown in the share access drop down select.
|
|
284
|
-
be.dateDESC = ⟦萬萬萬萬萬萬
|
|
352
|
+
be.dateDESC = ⟦萬萬萬萬萬萬 Ďāŧе: Йещèѕŧ → Őļďеşτ 國國國國國國⟧
|
|
285
353
|
# Default error mask top message
|
|
286
|
-
be.defaultErrorMaskHeaderMessage = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
354
|
+
be.defaultErrorMaskHeaderMessage = ⟦萬萬萬萬萬萬萬萬萬萬 Ŵê’гε śõŕѓγ, ŝоměτнīńĝ ωèņţ ωяôиğ. 國國國國國國國國國國⟧
|
|
287
355
|
# Default error mask bottom message
|
|
288
|
-
be.defaultErrorMaskSubHeaderMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 P
|
|
356
|
+
be.defaultErrorMaskSubHeaderMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Pļéáŝε ŕéƒґēśн τħє Ρāğё öŕ ţяý āġáîη ļáţєґ. 國國國國國國國國國國國國⟧
|
|
289
357
|
# Default bottom inline error message
|
|
290
|
-
be.defaultInlineErrorContentMessage = ⟦萬萬萬萬萬萬
|
|
358
|
+
be.defaultInlineErrorContentMessage = ⟦萬萬萬萬萬萬 Pĺéăŝĕ ťŕỳ άġãιη ľǻťёг. 國國國國國國⟧
|
|
291
359
|
# Message to the user when there is at least one Open With integration available
|
|
292
|
-
be.defaultOpenWithDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
360
|
+
be.defaultOpenWithDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬 ŎΡёп ţħїŝ ƒϊļè шíţĥ ã Ραŕτņėŕ ŝéгνìсε 國國國國國國國國國國國⟧
|
|
293
361
|
# Label for default skill section in the preview sidebar
|
|
294
|
-
be.defaultSkill = ⟦萬萬
|
|
362
|
+
be.defaultSkill = ⟦萬萬 Śĸіľĺ Ćăґď 國國⟧
|
|
295
363
|
# Label for delete action.
|
|
296
|
-
be.delete = ⟦萬
|
|
364
|
+
be.delete = ⟦萬 Ðēĺёţε 國⟧
|
|
297
365
|
# Text for delete confirmation dialog for files
|
|
298
|
-
be.deleteDialogFileText = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
366
|
+
be.deleteDialogFileText = ⟦萬萬萬萬萬萬萬萬萬萬萬 Άґĕ ÿôù ѕųгė ўŏù шǻņŧ τσ ďēļєŧę {name}? 國國國國國國國國國國國⟧
|
|
299
367
|
# Text for delete confirmation dialog for folders
|
|
300
|
-
be.deleteDialogFolderText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
368
|
+
be.deleteDialogFolderText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Âŕè ўőū śųѓε ýôū щαπŧ ţō ďёļêťē {name} αņď ǻľľ ĭτѕ ċõňτéпţş? 國國國國國國國國國國國國國國國國國⟧
|
|
301
369
|
# Label for delete confirmation dialog
|
|
302
|
-
be.deleteDialogLabel = ⟦萬萬萬萬
|
|
370
|
+
be.deleteDialogLabel = ⟦萬萬萬萬 Ĉòηƒϊŗm Ďéļēţĕ 國國國國⟧
|
|
303
371
|
# Label for the description field in the preview sidebar.
|
|
304
|
-
be.description = ⟦萬萬萬
|
|
372
|
+
be.description = ⟦萬萬萬 ÐêśčґĩΡτìōņ 國國國⟧
|
|
305
373
|
# Placeholder for file description in preview sidebar.
|
|
306
|
-
be.descriptionPlaceholder = ⟦萬萬萬萬萬
|
|
374
|
+
be.descriptionPlaceholder = ⟦萬萬萬萬萬 Ėηţęŕ ą ďéş¢ŗįΡτіòň 國國國國國⟧
|
|
307
375
|
# Label for download action.
|
|
308
|
-
be.download = ⟦萬萬
|
|
376
|
+
be.download = ⟦萬萬 Ďóщйļôǻď 國國⟧
|
|
309
377
|
# Message to the user to enter into drawing annotation mode
|
|
310
|
-
be.drawAnnotation = ⟦萬萬萬萬萬萬
|
|
378
|
+
be.drawAnnotation = ⟦萬萬萬萬萬萬 Ðŕãшιпĝ áʼnňõŧáţįõп móďě 國國國國國國⟧
|
|
311
379
|
# Label for an edit action
|
|
312
|
-
be.editLabel = ⟦萬
|
|
380
|
+
be.editLabel = ⟦萬 Ëďίť 國⟧
|
|
313
381
|
# Message to the user when there are no Open With integrations
|
|
314
|
-
be.emptyOpenWithDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
382
|
+
be.emptyOpenWithDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Иο ιņŧèġřατïōиŝ ǻґе åνāïļāвĺē ƒŏг ţнϊś ƒīĺё 國國國國國國國國國國國國⟧
|
|
315
383
|
# Generic error label.
|
|
316
|
-
be.error = ⟦萬
|
|
384
|
+
be.error = ⟦萬 Έґґōř 國⟧
|
|
317
385
|
# Default label for signifying error in the sub header.
|
|
318
|
-
be.errorBreadcrumb = ⟦萬
|
|
386
|
+
be.errorBreadcrumb = ⟦萬 Èřѓóя 國⟧
|
|
319
387
|
# Title when an error occurs
|
|
320
|
-
be.errorOccured = ⟦萬萬萬萬萬
|
|
388
|
+
be.errorOccured = ⟦萬萬萬萬萬 Âи єггóґ óćċµřŕέď 國國國國國⟧
|
|
321
389
|
# Message to the user when the open with element errors
|
|
322
|
-
be.errorOpenWithDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
390
|
+
be.errorOpenWithDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ØΡεηïňĝ ŧнϊŝ ƒіĺè ẃíτħ óτħěѓ şėŕνīĉёŝ іş ¢μѓŗêήŧļУ ůиāνǻįĺăьļє 國國國國國國國國國國國國國國國國國國⟧
|
|
323
391
|
# Message shown when there is an error.
|
|
324
|
-
be.errorState = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
392
|
+
be.errorState = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 À ηëτшóяк єѓгоř ĥąś öĉčűѓŗеď ωĥіĺė ţяýĭʼnğ τŏ ļõάď. 國國國國國國國國國國國國國國⟧
|
|
325
393
|
# Header message to the user when an Open With integration fails to execute
|
|
326
|
-
be.executeIntegrationOpenWithErrorHeader = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
394
|
+
be.executeIntegrationOpenWithErrorHeader = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Шę’гĕ şōřѓŷ, ŧħíŝ įŋťēĝѓãτіõη ìś ċũѓгеήŧľỳ ũʼnāνäіľáвľė. 國國國國國國國國國國國國國國國國⟧
|
|
327
395
|
# Sub header message to the user when an Open With integration fails to execute
|
|
328
|
-
be.executeIntegrationOpenWithErrorSubHeader = ⟦萬萬萬萬萬萬 P
|
|
396
|
+
be.executeIntegrationOpenWithErrorSubHeader = ⟦萬萬萬萬萬萬 Pľéáѕέ ţřŷ ăġαїŋ ĺăťēѓ. 國國國國國國⟧
|
|
329
397
|
# Message to the user to expand the Transcript entries
|
|
330
|
-
be.expand = ⟦萬
|
|
398
|
+
be.expand = ⟦萬 É×Ρâйď 國⟧
|
|
331
399
|
# Label for face skill section in the preview sidebar
|
|
332
|
-
be.faceSkill = ⟦萬
|
|
400
|
+
be.faceSkill = ⟦萬 ₣ăċёѕ 國⟧
|
|
333
401
|
# Call-to-action text describing what to do to navigate to specified feedback form
|
|
334
|
-
be.feedbackCtaText = ⟦萬萬萬萬萬萬萬
|
|
402
|
+
be.feedbackCtaText = ⟦萬萬萬萬萬萬萬 Çľιćк ţő Ρґőνïďë ƒёėďвǻĉκ 國國國國國國國⟧
|
|
335
403
|
# Accessible text used to describe the form used for feedback
|
|
336
|
-
be.feedbackFormDescription = ⟦萬萬萬萬萬
|
|
404
|
+
be.feedbackFormDescription = ⟦萬萬萬萬萬 Βеťâ ₣ëèďьāćк ₣óгm 國國國國國⟧
|
|
337
405
|
# File access stats error message
|
|
338
|
-
be.fileAccessStatsErrorHeaderMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
406
|
+
be.fileAccessStatsErrorHeaderMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ѕŏmёŧħĩήġ ώĕņτ щřόήġ ẃнέń ƒёŧčħіπğ ťħё åс¢ëśş ѕτàťś. 國國國國國國國國國國國國國國國⟧
|
|
339
407
|
# File classification error message
|
|
340
|
-
be.fileClassificationErrorHeaderMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
408
|
+
be.fileClassificationErrorHeaderMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ѕσmеţнϊπğ ẃéņτ ẁŕσήğ ẃĥēŋ ƒέťсĥϊпğ çļåŝѕīƒĭ¢åŧϊõп. 國國國國國國國國國國國國國國⟧
|
|
341
409
|
# Inline error title message for file description
|
|
342
|
-
be.fileDescriptionInlineErrorTitleMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
410
|
+
be.fileDescriptionInlineErrorTitleMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ŝõmеτнīŋğ ŵěņτ ẃгőиĝ ωĥëʼn şąνίňĝ τнέ ďёѕçґїΡŧїσй. 國國國國國國國國國國國國國國⟧
|
|
343
411
|
# name of the File Request feature used to translate when a File Request is uploaded by the service
|
|
344
|
-
be.fileRequestDisplayName = ⟦萬萬萬
|
|
412
|
+
be.fileRequestDisplayName = ⟦萬萬萬 ₣іĺē Řéqцέśŧ 國國國⟧
|
|
345
413
|
# Message shown when there are no folder items.
|
|
346
|
-
be.folderState = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
414
|
+
be.folderState = ⟦萬萬萬萬萬萬萬萬萬萬 Ŧħεřė άřё пő įτĕmѕ іπ ŧħìѕ ƒøļďέŗ. 國國國國國國國國國國⟧
|
|
347
415
|
# Aria label for button to get information about a file’s versions
|
|
348
|
-
be.getVersionInfo = ⟦萬萬萬萬萬萬
|
|
416
|
+
be.getVersionInfo = ⟦萬萬萬萬萬萬 Ğετ νєѓѕįōņ ϊйƒöѓmαŧïøη 國國國國國國⟧
|
|
349
417
|
# Label for switching to grid view
|
|
350
|
-
be.gridView = ⟦萬萬萬萬萬
|
|
418
|
+
be.gridView = ⟦萬萬萬萬萬 Ŝωїŧсĥ ťø Ğŗíď Vіещ 國國國國國⟧
|
|
351
419
|
# Label for decreasing the size of columns in grid view
|
|
352
|
-
be.gridView.decreaseColumnSize = ⟦萬萬萬萬萬
|
|
420
|
+
be.gridView.decreaseColumnSize = ⟦萬萬萬萬萬 Ðęçŗεāşė ĉσĺμmʼn ŝĭźë 國國國國國⟧
|
|
353
421
|
# Label for increasing the size of columns in grid view
|
|
354
|
-
be.gridView.increaseColumnSize = ⟦萬萬萬萬萬
|
|
422
|
+
be.gridView.increaseColumnSize = ⟦萬萬萬萬萬 Іήċяęãśę çöĺŭmŋ şįźέ 國國國國國⟧
|
|
355
423
|
# Label for in action.
|
|
356
|
-
be.in = ⟦
|
|
424
|
+
be.in = ⟦ Іл ⟧
|
|
357
425
|
# Text for last accessed date with last access prefix.
|
|
358
|
-
be.interactedDate = ⟦萬萬萬萬萬萬
|
|
426
|
+
be.interactedDate = ⟦萬萬萬萬萬萬 Ļǻśτ ăĉçеŝşėď öʼn {date} 國國國國國國⟧
|
|
359
427
|
# Label for item created date.
|
|
360
|
-
be.itemCreated = ⟦萬萬
|
|
428
|
+
be.itemCreated = ⟦萬萬 Ćґёàťĕď 國國⟧
|
|
361
429
|
# Label for item last accessed date.
|
|
362
|
-
be.itemInteracted = ⟦萬萬萬
|
|
430
|
+
be.itemInteracted = ⟦萬萬萬 Ļǻŝτ Ăċсéѕŝéď 國國國⟧
|
|
363
431
|
# Label for item modified date.
|
|
364
|
-
be.itemModified = ⟦萬萬
|
|
432
|
+
be.itemModified = ⟦萬萬 Мοďïƒіеď 國國⟧
|
|
365
433
|
# Label for item name attribute.
|
|
366
|
-
be.itemName = ⟦萬
|
|
434
|
+
be.itemName = ⟦萬 Ńāmé 國⟧
|
|
367
435
|
# Label for item owner.
|
|
368
|
-
be.itemOwner = ⟦萬
|
|
436
|
+
be.itemOwner = ⟦萬 Òẃņêг 國⟧
|
|
369
437
|
# Label for item size attribute.
|
|
370
|
-
be.itemSize = ⟦萬
|
|
438
|
+
be.itemSize = ⟦萬 Śιżέ 國⟧
|
|
371
439
|
# label for item uploader.
|
|
372
|
-
be.itemUploader = ⟦萬萬
|
|
440
|
+
be.itemUploader = ⟦萬萬 ÜΡľóàďèř 國國⟧
|
|
373
441
|
# Label for keywords/topics skill section in the preview sidebar
|
|
374
|
-
be.keywordSkill = ⟦萬
|
|
442
|
+
be.keywordSkill = ⟦萬 ΤôΡíĉѕ 國⟧
|
|
375
443
|
# Message displayed in the activity feed for when image keyword search applies keywords
|
|
376
|
-
be.keywordsAppliedList = ⟦萬萬萬萬萬萬
|
|
444
|
+
be.keywordsAppliedList = ⟦萬萬萬萬萬萬 Ќέŷẁõґďś ωēŕё áΡΡĺιεď 國國國國國國⟧
|
|
377
445
|
# Label for a list of keywords. {words} are the list of keywords.
|
|
378
|
-
be.keywordsList = ⟦萬萬萬萬
|
|
446
|
+
be.keywordsList = ⟦萬萬萬萬 Κěỳẃōŗďś: {words} 國國國國⟧
|
|
379
447
|
# Label for switching to list view
|
|
380
|
-
be.listView = ⟦萬萬萬萬萬
|
|
448
|
+
be.listView = ⟦萬萬萬萬萬 Śŵīţçн ťо Ļїѕŧ Víëш 國國國國國⟧
|
|
381
449
|
# Message shown when folder items are still fetching.
|
|
382
|
-
be.loadingState = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
450
|
+
be.loadingState = ⟦萬萬萬萬萬萬萬萬萬萬 Pļęáśè щăϊτ щнїľέ τħę ϊťēmś ļóąď... 國國國國國國國國國國⟧
|
|
383
451
|
# Placeholder for a logo.
|
|
384
|
-
be.logo = ⟦萬
|
|
452
|
+
be.logo = ⟦萬 Ľοġô 國⟧
|
|
385
453
|
# Indicator on the footer that max items have been selected.
|
|
386
|
-
be.max = ⟦ m
|
|
454
|
+
be.max = ⟦ màх ⟧
|
|
387
455
|
# Title for all categories
|
|
388
|
-
be.messageCenter.all = ⟦
|
|
456
|
+
be.messageCenter.all = ⟦ Äĺļ ⟧
|
|
389
457
|
# Title for Box education category
|
|
390
|
-
be.messageCenter.boxEducation = ⟦萬萬萬
|
|
458
|
+
be.messageCenter.boxEducation = ⟦萬萬萬 Βő× Єďù¢āťіóй 國國國⟧
|
|
391
459
|
# Displayed when there was an error fetching posts
|
|
392
|
-
be.messageCenter.errorFetchingPosts = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
460
|
+
be.messageCenter.errorFetchingPosts = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ŝôřѓŷ, шē áѓє ħâνїиġ τřőùьľę ѕĥøẁіήğ Ρσşťѕ ãť ţħέ mõmêπŧ. Īŧ máγ ĥèľΡ ťö ѓêƒгéѕн ŧĥë Ρąğє. 國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
393
461
|
# Title for product category
|
|
394
|
-
be.messageCenter.events = ⟦萬
|
|
462
|
+
be.messageCenter.events = ⟦萬 Èνĕńţş 國⟧
|
|
395
463
|
# Displayed when there are no posts to display
|
|
396
|
-
be.messageCenter.noPosts = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
464
|
+
be.messageCenter.noPosts = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ţħєřє ǻŕę иό Ρõѕŧś ƒóґ ţĥίŝ сâťέĝόґУ åţ ţħέ mômεиŧ. 國國國國國國國國國國國國國國國⟧
|
|
397
465
|
# Error message for preview not loading an image
|
|
398
|
-
be.messageCenter.previewError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
466
|
+
be.messageCenter.previewError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ѕöгґý, ẁē'ŗё ħąνĩńĝ ţгøµьĺē ŝħōщįпġ ţĥíŝ ίmάğё. 國國國國國國國國國國國國國國⟧
|
|
399
467
|
# Title for product category
|
|
400
|
-
be.messageCenter.product = ⟦萬萬
|
|
468
|
+
be.messageCenter.product = ⟦萬萬 Pяòďµ¢ť 國國⟧
|
|
401
469
|
# Title for the message center modal
|
|
402
|
-
be.messageCenter.title = ⟦萬萬
|
|
470
|
+
be.messageCenter.title = ⟦萬萬 Шħǻţ'ş Йέщ 國國⟧
|
|
403
471
|
# Message shown when there are no items for provided metadata query.
|
|
404
|
-
be.metadataState = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
472
|
+
be.metadataState = ⟦萬萬萬萬萬萬萬萬萬萬 Ŧнéґĕ ářė ńò įťεmś їй ţĥïś ƒóľďеř. 國國國國國國國國國國⟧
|
|
405
473
|
# Text for modified date with modified prefix.
|
|
406
|
-
be.modifiedDate = ⟦萬萬萬萬
|
|
474
|
+
be.modifiedDate = ⟦萬萬萬萬 Μøďĭƒïéď {date} 國國國國⟧
|
|
407
475
|
# Text for modified date with user with modified prefix.
|
|
408
|
-
be.modifiedDateBy = ⟦萬萬萬萬萬萬
|
|
476
|
+
be.modifiedDateBy = ⟦萬萬萬萬萬萬 Μøďīƒĩěď {date} вỳ {name} 國國國國國國⟧
|
|
409
477
|
# Name ascending option shown in the share access drop down select.
|
|
410
|
-
be.nameASC = ⟦萬萬萬
|
|
478
|
+
be.nameASC = ⟦萬萬萬 Ŋαmè: Á → Ζ 國國國⟧
|
|
411
479
|
# Name descending option shown in the share access drop down select.
|
|
412
|
-
be.nameDESC = ⟦萬萬萬
|
|
480
|
+
be.nameDESC = ⟦萬萬萬 Ñąmε: Ż → Ã 國國國⟧
|
|
413
481
|
# Text for modified or interacted date with user.
|
|
414
|
-
be.nameDate = ⟦萬萬萬萬 {date}
|
|
482
|
+
be.nameDate = ⟦萬萬萬萬 {date} ьў {name} 國國國國⟧
|
|
415
483
|
# Label for create new folder action.
|
|
416
|
-
be.newFolder = ⟦萬萬
|
|
484
|
+
be.newFolder = ⟦萬萬 Ņеẁ ₣õľďęѓ 國國⟧
|
|
417
485
|
# Next file button title
|
|
418
|
-
be.nextFile = ⟦萬萬
|
|
486
|
+
be.nextFile = ⟦萬萬 Ñėхť ₣îľе 國國⟧
|
|
419
487
|
# Title for next segment on skill timeline
|
|
420
|
-
be.nextSegment = ⟦萬萬萬
|
|
488
|
+
be.nextSegment = ⟦萬萬萬 Ŋехť Ŝèĝmëпŧ 國國國⟧
|
|
421
489
|
# Message displayed in an empty activity feed
|
|
422
|
-
be.noActivity = ⟦萬萬萬萬萬
|
|
490
|
+
be.noActivity = ⟦萬萬萬萬萬 Ñò ąçτìνĩťў ťö śħσщ 國國國國國⟧
|
|
423
491
|
# Message shown alongside empty activity feed when user can annotate
|
|
424
|
-
be.noActivityAnnotationPrompt = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
492
|
+
be.noActivityAnnotationPrompt = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ήôνėř öνέѓ ťнę Ρѓёνīеŵ ąňď µѕè ŧне ĉóńτŗòľś ąţ τĥė ьôŧťőm ŧό äлŋöţάţé ŧĥë ƒĩĺë. 國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
425
493
|
# Message shown in
|
|
426
|
-
be.noActivityCommentPrompt = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
494
|
+
be.noActivityCommentPrompt = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ċømmèňţ ąйď @mεлţίóл ΡέőΡĺè ţó ņοţīƒý ťнеm. 國國國國國國國國國國國國⟧
|
|
427
495
|
# Label for open action.
|
|
428
|
-
be.open = ⟦萬
|
|
496
|
+
be.open = ⟦萬 ÖΡεń 國⟧
|
|
429
497
|
# Next page button tooltip
|
|
430
|
-
be.pagination.nextPage = ⟦萬萬
|
|
498
|
+
be.pagination.nextPage = ⟦萬萬 Ňέхţ Pάĝĕ 國國⟧
|
|
431
499
|
# Pagination menu button with current page number out of total number of pages
|
|
432
|
-
be.pagination.pageStatus = ⟦萬萬萬萬 {pageNumber}
|
|
500
|
+
be.pagination.pageStatus = ⟦萬萬萬萬 {pageNumber} øƒ {pageCount} 國國國國⟧
|
|
433
501
|
# Previous page button tooltip
|
|
434
|
-
be.pagination.previousPage = ⟦萬萬萬 P
|
|
502
|
+
be.pagination.previousPage = ⟦萬萬萬 Pяενíōùś Păğē 國國國⟧
|
|
435
503
|
# Message to the user to enter into point annotation mode
|
|
436
|
-
be.pointAnnotation = ⟦萬萬萬萬萬萬 P
|
|
504
|
+
be.pointAnnotation = ⟦萬萬萬萬萬萬 Pоĩήŧ âńлόťατϊöй møďė 國國國國國國⟧
|
|
437
505
|
# Label for preview action.
|
|
438
|
-
be.preview = ⟦萬萬 P
|
|
506
|
+
be.preview = ⟦萬萬 Pгєνįėώ 國國⟧
|
|
439
507
|
# Error message when Preview fails due to the files call.
|
|
440
|
-
be.previewError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
508
|
+
be.previewError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Щě’ґе śŏґґý, ţħέ Ρгеνιєω ďîďŋ’ţ ĺőàď. Pļêãşе ѓèƒřéŝħ ŧħє Ρàğĕ. 國國國國國國國國國國國國國國國國國國⟧
|
|
441
509
|
# Error message when Preview fails due to the files call which is blocked by an access policy.
|
|
442
|
-
be.previewErrorBlockedByPolicy = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
510
|
+
be.previewErrorBlockedByPolicy = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Υøũř áĉçēśś τō τнíş ćοŋţέńτ ĭś гëśťřϊćτεď ďúέ ŧό á śëčųяïťУ ΡõľīćУ. 國國國國國國國國國國國國國國國國國國國國⟧
|
|
443
511
|
# Message when new preview is available.
|
|
444
|
-
be.previewUpdate = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
512
|
+
be.previewUpdate = ⟦萬萬萬萬萬萬萬萬萬萬萬 Ą ńēẁ νεяŝϊôл оƒ ŧħїŝ ƒíĺě ĩş äνǻĭļâвĺę. 國國國國國國國國國國國⟧
|
|
445
513
|
# Previous file button title
|
|
446
|
-
be.previousFile = ⟦萬萬萬 P
|
|
514
|
+
be.previousFile = ⟦萬萬萬 Pгęνїōüŝ ₣îľё 國國國⟧
|
|
447
515
|
# Title for previous segment on skill timeline
|
|
448
|
-
be.previousSegment = ⟦萬萬萬萬 P
|
|
516
|
+
be.previousSegment = ⟦萬萬萬萬 Pяéνįóûŝ Ŝêġméŋτ 國國國國⟧
|
|
449
517
|
# Label for print action
|
|
450
|
-
be.print = ⟦萬 P
|
|
518
|
+
be.print = ⟦萬 Pгĭηť 國⟧
|
|
451
519
|
# If a user has been deleted, we call the user "a prior collaborator" - meaning someone who used to be able to collaborate on the content.
|
|
452
|
-
be.priorCollaborator = ⟦萬萬萬萬萬
|
|
520
|
+
be.priorCollaborator = ⟦萬萬萬萬萬 À Pŕîôя Ćοĺĺäвõŗǻτσя 國國國國國⟧
|
|
453
521
|
# Shown as the title in the sub header when showing recents.
|
|
454
|
-
be.recentsBreadcrumb = ⟦萬萬
|
|
522
|
+
be.recentsBreadcrumb = ⟦萬萬 Ŗêċėńτş 國國⟧
|
|
455
523
|
# Message shown when there are no recent items.
|
|
456
|
-
be.recentsState = ⟦萬萬萬萬萬萬萬萬
|
|
524
|
+
be.recentsState = ⟦萬萬萬萬萬萬萬萬 Ŧħëгέ àřę ήô яĕ¢єпť íτёmŝ ŷęť. 國國國國國國國國⟧
|
|
457
525
|
# Label for reload button.
|
|
458
|
-
be.reload = ⟦萬
|
|
526
|
+
be.reload = ⟦萬 Ŗёľóåď 國⟧
|
|
459
527
|
# Label for remove action.
|
|
460
|
-
be.remove = ⟦萬
|
|
528
|
+
be.remove = ⟦萬 Γęmōνє 國⟧
|
|
461
529
|
# Label for rename action.
|
|
462
|
-
be.rename = ⟦萬
|
|
530
|
+
be.rename = ⟦萬 Ѓεπàmέ 國⟧
|
|
463
531
|
# Error text for rename dialog when name is already in use
|
|
464
|
-
be.renameDialogErrorInUse = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
532
|
+
be.renameDialogErrorInUse = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Αη ϊŧėm щìţĥ ŧħė ѕåmê ηàmέ ǻĺŗěąďý èхîśţѕ. 國國國國國國國國國國國國⟧
|
|
465
533
|
# Error text for rename dialog when name is invalid
|
|
466
|
-
be.renameDialogErrorInvalid = ⟦萬萬萬萬萬萬
|
|
534
|
+
be.renameDialogErrorInvalid = ⟦萬萬萬萬萬萬 Τħίŝ ńâmé ιś îπνâľįď. 國國國國國國⟧
|
|
467
535
|
# Error text for rename dialog when name is too long
|
|
468
|
-
be.renameDialogErrorTooLong = ⟦萬萬萬萬萬萬
|
|
536
|
+
be.renameDialogErrorTooLong = ⟦萬萬萬萬萬萬 Ŧĥίś ʼnámє īŝ ťõо ľōņğ. 國國國國國國⟧
|
|
469
537
|
# Label for rename dialog
|
|
470
|
-
be.renameDialogLabel = ⟦萬
|
|
538
|
+
be.renameDialogLabel = ⟦萬 Ŕεπåmě 國⟧
|
|
471
539
|
# Text for rename dialog
|
|
472
|
-
be.renameDialogText = ⟦萬萬萬萬萬萬萬萬萬萬 P
|
|
540
|
+
be.renameDialogText = ⟦萬萬萬萬萬萬萬萬萬萬 Pļèăśε ěŋťéя ą ηёщ ήämє ƒόř {name}: 國國國國國國國國國國⟧
|
|
473
541
|
# Label for resume action for a single file.
|
|
474
|
-
be.resume = ⟦萬
|
|
542
|
+
be.resume = ⟦萬 Ѓēѕúmë 國⟧
|
|
475
543
|
# Label for resume action for multiple files.
|
|
476
|
-
be.resumeAll = ⟦萬萬
|
|
544
|
+
be.resumeAll = ⟦萬萬 Ŕεѕùmê Αĺļ 國國⟧
|
|
477
545
|
# Label for retry action.
|
|
478
|
-
be.retry = ⟦萬
|
|
546
|
+
be.retry = ⟦萬 Řєτřÿ 國⟧
|
|
479
547
|
# Default label for root folder.
|
|
480
|
-
be.rootBreadcrumb = ⟦萬萬
|
|
548
|
+
be.rootBreadcrumb = ⟦萬萬 Åĺļ ₣ίļéş 國國⟧
|
|
481
549
|
# Label for save action.
|
|
482
|
-
be.save = ⟦萬
|
|
550
|
+
be.save = ⟦萬 Ѕáνё 國⟧
|
|
483
551
|
# Shown as the title in the sub header while searching.
|
|
484
|
-
be.searchBreadcrumb = ⟦萬萬萬萬
|
|
552
|
+
be.searchBreadcrumb = ⟦萬萬萬萬 Şεāѓ¢ĥ Ŗèśųļťś 國國國國⟧
|
|
485
553
|
# Shown as a placeholder in the search box.
|
|
486
|
-
be.searchPlaceholder = ⟦萬萬萬萬萬萬萬
|
|
554
|
+
be.searchPlaceholder = ⟦萬萬萬萬萬萬萬 Ѕĕǻгčħ ƒīļěś ǻηď ƒōĺďéяş 國國國國國國國⟧
|
|
487
555
|
# Message shown when there are no search results.
|
|
488
|
-
be.searchState = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
556
|
+
be.searchState = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Śŏґŕÿ, ŵě ċóųľďй’ŧ ƒĭʼnď ŵħαŧ ўòù’ѓє ľøõκîʼnġ ƒσř. 國國國國國國國國國國國國國國⟧
|
|
489
557
|
# Default label for selected items list in the footer.
|
|
490
|
-
be.selected = ⟦萬萬萬萬 {count}
|
|
558
|
+
be.selected = ⟦萬萬萬萬 {count} Śёļέćτеď 國國國國⟧
|
|
491
559
|
# Shown as the title in the sub header while showing selected items.
|
|
492
|
-
be.selectedBreadcrumb = ⟦萬萬萬萬
|
|
560
|
+
be.selectedBreadcrumb = ⟦萬萬萬萬 Śέļėĉťĕď Ίťėmѕ 國國國國⟧
|
|
493
561
|
# Message shown when there are no selected items.
|
|
494
|
-
be.selectedState = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
562
|
+
be.selectedState = ⟦萬萬萬萬萬萬萬萬萬萬 Υοµ нăνęʼn’ţ ŝéļεċτеď äπÿ ίťémѕ Уēţ. 國國國國國國國國國國⟧
|
|
495
563
|
# Label for share action.
|
|
496
|
-
be.share = ⟦萬
|
|
564
|
+
be.share = ⟦萬 Ŝĥåяέ 國⟧
|
|
497
565
|
# Dropdown select option for collaborator share access.
|
|
498
|
-
be.shareAccessCollab = ⟦萬萬萬萬萬萬萬萬
|
|
566
|
+
be.shareAccessCollab = ⟦萬萬萬萬萬萬萬萬 Άсćėşѕ: PēöΡļē íʼn ťħíś ƒőĺďέŗ 國國國國國國國國⟧
|
|
499
567
|
# Dropdown select option for enterprise share access.
|
|
500
|
-
be.shareAccessCompany = ⟦萬萬萬萬萬萬 P
|
|
568
|
+
be.shareAccessCompany = ⟦萬萬萬萬萬萬 PєøΡļë ĭй ţĥįş ĉômΡåπÿ 國國國國國國⟧
|
|
501
569
|
# Dropdown select option for no access.
|
|
502
|
-
be.shareAccessNone = ⟦萬萬萬萬
|
|
570
|
+
be.shareAccessNone = ⟦萬萬萬萬 Ńő ŝнåґęď ĺįʼnκ 國國國國⟧
|
|
503
571
|
# Dropdown select option for open share access.
|
|
504
|
-
be.shareAccessOpen = ⟦萬萬萬萬萬萬萬萬
|
|
572
|
+
be.shareAccessOpen = ⟦萬萬萬萬萬萬萬萬 Ãсçéѕş: PėőΡĺё ώίţħ τнé ľìŋĸ 國國國國國國國國⟧
|
|
505
573
|
# Dropdown select option to remove access.
|
|
506
|
-
be.shareAccessRemove = ⟦萬萬萬萬萬
|
|
574
|
+
be.shareAccessRemove = ⟦萬萬萬萬萬 Γěmőνє śнàŗěď ļīńķ 國國國國國⟧
|
|
507
575
|
# Label for shared link dialog
|
|
508
|
-
be.shareDialogLabel = ⟦萬
|
|
576
|
+
be.shareDialogLabel = ⟦萬 Şħαяε 國⟧
|
|
509
577
|
# Text for no shared link
|
|
510
|
-
be.shareDialogNone = ⟦萬
|
|
578
|
+
be.shareDialogNone = ⟦萬 Νøиê 國⟧
|
|
511
579
|
# Text for share link dialog
|
|
512
|
-
be.shareDialogText = ⟦萬萬萬
|
|
580
|
+
be.shareDialogText = ⟦萬萬萬 Śħáŗéď Ŀìńκ: 國國國⟧
|
|
513
581
|
# Title for the sidebar access stats.
|
|
514
|
-
be.sidebarAccessStats = ⟦萬萬萬
|
|
582
|
+
be.sidebarAccessStats = ⟦萬萬萬 Á¢ĉęśŝ Śťăτś 國國國⟧
|
|
515
583
|
# Title for the preview activity feed.
|
|
516
|
-
be.sidebarActivityTitle = ⟦萬萬
|
|
584
|
+
be.sidebarActivityTitle = ⟦萬萬 Å¢τíνĭţў 國國⟧
|
|
585
|
+
# Title for the sidebar content insights.
|
|
586
|
+
be.sidebarContentInsights = ⟦萬萬萬萬 Çοņŧėńτ Іʼnśίĝнţŝ 國國國國⟧
|
|
517
587
|
# Title for the preview details sidebar.
|
|
518
|
-
be.sidebarDetailsTitle = ⟦萬萬
|
|
588
|
+
be.sidebarDetailsTitle = ⟦萬萬 Ðėτåįľŝ 國國⟧
|
|
519
589
|
# Generic error content for file fetching.
|
|
520
|
-
be.sidebarFileFetchingErrorContent = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
590
|
+
be.sidebarFileFetchingErrorContent = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ãи έřгòя ĥαŝ ő¢ĉűґгëď шĥĭļē ƒёťćħíňĝ ỳóûř ßő× ƒĩļê. Pĺεάѕě гēƒŕëѕн ţĥě Ρâġε ăлď ţŗŷ ăĝǻïи. 國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
521
591
|
# Label for the hide sidebar button.
|
|
522
|
-
be.sidebarHide = ⟦萬萬萬
|
|
592
|
+
be.sidebarHide = ⟦萬萬萬 Ήϊďё Ŝιďêьăґ 國國國⟧
|
|
523
593
|
# Generic error content for metadata editing.
|
|
524
|
-
be.sidebarMetadataEditingErrorContent = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
594
|
+
be.sidebarMetadataEditingErrorContent = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ǻπ егŕοř ĥāş ö¢ĉùѓгεď щнîļе ũΡďäτіńĝ měŧãďåťă. Pĺēáşė ŗĕƒŗèşн ŧĥε Ρãğє ąŋď ţѓγ âġǻīņ. 國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
525
595
|
# Generic error content for metadata fetching.
|
|
526
|
-
be.sidebarMetadataFetchingErrorContent = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
596
|
+
be.sidebarMetadataFetchingErrorContent = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ǻή έřŕοґ ĥāş ô¢ćμřгêď шĥíľε ƒėţćħїлġ mëţäďąŧǻ. Pĺēąѕė яěƒяеŝħ τне Ρäĝé ǻиď τґў ǻĝáíπ. 國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
527
597
|
# Title for the preview metadata.
|
|
528
|
-
be.sidebarMetadataTitle = ⟦萬萬
|
|
598
|
+
be.sidebarMetadataTitle = ⟦萬萬 Мëτǻďǻτä 國國⟧
|
|
529
599
|
# Label for the sidebar tabs list
|
|
530
|
-
be.sidebarNavLabel = ⟦萬萬
|
|
600
|
+
be.sidebarNavLabel = ⟦萬萬 Śϊďèьάґ 國國⟧
|
|
531
601
|
# Label for file properties section in the preview sidebar
|
|
532
|
-
be.sidebarProperties = ⟦萬萬萬萬
|
|
602
|
+
be.sidebarProperties = ⟦萬萬萬萬 ₣îļё PřőΡēŗτìēŝ 國國國國⟧
|
|
533
603
|
# Label for the show sidebar button.
|
|
534
|
-
be.sidebarShow = ⟦萬萬萬
|
|
604
|
+
be.sidebarShow = ⟦萬萬萬 Şħóẃ Ѕĩďёвάѓ 國國國⟧
|
|
535
605
|
# Generic error content for skills editing.
|
|
536
|
-
be.sidebarSkillsErrorContent = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
606
|
+
be.sidebarSkillsErrorContent = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ąή ĕѓгőѓ нâş ø¢čűѓѓęď ώĥīĺę μΡďāťīиğ śκïľļѕ. Pĺêǻѕë геƒгéşн ŧħë Ρäĝε ãпď ŧяў άğαîʼn. 國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
537
607
|
# Generic error title for skills editing.
|
|
538
|
-
be.sidebarSkillsErrorTitle = ⟦萬萬萬
|
|
608
|
+
be.sidebarSkillsErrorTitle = ⟦萬萬萬 Şķîĺĺś Ėгяőř 國國國⟧
|
|
539
609
|
# Title for the preview details skills.
|
|
540
|
-
be.sidebarSkillsTitle = ⟦萬
|
|
610
|
+
be.sidebarSkillsTitle = ⟦萬 Śκĩľļś 國⟧
|
|
541
611
|
# Label for the current version item in the version history list.
|
|
542
|
-
be.sidebarVersions.current = ⟦萬萬萬萬
|
|
612
|
+
be.sidebarVersions.current = ⟦萬萬萬萬 Çúŕгєлŧ Vёŕѕīőй 國國國國⟧
|
|
543
613
|
# Label for the version delete action.
|
|
544
|
-
be.sidebarVersions.delete = ⟦萬
|
|
614
|
+
be.sidebarVersions.delete = ⟦萬 Ďëĺęţĕ 國⟧
|
|
545
615
|
# Error message for the version delete action.
|
|
546
|
-
be.sidebarVersions.deleteError = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
616
|
+
be.sidebarVersions.deleteError = ⟦萬萬萬萬萬萬萬萬萬萬 ₣ìļè νëяśīôπ ċôüľď πоţ ье ďēľèŧєď. 國國國國國國國國國國⟧
|
|
547
617
|
# Message displayed for a deleted version. {name} is the user who performed the action.
|
|
548
|
-
be.sidebarVersions.deletedBy = ⟦萬萬萬萬
|
|
618
|
+
be.sidebarVersions.deletedBy = ⟦萬萬萬萬 Ďèĺεťėď вγ {name} 國國國國⟧
|
|
549
619
|
# Tooltip message for actions disabled by retention policy.
|
|
550
|
-
be.sidebarVersions.disabledByRetention = ⟦萬萬萬萬萬萬萬萬
|
|
620
|
+
be.sidebarVersions.disabledByRetention = ⟦萬萬萬萬萬萬萬萬 Ďïŝáьļěď вý ѓéτęŋτιöη Ρσľιčγ 國國國國國國國國⟧
|
|
551
621
|
# Label for the version download action.
|
|
552
|
-
be.sidebarVersions.download = ⟦萬萬
|
|
622
|
+
be.sidebarVersions.download = ⟦萬萬 Ďόẃʼnĺöąď 國國⟧
|
|
553
623
|
# Error message for the version download action.
|
|
554
|
-
be.sidebarVersions.downloadError = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
624
|
+
be.sidebarVersions.downloadError = ⟦萬萬萬萬萬萬萬萬萬萬萬 ₣ίľė νęяśíőй ĉôûĺď ŋóτ вĕ ďòшňĺόåďěď. 國國國國國國國國國國國⟧
|
|
555
625
|
# Message to display when no versions are available
|
|
556
|
-
be.sidebarVersions.empty = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
626
|
+
be.sidebarVersions.empty = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Йó Ρгĩõя νêŗşіöпѕ àѓё āνǻīĺăвļе ƒŏг ťнįѕ ƒîļе. 國國國國國國國國國國國國國⟧
|
|
557
627
|
# Error message for the versions fetch call.
|
|
558
|
-
be.sidebarVersions.fetchError = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
628
|
+
be.sidebarVersions.fetchError = ⟦萬萬萬萬萬萬萬萬萬萬萬 ₣íĺę νèяşíõʼnѕ сσűļď ńόţ вē ѓèτгïéνęď. 國國國國國國國國國國國⟧
|
|
559
629
|
# name of the File Request feature used to translate when a File Request is uploaded by the service
|
|
560
|
-
be.sidebarVersions.fileRequestDisplayName = ⟦萬萬萬
|
|
630
|
+
be.sidebarVersions.fileRequestDisplayName = ⟦萬萬萬 ₣íļė Ŕěqŭèśť 國國國⟧
|
|
561
631
|
# Error message with upsell for the versions fetch call for users who dont have the version feature.
|
|
562
|
-
be.sidebarVersions.notAvailable = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
632
|
+
be.sidebarVersions.notAvailable = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ѕöѓŕÿ, νěяśιŏŋ нїśτôґў ìś ήòţ άνäϊļâвĺĕ ẃĩţн Уοцř ĉµяґεйţ αс¢ōµлŧ Ρľäń. Ŧо ãсĉёśś νėгśìőňĭпĝ, ѕêľéčτ ƒґòm όпέ öƒ ŏμя Ρàįď Ρľäņѕ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
563
633
|
# Label for the version preview action.
|
|
564
|
-
be.sidebarVersions.preview = ⟦萬萬 P
|
|
634
|
+
be.sidebarVersions.preview = ⟦萬萬 Pяëνіęш 國國⟧
|
|
565
635
|
# Header to display for group of versions created in the prior week
|
|
566
|
-
be.sidebarVersions.priorWeek = ⟦萬萬
|
|
636
|
+
be.sidebarVersions.priorWeek = ⟦萬萬 Ľáşτ Шέęķ 國國⟧
|
|
567
637
|
# Label for the version promote action.
|
|
568
|
-
be.sidebarVersions.promote = ⟦萬萬萬
|
|
638
|
+
be.sidebarVersions.promote = ⟦萬萬萬 Мǻĸé Ċűŗřєňť 國國國⟧
|
|
569
639
|
# Error message for the version promote action.
|
|
570
|
-
be.sidebarVersions.promoteError = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
640
|
+
be.sidebarVersions.promoteError = ⟦萬萬萬萬萬萬萬萬萬萬萬 ₣ĩľе νέяŝĭôή ĉοùĺď ʼnŏţ вė mäďё čűѓяеηţ. 國國國國國國國國國國國⟧
|
|
571
641
|
# Message displayed for a restored version. {name} is the user who performed the action.
|
|
572
|
-
be.sidebarVersions.promotedBy = ⟦萬萬萬萬萬萬萬萬 P
|
|
642
|
+
be.sidebarVersions.promotedBy = ⟦萬萬萬萬萬萬萬萬 Pѓоmøţêď ƒřøm ν{versionPromoted} ьŷ {name} 國國國國國國國國⟧
|
|
573
643
|
# Label for the version restore action.
|
|
574
|
-
be.sidebarVersions.restore = ⟦萬萬
|
|
644
|
+
be.sidebarVersions.restore = ⟦萬萬 Ґèşŧόŕę 國國⟧
|
|
575
645
|
# Error message for the version restored action.
|
|
576
|
-
be.sidebarVersions.restoreError = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
646
|
+
be.sidebarVersions.restoreError = ⟦萬萬萬萬萬萬萬萬萬萬 ₣ìľе νėгşіōŋ ćŏũĺď ήőŧ вė ґěşţōяëď. 國國國國國國國國國國⟧
|
|
577
647
|
# Message displayed for a restored version. {name} is the user who performed the action.
|
|
578
|
-
be.sidebarVersions.restoredBy = ⟦萬萬萬萬萬
|
|
648
|
+
be.sidebarVersions.restoredBy = ⟦萬萬萬萬萬 Γèşťöяёď ьŷ {name} 國國國國國⟧
|
|
579
649
|
# Heading for inline error messages displayed due to a remote server issue.
|
|
580
|
-
be.sidebarVersions.serverError = ⟦萬萬萬
|
|
650
|
+
be.sidebarVersions.serverError = ⟦萬萬萬 Ѕĕŗνëя Ëгяõѓ 國國國⟧
|
|
581
651
|
# Header to display for group of versions created in the current month
|
|
582
|
-
be.sidebarVersions.thisMonth = ⟦萬萬
|
|
652
|
+
be.sidebarVersions.thisMonth = ⟦萬萬 Ŧнïѕ Μōŋτħ 國國⟧
|
|
583
653
|
# Title for the preview versions sidebar
|
|
584
|
-
be.sidebarVersions.title = ⟦萬萬萬萬 V
|
|
654
|
+
be.sidebarVersions.title = ⟦萬萬萬萬 Vεřѕĩóη Ħіŝťōґŷ 國國國國⟧
|
|
585
655
|
# Header to display for group of versions created yesterday
|
|
586
|
-
be.sidebarVersions.today = ⟦萬
|
|
656
|
+
be.sidebarVersions.today = ⟦萬 Ťŏďǻγ 國⟧
|
|
587
657
|
# Label for the version actions dropdown menu toggle button.
|
|
588
|
-
be.sidebarVersions.toggle = ⟦萬萬萬萬萬
|
|
658
|
+
be.sidebarVersions.toggle = ⟦萬萬萬萬萬 Τоğğļě Άčŧîσňŝ Мêňμ 國國國國國⟧
|
|
589
659
|
# Text on the upgrade button shown when user does not have access to Version History
|
|
590
|
-
be.sidebarVersions.upgradeButton = ⟦萬萬
|
|
660
|
+
be.sidebarVersions.upgradeButton = ⟦萬萬 ÙΡğгåďë 國國⟧
|
|
591
661
|
# Text on the upgrade button shown when user does not have access to Version History
|
|
592
|
-
be.sidebarVersions.upgradeLink = ⟦萬萬萬
|
|
662
|
+
be.sidebarVersions.upgradeLink = ⟦萬萬萬 ЏΡğŗàďё Ŋøẁ 國國國⟧
|
|
593
663
|
# Message displayed for an uploaded version. {name} is the user who performed the action.
|
|
594
|
-
be.sidebarVersions.uploadedBy = ⟦萬萬萬萬萬
|
|
664
|
+
be.sidebarVersions.uploadedBy = ⟦萬萬萬萬萬 ŨΡļôάďèď вŷ {name} 國國國國國⟧
|
|
595
665
|
# Text displayed if a version exceeds the user's maximum allowed version count
|
|
596
|
-
be.sidebarVersions.versionLimitExceeded = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
666
|
+
be.sidebarVersions.versionLimitExceeded = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Υŏů àŕë ļímĭţěď τо ťнέ ľāşτ {versionLimit, number} {versionLimit, plural, one {νëгşíσή} other {νеґśĭόπѕ}}. 國國國國國國國國國國國國國國國國國國國⟧
|
|
597
667
|
# Max supported entries for version history
|
|
598
|
-
be.sidebarVersions.versionMaxEntries = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 V
|
|
668
|
+
be.sidebarVersions.versionMaxEntries = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Véгśìōπ ĥίşŧŏřÿ īѕ ļímĭŧеď τö ţнє ļăşţ {maxVersions} èйťřîεś. 國國國國國國國國國國國國國國國⟧
|
|
599
669
|
# Text to display in the version badge.
|
|
600
670
|
be.sidebarVersions.versionNumberBadge = ⟦萬 V{versionNumber} 國⟧
|
|
601
671
|
# Label given to the version badge for screen readers.
|
|
602
|
-
be.sidebarVersions.versionNumberLabel = ⟦萬萬萬萬萬 V
|
|
672
|
+
be.sidebarVersions.versionNumberLabel = ⟦萬萬萬萬萬 Véŕśїõη ŋůmвег {versionNumber} 國國國國國⟧
|
|
603
673
|
# Message describing when the version will be deleted due to an applied retention policy.
|
|
604
|
-
be.sidebarVersions.versionRetentionDelete = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
674
|
+
be.sidebarVersions.versionRetentionDelete = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Щіĺļ вε ďèļęţëď {time} вУ ŕėţеиťϊόή Ρôĺĭćý. 國國國國國國國國國國國國⟧
|
|
605
675
|
# Message describing that the version retention policy is indefinite and will not expire.
|
|
606
|
-
be.sidebarVersions.versionRetentionIndefinite = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
676
|
+
be.sidebarVersions.versionRetentionIndefinite = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Řéţâїήĕď ϊйďέƒĭηíτεľŷ ьУ ŗĕťέйτĩòй Ροļїċÿ. 國國國國國國國國國國國國⟧
|
|
607
677
|
# Message describing when the version retention policy will expire.
|
|
608
|
-
be.sidebarVersions.versionRetentionRemove = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
678
|
+
be.sidebarVersions.versionRetentionRemove = ⟦萬萬萬萬萬萬萬萬萬萬 Яêťėʼnτĩоπ Ρòľîçý ε×Ρϊґèś öń {time}. 國國國國國國國國國國⟧
|
|
609
679
|
# Upgrade message shown when user does not have access to Version History
|
|
610
|
-
be.sidebarVersions.versionUpsell = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
680
|
+
be.sidebarVersions.versionUpsell = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Şόггγ, νĕŗşïôŋ ħĩŝťσгŷ ïś πøŧ áνąϊļàьľè щìŧħ γóųŕ ċùѓгéηţ äçčоůηť Ρľǻл. Το ăčсεşѕ νέгşίôńїŋĝ, ѕęĺε¢τ ƒѓōm οņе ôƒ ôũř Ραĩď Ρļàηş. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
611
681
|
# Name displayed for unknown or deleted users.
|
|
612
|
-
be.sidebarVersions.versionUserUnknown = ⟦萬萬
|
|
682
|
+
be.sidebarVersions.versionUserUnknown = ⟦萬萬 Џņкńòшп 國國⟧
|
|
613
683
|
# Header to display for group of versions created today
|
|
614
|
-
be.sidebarVersions.yesterday = ⟦萬萬
|
|
684
|
+
be.sidebarVersions.yesterday = ⟦萬萬 Ύёѕťєґďáỳ 國國⟧
|
|
615
685
|
# Size ascending option shown in the share access drop down select.
|
|
616
|
-
be.sizeASC = ⟦萬萬萬萬萬萬萬
|
|
686
|
+
be.sizeASC = ⟦萬萬萬萬萬萬萬 Ѕίżę: Śmάĺļēѕτ → Ļãяĝеѕť 國國國國國國國⟧
|
|
617
687
|
# Size descending option shown in the share access drop down select.
|
|
618
|
-
be.sizeDESC = ⟦萬萬萬萬萬萬萬
|
|
688
|
+
be.sizeDESC = ⟦萬萬萬萬萬萬萬 Ŝīżě: Ļäŕġĕѕŧ → Ѕmąļļεşτ 國國國國國國國⟧
|
|
619
689
|
# Error message when a skill processing failed
|
|
620
|
-
be.skillFileProcessingError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
690
|
+
be.skillFileProcessingError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ẁέ’ŕê şòґяÿ, ѕòmеťħįņĝ щёʼnτ ωřόпġ ẁіţĥ Ρŗосєѕŝĩηğ ţħë ƒιľê. 國國國國國國國國國國國國國國國國國⟧
|
|
621
691
|
# Error message when skill fails due to file extension
|
|
622
|
-
be.skillInvalidFileExtensionError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
692
|
+
be.skillInvalidFileExtensionError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Щё’гė şόгѓў, ηõ şкĭľļѕ іπƒòѓmǻţïőń ẃâѕ ƒŏűηď. Ŧħīş ƒϊĺё ĕ×ŧеňѕίõŋ ĩś ćμŗґёйτľŷ йöť ѕųΡΡóяťèď. 國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
623
693
|
# Error message when skill fails due to file size
|
|
624
|
-
be.skillInvalidFileSizeError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
694
|
+
be.skillInvalidFileSizeError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Щě’яє ѕσґгў, иó şκιľĺş íʼnƒóґmαţīôή ωăѕ ƒòμŋď. Τĥίś ƒīļê ѕīżę ìŝ ċůгŗéήťľý πøŧ şūΡΡöřτεď. 國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
625
695
|
# Default message when skills are waiting to run
|
|
626
|
-
be.skillInvokedStatus = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
696
|
+
be.skillInvokedStatus = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ŵè’řє ΡгέΡāŕïйĝ ţō Ρґōċëśŝ ўσüŗ ƒίĺέ - Ρļєãѕέ нøĺď! 國國國國國國國國國國國國國國國⟧
|
|
627
697
|
# Error message when a skill has no data
|
|
628
|
-
be.skillNoInfoFoundError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
698
|
+
be.skillNoInfoFoundError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Ẁè’яε śőяґỳ, ňο şĸįľľś ϊйƒοŕmăťíόη ωáş ƒόŭπď. 國國國國國國國國國國國國國⟧
|
|
629
699
|
# Default message when skills are still running
|
|
630
|
-
be.skillPendingStatus = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
700
|
+
be.skillPendingStatus = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Щě’ѓę ẃóřķĭʼnğ øη Ρяõĉęśśįŋĝ ŷοµŗ ƒîĺě - Ρĺèâşě ħòľď! 國國國國國國國國國國國國國國國⟧
|
|
631
701
|
# Default error message when skills fail to run
|
|
632
|
-
be.skillUnknownError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
702
|
+
be.skillUnknownError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ѕòmêŧĥìηĝ щēήŧ щяοпğ ώîŧĥ ѓúйņĭήġ ťħìş ŝκíľĺ ŏř ƒеţ¢нĭňĝ ĭτѕ ďαťå. 國國國國國國國國國國國國國國國國國國國⟧
|
|
633
703
|
# Label for sort action
|
|
634
|
-
be.sort = ⟦萬
|
|
704
|
+
be.sort = ⟦萬 Ѕöяť 國⟧
|
|
635
705
|
# Label for status skill card in the preview sidebar
|
|
636
|
-
be.statusSkill = ⟦萬
|
|
706
|
+
be.statusSkill = ⟦萬 Şťàŧůŝ 國⟧
|
|
637
707
|
# Shown instead of todays date.
|
|
638
|
-
be.today = ⟦萬
|
|
708
|
+
be.today = ⟦萬 ţσďàý 國⟧
|
|
639
709
|
# Label for keywords/topics skill section in the preview sidebar
|
|
640
|
-
be.topicsSkill = ⟦萬
|
|
710
|
+
be.topicsSkill = ⟦萬 ŢόΡįĉŝ 國⟧
|
|
641
711
|
# Message to the user for editing the transcript in the sidebar
|
|
642
|
-
be.transcriptEdit = ⟦萬萬萬萬萬萬萬
|
|
712
|
+
be.transcriptEdit = ⟦萬萬萬萬萬萬萬 Čĺϊçк ąňў ŝēсτίőπ ŧø єďїţ. 國國國國國國國⟧
|
|
643
713
|
# Label for transcript skill section in the preview sidebar
|
|
644
|
-
be.transcriptSkill = ⟦萬萬
|
|
714
|
+
be.transcriptSkill = ⟦萬萬 ŦґąήŝčяįΡţ 國國⟧
|
|
645
715
|
# Label for upload action.
|
|
646
|
-
be.upload = ⟦萬
|
|
716
|
+
be.upload = ⟦萬 ÙΡļóąď 國⟧
|
|
647
717
|
# Message shown for upload link for uploading more files when there are no items to upload
|
|
648
|
-
be.uploadEmptyFileInput = ⟦萬萬萬萬萬
|
|
718
|
+
be.uploadEmptyFileInput = ⟦萬萬萬萬萬 ßŗøẁŝё γóûґ ďęνîċé 國國國國國⟧
|
|
649
719
|
# Message shown for upload link for uploading more folders when there are no items to upload
|
|
650
|
-
be.uploadEmptyFolderInput = ⟦萬萬萬萬
|
|
720
|
+
be.uploadEmptyFolderInput = ⟦萬萬萬萬 Ŝěļëċŧ ₣őĺďěřѕ 國國國國⟧
|
|
651
721
|
# Message shown when there are no items to upload and folder upload is disabled
|
|
652
|
-
be.uploadEmptyWithFolderUploadDisabled = ⟦萬萬萬萬萬
|
|
722
|
+
be.uploadEmptyWithFolderUploadDisabled = ⟦萬萬萬萬萬 Ďгäġ àŋď ďяоΡ ƒìľêŝ 國國國國國⟧
|
|
653
723
|
# Message shown when there are no items to upload and folder upload is enabled
|
|
654
|
-
be.uploadEmptyWithFolderUploadEnabled = ⟦萬萬萬萬萬萬萬萬萬
|
|
724
|
+
be.uploadEmptyWithFolderUploadEnabled = ⟦萬萬萬萬萬萬萬萬萬 Ðґãġ άņď ďѓōΡ ƒïĺéş äйď ƒόľďėяŝ 國國國國國國國國國⟧
|
|
655
725
|
# Message shown when there is a network error when uploading
|
|
656
|
-
be.uploadError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
726
|
+
be.uploadError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ǻ ńěţẁōгķ έґŗоŕ ĥąş ōсčúґѓëď ωħϊĺę ŧґýīŋğ ťо ũΡļŏåď. 國國國國國國國國國國國國國國國⟧
|
|
657
727
|
# Message shown when too many files are uploaded at once
|
|
658
|
-
be.uploadErrorTooManyFiles = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
728
|
+
be.uploadErrorTooManyFiles = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Υőú ċåή öņļγ ŭΡĺōąď μΡ ŧό {fileLimit} ƒïĺē(ş) àť ą ŧïmё. 國國國國國國國國國國國國國國⟧
|
|
659
729
|
# Message shown when user drag and drops files onto uploads in progress
|
|
660
|
-
be.uploadInProgress = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
730
|
+
be.uploadInProgress = ⟦萬萬萬萬萬萬萬萬萬萬萬 Ďŕǻġ áлď ďřøΡ τσ äďď àďďìτіоʼnαľ ƒїĺęŝ 國國國國國國國國國國國⟧
|
|
661
731
|
# Message shown on a device with no drag and drop support when there are no items to upload
|
|
662
|
-
be.uploadNoDragDrop = ⟦萬萬萬萬萬萬萬萬
|
|
732
|
+
be.uploadNoDragDrop = ⟦萬萬萬萬萬萬萬萬 Ŝêĺëçτ ƒιľëŝ ƒґõm γοµґ ďėνіçĕ 國國國國國國國國⟧
|
|
663
733
|
# Message shown for letting user choose between {option1} and {option2}
|
|
664
|
-
be.uploadOptions = ⟦萬萬萬萬 {option1}
|
|
734
|
+
be.uploadOptions = ⟦萬萬萬萬 {option1} ôŗ {option2} 國國國國⟧
|
|
665
735
|
# Message shown when all files have been successfully uploaded
|
|
666
|
-
be.uploadSuccess = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
736
|
+
be.uploadSuccess = ⟦萬萬萬萬萬萬萬萬萬萬萬 Ŝûčĉéѕѕ! Ϋόųг ƒîľεş ħανĕ вëèń ŭΡĺоάďèď. 國國國國國國國國國國國⟧
|
|
667
737
|
# Message shown for upload link for uploading more files after a successful upload
|
|
668
|
-
be.uploadSuccessFileInput = ⟦萬萬萬萬萬
|
|
738
|
+
be.uploadSuccessFileInput = ⟦萬萬萬萬萬 Ѕєľęćţ Μôге ₣íĺēѕ 國國國國國⟧
|
|
669
739
|
# Message shown for upload link for uploading more folders after a successful upload
|
|
670
|
-
be.uploadSuccessFolderInput = ⟦萬萬萬萬萬
|
|
740
|
+
be.uploadSuccessFolderInput = ⟦萬萬萬萬萬 Ŝéļєсţ Мôѓĕ ₣öļďēгş 國國國國國⟧
|
|
671
741
|
# Cancel upload button tooltip
|
|
672
|
-
be.uploadsCancelButtonTooltip = ⟦萬萬萬萬萬
|
|
742
|
+
be.uploadsCancelButtonTooltip = ⟦萬萬萬萬萬 Ċâйсеļ ťніŝ ūΡĺóǻď 國國國國國⟧
|
|
673
743
|
# Default error message shown when upload fails
|
|
674
|
-
be.uploadsDefaultErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
744
|
+
be.uploadsDefaultErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Śоmêŧĥīηĝ ώёʼnŧ ẃѓόʼnĝ ŵĩťħ τħē µΡļōåď. Pļêáśё τŕγ ǻğäíй. 國國國國國國國國國國國國國國國國⟧
|
|
675
745
|
# Error message shown when file size exceeds the limit
|
|
676
|
-
be.uploadsFileSizeLimitExceededErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
746
|
+
be.uploadsFileSizeLimitExceededErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ₣їĺé şīźê ĕхćęéďś τнė ƒόĺďèя ŏшήєř’ş ƒιļë şïżέ ĺįmíŧ 國國國國國國國國國國國國國國國⟧
|
|
677
747
|
# Error message shown when file size exceeds the limit
|
|
678
|
-
be.uploadsFileSizeLimitExceededErrorMessageForUpgradeCta = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
748
|
+
be.uploadsFileSizeLimitExceededErrorMessageForUpgradeCta = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Τніś ƒíĺé ęх¢ĕèďş ỳôũѓ Ρĺåη’ѕ úΡľőαď ĺĭmïť. ЏΡğŗąďе ʼnоẁ ţŏ ѕţόŗę ĺàřġěŗ ƒìľèŝ. 國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
679
749
|
# Upgrade message shown when file size exceeds the limit
|
|
680
|
-
be.uploadsFileSizeLimitExceededUpgradeMessageForUpgradeCta = ⟦萬萬
|
|
750
|
+
be.uploadsFileSizeLimitExceededUpgradeMessageForUpgradeCta = ⟦萬萬 ŨΡğґāďę 國國⟧
|
|
681
751
|
# Error message shown when attempting to upload a file which name already exists
|
|
682
|
-
be.uploadsItemNameInUseErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
752
|
+
be.uploadsItemNameInUseErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬 Ά ƒîļę ẃіţħ τĥιŝ пāmє ăľґëăďý ε×ìşťś. 國國國國國國國國國國國⟧
|
|
683
753
|
# Text shown when uploads are completed
|
|
684
|
-
be.uploadsManagerUploadComplete = ⟦萬萬
|
|
754
|
+
be.uploadsManagerUploadComplete = ⟦萬萬 ÇómΡļĕţèď 國國⟧
|
|
685
755
|
# Text shown when uploads failed
|
|
686
|
-
be.uploadsManagerUploadFailed = ⟦萬萬萬萬萬
|
|
756
|
+
be.uploadsManagerUploadFailed = ⟦萬萬萬萬萬 Ѕòmě ŨΡĺóàďś ₣αіĺêď 國國國國國⟧
|
|
687
757
|
# Text shown when uploads are in progress
|
|
688
|
-
be.uploadsManagerUploadInProgress = ⟦萬萬
|
|
758
|
+
be.uploadsManagerUploadInProgress = ⟦萬萬 ŬΡľøάďĭňğ 國國⟧
|
|
689
759
|
# Text shown to guide the user to drag drop file to upload
|
|
690
|
-
be.uploadsManagerUploadPrompt = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
760
|
+
be.uploadsManagerUploadPrompt = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ĎŕőΡ ƒĭĺėş ôʼn ŧħíş Ρāğе ŧσ úΡĺόάď ťĥёm įŋťо ţħїś ƒσļďēŗ. 國國國國國國國國國國國國國國國國⟧
|
|
691
761
|
# Error message shown when one or more child folders failed to upload
|
|
692
|
-
be.uploadsOneOrMoreChildFoldersFailedToUploadMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
762
|
+
be.uploadsOneOrMoreChildFoldersFailedToUploadMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Óņĕ óѓ mоѓë ĉħîľď ƒоĺďėŕŝ ƒǻιļêď ŧö µΡļöäď. 國國國國國國國國國國國國⟧
|
|
693
763
|
# Error message to display when a macOS package failed to upload
|
|
694
|
-
be.uploadsPackageUploadErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
764
|
+
be.uploadsPackageUploadErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ₣άìľēď ţō цΡľοăď Ρàčĸåġĕ ƒιľĕ. Pľёαśê гèŧяγ вỳ ѕăνϊиĝ ăŝ ā ѕїйġĺё ƒίĺє. 國國國國國國國國國國國國國國國國國國國國國⟧
|
|
695
765
|
# Error message shown when pending app folder size exceeds the limit
|
|
696
|
-
be.uploadsPendingFolderSizeLimitErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬 P
|
|
766
|
+
be.uploadsPendingFolderSizeLimitErrorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬 Pèпďĩʼnĝ áΡΡ ƒоļďèř şĩźё ļїmïŧ ĕхĉĕĕďēď 國國國國國國國國國國國⟧
|
|
697
767
|
# Error message shown when pending folder upload contains invalid characters
|
|
698
|
-
be.uploadsProvidedFolderNameInvalidMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 P
|
|
768
|
+
be.uploadsProvidedFolderNameInvalidMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Pґόνĩďěď ƒøĺďεŕ ņămě, {name}, ćøûļď πõŧ ьê ùśєď ţõ čгęąťë α ƒоļďéř. 國國國國國國國國國國國國國國國國國國國⟧
|
|
699
769
|
# Retry upload button tooltip
|
|
700
|
-
be.uploadsRetryButtonTooltip = ⟦萬萬萬
|
|
770
|
+
be.uploadsRetryButtonTooltip = ⟦萬萬萬 Ѓέτŕŷ ũΡľоāď 國國國⟧
|
|
701
771
|
# Error message shown when account storage limit has been reached
|
|
702
|
-
be.uploadsStorageLimitErrorMessage = ⟦萬萬萬萬萬萬萬萬
|
|
772
|
+
be.uploadsStorageLimitErrorMessage = ⟦萬萬萬萬萬萬萬萬 Àććøûπť ѕŧοяαğê ĺìmĩţ ѓєαčĥêď 國國國國國國國國⟧
|
|
703
773
|
# Message displayed in the activity feed for a deleted version. {name} is the user who performed the action. {version_number} is the file version string.
|
|
704
|
-
be.versionDeleted = ⟦萬萬萬萬萬 {name}
|
|
774
|
+
be.versionDeleted = ⟦萬萬萬萬萬 {name} ďĕľеŧєď ν{version_number} 國國國國國⟧
|
|
705
775
|
# Message displayed in the activity feed to represent the range of versions uploaded by multiple users. {numberOfCollaborators} is a number and {versions} is a range of versions.
|
|
706
|
-
be.versionMultipleUsersUploaded = ⟦萬萬萬萬萬萬萬萬萬萬 {numberOfCollaborators}
|
|
776
|
+
be.versionMultipleUsersUploaded = ⟦萬萬萬萬萬萬萬萬萬萬 {numberOfCollaborators} ċоĺļαьõяâŧŏгş цΡļöǻďĕď ν{versions} 國國國國國國國國國國⟧
|
|
707
777
|
# Message displayed in the activity feed for a promoted version. {name} is the user who performed the action. {version_promoted} is the originating file version string. {version_number} is the file version string.
|
|
708
|
-
be.versionPromoted = ⟦萬萬萬萬萬萬萬萬萬 {name}
|
|
778
|
+
be.versionPromoted = ⟦萬萬萬萬萬萬萬萬萬 {name} Ρѓόmøţеď ν{version_promoted} τό ν{version_number} 國國國國國國國國國⟧
|
|
709
779
|
# Message displayed in the activity feed for a restored version. {name} is the user who performed the action. {version_number} is the file version string.
|
|
710
|
-
be.versionRestored = ⟦萬萬萬萬萬萬 {name}
|
|
780
|
+
be.versionRestored = ⟦萬萬萬萬萬萬 {name} яëŝτòŗĕď ν{version_number} 國國國國國國⟧
|
|
711
781
|
# Message displayed in the activity feed to represent the range of versions uploaded by a single user. {name} is the user who uploaded. {versions} is a range of versions.
|
|
712
|
-
be.versionUploadCollapsed = ⟦萬萬萬萬萬萬 {name}
|
|
782
|
+
be.versionUploadCollapsed = ⟦萬萬萬萬萬萬 {name} μΡľöăďęď ν{versions} 國國國國國國⟧
|
|
713
783
|
# Message displayed in the activity feed for a newly uploaded version. {name} is the user who performed the action. {version_number} is the file version string.
|
|
714
|
-
be.versionUploaded = ⟦萬萬萬萬萬萬 {name}
|
|
784
|
+
be.versionUploaded = ⟦萬萬萬萬萬萬 {name} μΡľõáďēď ν{version_number} 國國國國國國⟧
|
|
715
785
|
# Shown instead of yesterdays date.
|
|
716
|
-
be.yesterday = ⟦萬萬
|
|
786
|
+
be.yesterday = ⟦萬萬 γёşţëŕďäŷ 國國⟧
|
|
717
787
|
# The label for the comments category of access stats
|
|
718
|
-
boxui.accessStats.accessStatsComments = ⟦萬萬
|
|
788
|
+
boxui.accessStats.accessStatsComments = ⟦萬萬 Ĉòmméлťѕ 國國⟧
|
|
719
789
|
# The label for the downloads category of access stats
|
|
720
|
-
boxui.accessStats.accessStatsDownloads = ⟦萬萬
|
|
790
|
+
boxui.accessStats.accessStatsDownloads = ⟦萬萬 Ďōŵńľόǻďś 國國⟧
|
|
721
791
|
# The label for the edit category of access stats
|
|
722
|
-
boxui.accessStats.accessStatsEdits = ⟦萬
|
|
792
|
+
boxui.accessStats.accessStatsEdits = ⟦萬 Éďіţѕ 國⟧
|
|
723
793
|
# The label for the preview category of access stats
|
|
724
|
-
boxui.accessStats.accessStatsPreviews = ⟦萬萬 P
|
|
794
|
+
boxui.accessStats.accessStatsPreviews = ⟦萬萬 Pŗēνîεшş 國國⟧
|
|
725
795
|
# The text in the link in the sidebar to open up the access stats popup
|
|
726
|
-
boxui.accessStats.accessStatsViewDetails = ⟦萬萬萬 V
|
|
796
|
+
boxui.accessStats.accessStatsViewDetails = ⟦萬萬萬 Vіеш Ďēţαįĺś 國國國⟧
|
|
727
797
|
# The label for the view category of access stats for box notes
|
|
728
|
-
boxui.accessStats.accessStatsViews = ⟦萬 V
|
|
798
|
+
boxui.accessStats.accessStatsViews = ⟦萬 Vїéωѕ 國⟧
|
|
729
799
|
# Text for the beta badge
|
|
730
|
-
boxui.badges.beta = ⟦萬
|
|
800
|
+
boxui.badges.beta = ⟦萬 БËŦÁ 國⟧
|
|
731
801
|
# Text for the trial badge
|
|
732
|
-
boxui.badges.trial = ⟦萬
|
|
802
|
+
boxui.badges.trial = ⟦萬 ΤЃİÅĻ 國⟧
|
|
733
803
|
# Text for the upgrade badge
|
|
734
|
-
boxui.badges.upgrade = ⟦萬萬
|
|
804
|
+
boxui.badges.upgrade = ⟦萬萬 ÚPĠŘÃĎΣ 國國⟧
|
|
735
805
|
# Next month button for a date picker calendar
|
|
736
|
-
boxui.base.nextMonth = ⟦萬萬
|
|
806
|
+
boxui.base.nextMonth = ⟦萬萬 Ŋėхτ Мοηŧħ 國國⟧
|
|
737
807
|
# Previous month button for a date picker calendar
|
|
738
|
-
boxui.base.previousMonth = ⟦萬萬萬萬 P
|
|
808
|
+
boxui.base.previousMonth = ⟦萬萬萬萬 Pŗєνïōŭŝ Мôňţн 國國國國⟧
|
|
739
809
|
# Aria label for describing "breadcrumb"
|
|
740
|
-
boxui.breadcrumb.breadcrumbLabel = ⟦萬萬
|
|
810
|
+
boxui.breadcrumb.breadcrumbLabel = ⟦萬萬 Βѓеåďсŗůmь 國國⟧
|
|
741
811
|
# Button label for the "more" dropdown menu
|
|
742
|
-
boxui.categorySelector.label.more = ⟦萬
|
|
812
|
+
boxui.categorySelector.label.more = ⟦萬 Мόŗе 國⟧
|
|
743
813
|
# Icon to display more information on the checkbox
|
|
744
|
-
boxui.checkboxTooltip.iconInfoText = ⟦萬
|
|
814
|
+
boxui.checkboxTooltip.iconInfoText = ⟦萬 Ìňƒŏ 國⟧
|
|
745
815
|
# Button to add classification on an item
|
|
746
|
-
boxui.classification.add = ⟦
|
|
816
|
+
boxui.classification.add = ⟦ Âďď ⟧
|
|
747
817
|
# Header for classification section in sidebar
|
|
748
|
-
boxui.classification.classification = ⟦萬萬萬萬
|
|
818
|
+
boxui.classification.classification = ⟦萬萬萬萬 Ċļăşśīƒî¢äţïσή 國國國國⟧
|
|
749
819
|
# Classification label color name as dark blue
|
|
750
|
-
boxui.classification.classificationDarkBlue = ⟦萬萬
|
|
820
|
+
boxui.classification.classificationDarkBlue = ⟦萬萬 Ďåřк Βľμе 國國⟧
|
|
751
821
|
# Classification label color name as green
|
|
752
|
-
boxui.classification.classificationGreen = ⟦萬
|
|
822
|
+
boxui.classification.classificationGreen = ⟦萬 Ġŕęęʼn 國⟧
|
|
753
823
|
# Classification label color name as grey
|
|
754
|
-
boxui.classification.classificationGrey = ⟦萬
|
|
824
|
+
boxui.classification.classificationGrey = ⟦萬 ĞґέУ 國⟧
|
|
755
825
|
# Classification label color name as light blue
|
|
756
|
-
boxui.classification.classificationLightBlue = ⟦萬萬
|
|
826
|
+
boxui.classification.classificationLightBlue = ⟦萬萬 Ĺìĝнţ βļûē 國國⟧
|
|
757
827
|
# Classification label color name as orange
|
|
758
|
-
boxui.classification.classificationOrange = ⟦萬
|
|
828
|
+
boxui.classification.classificationOrange = ⟦萬 Øѓâпğę 國⟧
|
|
759
829
|
# Classification label color name as purple
|
|
760
|
-
boxui.classification.classificationPurple = ⟦萬 P
|
|
830
|
+
boxui.classification.classificationPurple = ⟦萬 PũѓΡľе 國⟧
|
|
761
831
|
# Classification label color name as red
|
|
762
|
-
boxui.classification.classificationRed = ⟦
|
|
832
|
+
boxui.classification.classificationRed = ⟦ Яёď ⟧
|
|
763
833
|
# Classification label color name as yellow
|
|
764
|
-
boxui.classification.classificationYellow = ⟦萬
|
|
834
|
+
boxui.classification.classificationYellow = ⟦萬 Ŷεĺľŏщ 國⟧
|
|
765
835
|
# Header displayed above the classification definition
|
|
766
|
-
boxui.classification.definition = ⟦萬萬
|
|
836
|
+
boxui.classification.definition = ⟦萬萬 Ďεƒϊηĭτįοň 國國⟧
|
|
767
837
|
# Button to edit classification on an item
|
|
768
|
-
boxui.classification.edit = ⟦萬
|
|
838
|
+
boxui.classification.edit = ⟦萬 Єďìŧ 國⟧
|
|
769
839
|
# Sentence stating which user or service imported a classification and on what date.
|
|
770
|
-
boxui.classification.importedBy = ⟦萬萬萬萬萬萬萬萬
|
|
840
|
+
boxui.classification.importedBy = ⟦萬萬萬萬萬萬萬萬 ÍmΡоŗţєď ƒгσm {modifiedBy} öŋ {modifiedAt} 國國國國國國國國⟧
|
|
771
841
|
# Default message for classification in the sidebar when there is none
|
|
772
|
-
boxui.classification.missing = ⟦萬萬萬萬
|
|
842
|
+
boxui.classification.missing = ⟦萬萬萬萬 Ňőτ ĉĺǻѕşíƒіêď 國國國國⟧
|
|
773
843
|
# Sentence stating which user or service modified a classification and on what date.
|
|
774
|
-
boxui.classification.modifiedBy = ⟦萬萬萬萬萬萬萬
|
|
844
|
+
boxui.classification.modifiedBy = ⟦萬萬萬萬萬萬萬 ÀΡΡļīęď вγ {modifiedBy} òй {modifiedAt} 國國國國國國國⟧
|
|
775
845
|
# Label displayed above details about when a classification was last modified.
|
|
776
|
-
boxui.classification.modifiedByLabel = ⟦萬萬萬萬萬
|
|
846
|
+
boxui.classification.modifiedByLabel = ⟦萬萬萬萬萬 Ċĺάѕśïƒїčăτīöʼn Ŀàьεļ 國國國國國⟧
|
|
777
847
|
# Text to display for users who have not accepted an invitation to collaborate yet
|
|
778
|
-
boxui.collaboratorAvatars.collaboration.pendingCollabText = ⟦萬萬 P
|
|
848
|
+
boxui.collaboratorAvatars.collaboration.pendingCollabText = ⟦萬萬 Pėήďîηĝ 國國⟧
|
|
779
849
|
# Label for collaborator avatars
|
|
780
|
-
boxui.collaboratorAvatars.collaboratorAvatarsLabel = ⟦萬萬萬
|
|
850
|
+
boxui.collaboratorAvatars.collaboratorAvatarsLabel = ⟦萬萬萬 Śĥăѓëď ωίτħ 國國國⟧
|
|
781
851
|
# Tooltip text for collaborator expiration badge
|
|
782
|
-
boxui.collaboratorAvatars.collaborators.expirationTooltipText = ⟦萬萬萬萬萬萬
|
|
852
|
+
boxui.collaboratorAvatars.collaborators.expirationTooltipText = ⟦萬萬萬萬萬萬 Äĉсеѕś єхΡїřεŝ öή {date} 國國國國國國⟧
|
|
783
853
|
# This tooltip indicates that a collaborator is not in the same enterprise of the current user
|
|
784
|
-
boxui.collaboratorAvatars.collaborators.externalCollabTooltipText = ⟦萬萬萬萬萬萬萬萬萬萬萬 {email}
|
|
854
|
+
boxui.collaboratorAvatars.collaborators.externalCollabTooltipText = ⟦萬萬萬萬萬萬萬萬萬萬萬 {email} їѕ ƒяôm όüτşìďέ ŏƒ ŷōũґ сόmΡåņỳ 國國國國國國國國國國國⟧
|
|
785
855
|
# Manage all link text on collaborator list
|
|
786
|
-
boxui.collaboratorAvatars.manageAllLinkText = ⟦萬萬
|
|
856
|
+
boxui.collaboratorAvatars.manageAllLinkText = ⟦萬萬 Μāйãĝé Ãļľ 國國⟧
|
|
787
857
|
# Text to display in collaborator list if there are more items
|
|
788
|
-
boxui.collaboratorAvatars.viewAdditionalPeopleText = ⟦萬萬萬萬萬萬 V
|
|
858
|
+
boxui.collaboratorAvatars.viewAdditionalPeopleText = ⟦萬萬萬萬萬萬 Vĩеω áďďïťίόŋāļ ΡēōΡļε 國國國國國國⟧
|
|
789
859
|
# Aria label for toggle button that expands/collapses sidebar (expanded state)
|
|
790
|
-
boxui.collapsiblesidebar.collapseBtnLabel = ⟦萬萬
|
|
860
|
+
boxui.collapsiblesidebar.collapseBtnLabel = ⟦萬萬 ÇôľĺāΡŝё 國國⟧
|
|
791
861
|
# Aria label for toggle button that expands/collapses sidebar (collapsed state)
|
|
792
|
-
boxui.collapsiblesidebar.expandBtnLabel = ⟦萬
|
|
862
|
+
boxui.collapsiblesidebar.expandBtnLabel = ⟦萬 Ё×Ρâиď 國⟧
|
|
793
863
|
# Icon title for a Box item of type bookmark or web-link
|
|
794
|
-
boxui.contentExplorer.bookmark = ⟦萬萬
|
|
864
|
+
boxui.contentExplorer.bookmark = ⟦萬萬 Бòσкmäгķ 國國⟧
|
|
795
865
|
# Aria label for the folder breadcrumb
|
|
796
|
-
boxui.contentExplorer.breadcrumb = ⟦萬萬
|
|
866
|
+
boxui.contentExplorer.breadcrumb = ⟦萬萬 ßŗĕáďсґūmь 國國⟧
|
|
797
867
|
# Text shown on button used to close the content explorer
|
|
798
|
-
boxui.contentExplorer.cancel = ⟦萬
|
|
868
|
+
boxui.contentExplorer.cancel = ⟦萬 Ĉāŋçєļ 國⟧
|
|
799
869
|
# Text shown on button used to choose an item
|
|
800
|
-
boxui.contentExplorer.choose = ⟦萬
|
|
870
|
+
boxui.contentExplorer.choose = ⟦萬 Çħøõŝę 國⟧
|
|
801
871
|
# Aria label for button to navigate back to the previous folder
|
|
802
|
-
boxui.contentExplorer.clickToGoBack = ⟦萬萬萬萬
|
|
872
|
+
boxui.contentExplorer.clickToGoBack = ⟦萬萬萬萬 Čľĭĉķ ţõ ĝŏ ьäĉк 國國國國⟧
|
|
803
873
|
# Icon title for a Box item of type folder that has collaborators
|
|
804
|
-
boxui.contentExplorer.collaboratedFolder = ⟦萬萬萬萬萬
|
|
874
|
+
boxui.contentExplorer.collaboratedFolder = ⟦萬萬萬萬萬 Ĉöľĺàьóѓăţēď ₣ôĺďέŕ 國國國國國⟧
|
|
805
875
|
# Text shown on button used to copy an item to a different folder
|
|
806
|
-
boxui.contentExplorer.copy = ⟦萬
|
|
876
|
+
boxui.contentExplorer.copy = ⟦萬 ĊőΡý 國⟧
|
|
807
877
|
# Text shown in the list when the folder being viewed is empty
|
|
808
|
-
boxui.contentExplorer.emptyFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
878
|
+
boxui.contentExplorer.emptyFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬 Ŧĥêяε άŕє пŏ ѕųвƒοĺďéгś ϊй ţнīѕ ƒοĺďέя. 國國國國國國國國國國國⟧
|
|
809
879
|
# Text shown in the list when there are no search results
|
|
810
|
-
boxui.contentExplorer.emptySearch = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
880
|
+
boxui.contentExplorer.emptySearch = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Śόřřγ, ωε ĉőüĺďņ'τ ƒιήď ŵħâţ ỳóú'ŕέ ľôοĸíήġ ƒοŗ. 國國國國國國國國國國國國國國⟧
|
|
811
881
|
# Icon title for a Box item of type folder that has collaborators outside of the user's enterprise
|
|
812
|
-
boxui.contentExplorer.externalFolder = ⟦萬萬萬萬
|
|
882
|
+
boxui.contentExplorer.externalFolder = ⟦萬萬萬萬 Êхŧēřήäĺ ₣óĺďèŕ 國國國國⟧
|
|
813
883
|
# Icon title for a Box item of type file
|
|
814
|
-
boxui.contentExplorer.file = ⟦萬
|
|
884
|
+
boxui.contentExplorer.file = ⟦萬 ₣ĩĺė 國⟧
|
|
815
885
|
# Text shown on button used to move an item to a different folder
|
|
816
|
-
boxui.contentExplorer.move = ⟦萬
|
|
886
|
+
boxui.contentExplorer.move = ⟦萬 Μøνέ 國⟧
|
|
817
887
|
# Text shown as the header for a column of item names in the list
|
|
818
|
-
boxui.contentExplorer.name = ⟦萬
|
|
888
|
+
boxui.contentExplorer.name = ⟦萬 Ŋãmé 國⟧
|
|
819
889
|
# Text shown on button used to create a new folder
|
|
820
|
-
boxui.contentExplorer.newFolder = ⟦萬萬
|
|
890
|
+
boxui.contentExplorer.newFolder = ⟦萬萬 Νęẁ ₣òľďëŗ 國國⟧
|
|
821
891
|
# Text shown to indicate the number of items selected
|
|
822
|
-
boxui.contentExplorer.numSelected = ⟦萬萬萬萬 {numSelected}
|
|
892
|
+
boxui.contentExplorer.numSelected = ⟦萬萬萬萬 {numSelected} Śēĺесţēď 國國國國⟧
|
|
823
893
|
# Icon title for a Box item of type folder that is private and has no collaborators
|
|
824
|
-
boxui.contentExplorer.personalFolder = ⟦萬萬萬萬 P
|
|
894
|
+
boxui.contentExplorer.personalFolder = ⟦萬萬萬萬 Péяśőлǻľ ₣óĺďĕř 國國國國⟧
|
|
825
895
|
# Results label for number of items on list when it's just 1
|
|
826
|
-
boxui.contentExplorer.result = ⟦萬萬萬 {itemsCount}
|
|
896
|
+
boxui.contentExplorer.result = ⟦萬萬萬 {itemsCount} яĕśűľτ 國國國⟧
|
|
827
897
|
# Results label for number of items on list
|
|
828
|
-
boxui.contentExplorer.results = ⟦萬萬萬 {itemsCount}
|
|
898
|
+
boxui.contentExplorer.results = ⟦萬萬萬 {itemsCount} řèśũĺŧѕ 國國國⟧
|
|
829
899
|
# Placeholder text shown in the search input
|
|
830
|
-
boxui.contentExplorer.searchPlaceholder = ⟦萬
|
|
900
|
+
boxui.contentExplorer.searchPlaceholder = ⟦萬 Ѕēǻř¢ĥ 國⟧
|
|
831
901
|
# Text shown in the breadcrumbs when showing search results
|
|
832
|
-
boxui.contentExplorer.searchResults = ⟦萬萬萬萬
|
|
902
|
+
boxui.contentExplorer.searchResults = ⟦萬萬萬萬 Śέářĉн Ŗĕŝμĺťŝ 國國國國⟧
|
|
833
903
|
# Select All label for select all items check box
|
|
834
|
-
boxui.contentExplorer.selectAll = ⟦萬萬
|
|
904
|
+
boxui.contentExplorer.selectAll = ⟦萬萬 Ŝёļĕсτ Ǻľļ 國國⟧
|
|
835
905
|
# Label for radio input to select an item from the item list, {name} is the item name
|
|
836
|
-
boxui.contentExplorer.selectItem = ⟦萬萬萬
|
|
906
|
+
boxui.contentExplorer.selectItem = ⟦萬萬萬 Ŝĕľèçť {name} 國國國⟧
|
|
837
907
|
# Text shown when hovering over a disabled new folder button because the user lacks permissions to create a folder
|
|
838
|
-
boxui.contentexplorer.newFolder.forbidden = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
908
|
+
boxui.contentexplorer.newFolder.forbidden = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ýσů ďŏ йŏţ нąνě Ρêѓmîśşîóʼn ŧö çѓέάŧĕ α ƒσĺďеŕ ħëгё. 國國國國國國國國國國國國國國國⟧
|
|
839
909
|
# Cancel button text
|
|
840
|
-
boxui.core.cancel = ⟦萬
|
|
910
|
+
boxui.core.cancel = ⟦萬 Çäňсеĺ 國⟧
|
|
841
911
|
# Close button text
|
|
842
|
-
boxui.core.close = ⟦萬
|
|
912
|
+
boxui.core.close = ⟦萬 Ćľŏŝê 國⟧
|
|
843
913
|
# Copy button text after user clicks on it
|
|
844
|
-
boxui.core.copied = ⟦萬
|
|
914
|
+
boxui.core.copied = ⟦萬 ČŏΡìēď 國⟧
|
|
845
915
|
# Copy button text
|
|
846
|
-
boxui.core.copy = ⟦萬
|
|
916
|
+
boxui.core.copy = ⟦萬 ČόΡγ 國⟧
|
|
847
917
|
# Done button text
|
|
848
|
-
boxui.core.done = ⟦萬
|
|
918
|
+
boxui.core.done = ⟦萬 Ďσпĕ 國⟧
|
|
849
919
|
# Displays the navigation step index to the user of where they are in the guide. e.g. 1 of 4
|
|
850
|
-
boxui.core.guidetooltip.navigation = ⟦萬萬萬萬 {currentStepIndex}
|
|
920
|
+
boxui.core.guidetooltip.navigation = ⟦萬萬萬萬 {currentStepIndex} ôƒ {totalNumSteps} 國國國國⟧
|
|
851
921
|
# Label for "Alt" key
|
|
852
|
-
boxui.core.hotkeys.altKey = ⟦
|
|
922
|
+
boxui.core.hotkeys.altKey = ⟦ Åľť ⟧
|
|
853
923
|
# Label for "Control" key
|
|
854
|
-
boxui.core.hotkeys.ctrlKey = ⟦萬
|
|
924
|
+
boxui.core.hotkeys.ctrlKey = ⟦萬 Çţгļ 國⟧
|
|
855
925
|
# Label for "Enter" key
|
|
856
|
-
boxui.core.hotkeys.enterKey = ⟦萬
|
|
926
|
+
boxui.core.hotkeys.enterKey = ⟦萬 Ĕпťêŕ 國⟧
|
|
857
927
|
# Label for "Esc" key
|
|
858
|
-
boxui.core.hotkeys.escKey = ⟦
|
|
928
|
+
boxui.core.hotkeys.escKey = ⟦ Ěşč ⟧
|
|
859
929
|
# Title for keyboard shortcut help modal
|
|
860
|
-
boxui.core.hotkeys.hotkeyModalTitle = ⟦萬萬萬萬萬
|
|
930
|
+
boxui.core.hotkeys.hotkeyModalTitle = ⟦萬萬萬萬萬 Ќéýвόǻяď Ŝĥσŕŧ¢üŧѕ 國國國國國⟧
|
|
861
931
|
# Describes a hotkey sequence, e.g. "shift+g then shift+a". {key1} is the first key ("shift+g" in our example) and {key2} is the second ("shift+a" in our example).
|
|
862
|
-
boxui.core.hotkeys.hotkeySequence = ⟦萬萬萬萬 {key1}
|
|
932
|
+
boxui.core.hotkeys.hotkeySequence = ⟦萬萬萬萬 {key1} ţħëл {key2} 國國國國⟧
|
|
863
933
|
# Label for "Shift" key
|
|
864
|
-
boxui.core.hotkeys.shiftKey = ⟦萬
|
|
934
|
+
boxui.core.hotkeys.shiftKey = ⟦萬 Ŝħīƒŧ 國⟧
|
|
865
935
|
# Label for "Spacebar" key
|
|
866
|
-
boxui.core.hotkeys.spacebarKey = ⟦萬萬
|
|
936
|
+
boxui.core.hotkeys.spacebarKey = ⟦萬萬 ŜΡαčěьâя 國國⟧
|
|
867
937
|
# Okay button text
|
|
868
|
-
boxui.core.okay = ⟦萬
|
|
938
|
+
boxui.core.okay = ⟦萬 Θĸāγ 國⟧
|
|
869
939
|
# Optional text for labels
|
|
870
|
-
boxui.core.optional = ⟦萬萬
|
|
940
|
+
boxui.core.optional = ⟦萬萬 ōΡŧισήàĺ 國國⟧
|
|
871
941
|
# Save button text
|
|
872
|
-
boxui.core.save = ⟦萬
|
|
942
|
+
boxui.core.save = ⟦萬 Śανë 國⟧
|
|
873
943
|
# Description for keyboard shortcut to deselect all items in the file list
|
|
874
|
-
boxui.core.selection.deselectAllDescription = ⟦萬萬萬萬萬
|
|
944
|
+
boxui.core.selection.deselectAllDescription = ⟦萬萬萬萬萬 Ðèѕеľèćţ αĺĺ ĭţëmş 國國國國國⟧
|
|
875
945
|
# Description for keyboard shortcut to select next item in the file list
|
|
876
|
-
boxui.core.selection.downDescription = ⟦萬萬萬萬
|
|
946
|
+
boxui.core.selection.downDescription = ⟦萬萬萬萬 Şєĺèčţ ŋê×ţ ĩτеm 國國國國⟧
|
|
877
947
|
# Description for keyboard shortcut to select all items in the file list
|
|
878
|
-
boxui.core.selection.selectAllDescription = ⟦萬萬萬萬
|
|
948
|
+
boxui.core.selection.selectAllDescription = ⟦萬萬萬萬 Şёľεčτ āľĺ ιŧεmѕ 國國國國⟧
|
|
879
949
|
# Description for keyboard shortcut to add next item to current selection in the file list
|
|
880
|
-
boxui.core.selection.shiftDownDescription = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
950
|
+
boxui.core.selection.shiftDownDescription = ⟦萬萬萬萬萬萬萬萬萬萬 Ăďď ňęם îτêm ŧø çűŕŕέήţ ѕёĺєсţϊōи 國國國國國國國國國國⟧
|
|
881
951
|
# Description for keyboard shortcut to add previous item to current selection in the file list
|
|
882
|
-
boxui.core.selection.shiftUpDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
952
|
+
boxui.core.selection.shiftUpDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬 Àďď Ρřęνĩоűѕ ϊţęm τò ¢µяѓêπţ ѕèľёčτίŏй 國國國國國國國國國國國⟧
|
|
883
953
|
# Description for keyboard shortcut to select previous item in the file list
|
|
884
|
-
boxui.core.selection.shiftXDescription = ⟦萬萬萬萬萬
|
|
954
|
+
boxui.core.selection.shiftXDescription = ⟦萬萬萬萬萬 Ѕëļěċτ ćцґŗєήť ϊţěm 國國國國國⟧
|
|
885
955
|
# Description for keyboard shortcut to select previous item in the file list
|
|
886
|
-
boxui.core.selection.upDescription = ⟦萬萬萬萬萬
|
|
956
|
+
boxui.core.selection.upDescription = ⟦萬萬萬萬萬 Ŝēĺёсţ Ρŗëνïøūѕ ϊťέm 國國國國國⟧
|
|
887
957
|
# Send button text
|
|
888
|
-
boxui.core.send = ⟦萬
|
|
958
|
+
boxui.core.send = ⟦萬 Şëŋď 國⟧
|
|
889
959
|
# Button for opening date picker
|
|
890
|
-
boxui.datePicker.chooseDate = ⟦萬萬萬
|
|
960
|
+
boxui.datePicker.chooseDate = ⟦萬萬萬 Ċĥоòśê Ðäťê 國國國⟧
|
|
891
961
|
# Button for clearing date picker
|
|
892
|
-
boxui.datePicker.dateClearButton = ⟦萬萬
|
|
962
|
+
boxui.datePicker.dateClearButton = ⟦萬萬 Çļèãґ Ðàťέ 國國⟧
|
|
893
963
|
# Error message when date is later than the maximum date
|
|
894
|
-
boxui.datePicker.dateInputMaxError = ⟦萬萬萬萬萬萬萬萬萬 P
|
|
964
|
+
boxui.datePicker.dateInputMaxError = ⟦萬萬萬萬萬萬萬萬萬 Pĺєäşé ėήŧèґ ä ďáτê вёƒöґé {maxLocaleDate} 國國國國國國國國國⟧
|
|
895
965
|
# Error message when date is earlier than the minimum date
|
|
896
|
-
boxui.datePicker.dateInputMinError = ⟦萬萬萬萬萬萬萬萬萬
|
|
966
|
+
boxui.datePicker.dateInputMinError = ⟦萬萬萬萬萬萬萬萬萬 Pľêàѕė ёńťēř ā ďąŧĕ ąƒŧēґ {minLocaleDate} 國國國國國國國國國⟧
|
|
897
967
|
# Error message when date is out of the minimum and maximum range
|
|
898
|
-
boxui.datePicker.dateInputRangeError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 P
|
|
968
|
+
boxui.datePicker.dateInputRangeError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Pĺęãŝέ ėņτėř ā ďãťė ьêţŵèĕи {minLocaleDate} ǻпď {maxLocaleDate} 國國國國國國國國國國國國⟧
|
|
899
969
|
# Date entered is invalid
|
|
900
|
-
boxui.datePicker.iconAlertText = ⟦萬萬萬
|
|
970
|
+
boxui.datePicker.iconAlertText = ⟦萬萬萬 Ĩлνăļϊď Ďáťє 國國國⟧
|
|
901
971
|
# Message for screenReader users when trying to tag a user but there are no matches
|
|
902
|
-
boxui.draftjs.mentionSelector.noUsersFound = ⟦萬萬萬萬
|
|
972
|
+
boxui.draftjs.mentionSelector.noUsersFound = ⟦萬萬萬萬 Ňō üŝęяś ƒõųŋď 國國國國⟧
|
|
903
973
|
# Message to display when a user triggers a mention
|
|
904
|
-
boxui.draftjs.mentionSelector.startMention = ⟦萬萬萬萬萬萬萬萬
|
|
974
|
+
boxui.draftjs.mentionSelector.startMention = ⟦萬萬萬萬萬萬萬萬 Мěлţįøʼn ŝóměōйέ τó ńöţϊƒý ţħém 國國國國國國國國⟧
|
|
905
975
|
# Message for screenReader users when a certain number of users is being tagged
|
|
906
|
-
boxui.draftjs.mentionSelector.usersFound = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 {usersCount, plural, one {
|
|
976
|
+
boxui.draftjs.mentionSelector.usersFound = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 {usersCount, plural, one {öŋε ũѕĕř ƒоũлď} other {{usersCount} ųŝēґş ƒõûиď}} 國國國國國國國國國國國國國⟧
|
|
907
977
|
# Icon showing a sad Box cloud
|
|
908
|
-
boxui.errorMask.iconSadCloudText = ⟦萬萬萬
|
|
978
|
+
boxui.errorMask.iconSadCloudText = ⟦萬萬萬 Ѕąď ßσх Ćĺόµď 國國國⟧
|
|
909
979
|
# Text to show when root folder is external
|
|
910
|
-
boxui.features.VirtualizedTableRenderers.allFiles = ⟦萬萬
|
|
980
|
+
boxui.features.VirtualizedTableRenderers.allFiles = ⟦萬萬 Äľĺ ₣ìľěś 國國⟧
|
|
911
981
|
# The user is an anonymous user
|
|
912
|
-
boxui.features.VirtualizedTableRenderers.anonymousUser = ⟦萬萬萬萬
|
|
982
|
+
boxui.features.VirtualizedTableRenderers.anonymousUser = ⟦萬萬萬萬 Ǻпοńýmôűŝ Ûśêŗ 國國國國⟧
|
|
913
983
|
# Text to show when a file is external
|
|
914
|
-
boxui.features.VirtualizedTableRenderers.externalFile = ⟦萬萬萬
|
|
984
|
+
boxui.features.VirtualizedTableRenderers.externalFile = ⟦萬萬萬 Ě×ŧёѓήăļ ₣ïļě 國國國⟧
|
|
915
985
|
# Text to show when a folder is external
|
|
916
|
-
boxui.features.VirtualizedTableRenderers.externalFolder = ⟦萬萬萬萬
|
|
986
|
+
boxui.features.VirtualizedTableRenderers.externalFolder = ⟦萬萬萬萬 É×ţęґņǻľ ₣øļďёґ 國國國國⟧
|
|
917
987
|
# Text to show on "modified by" table cell. Note that "lastModified" will contain additional localized text. Example: 2 days ago by John Smith
|
|
918
|
-
boxui.features.VirtualizedTableRenderers.lastModifiedBy = ⟦萬萬萬萬 {lastModified}
|
|
988
|
+
boxui.features.VirtualizedTableRenderers.lastModifiedBy = ⟦萬萬萬萬 {lastModified} вў {user} 國國國國⟧
|
|
919
989
|
# The user is unknown in the database.
|
|
920
|
-
boxui.features.VirtualizedTableRenderers.unknownUser = ⟦萬萬萬
|
|
990
|
+
boxui.features.VirtualizedTableRenderers.unknownUser = ⟦萬萬萬 Ųиκηôŵņ Üŝěя 國國國⟧
|
|
921
991
|
# Warning message in the sidebar that this bookmark will be automatically deleted on a certain date, {expiration} is the date
|
|
922
|
-
boxui.itemDetails.bookmarkExpiration = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
992
|
+
boxui.itemDetails.bookmarkExpiration = ⟦萬萬萬萬萬萬萬萬萬萬萬 Ţнîş вοōκmāгк ωíľĺ ьė ďĕĺėŧėď õń {expiration}. 國國國國國國國國國國國⟧
|
|
923
993
|
# Label for created date under item properties in the sidebar
|
|
924
|
-
boxui.itemDetails.created = ⟦萬萬
|
|
994
|
+
boxui.itemDetails.created = ⟦萬萬 Čґĕąτèď 國國⟧
|
|
925
995
|
# Label for deletion date under item properties in the sidebar
|
|
926
|
-
boxui.itemDetails.deleted = ⟦萬萬
|
|
996
|
+
boxui.itemDetails.deleted = ⟦萬萬 Ðέľεťέď 國國⟧
|
|
927
997
|
# Label for description under item properties in the sidebar
|
|
928
|
-
boxui.itemDetails.description = ⟦萬萬萬
|
|
998
|
+
boxui.itemDetails.description = ⟦萬萬萬 Ďęş¢ŕĩΡŧíοʼn 國國國⟧
|
|
929
999
|
# Placeholder for textarea to enter a description under item properties in the sidebar
|
|
930
|
-
boxui.itemDetails.descriptionPlaceholder = ⟦萬萬萬萬萬
|
|
1000
|
+
boxui.itemDetails.descriptionPlaceholder = ⟦萬萬萬萬萬 Ёπŧέґ à ďėşčґĭΡτĭøň 國國國國國⟧
|
|
931
1001
|
# Label for name of enterprise owner under item properties in the sidebar
|
|
932
|
-
boxui.itemDetails.enterpriseOwner = ⟦萬萬萬萬
|
|
1002
|
+
boxui.itemDetails.enterpriseOwner = ⟦萬萬萬萬 ЄηťęŕΡгìŝè Õẃňēŕ 國國國國⟧
|
|
933
1003
|
# Warning message in the sidebar that this file will be automatically deleted on a certain date, {expiration} is the date
|
|
934
|
-
boxui.itemDetails.fileExpiration = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
1004
|
+
boxui.itemDetails.fileExpiration = ⟦萬萬萬萬萬萬萬萬萬萬 Ţнįś ƒιľě ωĭļĺ вē ďéĺёţέď ōń {expiration}. 國國國國國國國國國國⟧
|
|
935
1005
|
# Warning message in the sidebar that this folder will be automatically deleted on a certain date, {expiration} is the date
|
|
936
|
-
boxui.itemDetails.folderExpiration = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
1006
|
+
boxui.itemDetails.folderExpiration = ⟦萬萬萬萬萬萬萬萬萬萬萬 Ťħĩѕ ƒöľďèя ώïļļ ьē ďèļéŧεď òʼn {expiration}. 國國國國國國國國國國國⟧
|
|
937
1007
|
# Label for modified date under item properties in the sidebar
|
|
938
|
-
boxui.itemDetails.modified = ⟦萬萬
|
|
1008
|
+
boxui.itemDetails.modified = ⟦萬萬 Мόďіƒīεď 國國⟧
|
|
939
1009
|
# Label for name of owner under item properties in the sidebar
|
|
940
|
-
boxui.itemDetails.owner = ⟦萬
|
|
1010
|
+
boxui.itemDetails.owner = ⟦萬 Öщйęř 國⟧
|
|
941
1011
|
# Label for description of the retention policy under item properties in the sidebar
|
|
942
|
-
boxui.itemDetails.retentionPolicyDescription = ⟦萬 P
|
|
1012
|
+
boxui.itemDetails.retentionPolicyDescription = ⟦萬 Pόľĩċγ 國⟧
|
|
943
1013
|
# Label for the expiration date of the retention policy under item properties in the sidebar
|
|
944
|
-
boxui.itemDetails.retentionPolicyExpiration = ⟦萬萬萬萬萬
|
|
1014
|
+
boxui.itemDetails.retentionPolicyExpiration = ⟦萬萬萬萬萬 Pőĺïčŷ ΈхΡĩгáťĭοй 國國國國國⟧
|
|
945
1015
|
# Button to extend the expiration date of the retention policy under item properties in the sidebar
|
|
946
|
-
boxui.itemDetails.retentionPolicyExtend = ⟦萬
|
|
1016
|
+
boxui.itemDetails.retentionPolicyExtend = ⟦萬 Ĕםèиď 國⟧
|
|
947
1017
|
# Text for button in the sidebar to open the version history popup, {versionCount} is the number of saved file versions
|
|
948
|
-
boxui.itemDetails.savedVersions = ⟦萬萬萬萬萬 {versionCount, number}
|
|
1018
|
+
boxui.itemDetails.savedVersions = ⟦萬萬萬萬萬 {versionCount, number} Ŝανëď Vęřŝϊοňś 國國國國國⟧
|
|
949
1019
|
# Warning message in the sidebar that this shared link will expire on a certain date, {expiration} is the date
|
|
950
|
-
boxui.itemDetails.sharedLinkExpiration = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1020
|
+
boxui.itemDetails.sharedLinkExpiration = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ŧħіś ŝĥäґéď ĺîήк ωíľľ ьë ďìѕâвļεď óň {expiration}. 國國國國國國國國國國國國⟧
|
|
951
1021
|
# Label for human-readable filesize under item properties in the sidebar
|
|
952
|
-
boxui.itemDetails.size = ⟦萬
|
|
1022
|
+
boxui.itemDetails.size = ⟦萬 Şίżè 國⟧
|
|
953
1023
|
# Label for name of uploader under item properties in the sidebar
|
|
954
|
-
boxui.itemDetails.uploader = ⟦萬萬
|
|
1024
|
+
boxui.itemDetails.uploader = ⟦萬萬 ŮΡĺŏãďĕŗ 國國⟧
|
|
955
1025
|
# Label for a weblink url under item properties in the sidebar
|
|
956
|
-
boxui.itemDetails.url = ⟦
|
|
1026
|
+
boxui.itemDetails.url = ⟦ ŲΓĹ ⟧
|
|
957
1027
|
# Placeholder for a weblink url text area in the right sidebar
|
|
958
|
-
boxui.itemDetails.urlPlaceholder = ⟦萬萬萬萬萬
|
|
1028
|
+
boxui.itemDetails.urlPlaceholder = ⟦萬萬萬萬萬 Σńτеґ ã νåĺїď űřļ 國國國國國⟧
|
|
959
1029
|
# Label for comment options menu
|
|
960
|
-
boxui.media.menuButtonArialLabel = ⟦萬萬
|
|
1030
|
+
boxui.media.menuButtonArialLabel = ⟦萬萬 ÒΡťϊòлѕ 國國⟧
|
|
961
1031
|
# Informational text below collapsible header indicating that all fields for this template are hidden
|
|
962
|
-
boxui.metadataInstanceEditor.allAttributesAreHidden = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1032
|
+
boxui.metadataInstanceEditor.allAttributesAreHidden = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Αĺĺ ąŧţŗϊьúťєŝ ïп ťħïś ŧεmΡĺάţĕ нāνё вēεή ĥîďďêʼn. 國國國國國國國國國國國國國國⟧
|
|
963
1033
|
# Informational text below enable cascade policy toggle switch
|
|
964
|
-
boxui.metadataInstanceEditor.applyCascadePolicyText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1034
|
+
boxui.metadataInstanceEditor.applyCascadePolicyText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ÄΡΡļў ţёmΡľâτē àŋď ìτѕ νåĺųěş ţô άľľ πèώ āńď ēхįѕŧïʼnğ īţεmş ĩń τнїś ƒöļďεŗ αлď ίťś şúвƒόļďëřś. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
965
1035
|
# Informational text below enable cascade policy toggle switch indicating that cascade policy cannot be applied
|
|
966
|
-
boxui.metadataInstanceEditor.cannotApplyCascadePolicyText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1036
|
+
boxui.metadataInstanceEditor.cannotApplyCascadePolicyText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ċáś¢áďę ΡοĺїсУ çǻйŋőτ ье äΡΡľĩęď τō сμŝťόm mėŧåďãŧã åŧ ťнįś τīmè. 國國國國國國國國國國國國國國國國國國國⟧
|
|
967
1037
|
# Tooltip text a user can use to learn more about cascading metadata policy
|
|
968
|
-
boxui.metadataInstanceEditor.cascadePolicyLearnMore = ⟦萬萬
|
|
1038
|
+
boxui.metadataInstanceEditor.cascadePolicyLearnMore = ⟦萬萬 Ĺеąѓл mоŗё 國國⟧
|
|
969
1039
|
# Tooltip text that asks the user what they want to do when applying cascading to their metadata policy
|
|
970
|
-
boxui.metadataInstanceEditor.cascadePolicyModeQuestion = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1040
|
+
boxui.metadataInstanceEditor.cascadePolicyModeQuestion = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Īп ţħе сąŝе õƒ ćõπƒļīçťŝ шħėл āΡΡĺỳίňğ τĥîş ťémΡļąŧę αлď ïťѕ νǻľûёŝ ŧô éхĩŝťíηĝ ιŧέmş, ŵнąŧ ώŏūľď ŷŏμ ļιķε ţο ďŏ? Ŧħíś іś α ôйę ŧįmе αčţíóή. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
971
1041
|
# Label for radio button that selects overwrite mode for cascading policy
|
|
972
|
-
boxui.metadataInstanceEditor.cascadePolicyOverwriteMode = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
1042
|
+
boxui.metadataInstanceEditor.cascadePolicyOverwriteMode = ⟦萬萬萬萬萬萬萬萬萬萬萬 Òνéгщгίţè αļľ êхїśţĩņĝ ţêmΡľǻťê νâľùëś 國國國國國國國國國國國⟧
|
|
973
1043
|
# Label for radio button that selects skip mode for cascading policy
|
|
974
|
-
boxui.metadataInstanceEditor.cascadePolicySkipMode = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1044
|
+
boxui.metadataInstanceEditor.cascadePolicySkipMode = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 ŚĸĭΡ àйď κêėΡ åĺĺ ēхіşţіŋĝ ŧêmΡļάŧé νăļùêş 國國國國國國國國國國國國⟧
|
|
975
1045
|
# Label for the add button for custom metadata
|
|
976
|
-
boxui.metadataInstanceEditor.customAdd = ⟦
|
|
1046
|
+
boxui.metadataInstanceEditor.customAdd = ⟦ Αďď ⟧
|
|
977
1047
|
# Error enforcing unique key for custom metadata
|
|
978
|
-
boxui.metadataInstanceEditor.customErrorDuplicateKey = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
1048
|
+
boxui.metadataInstanceEditor.customErrorDuplicateKey = ⟦萬萬萬萬萬萬萬萬萬萬萬 à ƒìęĺď ώîťħ τħăŧ кéÿ āĺгèåďÿ ė×īŝŧś. 國國國國國國國國國國國⟧
|
|
979
1049
|
# Error enforcing non internal key for custom metadata
|
|
980
|
-
boxui.metadataInstanceEditor.customErrorInternalKey = ⟦萬萬萬萬萬萬萬萬
|
|
1050
|
+
boxui.metadataInstanceEditor.customErrorInternalKey = ⟦萬萬萬萬萬萬萬萬 Κеýş сǻņŋöτ вěĝίň ẃĭτн à $. 國國國國國國國國⟧
|
|
981
1051
|
# Error enforcing required key for custom metadata
|
|
982
|
-
boxui.metadataInstanceEditor.customErrorRequired = ⟦萬萬萬萬萬
|
|
1052
|
+
boxui.metadataInstanceEditor.customErrorRequired = ⟦萬萬萬萬萬 Å ķєÿ įŝ ѓěqúìŗĕď. 國國國國國⟧
|
|
983
1053
|
# Label for the key field for custom metadata
|
|
984
|
-
boxui.metadataInstanceEditor.customKey = ⟦
|
|
1054
|
+
boxui.metadataInstanceEditor.customKey = ⟦ Ќėý ⟧
|
|
985
1055
|
# Placeholder for the key field for custom metadata
|
|
986
|
-
boxui.metadataInstanceEditor.customKeyPlaceholder = ⟦萬萬萬萬萬
|
|
1056
|
+
boxui.metadataInstanceEditor.customKeyPlaceholder = ⟦萬萬萬萬萬 é.ĝ. Őŗďеѓ Ňúmвёг 國國國國國⟧
|
|
987
1057
|
# Title for the new field section for custom metadata
|
|
988
|
-
boxui.metadataInstanceEditor.customNewField = ⟦萬萬
|
|
1058
|
+
boxui.metadataInstanceEditor.customNewField = ⟦萬萬 Ņèẃ ₣įеļď 國國⟧
|
|
989
1059
|
# Description for the new field section for custom metadata
|
|
990
|
-
boxui.metadataInstanceEditor.customNewFieldMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1060
|
+
boxui.metadataInstanceEditor.customNewFieldMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Αďď ā čμşťσm mέťαďâťα ƒìέļď. Öŧĥéґ ΡёôΡļè ωĭļļ вє āьĺë ţő śėě αηď ŝęąř¢н ƒóř τĥĭѕ ƒįёĺď. 國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
991
1061
|
# Label for the remove button for custom metadata
|
|
992
|
-
boxui.metadataInstanceEditor.customRemove = ⟦萬
|
|
1062
|
+
boxui.metadataInstanceEditor.customRemove = ⟦萬 Ґémõνè 國⟧
|
|
993
1063
|
# title of the custom metadata card
|
|
994
|
-
boxui.metadataInstanceEditor.customTitle = ⟦萬萬萬萬
|
|
1064
|
+
boxui.metadataInstanceEditor.customTitle = ⟦萬萬萬萬 Ćûśŧőm Мєťāďãτã 國國國國⟧
|
|
995
1065
|
# Label for the value field for custom metadata
|
|
996
|
-
boxui.metadataInstanceEditor.customValue = ⟦萬
|
|
1066
|
+
boxui.metadataInstanceEditor.customValue = ⟦萬 Vàľùè 國⟧
|
|
997
1067
|
# Placeholder for the value field for custom metadata
|
|
998
|
-
boxui.metadataInstanceEditor.customValuePlaceholder = ⟦萬萬
|
|
1068
|
+
boxui.metadataInstanceEditor.customValuePlaceholder = ⟦萬萬 έ.ğ. 42 國國⟧
|
|
999
1069
|
# Text that shows in a tooltip above the edit pencil button.
|
|
1000
|
-
boxui.metadataInstanceEditor.editTooltip = ⟦萬萬萬
|
|
1070
|
+
boxui.metadataInstanceEditor.editTooltip = ⟦萬萬萬 Éďĭţ Μĕţαďàŧă 國國國⟧
|
|
1001
1071
|
# Label for enable cascade policy toggle switch
|
|
1002
|
-
boxui.metadataInstanceEditor.enableCascadePolicy = ⟦萬萬萬萬萬萬
|
|
1072
|
+
boxui.metadataInstanceEditor.enableCascadePolicy = ⟦萬萬萬萬萬萬 Ёπàьĺе Ćąś¢âďé Pøĺĭ¢У 國國國國國國⟧
|
|
1003
1073
|
# Message for users who may attempt to remove a custom metadata instance for a file. Also non-recoverable
|
|
1004
|
-
boxui.metadataInstanceEditor.fileMetadataRemoveCustomTemplateConfirm = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1074
|
+
boxui.metadataInstanceEditor.fileMetadataRemoveCustomTemplateConfirm = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Àŕě ŷоŭ ŝųґё ŷőú ώåήţ τő ďęľēţè ţħĩѕ сůѕŧŏm mέŧáďąτâ āʼnď ãľļ øƒ їŧŝ ναļűέѕ ƒгôm ťħĭş ƒίľë? 國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1005
1075
|
# Message for users who may attempt to remove a metadata instance for a file, which is non-recoverable
|
|
1006
|
-
boxui.metadataInstanceEditor.fileMetadataRemoveTemplateConfirm = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1076
|
+
boxui.metadataInstanceEditor.fileMetadataRemoveTemplateConfirm = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Άяę ỳôŭ śцґε ÿőú ẃãŋť ţό ďεľέţε "{metadataName}" àйď âľļ ōƒ ίţѕ νąľùёş ƒŕôm ŧĥįѕ ƒіľе? 國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1007
1077
|
# Message for users who may attempt to remove a custom metadata instance for a folder. Also non-recoverable
|
|
1008
|
-
boxui.metadataInstanceEditor.folderMetadataRemoveCustomTemplateConfirm = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1078
|
+
boxui.metadataInstanceEditor.folderMetadataRemoveCustomTemplateConfirm = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ąґë γøű ѕũґè ŷόű щàлţ ŧο ďέĺеťέ ťнїś ¢ůşţòm měťåďǻťą àńď ǻļĺ ōƒ ĩţş νάĺŭēş? Åήỳ mєťăďąţā τеmΡļąŧе νąĺµεŝ áľŕєãďý ąΡΡĺìёď ţó ƒĭļèŝ íʼn ťħĭş ƒόľďëѓ шĭľļ πôţ ьê ďėļêŧєď. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1009
1079
|
# Message for users who may attempt to remove a metadata instance for a folder, which is non-recoverable
|
|
1010
|
-
boxui.metadataInstanceEditor.folderMetadataRemoveTemplateConfirm = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1080
|
+
boxui.metadataInstanceEditor.folderMetadataRemoveTemplateConfirm = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Äгέ ўŏů ѕũгė ŷōú ẁāņť τσ ďěľеţę "{metadataName}" äиď äļļ õƒ íŧŝ νăĺűèŝ? Άпγ mēţãďàτα ťémΡľáŧε νâļūєѕ ăļŗёãďỳ αΡΡľіēď ŧо ƒιĺéş ĩʼn τнιś ƒøĺďėŕ ωíĺļ ńŏť ве ďеļēťèď. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1011
1081
|
# Error message displayed if the user enters a badly formatted value in metadata text box
|
|
1012
|
-
boxui.metadataInstanceEditor.invalidValue = ⟦萬萬萬萬
|
|
1082
|
+
boxui.metadataInstanceEditor.invalidValue = ⟦萬萬萬萬 Іńνáľїď ĨпΡûŧ! 國國國國⟧
|
|
1013
1083
|
# Label for cancel button
|
|
1014
|
-
boxui.metadataInstanceEditor.metadataCancel = ⟦萬
|
|
1084
|
+
boxui.metadataInstanceEditor.metadataCancel = ⟦萬 Ćåлĉèĺ 國⟧
|
|
1015
1085
|
# Informational text shown in metadata modal when cascading is turned on for current folder
|
|
1016
|
-
boxui.metadataInstanceEditor.metadataCascadePolicyEnabledInfo = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1086
|
+
boxui.metadataInstanceEditor.metadataCascadePolicyEnabledInfo = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ťĥіş ţĕmΡļäťĕ àʼnď ιŧş νąĺūëś ąяе вĕϊņğ ćąŝčàďêď ťô åľļ įťεmŝ ίń τħīŝ ƒõļďêя áʼnď їŧѕ şųьƒōļďєґѕ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1017
1087
|
# Label for save button
|
|
1018
|
-
boxui.metadataInstanceEditor.metadataSave = ⟦萬
|
|
1088
|
+
boxui.metadataInstanceEditor.metadataSave = ⟦萬 Ѕãνе 國⟧
|
|
1019
1089
|
# Informational text below collapsible header indicating that there are no attributes for this template
|
|
1020
|
-
boxui.metadataInstanceEditor.noAttributesForTemplate = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1090
|
+
boxui.metadataInstanceEditor.noAttributesForTemplate = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ŧĥёгĕ ăґě лő áτţřϊвúţєŝ ìŋ ťĥїŝ τęmΡĺăŧε. 國國國國國國國國國國國國⟧
|
|
1021
1091
|
# Text to display when no metadata is applied to folder
|
|
1022
|
-
boxui.metadataInstanceEditor.noMetadata = ⟦萬萬萬萬萬
|
|
1092
|
+
boxui.metadataInstanceEditor.noMetadata = ⟦萬萬萬萬萬 Йõ Мεŧåďàťä ĂΡΡĺĩēď 國國國國國⟧
|
|
1023
1093
|
# Instructions to create metadata for the selected folder
|
|
1024
|
-
boxui.metadataInstanceEditor.noMetadataAddTemplate = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1094
|
+
boxui.metadataInstanceEditor.noMetadataAddTemplate = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ćĺιĉк 'Αďď' їʼn τнё τøΡ ŕĭğħť ŧο äďď mĕτǻďάţá ťő ţĥίş ïťеm 國國國國國國國國國國國國國國國國國⟧
|
|
1025
1095
|
# Informational text below cascade policy description and explains to the user that the policy will take some time to take effect.
|
|
1026
|
-
boxui.metadataInstanceEditor.operationNotImmediate = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1096
|
+
boxui.metadataInstanceEditor.operationNotImmediate = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Τħîѕ őΡегãťĭŏʼn ϊś ʼnöτ įmmєďíàŧё āйď mάў ťãķё śõmè τїmē. 國國國國國國國國國國國國國國國國⟧
|
|
1027
1097
|
# Label to remove a template
|
|
1028
|
-
boxui.metadataInstanceEditor.removeTemplate = ⟦萬
|
|
1098
|
+
boxui.metadataInstanceEditor.removeTemplate = ⟦萬 Ґèmőνę 國⟧
|
|
1029
1099
|
# Label to add a template
|
|
1030
|
-
boxui.metadataInstanceEditor.templateAdd = ⟦
|
|
1100
|
+
boxui.metadataInstanceEditor.templateAdd = ⟦ Åďď ⟧
|
|
1031
1101
|
# Placeholder to search for all templates
|
|
1032
|
-
boxui.metadataInstanceEditor.templateSearchPlaceholder = ⟦萬萬萬萬萬
|
|
1102
|
+
boxui.metadataInstanceEditor.templateSearchPlaceholder = ⟦萬萬萬萬萬 Şęąŕсĥ äĺĺ τεmΡĺąţęş 國國國國國⟧
|
|
1033
1103
|
# Text to indicate that we failed to fetch templates
|
|
1034
|
-
boxui.metadataInstanceEditor.templatesFetchFailed = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1104
|
+
boxui.metadataInstanceEditor.templatesFetchFailed = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ѕôяґỳ! Щé çöцľď πσţ ƒêŧсĥ ţĕmΡĺάŧêś. Pľèαѕĕ çоʼnťǻ¢ţ ÿоùѓ āďmīпîѕťѓάτòг 國國國國國國國國國國國國國國國國國國國國⟧
|
|
1035
1105
|
# Text to indicate that all the templates have been added
|
|
1036
|
-
boxui.metadataInstanceEditor.templatesNoRemainingTemplates = ⟦萬萬萬萬萬萬萬萬
|
|
1106
|
+
boxui.metadataInstanceEditor.templatesNoRemainingTemplates = ⟦萬萬萬萬萬萬萬萬 Åľľ ťęmΡľăţèś нàνè вêĕл ąďďέď 國國國國國國國國⟧
|
|
1037
1107
|
# Text to indicate no templates found by searching
|
|
1038
|
-
boxui.metadataInstanceEditor.templatesNoResults = ⟦萬萬
|
|
1108
|
+
boxui.metadataInstanceEditor.templatesNoResults = ⟦萬萬 Ŋö Řęŝцľťŝ 國國⟧
|
|
1039
1109
|
# Text to indicate that the server has no templates
|
|
1040
|
-
boxui.metadataInstanceEditor.templatesServerHasNoTemplates = ⟦萬萬萬萬
|
|
1110
|
+
boxui.metadataInstanceEditor.templatesServerHasNoTemplates = ⟦萬萬萬萬 Żêŗŏ ťëmΡĺάťεś 國國國國⟧
|
|
1041
1111
|
# Overall title of metadata
|
|
1042
|
-
boxui.metadataInstanceEditor.templatesTitle = ⟦萬萬
|
|
1112
|
+
boxui.metadataInstanceEditor.templatesTitle = ⟦萬萬 ŢëmΡľǻŧēŝ 國國⟧
|
|
1043
1113
|
# Label for the add button for custom metadata
|
|
1044
|
-
boxui.metadataInstanceFields.customAdd = ⟦
|
|
1114
|
+
boxui.metadataInstanceFields.customAdd = ⟦ Åďď ⟧
|
|
1045
1115
|
# Label for the remove button for custom metadata
|
|
1046
|
-
boxui.metadataInstanceFields.customRemove = ⟦萬
|
|
1116
|
+
boxui.metadataInstanceFields.customRemove = ⟦萬 Яęmöνė 國⟧
|
|
1047
1117
|
# Text to indicate to select one or more values from dropdown list
|
|
1048
|
-
boxui.metadataInstanceFields.fieldMultiSelectValue = ⟦萬萬萬
|
|
1118
|
+
boxui.metadataInstanceFields.fieldMultiSelectValue = ⟦萬萬萬 Ѕёļěćŧ Vâĺµеѕ 國國國⟧
|
|
1049
1119
|
# Text to indicate no value exists
|
|
1050
|
-
boxui.metadataInstanceFields.fieldNoValue = ⟦萬萬
|
|
1120
|
+
boxui.metadataInstanceFields.fieldNoValue = ⟦萬萬 Ŋò Vǻĺûė 國國⟧
|
|
1051
1121
|
# Text to indicate to select a value from drop down list
|
|
1052
|
-
boxui.metadataInstanceFields.fieldSelectValue = ⟦萬萬萬
|
|
1122
|
+
boxui.metadataInstanceFields.fieldSelectValue = ⟦萬萬萬 Şëļė¢τ Vǻľųè 國國國⟧
|
|
1053
1123
|
# Text to indicate to set a date
|
|
1054
|
-
boxui.metadataInstanceFields.fieldSetDate = ⟦萬萬
|
|
1124
|
+
boxui.metadataInstanceFields.fieldSetDate = ⟦萬萬 Śěŧ Ðατé 國國⟧
|
|
1055
1125
|
# Text to indicate to set a value
|
|
1056
|
-
boxui.metadataInstanceFields.fieldSetValue = ⟦萬萬
|
|
1126
|
+
boxui.metadataInstanceFields.fieldSetValue = ⟦萬萬 Śеŧ Vâļúě 國國⟧
|
|
1057
1127
|
# Error message displayed if the template has an field type we don't recognize
|
|
1058
|
-
boxui.metadataInstanceFields.invalidMetadataFieldType = ⟦萬萬萬萬萬萬萬萬
|
|
1128
|
+
boxui.metadataInstanceFields.invalidMetadataFieldType = ⟦萬萬萬萬萬萬萬萬 İńνąļĭď mёτάďąťā ƒιēľď ťŷΡĕ! 國國國國國國國國⟧
|
|
1059
1129
|
# Button to close modal
|
|
1060
|
-
boxui.modalDialog.closeModalText = ⟦萬萬萬
|
|
1130
|
+
boxui.modalDialog.closeModalText = ⟦萬萬萬 Čľöşè Мóďáļ 國國國⟧
|
|
1061
1131
|
# Text shown on button to close the modal used to create a new folder
|
|
1062
|
-
boxui.newFolderModal.cancel = ⟦萬
|
|
1132
|
+
boxui.newFolderModal.cancel = ⟦萬 Ĉάиćèľ 國⟧
|
|
1063
1133
|
# Text shown on button to create a new folder
|
|
1064
|
-
boxui.newFolderModal.create = ⟦萬
|
|
1134
|
+
boxui.newFolderModal.create = ⟦萬 Ĉřĕāτе 國⟧
|
|
1065
1135
|
# Label text shown on top of the folder name input when creating a new folder
|
|
1066
|
-
boxui.newFolderModal.folderName.label = ⟦萬萬萬
|
|
1136
|
+
boxui.newFolderModal.folderName.label = ⟦萬萬萬 ₣σĺďëŕ Ŋāmë 國國國⟧
|
|
1067
1137
|
# Placeholder text shown in the folder name input when creating a new folder
|
|
1068
|
-
boxui.newFolderModal.folderName.placeholder = ⟦萬萬萬
|
|
1138
|
+
boxui.newFolderModal.folderName.placeholder = ⟦萬萬萬 МУ Иёώ ₣ŏľďêґ 國國國⟧
|
|
1069
1139
|
# Title shown in the modal used to create a new folder. "parentFolderName" should not be translated
|
|
1070
|
-
boxui.newFolderModal.title = ⟦萬萬萬萬萬萬萬萬
|
|
1140
|
+
boxui.newFolderModal.title = ⟦萬萬萬萬萬萬萬萬 Çŗεáτέ ā Ŋěώ ₣őļďéŕ ĭπ "{parentFolderName}" 國國國國國國國國⟧
|
|
1071
1141
|
# Button to clear notification
|
|
1072
|
-
boxui.notification.clearNotification = ⟦萬萬萬萬萬
|
|
1142
|
+
boxui.notification.clearNotification = ⟦萬萬萬萬萬 Ĉļёάř Ñόťîƒïсàťĩøπ 國國國國國⟧
|
|
1073
1143
|
# Description for when someone last viewed a document less than a minute ago
|
|
1074
|
-
boxui.presence.accessedInTheLastMinute = ⟦萬萬萬萬萬萬萬萬
|
|
1144
|
+
boxui.presence.accessedInTheLastMinute = ⟦萬萬萬萬萬萬萬萬 Vĩėẃĕď ĺέѕŝ ŧнǻй á mіʼnūţé ãğо 國國國國國國國國⟧
|
|
1075
1145
|
# Description for someone who is currently viewing or editing a document
|
|
1076
|
-
boxui.presence.activeNow = ⟦萬萬
|
|
1146
|
+
boxui.presence.activeNow = ⟦萬萬 Ăćτίνέ иôш 國國⟧
|
|
1077
1147
|
# Description for when someone last commented on a document less than a minute ago
|
|
1078
|
-
boxui.presence.commentedIntheLastMinute = ⟦萬萬萬萬萬萬萬萬萬
|
|
1148
|
+
boxui.presence.commentedIntheLastMinute = ⟦萬萬萬萬萬萬萬萬萬 Ĉòmmεņţеď ļеśѕ τħáņ â mιŋůτè ãĝο 國國國國國國國國國⟧
|
|
1079
1149
|
# Text on button to get shared link for the item
|
|
1080
|
-
boxui.presence.getLinkButton = ⟦萬萬
|
|
1150
|
+
boxui.presence.getLinkButton = ⟦萬萬 Ğετ Ŀїņк 國國⟧
|
|
1081
1151
|
# Text on button to invite collaborators to this item
|
|
1082
|
-
boxui.presence.inviteButton = ⟦萬萬萬
|
|
1152
|
+
boxui.presence.inviteButton = ⟦萬萬萬 Ϊпνįťέ PęóΡĺę 國國國⟧
|
|
1083
1153
|
# Description for when someone last edited a document less than a minute ago
|
|
1084
|
-
boxui.presence.modifiedIntheLastMinute = ⟦萬萬萬萬萬萬萬萬
|
|
1154
|
+
boxui.presence.modifiedIntheLastMinute = ⟦萬萬萬萬萬萬萬萬 Ёďïŧєď ĺěѕś τĥăń â mĭņμτе âġо 國國國國國國國國⟧
|
|
1085
1155
|
# Text for link at footer of the Recent Activity panel
|
|
1086
|
-
boxui.presence.previewPresenceFlyoutAccessStatsLink = ⟦萬萬萬萬
|
|
1156
|
+
boxui.presence.previewPresenceFlyoutAccessStatsLink = ⟦萬萬萬萬 Ŝêë áĺľ ă¢ţινĭťУ 國國國國⟧
|
|
1087
1157
|
# Text on button embedded within tooltip that is visible on page load
|
|
1088
|
-
boxui.presence.previewPresenceFlyoutActivityCTA = ⟦萬萬萬萬萬
|
|
1158
|
+
boxui.presence.previewPresenceFlyoutActivityCTA = ⟦萬萬萬萬萬 Vìęẃ Ґěсėʼnτ Äćťίνĭτÿ 國國國國國⟧
|
|
1089
1159
|
# Tooltip text visible on page load, to prompt the user to press a button to view activity
|
|
1090
|
-
boxui.presence.previewPresenceFlyoutCopy = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Q
|
|
1160
|
+
boxui.presence.previewPresenceFlyoutCopy = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 QũïçĸľУ ѕĕè ẁħŏ ĥǻş ¢ōmmеиτεď öи, єďíŧέď, оя νìéŵéď ťĥĩѕ ƒίĺе. 國國國國國國國國國國國國國國國國國國⟧
|
|
1091
1161
|
# Description for when someone last previewed a document less than a minute ago
|
|
1092
|
-
boxui.presence.previewedIntheLastMinute = ⟦萬萬萬萬萬萬萬萬萬 P
|
|
1162
|
+
boxui.presence.previewedIntheLastMinute = ⟦萬萬萬萬萬萬萬萬萬 Přėνιėщēď ļěşş ţĥąп á míńūţέ ăġő 國國國國國國國國國⟧
|
|
1093
1163
|
# Header on presence dropdown list that represents recent activity on the item
|
|
1094
|
-
boxui.presence.recentActivity = ⟦萬萬萬萬
|
|
1164
|
+
boxui.presence.recentActivity = ⟦萬萬萬萬 Ґεčēйť Å¢τīνіŧŷ 國國國國⟧
|
|
1095
1165
|
# Description for when someone last viewed a document, {timeAgo} is a relative time like 2 months ago
|
|
1096
|
-
boxui.presence.timeSinceLastAccessed = ⟦萬萬萬
|
|
1166
|
+
boxui.presence.timeSinceLastAccessed = ⟦萬萬萬 Vіεωёď {timeAgo} 國國國⟧
|
|
1097
1167
|
# Description for when someone last commented on a document, {timeAgo} is a relative time like 2 months ago
|
|
1098
|
-
boxui.presence.timeSinceLastCommented = ⟦萬萬萬萬
|
|
1168
|
+
boxui.presence.timeSinceLastCommented = ⟦萬萬萬萬 Ċõmmêητěď {timeAgo} 國國國國⟧
|
|
1099
1169
|
# Description for when someone last edited a document, {timeAgo} is a relative time like 2 months ago
|
|
1100
|
-
boxui.presence.timeSinceLastModified = ⟦萬萬萬
|
|
1170
|
+
boxui.presence.timeSinceLastModified = ⟦萬萬萬 Êďίτεď {timeAgo} 國國國⟧
|
|
1101
1171
|
# Description for when someone last previewed a document, {timeAgo} is a relative time like 2 months ago
|
|
1102
|
-
boxui.presence.timeSinceLastPreviewed = ⟦萬萬萬萬 P
|
|
1172
|
+
boxui.presence.timeSinceLastPreviewed = ⟦萬萬萬萬 Pѓёνìëшĕď {timeAgo} 國國國國⟧
|
|
1103
1173
|
# Description of the button to toggle the presence overlay with recent activity
|
|
1104
|
-
boxui.presence.toggleButtonLabel = ⟦萬萬萬萬
|
|
1174
|
+
boxui.presence.toggleButtonLabel = ⟦萬萬萬萬 Ŗéсěʼnτ Ǻĉŧįνϊťγ 國國國國⟧
|
|
1105
1175
|
# Text on the add filter button, on click generates another filter row
|
|
1106
|
-
boxui.queryBar.addFilterButtonText = ⟦萬萬萬 +
|
|
1176
|
+
boxui.queryBar.addFilterButtonText = ⟦萬萬萬 + Αďď ₣ĭľτĕґ 國國國⟧
|
|
1107
1177
|
# Text on the apply filter button, on click applies the filters
|
|
1108
|
-
boxui.queryBar.applyFiltersButtonText = ⟦萬
|
|
1178
|
+
boxui.queryBar.applyFiltersButtonText = ⟦萬 ĂΡΡĺУ 國⟧
|
|
1109
1179
|
# Text on the columns button, on click opens a menu which allows users to choose which columns to render
|
|
1110
|
-
boxui.queryBar.columnsButtonText = ⟦萬萬
|
|
1180
|
+
boxui.queryBar.columnsButtonText = ⟦萬萬 Ĉσļцmиś 國國⟧
|
|
1111
1181
|
# Text on the columns button, if one or more columns have been hidden then it will display this text
|
|
1112
|
-
boxui.queryBar.columnsHiddenButtonText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 {count, plural, one {1
|
|
1182
|
+
boxui.queryBar.columnsHiddenButtonText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 {count, plural, one {1 Ĉóĺμmη Ħīďďèη} other {{count} Ċόĺũmπŝ Ηïďďèņ}} 國國國國國國國國國國國國國國⟧
|
|
1113
1183
|
# Text on the connector dropdown, on click should open a dropdown showing either AND or OR
|
|
1114
|
-
boxui.queryBar.connectorAndText = ⟦
|
|
1184
|
+
boxui.queryBar.connectorAndText = ⟦ ÁŊĎ ⟧
|
|
1115
1185
|
# Text on the connector dropdown, on click should open a dropdown showing either AND or OR
|
|
1116
|
-
boxui.queryBar.connectorOrText = ⟦
|
|
1186
|
+
boxui.queryBar.connectorOrText = ⟦ ŌЯ ⟧
|
|
1117
1187
|
# Text on the label, the first condition will show WHERE
|
|
1118
|
-
boxui.queryBar.connectorWhereText = ⟦萬
|
|
1188
|
+
boxui.queryBar.connectorWhereText = ⟦萬 ЩΉĘЃЄ 國⟧
|
|
1119
1189
|
# Text on the filters button, on click opens a menu which allows users to filter through the files
|
|
1120
|
-
boxui.queryBar.filtersButtonText = ⟦萬萬萬萬
|
|
1190
|
+
boxui.queryBar.filtersButtonText = ⟦萬萬萬萬 Мōďîƒγ ₣īľťĕґş 國國國國⟧
|
|
1121
1191
|
# Header text shown in template dropdown
|
|
1122
|
-
boxui.queryBar.metadataViewTemplateListHeaderTitle = ⟦萬萬萬萬萬
|
|
1192
|
+
boxui.queryBar.metadataViewTemplateListHeaderTitle = ⟦萬萬萬萬萬 МĒŢΆĎÅŢÄ ŦĘМPĿĄŢĚŚ 國國國國國⟧
|
|
1123
1193
|
# Text on the filters button, will display a number in front of the filters text indicating how many filters are applied
|
|
1124
|
-
boxui.queryBar.multipleFiltersButtonText = ⟦萬萬萬 {number}
|
|
1194
|
+
boxui.queryBar.multipleFiltersButtonText = ⟦萬萬萬 {number} ₣ιĺťěѓś 國國國⟧
|
|
1125
1195
|
# Text on the filters dropdown that is displayed when no filters have been inserted
|
|
1126
|
-
boxui.queryBar.noFiltersAppliedText = ⟦萬萬萬萬萬
|
|
1196
|
+
boxui.queryBar.noFiltersAppliedText = ⟦萬萬萬萬萬 Ňσ ₣īļτέŗş ÁΡΡľĭèď 國國國國國⟧
|
|
1127
1197
|
# Text on the templates button when templates have been loaded and there are no templates in the enterprise
|
|
1128
|
-
boxui.queryBar.noTemplatesText = ⟦萬萬萬萬萬萬
|
|
1198
|
+
boxui.queryBar.noTemplatesText = ⟦萬萬萬萬萬萬 Ņö ŢеmΡĺǻτēŝ Ăνåίĺâвľě 國國國國國國⟧
|
|
1129
1199
|
# Placeholder text on the value button, on click should open a dropdown
|
|
1130
|
-
boxui.queryBar.selectValuePlaceholderText = ⟦萬萬萬
|
|
1200
|
+
boxui.queryBar.selectValuePlaceholderText = ⟦萬萬萬 Śěľέсť νàļùė 國國國⟧
|
|
1131
1201
|
# Text on the templates button, on click opens a menu which allows users to select a metadata templates
|
|
1132
|
-
boxui.queryBar.templatesButtonText = ⟦萬萬萬萬
|
|
1202
|
+
boxui.queryBar.templatesButtonText = ⟦萬萬萬萬 Śëļęĉţ Μěτǻďåťä 國國國國⟧
|
|
1133
1203
|
# Text on the templates button when templates are still being loaded
|
|
1134
|
-
boxui.queryBar.templatesLoadingButtonText = ⟦萬萬萬
|
|
1204
|
+
boxui.queryBar.templatesLoadingButtonText = ⟦萬萬萬 ΤеmΡĺăτę Ñąmé 國國國⟧
|
|
1135
1205
|
# Text displayed on the Tooltip for an input field
|
|
1136
|
-
boxui.queryBar.tooltipEnterValueError = ⟦萬萬萬萬萬 P
|
|
1206
|
+
boxui.queryBar.tooltipEnterValueError = ⟦萬萬萬萬萬 Pľєâşè Éлţëŗ ã Vąľце 國國國國國⟧
|
|
1137
1207
|
# Text displayed on the Tooltip for an input field of type float
|
|
1138
|
-
boxui.queryBar.tooltipInvalidFloatError = ⟦萬萬萬萬萬萬萬萬
|
|
1208
|
+
boxui.queryBar.tooltipInvalidFloatError = ⟦萬萬萬萬萬萬萬萬 Pļëāśê Éńτêя α Ðèĉίmäľ Ñûmвēŗ 國國國國國國國國⟧
|
|
1139
1209
|
# Text displayed on the Tooltip for an input field of type number
|
|
1140
|
-
boxui.queryBar.tooltipInvalidNumberError = ⟦萬萬萬萬萬萬 P
|
|
1210
|
+
boxui.queryBar.tooltipInvalidNumberError = ⟦萬萬萬萬萬萬 Pľέàşê Єŋťεґ âη Íπŧĕğęѓ 國國國國國國⟧
|
|
1141
1211
|
# Text displayed on the Tooltip for a date field
|
|
1142
|
-
boxui.queryBar.tooltipSelectDateError = ⟦萬萬萬萬萬 P
|
|
1212
|
+
boxui.queryBar.tooltipSelectDateError = ⟦萬萬萬萬萬 Pľěãŝе Ŝёļéĉŧ å Ðαŧє 國國國國國⟧
|
|
1143
1213
|
# Text displayed on the Tooltip for a value field
|
|
1144
|
-
boxui.queryBar.tooltipSelectValueError = ⟦萬萬萬萬萬萬
|
|
1214
|
+
boxui.queryBar.tooltipSelectValueError = ⟦萬萬萬萬萬萬 Pļēàŝě Ŝєľěçŧ ä Vāľùę 國國國國國國⟧
|
|
1145
1215
|
# Icon title for a Box item of type bookmark or web-link
|
|
1146
|
-
boxui.quickSearch.bookmark = ⟦萬萬
|
|
1216
|
+
boxui.quickSearch.bookmark = ⟦萬萬 βöŏκmąŕķ 國國⟧
|
|
1147
1217
|
# Icon title for a Box item of type folder that has collaborators
|
|
1148
|
-
boxui.quickSearch.collaboratedFolder = ⟦萬萬萬萬萬
|
|
1218
|
+
boxui.quickSearch.collaboratedFolder = ⟦萬萬萬萬萬 Čôľĺâвőřάτěď ₣øľďěŗ 國國國國國⟧
|
|
1149
1219
|
# Icon title for a Box item of type folder that has collaborators outside of the user's enterprise
|
|
1150
|
-
boxui.quickSearch.externalFolder = ⟦萬萬萬萬
|
|
1220
|
+
boxui.quickSearch.externalFolder = ⟦萬萬萬萬 Έхŧęŕήåļ ₣ôľďέѓ 國國國國⟧
|
|
1151
1221
|
# Icon title for a Box item of type file
|
|
1152
|
-
boxui.quickSearch.file = ⟦萬
|
|
1222
|
+
boxui.quickSearch.file = ⟦萬 ₣ĭľê 國⟧
|
|
1153
1223
|
# Title for a parent folder icon next to the name of the parent folder for a quick search result item
|
|
1154
|
-
boxui.quickSearch.parentFolder = ⟦萬萬萬 P
|
|
1224
|
+
boxui.quickSearch.parentFolder = ⟦萬萬萬 Pαŗèńτ ₣ŏľďег 國國國⟧
|
|
1155
1225
|
# Icon title for a Box item of type folder that is private and has no collaborators
|
|
1156
|
-
boxui.quickSearch.personalFolder = ⟦萬萬萬萬 P
|
|
1226
|
+
boxui.quickSearch.personalFolder = ⟦萬萬萬萬 Pěґśóηåľ ₣οļďёŗ 國國國國⟧
|
|
1157
1227
|
# Text for a quick search result describing the date when the user last updated the item
|
|
1158
|
-
boxui.quickSearch.updatedText = ⟦萬萬萬萬 {date, date, medium}
|
|
1228
|
+
boxui.quickSearch.updatedText = ⟦萬萬萬萬 {date, date, medium} ьγ {user} 國國國國⟧
|
|
1159
1229
|
# Statement describing when and who last updated a quick search result item, capitalize if appropriate
|
|
1160
|
-
boxui.quickSearch.updatedTextToday = ⟦萬萬萬萬
|
|
1230
|
+
boxui.quickSearch.updatedTextToday = ⟦萬萬萬萬 Τоďăỳ вў {user} 國國國國⟧
|
|
1161
1231
|
# Statement describing when and who last updated a quick search result item, capitalize if appropriate
|
|
1162
|
-
boxui.quickSearch.updatedTextYesterday = ⟦萬萬萬萬萬
|
|
1232
|
+
boxui.quickSearch.updatedTextYesterday = ⟦萬萬萬萬萬 Ýėѕţėřďάý вỳ {user} 國國國國國⟧
|
|
1163
1233
|
# The time that an event occurred
|
|
1164
1234
|
boxui.readableTime.eventTime = ⟦萬 {time, date, medium} 國⟧
|
|
1165
1235
|
# The time that an event occurred at a given date with the year included
|
|
1166
|
-
boxui.readableTime.eventTimeDate = ⟦萬萬萬萬 {time, date, medium}
|
|
1236
|
+
boxui.readableTime.eventTimeDate = ⟦萬萬萬萬 {time, date, medium} άţ {time, time, short} 國國國國⟧
|
|
1167
1237
|
# The time that an event occurred at a given date without the year included
|
|
1168
|
-
boxui.readableTime.eventTimeDateShort = ⟦萬萬萬萬 {date}
|
|
1238
|
+
boxui.readableTime.eventTimeDateShort = ⟦萬萬萬萬 {date} áŧ {time, time, short} 國國國國⟧
|
|
1169
1239
|
# The time that an event occurred today
|
|
1170
|
-
boxui.readableTime.eventTimeToday = ⟦萬萬萬萬
|
|
1240
|
+
boxui.readableTime.eventTimeToday = ⟦萬萬萬萬 Ţόďǻỳ åţ {time, time, short} 國國國國⟧
|
|
1171
1241
|
# The time that an event occurred at a given date with the weekday included
|
|
1172
1242
|
boxui.readableTime.eventTimeWeekdayLong = ⟦萬萬萬 {weekday}, {time, date, medium} 國國國⟧
|
|
1173
1243
|
# The time that an event occurred yesterday
|
|
1174
|
-
boxui.readableTime.eventTimeYesterday = ⟦萬萬萬萬萬
|
|
1244
|
+
boxui.readableTime.eventTimeYesterday = ⟦萬萬萬萬萬 Ŷέѕτĕѓďáỳ άţ {time, time, short} 國國國國國⟧
|
|
1175
1245
|
# Title for a clear button
|
|
1176
|
-
boxui.searchForm.clearButtonTitle = ⟦萬
|
|
1246
|
+
boxui.searchForm.clearButtonTitle = ⟦萬 Ćľęǻг 國⟧
|
|
1177
1247
|
# Title for a search button
|
|
1178
|
-
boxui.searchForm.searchButtonTitle = ⟦萬
|
|
1248
|
+
boxui.searchForm.searchButtonTitle = ⟦萬 Śĕāгčħ 國⟧
|
|
1179
1249
|
# Label for a search input
|
|
1180
|
-
boxui.searchForm.searchLabel = ⟦萬萬萬
|
|
1250
|
+
boxui.searchForm.searchLabel = ⟦萬萬萬 Ŝєäŗсн qµéгỳ 國國國⟧
|
|
1181
1251
|
# Instructional message displayed on the embed widget security drag-drop game
|
|
1182
|
-
boxui.securityCloudGame.instructions = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1252
|
+
boxui.securityCloudGame.instructions = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ₣őŕ ŝесŭřïţý ΡμŗΡõşёş, Ρľεǻśê ďŗàġ τħё щнïτе ćļоũď îŋţò ŧħē ďāŗķ ĉļôμď. 國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1183
1253
|
# Success message shown when a user successfully drags the cloud into position.
|
|
1184
|
-
boxui.securityCloudGame.success = ⟦萬萬
|
|
1254
|
+
boxui.securityCloudGame.success = ⟦萬萬 Ŝŭ¢çéѕś! 國國⟧
|
|
1185
1255
|
# Name list of all applications download restriction applied to classification
|
|
1186
|
-
boxui.securityControls.allAppNames = ⟦萬萬萬萬萬萬
|
|
1256
|
+
boxui.securityControls.allAppNames = ⟦萬萬萬萬萬萬 Àĺļ åΡΡļιĉáťįõŋŝ: {appsList} 國國國國國國⟧
|
|
1187
1257
|
# Bullet point that summarizes application download restriction applied to classification
|
|
1188
|
-
boxui.securityControls.appDownloadBlacklist = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1258
|
+
boxui.securityControls.appDownloadBlacklist = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ðøщйľöâď řéŝťґíćťêď ƒöґ ѕŏmέ ǻΡΡľîçąτϊоŋś: {appNames} 國國國國國國國國國國國國國國⟧
|
|
1189
1259
|
# Bullet point that summarizes application download restriction applied to classification. This variation is used when the list of applications is longer than the configured threshold
|
|
1190
|
-
boxui.securityControls.appDownloadBlacklistOverflow = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1260
|
+
boxui.securityControls.appDownloadBlacklistOverflow = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ðõẃņĺöăď ŕěŝŧřïсťěď ƒοř śømє āΡΡľïčáτîŏйŝ: {appNames} +{remainingAppCount} móŗέ 國國國國國國國國國國國國國國國國國⟧
|
|
1191
1261
|
# Bullet point that summarizes application download restriction applied to classification
|
|
1192
|
-
boxui.securityControls.appDownloadRestricted = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1262
|
+
boxui.securityControls.appDownloadRestricted = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ðòщʼnľоåď ŗéѕťѓίćτèď ƒóŕ śοmĕ ąΡΡĺíćäťιоņş. 國國國國國國國國國國國國⟧
|
|
1193
1263
|
# Bullet point that summarizes application download restriction applied to classification
|
|
1194
|
-
boxui.securityControls.appDownloadWhitelist = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1264
|
+
boxui.securityControls.appDownloadWhitelist = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Õŋļγ ѕėļεсŧ ǻΡΡľīčàŧïôлś åяë ǻļļöωĕď: {appNames} 國國國國國國國國國國國國⟧
|
|
1195
1265
|
# Bullet point that summarizes application download restriction applied to classification. This variation is used when the list of applications is longer than the configured threshold
|
|
1196
|
-
boxui.securityControls.appDownloadWhitelistOverflow = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1266
|
+
boxui.securityControls.appDownloadWhitelistOverflow = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ΘиļУ śęĺęċţ áΡΡľî¢áţĭŏиş ăяě áĺĺôщêď: {appNames} +{remainingAppCount} mσяę 國國國國國國國國國國國國國國國國⟧
|
|
1267
|
+
# Bullet point that summarizes Box Sign request restrictions applied to items. Box Sign is a product name
|
|
1268
|
+
boxui.securityControls.boxSignRequestRestricted = ⟦萬萬萬萬萬萬萬 Ŝîĝή ŗёŝŧгϊċťìóиş âΡΡĺў. 國國國國國國國⟧
|
|
1197
1269
|
# Bullet point that summarizes desktop download restrictions applied to classification, when restriction applies to external users and managed users except Owners/Co-Owners. Box Drive is a product name and not translated
|
|
1198
|
-
boxui.securityControls.desktopDownloadExternalOwners = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1270
|
+
boxui.securityControls.desktopDownloadExternalOwners = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ďøẃņļøâď ŗĕŝŧŕíĉτěď òи ßõ× Ďřίνέ, ēхćĕΡť Óẁлεґѕ/Čо-Ôωʼnėґѕ. Åļѕσ řęşτгīčŧěď ƒøŕ ē×ŧêгņαļ ùśéѓѕ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1199
1271
|
# Bullet point that summarizes desktop download restrictions applied to classification, when restriction applies to external users and managed users except Owners/Co-Owners/Editors. Box Drive is a product name and not translated
|
|
1200
|
-
boxui.securityControls.desktopDownloadExternalOwnersEditors = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1272
|
+
boxui.securityControls.desktopDownloadExternalOwnersEditors = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ðöώпľôáď ґěѕţѓíċŧеď оņ Βö× Ďŗīνě, ě×čęΡţ Øшйеŕѕ/Ċό-Őшпêяś/Èďîŧσяś. Âľѕο яèşτŕíċŧεď ƒôŕ ēםēřŋάļ ūśěřś. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1201
1273
|
# Bullet point that summarizes desktop download restrictions applied to classification, when restriction applies to managed users except Owners/Co-Owners. Box Drive is a product name and not translated
|
|
1202
|
-
boxui.securityControls.desktopDownloadOwners = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1274
|
+
boxui.securityControls.desktopDownloadOwners = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ðòŵπľοǻď ŕēŝťřίċτёď όη ßôх Ðŗīνê, ėхĉéΡţ Õŵʼnёŕś/Ĉõ-Θẃņěгŝ. 國國國國國國國國國國國國國國國國國⟧
|
|
1203
1275
|
# Bullet point that summarizes desktop download restrictions applied to classification, when restriction applies to managed users except Owners/Co-Owners/Editors. Box Drive is a product name and not translated
|
|
1204
|
-
boxui.securityControls.desktopDownloadOwnersEditors = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1276
|
+
boxui.securityControls.desktopDownloadOwnersEditors = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ďöŵňĺòāď ŗεѕťяїċŧęď őň Βο× Ðяīνε, êхĉéΡť Ŏẁńέŗş/Ĉó-Òŵпëяŝ/Éďίťóгş. 國國國國國國國國國國國國國國國國國國國⟧
|
|
1205
1277
|
# Bullet point that summarizes desktop download restrictions applied to classification, when restriction applies to external users. Box Drive is a product name and not translated
|
|
1206
|
-
boxui.securityControls.downloadExternal = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1278
|
+
boxui.securityControls.downloadExternal = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ďōẁŋĺöâď ŗĕѕťŕϊ¢ŧεď øη ßσ× Ďřĩνé ƒőѓ έ×ţĕялåĺ цŝéřś. 國國國國國國國國國國國國國國國⟧
|
|
1207
1279
|
# Bullet point that summarizes external collaboration blocked restriction applied to classification
|
|
1208
|
-
boxui.securityControls.externalCollabBlock = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
1280
|
+
boxui.securityControls.externalCollabBlock = ⟦萬萬萬萬萬萬萬萬萬萬 Ë×τēгиăľ ćοļľαвòŗάťїоŋ яēѕţřîċŧеď. 國國國國國國國國國國⟧
|
|
1209
1281
|
# Bullet point that summarizes external collaboration restriction applied to classification
|
|
1210
|
-
boxui.securityControls.externalCollabDomainList = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1282
|
+
boxui.securityControls.externalCollabDomainList = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 É×τêгήăĺ ¢оļĺāвōґάţįоη ľϊmιťêď ťσ āΡΡŗòνεď ďоmąìйŝ. 國國國國國國國國國國國國國國國⟧
|
|
1283
|
+
# The text of a link to a help article for more information.
|
|
1284
|
+
boxui.securityControls.linkForMoreDetails = ⟦萬萬萬萬萬萬萬萬 Čļìсĸ ħěяë ƒòґ mояέ ďęţăĩļŝ. 國國國國國國國國⟧
|
|
1211
1285
|
# Bullet point that summarizes mobile download restrictions applied to classification, when restriction applies to external users
|
|
1212
|
-
boxui.securityControls.mobileDownloadExternal = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1286
|
+
boxui.securityControls.mobileDownloadExternal = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ðõŵʼnĺοåď ѓēşτѓìčţĕď оń mοьíļє ƒøѓ εםĕŗиäĺ ůşέŗŝ. 國國國國國國國國國國國國國國⟧
|
|
1213
1287
|
# Bullet point that summarizes mobile download restrictions applied to classification, when restriction applies to external users and managed users except Owners/Co-Owners
|
|
1214
|
-
boxui.securityControls.mobileDownloadExternalOwners = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1288
|
+
boxui.securityControls.mobileDownloadExternalOwners = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ðóωήĺσāď ŕєśτřїćτēď όй mοьιľє, ё×čεΡτ Οŵπеŕś/Ĉо-Òẃʼnєѓŝ. Άļśő ŗěşτřîċŧęď ƒοґ ė×ŧěřйäĺ ûşёŗŝ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1215
1289
|
# Bullet point that summarizes mobile download restrictions applied to classification, when restriction applies to external users and managed users except Owners/Co-Owners/Editors
|
|
1216
|
-
boxui.securityControls.mobileDownloadExternalOwnersEditors = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1290
|
+
boxui.securityControls.mobileDownloadExternalOwnersEditors = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ðõŵňľõâď ŕěŝţŕϊčτεď óʼn mòьíĺê, ĕхčěΡτ Ōωиєґѕ/Čο-Οщňёŕś/Ēďїŧöгś. Ãļşö ґéŝťѓіĉŧêď ƒōř ęхτєŗηáļ µѕеґś. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1217
1291
|
# Bullet point that summarizes mobile download restrictions applied to classification, when restriction applies to managed users except Owners/Co-Owners
|
|
1218
|
-
boxui.securityControls.mobileDownloadOwners = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1292
|
+
boxui.securityControls.mobileDownloadOwners = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ďσẁпľοāď řеŝτŗіčτéď ŏη möвîĺέ, êхсёΡŧ Ôẁņéгş/Ćо-Ǿωπёŕѕ. 國國國國國國國國國國國國國國國國⟧
|
|
1219
1293
|
# Bullet point that summarizes mobile download restrictions applied to classification, when restriction applies to managed users except Owners/Co-Owners/Editors
|
|
1220
|
-
boxui.securityControls.mobileDownloadOwnersEditors = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1294
|
+
boxui.securityControls.mobileDownloadOwnersEditors = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ďøŵňľôαď ŗėśτŗíĉţėď őŋ mõвίĺê, ехćέΡť Οшŋêґś/Ċø-Ôẁйèѓѕ/Εďíťŏѓѕ. 國國國國國國國國國國國國國國國國國國⟧
|
|
1221
1295
|
# Description for modal to display classification and security controls details
|
|
1222
|
-
boxui.securityControls.modalDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1296
|
+
boxui.securityControls.modalDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ċĺǻśşίƒïćáţίőл ľâьëľѕ ďèƒίήęď ьУ ўόμř αďmιŋίśτřàŧøŗ čàņ ьέ µśєď ŧσ ľãвεľ ¢оπŧēńť άňď äΡΡĺγ şєсüŗįţỳ Ρŏľìčĩëś. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1223
1297
|
# Title for modal to display classification and security controls details
|
|
1224
|
-
boxui.securityControls.modalTitle = ⟦萬萬萬萬萬萬萬萬萬萬 V
|
|
1298
|
+
boxui.securityControls.modalTitle = ⟦萬萬萬萬萬萬萬萬萬萬 Vϊεẁ Ċĺàѕŝíƒįčàŧįöʼn ƒõґ '{îτέmΝάmë}' 國國國國國國國國國國⟧
|
|
1225
1299
|
# Label displayed above the security restrictions on the file due to the classification label and associated policies.
|
|
1226
|
-
boxui.securityControls.securityControlsLabel = ⟦萬萬萬
|
|
1300
|
+
boxui.securityControls.securityControlsLabel = ⟦萬萬萬 Ѓęşţѓìсťίõήŝ 國國國⟧
|
|
1227
1301
|
# Bullet point that summarizes collaborators shared link restriction applied to classification
|
|
1228
|
-
boxui.securityControls.sharingCollabAndCompanyOnly = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1302
|
+
boxui.securityControls.sharingCollabAndCompanyOnly = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Śĥàгèď ľįńкş ĉãиηŏţ вε mäďë Ρμвĺïčĺγ ǻćčêśŝіьļé. 國國國國國國國國國國國國國國⟧
|
|
1229
1303
|
# Bullet point that summarizes shared link restriction applied to classification
|
|
1230
|
-
boxui.securityControls.sharingCollabOnly = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1231
|
-
# Short summary displayed for classification when sharing, download and app download restrictions are applied to it
|
|
1232
|
-
boxui.securityControls.shortAllRestrictions = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Ѕнąŗίлğ, ďοώйĺοāď ãʼnď ąΡΡ ѓêѕτгί¢ŧίσπś àΡΡľỳ 國國國國國國國國國國國國國⟧
|
|
1304
|
+
boxui.securityControls.sharingCollabOnly = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Ŝħάяеď ļîпκş άľļõẃēď ƒоя ċσľļąвŏѓåτőґŝ õʼnĺγ. 國國國國國國國國國國國國國⟧
|
|
1233
1305
|
# Short summary displayed for classification when an application download restriction is applied to it
|
|
1234
|
-
boxui.securityControls.shortApp = ⟦萬萬萬萬萬萬萬萬
|
|
1306
|
+
boxui.securityControls.shortApp = ⟦萬萬萬萬萬萬萬萬 ÂΡΡĺïćáτιòń яëŝτгïċτĭοňѕ âΡΡľŷ 國國國國國國國國⟧
|
|
1307
|
+
# Short summary displayed for items when both app download and Sign restrictions are applied to them. Box Sign is a product name
|
|
1308
|
+
boxui.securityControls.shortAppSign = ⟦萬萬萬萬萬萬萬萬萬 ÃΡΡ äńď Ŝīĝл řėŝτѓіćŧìόπŝ àΡΡļў 國國國國國國國國國⟧
|
|
1235
1309
|
# Short summary displayed for classification when a download restriction is applied to it
|
|
1236
|
-
boxui.securityControls.shortDownload = ⟦萬萬萬萬萬萬萬萬
|
|
1310
|
+
boxui.securityControls.shortDownload = ⟦萬萬萬萬萬萬萬萬 Ðσẃиļŏäď яêşťґïćŧιōňŝ åΡΡĺŷ 國國國國國國國國⟧
|
|
1237
1311
|
# Short summary displayed for classification when both download and app download restrictions are applied to it
|
|
1238
|
-
boxui.securityControls.shortDownloadApp = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
1312
|
+
boxui.securityControls.shortDownloadApp = ⟦萬萬萬萬萬萬萬萬萬萬 Ðóшńļоαď äʼnď áΡΡ řéşţґĩсτіőňѕ άΡΡļУ 國國國國國國國國國國⟧
|
|
1313
|
+
# Short summary displayed for items when download, app download and Sign restrictions are applied to them. Box Sign is a product name
|
|
1314
|
+
boxui.securityControls.shortDownloadAppSign = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ďòŵйĺøàď, áΡΡ āйď Śïġй гėśťřίćťϊøʼnş άΡΡĺÿ 國國國國國國國國國國國國⟧
|
|
1315
|
+
# Short summary displayed for items when both download and Sign restrictions are applied to them. Box Sign is a product name
|
|
1316
|
+
boxui.securityControls.shortDownloadSign = ⟦萬萬萬萬萬萬萬萬萬萬 Ðòẁлĺøãď âňď Śĭĝń яēŝţŕî¢ťïøŋś àΡΡĺŷ 國國國國國國國國國國⟧
|
|
1239
1317
|
# Short summary displayed for classification when a sharing restriction is applied to it
|
|
1240
|
-
boxui.securityControls.shortSharing = ⟦萬萬萬萬萬萬萬萬
|
|
1318
|
+
boxui.securityControls.shortSharing = ⟦萬萬萬萬萬萬萬萬 Ѕнâřìиġ ŕёśţŗïćťιόŋ āΡΡĺīеѕ 國國國國國國國國⟧
|
|
1241
1319
|
# Short summary displayed for classification when both sharing and app download restrictions are applied to it
|
|
1242
|
-
boxui.securityControls.shortSharingApp = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
1320
|
+
boxui.securityControls.shortSharingApp = ⟦萬萬萬萬萬萬萬萬萬萬 Şħάřĩʼnğ άňď αΡΡ ŗëŝťŗĭċťįōŋś ǻΡΡľУ 國國國國國國國國國國⟧
|
|
1321
|
+
# Short summary displayed for items when sharing, app download and Sign restrictions are applied to them. Box Sign is a product name
|
|
1322
|
+
boxui.securityControls.shortSharingAppSign = ⟦萬萬萬萬萬萬萬萬萬萬萬 Şħâґϊńĝ, äΡΡ ǻņď Şîĝи řèѕτяїćţìøńѕ ǻΡΡľŷ 國國國國國國國國國國國⟧
|
|
1243
1323
|
# Short summary displayed for classification when both sharing and download restrictions are applied to it
|
|
1244
|
-
boxui.securityControls.shortSharingDownload = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
1324
|
+
boxui.securityControls.shortSharingDownload = ⟦萬萬萬萬萬萬萬萬萬萬萬 Şнåřϊπğ âηď ďöẃηļοăď яéŝťгĭčťιøηś äΡΡĺÿ 國國國國國國國國國國國⟧
|
|
1325
|
+
# Short summary displayed for items when sharing, download and app download restrictions are applied to them.
|
|
1326
|
+
boxui.securityControls.shortSharingDownloadApp = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Śнãгϊňğ, ďóώηĺŏāď ąηď ǻΡΡ ŗёśŧříċţíøиѕ åΡΡļÿ 國國國國國國國國國國國國國⟧
|
|
1327
|
+
# Short summary displayed for items when sharing, download, app download and Sign restrictions are applied to them. Box Sign is a product name
|
|
1328
|
+
boxui.securityControls.shortSharingDownloadAppSign = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Śнαříņğ, ďοωπľόāď, ąΡΡ āńď Ŝįğή řêśŧŕĩćŧįöňś ãΡΡļў 國國國國國國國國國國國國國國⟧
|
|
1329
|
+
# Short summary displayed for items when sharing, download and Sign restrictions are applied to them. Box Sign is a product name
|
|
1330
|
+
boxui.securityControls.shortSharingDownloadSign = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Śнâѓįηğ, ďόẁŋĺōαď àпď Śīĝπ ŕěѕτѓįčţïôπŝ åΡΡľў 國國國國國國國國國國國國國⟧
|
|
1331
|
+
# Short summary displayed for items when both sharing and Sign restrictions are applied to them. Box Sign is a product name
|
|
1332
|
+
boxui.securityControls.shortSharingSign = ⟦萬萬萬萬萬萬萬萬萬萬 Ŝħàґįήġ αлď Śįğŋ яеśτгīçťїοňś άΡΡľУ 國國國國國國國國國國⟧
|
|
1333
|
+
# Short summary displayed for items when Sign restriction is applied to them. Box Sign is a product name
|
|
1334
|
+
boxui.securityControls.shortSign = ⟦萬萬萬萬萬萬 Śīġή ґèşŧѓįċτîóńś áΡΡļў 國國國國國國⟧
|
|
1245
1335
|
# Short summary displayed for classification when watermarking is applied to it
|
|
1246
|
-
boxui.securityControls.shortWatermarking = ⟦萬萬萬萬萬
|
|
1336
|
+
boxui.securityControls.shortWatermarking = ⟦萬萬萬萬萬 Щâťëѓmåŕкїńğ åΡΡĺїèѕ 國國國國國⟧
|
|
1247
1337
|
# Button to display security controls modal
|
|
1248
|
-
boxui.securityControls.viewAll = ⟦萬萬
|
|
1338
|
+
boxui.securityControls.viewAll = ⟦萬萬 Vίεш Ăĺĺ 國國⟧
|
|
1339
|
+
# Bullet point that summarizes watermarking applied to classification
|
|
1340
|
+
boxui.securityControls.watermarkingApplied = ⟦萬萬萬萬萬萬萬萬 Шάťëŗmάґкìήĝ ωīļĺ вė åΡΡĺїēď. 國國國國國國國國⟧
|
|
1249
1341
|
# Bullet point that summarizes web download restrictions applied to classification, when restriction applies to external users
|
|
1250
|
-
boxui.securityControls.webDownloadExternal = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1342
|
+
boxui.securityControls.webDownloadExternal = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Ðõŵńļōäď гĕşťѓĩ¢τěď σņ ώєв ƒøѓ ёхťěŗńãĺ ûşęгś. 國國國國國國國國國國國國國⟧
|
|
1251
1343
|
# Bullet point that summarizes web download restrictions applied to classification, when restriction applies to external users and managed users except Owners/Co-Owners
|
|
1252
|
-
boxui.securityControls.webDownloadExternalOwners = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1344
|
+
boxui.securityControls.webDownloadExternalOwners = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ðσщйļøάď řëŝťгіċτëď ŏŋ ωέь, ε×¢еΡť Õωńēѓş/Çσ-Όщπёяѕ. Άļşŏ ŕěŝŧяĭĉťέď ƒòя è×ţèгήãĺ úŝέřş. 國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1253
1345
|
# Bullet point that summarizes web download restrictions applied to classification, when restriction applies to external users and managed users except Owners/Co-Owners/Editors
|
|
1254
|
-
boxui.securityControls.webDownloadExternalOwnersEditors = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1346
|
+
boxui.securityControls.webDownloadExternalOwnersEditors = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ďőщńĺόǻď яéśťгïćťėď òй ẃεь, ĕх¢ĕΡŧ Őŵŋèřѕ/Ċο-Ŏẃпёŗѕ/Ėďϊťοѓѕ. Åľśо гēśτŕĭċτëď ƒóг èםеґйâļ µŝεѓŝ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1255
1347
|
# Bullet point that summarizes web download restrictions applied to classification, when restriction applies to managed users except Owners/Co-Owners
|
|
1256
|
-
boxui.securityControls.webDownloadOwners = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1348
|
+
boxui.securityControls.webDownloadOwners = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ďôώņľоąď гєŝťяî¢ţêď őп шеь, êхćёΡť Óщπегś/Çø-Ōώηєřś. 國國國國國國國國國國國國國國國⟧
|
|
1257
1349
|
# Bullet point that summarizes web download restrictions applied to classification, when restriction applies to managed users except Owners/Co-Owners/Editors
|
|
1258
|
-
boxui.securityControls.webDownloadOwnersEditors = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1350
|
+
boxui.securityControls.webDownloadOwnersEditors = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ďοωŋĺοåď гêŝŧřĭċťěď öή щēв, ехčεΡţ Ōẁиėґŝ/Čŏ-Õẃпêŕѕ/Еďίτöřś. 國國國國國國國國國國國國國國國國國⟧
|
|
1259
1351
|
# Alt text for info icon
|
|
1260
|
-
boxui.select.moreInfo = ⟦萬萬
|
|
1352
|
+
boxui.select.moreInfo = ⟦萬萬 Μõгê İиƒó 國國⟧
|
|
1261
1353
|
# text shown on the Clear All option in the options list
|
|
1262
|
-
boxui.selectField.clearAll = ⟦萬萬
|
|
1354
|
+
boxui.selectField.clearAll = ⟦萬萬 Ĉļęàř Άĺĺ 國國⟧
|
|
1263
1355
|
# Text shown in the select field dropdown when there are no options that match the search field input
|
|
1264
|
-
boxui.selectField.noResults = ⟦萬萬
|
|
1356
|
+
boxui.selectField.noResults = ⟦萬萬 Йõ Ŕέŝũľŧś 國國⟧
|
|
1265
1357
|
# Placeholder text shown in the search input
|
|
1266
|
-
boxui.selectField.searchPlaceholder = ⟦萬
|
|
1358
|
+
boxui.selectField.searchPlaceholder = ⟦萬 Ѕéáяćн 國⟧
|
|
1267
1359
|
# Title for "Access Type" menu, in all capital letters
|
|
1268
|
-
boxui.share.accessType = ⟦萬萬萬
|
|
1360
|
+
boxui.share.accessType = ⟦萬萬萬 ǺĆĊΕŜŚ ŦΎPĚ 國國國⟧
|
|
1269
1361
|
# Label for a shared link permission level
|
|
1270
|
-
boxui.share.canEdit = ⟦萬萬
|
|
1362
|
+
boxui.share.canEdit = ⟦萬萬 Ĉäń êďίť 國國⟧
|
|
1271
1363
|
# Label for a shared link permission level
|
|
1272
|
-
boxui.share.canView = ⟦萬萬
|
|
1364
|
+
boxui.share.canView = ⟦萬萬 Çαи νîéώ 國國⟧
|
|
1273
1365
|
# Text for Co-owner permission level in permissions table
|
|
1274
|
-
boxui.share.coownerLevelText = ⟦萬萬
|
|
1366
|
+
boxui.share.coownerLevelText = ⟦萬萬 Ĉο-οшπęѓ 國國⟧
|
|
1275
1367
|
# Text for permissions table Delete column
|
|
1276
|
-
boxui.share.deleteTableHeaderText = ⟦萬
|
|
1368
|
+
boxui.share.deleteTableHeaderText = ⟦萬 Ďєľěτĕ 國⟧
|
|
1277
1369
|
# Text for permissions table Download column
|
|
1278
|
-
boxui.share.downloadTableHeaderText = ⟦萬萬
|
|
1370
|
+
boxui.share.downloadTableHeaderText = ⟦萬萬 Ďоŵηĺŏàď 國國⟧
|
|
1279
1371
|
# Text for permissions table Edit column
|
|
1280
|
-
boxui.share.editTableHeaderText = ⟦萬
|
|
1372
|
+
boxui.share.editTableHeaderText = ⟦萬 Ëďїť 國⟧
|
|
1281
1373
|
# Text for Editor permission level in permissions table
|
|
1282
|
-
boxui.share.editorLevelText = ⟦萬
|
|
1374
|
+
boxui.share.editorLevelText = ⟦萬 Εďïτôř 國⟧
|
|
1283
1375
|
# Field label for shared link recipient list (title-case)
|
|
1284
|
-
boxui.share.emailSharedLink = ⟦萬萬萬萬萬
|
|
1376
|
+
boxui.share.emailSharedLink = ⟦萬萬萬萬萬 Émàíĺ Śнãřêď Ļįиĸ 國國國國國⟧
|
|
1285
1377
|
# Error message when user tries to send shared link as email without entering any recipients
|
|
1286
|
-
boxui.share.enterAtLeastOneEmail = ⟦萬萬萬萬萬萬萬萬
|
|
1378
|
+
boxui.share.enterAtLeastOneEmail = ⟦萬萬萬萬萬萬萬萬 Έήťέř àŧ ľєάşţ σиє νąĺιď ęmåίĺ 國國國國國國國國⟧
|
|
1287
1379
|
# Text for permissions table Get Link column
|
|
1288
|
-
boxui.share.getLinkTableHeaderText = ⟦萬萬
|
|
1380
|
+
boxui.share.getLinkTableHeaderText = ⟦萬萬 Ğέŧ Ļĭńκ 國國⟧
|
|
1289
1381
|
# Label for a Group contact type
|
|
1290
|
-
boxui.share.groupLabel = ⟦萬
|
|
1382
|
+
boxui.share.groupLabel = ⟦萬 ĞŕōũΡ 國⟧
|
|
1291
1383
|
# Text on button to cancel and close the invite collaborators modal.
|
|
1292
|
-
boxui.share.inviteCollaboratorsModalCancelButton = ⟦萬
|
|
1384
|
+
boxui.share.inviteCollaboratorsModalCancelButton = ⟦萬 Ċâņ¢ęļ 國⟧
|
|
1293
1385
|
# Text on button to send invitations to collaborators for an item
|
|
1294
|
-
boxui.share.inviteCollaboratorsModalSendInvites = ⟦萬萬萬
|
|
1386
|
+
boxui.share.inviteCollaboratorsModalSendInvites = ⟦萬萬萬 Şĕŋď İŋνīťėѕ 國國國⟧
|
|
1295
1387
|
# Title of the Invite Collaborators Modal. {itemName} is the name of the file / folder being shared
|
|
1296
|
-
boxui.share.inviteCollaboratorsModalTitle = ⟦萬萬萬萬
|
|
1388
|
+
boxui.share.inviteCollaboratorsModalTitle = ⟦萬萬萬萬 Ìлνíţё ŧό {itemName} 國國國國⟧
|
|
1297
1389
|
# Label of the field where a user designates who to invite to collaborate on an item
|
|
1298
|
-
boxui.share.inviteFieldLabel = ⟦萬
|
|
1390
|
+
boxui.share.inviteFieldLabel = ⟦萬 İņνіţè 國⟧
|
|
1299
1391
|
# Label to invite editors to a file in the invite collab modal
|
|
1300
|
-
boxui.share.inviteFileEditorsLabel = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1392
|
+
boxui.share.inviteFileEditorsLabel = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Ίпνîτĕ ΡěòΡĺē ţσ ьĕčσmë еďîţöřś óƒ ţĥϊŝ ƒíľè. 國國國國國國國國國國國國國⟧
|
|
1301
1393
|
# Label of the field where a user designates which permissions a collaborator will have on an item
|
|
1302
|
-
boxui.share.inviteePermissionsFieldLabel = ⟦萬萬萬萬萬
|
|
1394
|
+
boxui.share.inviteePermissionsFieldLabel = ⟦萬萬萬萬萬 Іпνîţєê Pеřmĭŝśіøиѕ 國國國國國⟧
|
|
1303
1395
|
# Tooltip text a user can use to learn more about collaborator permission options
|
|
1304
|
-
boxui.share.inviteePermissionsLearnMore = ⟦萬萬
|
|
1396
|
+
boxui.share.inviteePermissionsLearnMore = ⟦萬萬 Ľεåŗй Μόŗė 國國⟧
|
|
1305
1397
|
# Label for "Message" text box to email the shared link (title-case)
|
|
1306
|
-
boxui.share.message = ⟦萬萬
|
|
1398
|
+
boxui.share.message = ⟦萬萬 Μεśŝαġé 國國⟧
|
|
1307
1399
|
# Placeholder text for message section
|
|
1308
|
-
boxui.share.messageSelectorPlaceholder = ⟦萬萬萬
|
|
1400
|
+
boxui.share.messageSelectorPlaceholder = ⟦萬萬萬 Ąďď å mêѕśáġё 國國國⟧
|
|
1309
1401
|
# Text for permissions table Owner column
|
|
1310
|
-
boxui.share.ownerTableHeaderText = ⟦萬
|
|
1402
|
+
boxui.share.ownerTableHeaderText = ⟦萬 Θώņêѓ 國⟧
|
|
1311
1403
|
# Description of a company shared link for a file with view and download permissions
|
|
1312
|
-
boxui.share.peopleInCompanyCanDownloadFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1404
|
+
boxui.share.peopleInCompanyCanDownloadFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Àŋỳσηē їň ýőüґ ćŏmΡàиŷ шιťн τħё ľїʼnĸ ċâʼn νîęщ ąπď ďόшηĺôαď ţнϊś ƒïĺé. 國國國國國國國國國國國國國國國國國國國國⟧
|
|
1313
1405
|
# Description of a company shared link for a folder with view and download permissions
|
|
1314
|
-
boxui.share.peopleInCompanyCanDownloadFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1406
|
+
boxui.share.peopleInCompanyCanDownloadFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Āńγōʼnē ιη γоůг ćõmΡάπŷ ώīťħ ťħє ľíйķ сǻń νîёщ ťĥìś ƒőļďег ăņď ďσŵηľôåď їţѕ ĉőлťεлŧŝ. 國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1315
1407
|
# Description of a company shared link for a file with edit permissions (implies view and download permissions as well)
|
|
1316
|
-
boxui.share.peopleInCompanyCanEditFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1408
|
+
boxui.share.peopleInCompanyCanEditFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Áйŷõлε ιʼn ýоùŕ ćômΡäйÿ ŵϊţħ ťнё ĺїπĸ čǻņ ëďìŧ äʼnď ďōшņĺõåď ţнĩѕ ƒĭľè. 國國國國國國國國國國國國國國國國國國國國⟧
|
|
1317
1409
|
# Description of a company shared link for a file with view permissions
|
|
1318
|
-
boxui.share.peopleInCompanyCanViewFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1410
|
+
boxui.share.peopleInCompanyCanViewFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ăňўôήë ïņ ŷöμґ ĉōmΡăлў ωĩťħ ťнε ĺїηĸ ¢αи νїèẃ ťĥιѕ ƒîļє. 國國國國國國國國國國國國國國國國⟧
|
|
1319
1411
|
# Description of a company shared link for a folder with view permissions
|
|
1320
|
-
boxui.share.peopleInCompanyCanViewFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1412
|
+
boxui.share.peopleInCompanyCanViewFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Äňÿôήě іŋ ŷоŭґ сømΡãŋý щīťħ ťнè ľïηĸ čąή νιέẃ ŧħīś ƒòĺďéѓ. 國國國國國國國國國國國國國國國國國⟧
|
|
1321
1413
|
# This string describes the access level of a file or folder, or who can see the item. {enterpriseName} is the company name
|
|
1322
|
-
boxui.share.peopleInEnterprise = ⟦萬萬萬萬 P
|
|
1414
|
+
boxui.share.peopleInEnterprise = ⟦萬萬萬萬 PёòΡĺє іň {enterpriseName} 國國國國⟧
|
|
1323
1415
|
# Description of a collaborator-only shared link for a file with no permissions
|
|
1324
|
-
boxui.share.peopleInItemCanAccessFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1416
|
+
boxui.share.peopleInItemCanAccessFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Áňў ¢ōľľǻьōŕáţõґ ŏή ťħє ƒĩļé ώįτн ţнέ ļĩйĸ čαή âćĉέşŝ τĥїş ƒîĺе. 國國國國國國國國國國國國國國國國國國國⟧
|
|
1325
1417
|
# Description of a collaborator-only shared link for a folder with no permissions
|
|
1326
|
-
boxui.share.peopleInItemCanAccessFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1418
|
+
boxui.share.peopleInItemCanAccessFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ÀŋУ ĉöĺľąьőŗâţóѓ òй ŧĥè ƒöĺďêŕ ẁíťн ťħё ľιήκ čâň ǻĉĉěśŝ ŧĥίś ƒøĺďęř. 國國國國國國國國國國國國國國國國國國國國⟧
|
|
1327
1419
|
# Description of a collaborator-only shared link for a file with download permissions
|
|
1328
|
-
boxui.share.peopleInItemCanDownloadFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1420
|
+
boxui.share.peopleInItemCanDownloadFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Αňÿ сöľļăьσѓăťσř ôп τĥíś ƒįľё ẃιτн ŧĥε ĺįπĸ ¢äň ďōŵήļóäď τħîѕ ƒіľê. 國國國國國國國國國國國國國國國國國國國國⟧
|
|
1329
1421
|
# Description of a collaborator-only shared link for a folder with download permissions
|
|
1330
|
-
boxui.share.peopleInItemCanDownloadFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1422
|
+
boxui.share.peopleInItemCanDownloadFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ΆńУ ċòĺĺāвоґåŧøґ οŋ ťħϊѕ ƒóľďéѓ ώïťĥ τĥε ĺīлк čąŋ ďòώήľōàď ťнĩş ƒõļďεя. 國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1331
1423
|
# Description of a collaborator-only shared link for a file with edit permissions (implies view and download permissions as well)
|
|
1332
|
-
boxui.share.peopleInItemCanEditFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1424
|
+
boxui.share.peopleInItemCanEditFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Αňỳ соĺĺαьοѓàţøŗ òń ŧħìѕ ƒíľέ щιŧĥ ŧħë ĺìηĸ ĉáʼn έďíţ ťħĩŝ ƒìľё äπď ďóẁňľôâď ĭťś ćôйŧëиťś. 國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1333
1425
|
# Description of a collaborator-only shared link for a file with view and download permissions
|
|
1334
|
-
boxui.share.peopleInItemCanPreviewAndDownloadFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1426
|
+
boxui.share.peopleInItemCanPreviewAndDownloadFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Âήŷ ćôļļàьόгäŧõŕ οň ŧħίś ƒιĺε ώϊŧħ τнě ĺιŋĸ сäπ νîĕẁ ŧнĩş ƒίļê âʼnď ďôшήľōåď įťş ĉόпŧеήτŝ. 國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1335
1427
|
# Description of a collaborator-only shared link for a folder with view and download permissions
|
|
1336
|
-
boxui.share.peopleInItemCanPreviewAndDownloadFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1428
|
+
boxui.share.peopleInItemCanPreviewAndDownloadFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ǻпγ сóļľàвσřãτøя οŋ ŧħїѕ ƒòĺďēѓ шïτн ťĥé ľіηк сāй νίēω ţĥιŝ ƒōľďēŗ åηď ďóẁиĺõάď ĭτś сôηţêŋţŝ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1337
1429
|
# Description of a collaborator-only shared link for a file with view permissions
|
|
1338
|
-
boxui.share.peopleInItemCanPreviewFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1430
|
+
boxui.share.peopleInItemCanPreviewFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ÀиУ çōĺĺâьóřäťöґ οп ţĥϊѕ ƒîĺē ώìŧħ ťĥě ļîπĸ ĉáй νїέώ ŧнĩŝ ƒϊļё. 國國國國國國國國國國國國國國國國國國⟧
|
|
1339
1431
|
# Description of a collaborator-only shared link for a folder with view permissions
|
|
1340
|
-
boxui.share.peopleInItemCanPreviewFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1432
|
+
boxui.share.peopleInItemCanPreviewFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ăлў ¢öĺľäвøяåŧóґ ōπ τħіś ƒοĺďєґ ẃíţн ţĥє ĺϊπк сàʼn νĭęω ţħįś ƒоĺďēг. 國國國國國國國國國國國國國國國國國國國國⟧
|
|
1341
1433
|
# Description of a specific company shared link for a file with view and download permissions. {company} is the company name
|
|
1342
|
-
boxui.share.peopleInSpecifiedCompanyCanDownloadFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1434
|
+
boxui.share.peopleInSpecifiedCompanyCanDownloadFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ÄпУöиê ίй {company} ωįťĥ ŧħę ĺíлκ čáň νîεẃ äиď ďőшйľóäď τнìś ƒìļė. 國國國國國國國國國國國國國國國國國國⟧
|
|
1343
1435
|
# Description of a specific company shared link for a folder with view and download permissions. {company} is the company name
|
|
1344
|
-
boxui.share.peopleInSpecifiedCompanyCanDownloadFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1436
|
+
boxui.share.peopleInSpecifiedCompanyCanDownloadFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ãņўσňë įʼn {company} ẃïťн ŧнė ļīŋк ċãи νĩєŵ τнįѕ ƒöĺďěг áйď ďòώπľòäď îŧş ¢óʼnţęпťş. 國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1345
1437
|
# Description of a specific company shared link for a file with edit permissions (implies view and download permissions as well). {company} is the company name
|
|
1346
|
-
boxui.share.peopleInSpecifiedCompanyCanEditFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1438
|
+
boxui.share.peopleInSpecifiedCompanyCanEditFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Äлýōŋė ïи {company} щĩţĥ ťĥě ĺĩηκ ĉăή εďìτ àлď ďøωńĺōåď ţĥïş ƒīĺё. 國國國國國國國國國國國國國國國國國國⟧
|
|
1347
1439
|
# Description of an specific company shared link for a file with view permissions. {company} is the company name
|
|
1348
|
-
boxui.share.peopleInSpecifiedCompanyCanViewFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1440
|
+
boxui.share.peopleInSpecifiedCompanyCanViewFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Åŋýôπę ϊή {company} ẃïťħ τнέ ļìńĸ ćǻη νįêŵ ťнīѕ ƒίĺę. 國國國國國國國國國國國國國國⟧
|
|
1349
1441
|
# Description of an specific company shared link for a folder with view permissions. {company} is the company name
|
|
1350
|
-
boxui.share.peopleInSpecifiedCompanyCanViewFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1442
|
+
boxui.share.peopleInSpecifiedCompanyCanViewFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Áŋýőπê íπ {company} ŵīťĥ ŧħè ĺíņĸ ¢αʼn νîεŵ ţħϊѕ ƒòľďєґ. 國國國國國國國國國國國國國國國⟧
|
|
1351
1443
|
# Label for "People in this file" option
|
|
1352
|
-
boxui.share.peopleInThisFile = ⟦萬萬萬萬萬 P
|
|
1444
|
+
boxui.share.peopleInThisFile = ⟦萬萬萬萬萬 PёòΡĺě íл τħĭş ƒίĺę 國國國國國⟧
|
|
1353
1445
|
# Label for "People in this folder" option
|
|
1354
|
-
boxui.share.peopleInThisFolder = ⟦萬萬萬萬萬萬 P
|
|
1446
|
+
boxui.share.peopleInThisFolder = ⟦萬萬萬萬萬萬 PёоΡĺé ĭή ŧħĩş ƒōļďέя 國國國國國國⟧
|
|
1355
1447
|
# Label for "People in your company" option
|
|
1356
|
-
boxui.share.peopleInYourCompany = ⟦萬萬萬萬萬萬 P
|
|
1448
|
+
boxui.share.peopleInYourCompany = ⟦萬萬萬萬萬萬 PеöΡļє ιň γôµя ċόmΡáŋў 國國國國國國⟧
|
|
1357
1449
|
# Description of an open shared link for a file with view and download permissions
|
|
1358
|
-
boxui.share.peopleWithLinkCanDownloadFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1450
|
+
boxui.share.peopleWithLinkCanDownloadFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Άлγøņё щìŧн τнě ļīʼnκ çăп νĩęω åήď ďöώŋļőǻď τнїѕ ƒîľě. 國國國國國國國國國國國國國國國⟧
|
|
1359
1451
|
# Description of an open shared link for a folder with view and download permissions
|
|
1360
|
-
boxui.share.peopleWithLinkCanDownloadFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1452
|
+
boxui.share.peopleWithLinkCanDownloadFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Áлỳòņĕ ωіτн ţĥё ľίŋĸ сâи νιéω ťħĩś ƒόľďєг äлď ďóώήļøàď іţś ĉōńτęлťѕ. 國國國國國國國國國國國國國國國國國國國國⟧
|
|
1361
1453
|
# Description of an open shared link for a file with edit permissions (implies view and download permissions as well)
|
|
1362
|
-
boxui.share.peopleWithLinkCanEditFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1454
|
+
boxui.share.peopleWithLinkCanEditFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Āлŷŏņĕ ώιťħ ţħē ĺíηĸ ċąπ έďїτ ăŋď ďòωŋļòàď ŧнíѕ ƒįľέ. 國國國國國國國國國國國國國國國⟧
|
|
1363
1455
|
# Description of an open shared link for a file with view permissions
|
|
1364
|
-
boxui.share.peopleWithLinkCanViewFile = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
1456
|
+
boxui.share.peopleWithLinkCanViewFile = ⟦萬萬萬萬萬萬萬萬萬萬萬 ÅйУøʼnè ẃįťн ŧĥє ļιʼnķ ċáň νįèẁ ţĥïѕ ƒϊļè. 國國國國國國國國國國國⟧
|
|
1365
1457
|
# Description of an open shared link for a folder with view permissions
|
|
1366
|
-
boxui.share.peopleWithLinkCanViewFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1458
|
+
boxui.share.peopleWithLinkCanViewFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Āήýøйĕ шīťн ťħέ ľīňĸ сāņ νīęώ ţħϊѕ ƒöĺďёŗ. 國國國國國國國國國國國國⟧
|
|
1367
1459
|
# Label for "People with the link" option
|
|
1368
|
-
boxui.share.peopleWithTheLink = ⟦萬萬萬萬萬 P
|
|
1460
|
+
boxui.share.peopleWithTheLink = ⟦萬萬萬萬萬 PěŏΡĺε щíτĥ τнέ ļīйĸ 國國國國國⟧
|
|
1369
1461
|
# Text for permissions table Permission Levels column
|
|
1370
|
-
boxui.share.permissionLevelsTableHeaderText = ⟦萬萬萬萬萬 P
|
|
1462
|
+
boxui.share.permissionLevelsTableHeaderText = ⟦萬萬萬萬萬 Pєѓmіŝѕĩöи Ľёνèļŝ 國國國國國⟧
|
|
1371
1463
|
# Label for optional personal message to include when inviting collaborators to an item
|
|
1372
|
-
boxui.share.personalMessageLabel = ⟦萬萬萬萬 P
|
|
1464
|
+
boxui.share.personalMessageLabel = ⟦萬萬萬萬 Pėřѕоňąĺ Мєŝŝãġё 國國國國⟧
|
|
1373
1465
|
# Placeholder text for the pill selector
|
|
1374
|
-
boxui.share.pillSelectorPlaceholder = ⟦萬萬萬萬萬萬萬萬
|
|
1466
|
+
boxui.share.pillSelectorPlaceholder = ⟦萬萬萬萬萬萬萬萬 Äďď ŋâmēş σг ëmâϊĺ āďďґęşśēş 國國國國國國國國⟧
|
|
1375
1467
|
# Text for permissions table Preview column
|
|
1376
|
-
boxui.share.previewTableHeaderText = ⟦萬萬 P
|
|
1468
|
+
boxui.share.previewTableHeaderText = ⟦萬萬 Pŕêνιėш 國國⟧
|
|
1377
1469
|
# Text for Previewer permission level in permissions table
|
|
1378
|
-
boxui.share.previewerLevelText = ⟦萬萬 P
|
|
1470
|
+
boxui.share.previewerLevelText = ⟦萬萬 Pгёνíёẁёѓ 國國⟧
|
|
1379
1471
|
# Text for Previewer Uploader permission level in permissions table
|
|
1380
|
-
boxui.share.previewerUploaderLevelText = ⟦萬萬萬萬萬 P
|
|
1472
|
+
boxui.share.previewerUploaderLevelText = ⟦萬萬萬萬萬 Pѓёνίěώěѓ ŪΡļôąďêґ 國國國國國⟧
|
|
1381
1473
|
# Text on a badge encouraging users to refer a friend to sign up for Box
|
|
1382
|
-
boxui.share.referAFriendBadgeText = ⟦萬
|
|
1474
|
+
boxui.share.referAFriendBadgeText = ⟦萬 ŔĒ₣ËŔ 國⟧
|
|
1383
1475
|
# Text on a link to the "Reward Center", where users can refer a friend to sign up for Box
|
|
1384
|
-
boxui.share.referAFriendRewardCenterLinkText = ⟦萬萬
|
|
1476
|
+
boxui.share.referAFriendRewardCenterLinkText = ⟦萬萬 Ċļĩčк Ĥеґë 國國⟧
|
|
1385
1477
|
# Text encouraging users to refer a friend to sign up for Box
|
|
1386
|
-
boxui.share.referAFriendText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1478
|
+
boxui.share.referAFriendText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Ẃǻηť ą ƒŕέē mόиτĥ σƒ ßöх? Ѓεƒēř γōŭř ƒřїеиď! 國國國國國國國國國國國國國⟧
|
|
1387
1479
|
# Label for option to remove shared link
|
|
1388
|
-
boxui.share.removeLink = ⟦萬萬萬
|
|
1480
|
+
boxui.share.removeLink = ⟦萬萬萬 Γēmоνė Ŀϊηķ 國國國⟧
|
|
1389
1481
|
# Description for confirmation modal to remove a shared link
|
|
1390
|
-
boxui.share.removeLinkConfirmationDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1482
|
+
boxui.share.removeLinkConfirmationDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ţħίś ŵîľļ Ρėѓmåπēʼnţľý гεmονé ţнė ŝнǻřеď ĺîńķ. Іƒ τніś îţέm ιś ёmвêďďĕď òи оτĥĕѓ şįŧёŝ ίŧ ẁїľľ âĺѕő ьєćômє īńåĉċêşśϊвĺе. Άŋÿ сūѕţσm ΡřőΡєяťіέѕ, ŝėŧŧīήġś àήď έ×Ρįřåťїőиѕ ẁįļĺ вє ŕέmøνёď àś ωєļĺ. Ďσ ỳøû шąйŧ ťо çόпτīńμє? 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1391
1483
|
# Label for confirmation modal to remove a shared link (title-case)
|
|
1392
|
-
boxui.share.removeLinkConfirmationTitle = ⟦萬萬萬萬萬
|
|
1484
|
+
boxui.share.removeLinkConfirmationTitle = ⟦萬萬萬萬萬 Ŗëmоνè Şнάѓεď Ļìηĸ 國國國國國⟧
|
|
1393
1485
|
# Accessible label for button that loads share settings popup
|
|
1394
|
-
boxui.share.settingsButtonLabel = ⟦萬萬萬萬萬萬萬萬萬
|
|
1486
|
+
boxui.share.settingsButtonLabel = ⟦萬萬萬萬萬萬萬萬萬 ØΡεň ѕнâřěď ĺїйķ şёτŧίņĝѕ ΡöΡûΡ 國國國國國國國國國⟧
|
|
1395
1487
|
# Tooltip describing when this shared link will expire. {expiration, date, long} is the formatted date
|
|
1396
|
-
boxui.share.sharedLinkExpirationTooltip = ⟦萬萬萬萬萬萬萬萬
|
|
1488
|
+
boxui.share.sharedLinkExpirationTooltip = ⟦萬萬萬萬萬萬萬萬 Ŧħιѕ ļïήк ωīĺĺ ë×Ρĩŗê ŏʼn {expiration, date, long} 國國國國國國國國⟧
|
|
1397
1489
|
# Label for field to copy shared link URL (title-case)
|
|
1398
|
-
boxui.share.sharedLinkLabel = ⟦萬萬萬
|
|
1490
|
+
boxui.share.sharedLinkLabel = ⟦萬萬萬 Ŝнàґëď Ŀϊňĸ 國國國⟧
|
|
1399
1491
|
# Title for shared link modal (title-case)
|
|
1400
|
-
boxui.share.sharedLinkModalTitle = ⟦萬萬萬萬萬萬
|
|
1492
|
+
boxui.share.sharedLinkModalTitle = ⟦萬萬萬萬萬萬 Şħäřêď Ĺĭŋκ ƒöѓ {itemName} 國國國國國國⟧
|
|
1401
1493
|
# Text to show when the access level of people in company and user can view only
|
|
1402
|
-
boxui.share.sharedLinkSettings.accessLevel.inCompanyView = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1494
|
+
boxui.share.sharedLinkSettings.accessLevel.inCompanyView = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Τніѕ çôňŧέńτ їş âνàíļăвĺě τø αлγöňе шįťħій ўσμг çόmΡãлŷ ẃίţħ ŧĥé ļíηĸ, äηď çąй вε νįëώěď. 國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1403
1495
|
# Text to show when the access level of people in company and user can view and download
|
|
1404
|
-
boxui.share.sharedLinkSettings.accessLevel.inCompanyViewDownload = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1496
|
+
boxui.share.sharedLinkSettings.accessLevel.inCompanyViewDownload = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Τħíѕ ćοйτèňŧ įś ăνäīļąьľέ ťõ āņýöňè шіťнíŋ Уσµř ćσmΡαήý ẁíťн ţĥę ļιńĸ, ǻиď ¢αή ье νīęώėď õѓ ďóŵņļόăďёď. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1405
1497
|
# Text to show when the access level of people collaborate on the item
|
|
1406
|
-
boxui.share.sharedLinkSettings.accessLevel.inItem = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1498
|
+
boxui.share.sharedLinkSettings.accessLevel.inItem = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Τнïŝ ĉòиτеπţ îş áνąιĺǻвľè τŏ ϊŋνιτεď ĉöļĺǻвόŗàţσґѕ ẁìτн ţнĕ ĺíηκ. 國國國國國國國國國國國國國國國國國國國⟧
|
|
1407
1499
|
# Text to show when the access level of people with link and user can view only
|
|
1408
|
-
boxui.share.sharedLinkSettings.accessLevel.withLinkView = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1500
|
+
boxui.share.sharedLinkSettings.accessLevel.withLinkView = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ŧħîŝ сóňτėлţ ïŝ Ρũвľїćĺγ âνάїļäвĺέ ŧō αʼnýοлё ώĭτн ţне ĺìŋķ, άлď ċâη ьě νϊěωёď. 國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1409
1501
|
# Text to show when the access level of people with link and user can view and download
|
|
1410
|
-
boxui.share.sharedLinkSettings.accessLevel.withLinkViewDownload = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1502
|
+
boxui.share.sharedLinkSettings.accessLevel.withLinkViewDownload = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ťнîś ċσŋťέлť îś ΡűьĺíĉľУ äνāĭļåьĺē ťõ åʼnŷŏйе щìťħ ţħè ļìņκ, àпď ¢ǻл вέ νįêωєď σґ ďσшņļŏăďέď. 國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1411
1503
|
# Label for option to enable downloads on a shared link
|
|
1412
|
-
boxui.share.sharedLinkSettings.allowDownloadLabel = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1504
|
+
boxui.share.sharedLinkSettings.allowDownloadLabel = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Âĺľöŵ úѕēŕş ώīţн ţнĕ śħąŕеď ļĩņκ ţõ ďöωпľοåď τнίś ίťĕm 國國國國國國國國國國國國國國國國⟧
|
|
1413
1505
|
# Title for Allow Download section
|
|
1414
|
-
boxui.share.sharedLinkSettings.allowDownloadTitle = ⟦萬萬萬萬
|
|
1506
|
+
boxui.share.sharedLinkSettings.allowDownloadTitle = ⟦萬萬萬萬 Åĺļóẁ Ďόẃήļŏαď 國國國國⟧
|
|
1415
1507
|
# Label for Custom URL text input field
|
|
1416
|
-
boxui.share.sharedLinkSettings.customURLLabel = ⟦萬萬萬萬萬萬
|
|
1508
|
+
boxui.share.sharedLinkSettings.customURLLabel = ⟦萬萬萬萬萬萬 Иòň-Ρŕīνάťέ çúşťоm ЏŖĿ 國國國國國國⟧
|
|
1417
1509
|
# Text to show that direct link download is disabled due to applied shield access policy with classification
|
|
1418
|
-
boxui.share.sharedLinkSettings.directDownloadBlockedByAccessPolicyWithClassification = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1510
|
+
boxui.share.sharedLinkSettings.directDownloadBlockedByAccessPolicyWithClassification = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ðőŵňļöåď ĥàş вěεл ďīѕàьĺεď ƒòŕ ćøņτēπŧ ďμĕ τó ťħě čļαѕşĩƒίçãτîόή. 國國國國國國國國國國國國國國國國國國國⟧
|
|
1419
1511
|
# Text to show that direct link download is disabled due to applied shield access policy without classification
|
|
1420
|
-
boxui.share.sharedLinkSettings.directDownloadBlockedByAccessPolicyWithoutClassification = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1512
|
+
boxui.share.sharedLinkSettings.directDownloadBlockedByAccessPolicyWithoutClassification = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ďŏшņľŏàď ħąś вēēń ďĩşàьĺëď ƒòŕ čŏлťèŋť ώίτĥõùť çļãѕşìƒĭсάŧĩöή. 國國國國國國國國國國國國國國國國國國⟧
|
|
1421
1513
|
# Text to show that direct link download is disabled due to security policy
|
|
1422
|
-
boxui.share.sharedLinkSettings.directDownloadBlockedByMaliciousContent = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1514
|
+
boxui.share.sharedLinkSettings.directDownloadBlockedByMaliciousContent = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ðøщņľοāď ƒòř ŧħίѕ ¢öπτêʼnţ нάŝ ьėèň ďïşâвļéď ďùέ ŧő ã ѕéçûŕīťÿ Ρõļîĉý. 國國國國國國國國國國國國國國國國國國國國⟧
|
|
1423
1515
|
# Title for Direct Link section
|
|
1424
|
-
boxui.share.sharedLinkSettings.directLinkLabel = ⟦萬萬萬
|
|
1516
|
+
boxui.share.sharedLinkSettings.directLinkLabel = ⟦萬萬萬 Ðίřěċŧ Ļіпĸ 國國國⟧
|
|
1425
1517
|
# Label for option to enable expiration on a shared link
|
|
1426
|
-
boxui.share.sharedLinkSettings.expirationLabel = ⟦萬萬萬萬萬萬
|
|
1518
|
+
boxui.share.sharedLinkSettings.expirationLabel = ⟦萬萬萬萬萬萬 Ďіśāвľé Ѕĥάґёď Ĺĭήκ őπ 國國國國國國⟧
|
|
1427
1519
|
# Title for Link Expiration section
|
|
1428
|
-
boxui.share.sharedLinkSettings.expirationTitle = ⟦萬萬萬萬
|
|
1520
|
+
boxui.share.sharedLinkSettings.expirationTitle = ⟦萬萬萬萬 Ļĭŋĸ Е×Ρìŗăŧíоň 國國國國⟧
|
|
1429
1521
|
# Notice shown at top of modal when one or more settings are unavailable due to permission settings
|
|
1430
|
-
boxui.share.sharedLinkSettings.inaccessibleSettingsNotice = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1522
|
+
boxui.share.sharedLinkSettings.inaccessibleSettingsNotice = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Çëŕŧâĭή ѕęτŧįňġś mάŷ ηôţ вê áνąïļăвľě ƒόŕ ţĥĩş īŧеm ďμė τø Ρέřmĩśśīοņş. 國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1431
1523
|
# Title for shared link settings modal (title-case)
|
|
1432
|
-
boxui.share.sharedLinkSettings.modalTitle = ⟦萬萬萬萬萬
|
|
1524
|
+
boxui.share.sharedLinkSettings.modalTitle = ⟦萬萬萬萬萬 Ѕнàгēď Ĺїйк Ѕēŧτίиġş 國國國國國⟧
|
|
1433
1525
|
# Label for checkbox to enable password on shared link
|
|
1434
|
-
boxui.share.sharedLinkSettings.passwordLabel = ⟦萬萬萬萬
|
|
1526
|
+
boxui.share.sharedLinkSettings.passwordLabel = ⟦萬萬萬萬 Ŕέqцîяё Ρáŝŝẁóяď 國國國國⟧
|
|
1435
1527
|
# Placeholder for text input to enter a password
|
|
1436
|
-
boxui.share.sharedLinkSettings.passwordPlaceholder = ⟦萬萬萬萬
|
|
1528
|
+
boxui.share.sharedLinkSettings.passwordPlaceholder = ⟦萬萬萬萬 Ĕņţéг ā Ρäśѕẃõґď 國國國國⟧
|
|
1437
1529
|
# Title for section to add password to shared link
|
|
1438
|
-
boxui.share.sharedLinkSettings.passwordTitle = ⟦萬萬萬萬 P
|
|
1530
|
+
boxui.share.sharedLinkSettings.passwordTitle = ⟦萬萬萬萬 Pāѕśẁŏґď Pŗοτę¢ŧ 國國國國⟧
|
|
1439
1531
|
# Text for the link used to navigate users to the relevant community article
|
|
1440
|
-
boxui.share.sharedLinkSettings.sharedLinkSettingWarningLinkText = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
1532
|
+
boxui.share.sharedLinkSettings.sharedLinkSettingWarningLinkText = ⟦萬萬萬萬萬萬萬萬萬萬萬 Ļėàŕή møґé äьöúţ ŝĥăгèď ļіπк ŝěťťϊйġş. 國國國國國國國國國國國⟧
|
|
1441
1533
|
# Text displayed stating that content shared openly may be exposed to the public
|
|
1442
|
-
boxui.share.sharedLinkSettings.sharedLinkWarningText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1534
|
+
boxui.share.sharedLinkSettings.sharedLinkWarningText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ŧħíş ċōйťέйť ϊŝ Ρùвļϊċĺỳ āνąιļǻвļè τŏ åиўŏπё ẃìŧħ τнē ľίŋĸ. 國國國國國國國國國國國國國國國國國⟧
|
|
1443
1535
|
# Text to show when a custom URL has not been set
|
|
1444
|
-
boxui.share.sharedLinkSettings.vanityNameNotSet = ⟦萬萬萬萬萬萬萬萬萬
|
|
1536
|
+
boxui.share.sharedLinkSettings.vanityNameNotSet = ⟦萬萬萬萬萬萬萬萬萬 Ťĥè сùѕτöm ÛЯĽ ħǻŝ ňòţ ьёέʼn śėť 國國國國國國國國國⟧
|
|
1445
1537
|
# Placeholder for Custom URL text input field
|
|
1446
|
-
boxui.share.sharedLinkSettings.vanityNamePlaceholder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1538
|
+
boxui.share.sharedLinkSettings.vanityNamePlaceholder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ėņţêř ā ĉűśτοm Ρåŧн (12 σř mόге сĥàґα¢τєŕŝ) 國國國國國國國國國國國國⟧
|
|
1447
1539
|
# Text field for implications of using the custom (vanity) URL as a notice
|
|
1448
|
-
boxui.share.sharedLinkSettings.vanityURLWarning = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1540
|
+
boxui.share.sharedLinkSettings.vanityURLWarning = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Čùѕţοm ÙЃĿş śĥóûļď ņότ вё цѕëď ώħēл ŝĥąŕілğ ѕёňѕįτìνé ĉσиţεήŧ. 國國國國國國國國國國國國國國國國國國⟧
|
|
1449
1541
|
# Accessible label for shared link input field
|
|
1450
|
-
boxui.share.sharedLinkURLLabel = ⟦
|
|
1542
|
+
boxui.share.sharedLinkURLLabel = ⟦ ŨЯĹ ⟧
|
|
1451
1543
|
# Label for link to upgrade to get more access controls for inviting collaborators to an item
|
|
1452
|
-
boxui.share.upgradeGetMoreAccessControls = ⟦萬萬萬萬萬萬萬
|
|
1544
|
+
boxui.share.upgradeGetMoreAccessControls = ⟦萬萬萬萬萬萬萬 Ğеţ Μöřє Ąċćéśѕ Çσńťѓőĺş 國國國國國國國⟧
|
|
1453
1545
|
# Text for permissions table Upload column
|
|
1454
|
-
boxui.share.uploadTableHeaderText = ⟦萬
|
|
1546
|
+
boxui.share.uploadTableHeaderText = ⟦萬 ŲΡľŏäď 國⟧
|
|
1455
1547
|
# Text for Uploader permission level in permissions table
|
|
1456
|
-
boxui.share.uploaderLevelText = ⟦萬萬
|
|
1548
|
+
boxui.share.uploaderLevelText = ⟦萬萬 ЏΡĺóǻďëя 國國⟧
|
|
1457
1549
|
# Text label for custom URL section
|
|
1458
|
-
boxui.share.vanityURLEnableText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 P
|
|
1550
|
+
boxui.share.vanityURLEnableText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Pũьĺíѕĥ ċöπτέήţ ьяόāďĺУ шίťн ά ċůşŧôm, йôй-Ρяіνâτé ŮŔĽ 國國國國國國國國國國國國國國國國⟧
|
|
1459
1551
|
# Text for Viewer permission level in permissions table
|
|
1460
|
-
boxui.share.viewerLevelText = ⟦萬 V
|
|
1552
|
+
boxui.share.viewerLevelText = ⟦萬 Vĩеŵëř 國⟧
|
|
1461
1553
|
# Text for Viewer Uploader permission level in permissions table
|
|
1462
|
-
boxui.share.viewerUploaderLevelText = ⟦萬萬萬萬 V
|
|
1554
|
+
boxui.share.viewerUploaderLevelText = ⟦萬萬萬萬 Vįєώēř ÛΡľöǻďéг 國國國國⟧
|
|
1463
1555
|
# Description of permissions granted to users who have access to the shared link
|
|
1464
|
-
boxui.shareMenu.downloadOnly = ⟦萬萬萬
|
|
1556
|
+
boxui.shareMenu.downloadOnly = ⟦萬萬萬 Ďοŵηľоáď Ôηļγ 國國國⟧
|
|
1465
1557
|
# Description of permissions granted when inviting a collab to this item
|
|
1466
|
-
boxui.shareMenu.editAndComment = ⟦萬萬萬萬
|
|
1558
|
+
boxui.shareMenu.editAndComment = ⟦萬萬萬萬 Èďιτ αлď Ĉοmměηť 國國國國⟧
|
|
1467
1559
|
# Label for menu option to get shared link for item (title-case)
|
|
1468
|
-
boxui.shareMenu.getSharedLink = ⟦萬萬萬萬
|
|
1560
|
+
boxui.shareMenu.getSharedLink = ⟦萬萬萬萬 Ġèτ Şнåґěď Ŀįπκ 國國國國⟧
|
|
1469
1561
|
# Label for disabled menu option when user does not have permission to get shared link for item
|
|
1470
|
-
boxui.shareMenu.insufficientPermissionsMenuOption = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1562
|
+
boxui.shareMenu.insufficientPermissionsMenuOption = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ĩπşųƒƒìćĭέňţ śĥăґīйĝ Ρέяmίşśіόʼnś. Pļёãşε ĉόηťàçţ ŧħέ ƒõľďеŕ òώлĕґ. 國國國國國國國國國國國國國國國國國國國⟧
|
|
1471
1563
|
# Tooltip to show when user does not have permission to invite collaborators to item
|
|
1472
|
-
boxui.shareMenu.insufficientPermissionsTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1564
|
+
boxui.shareMenu.insufficientPermissionsTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ŷöü ħàνε īпѕůƒƒϊ¢īёηť Ρėяmįŝşįôήŝ τõ ιйνïτē ¢оļĺąвσяǻŧøґŝ. 國國國國國國國國國國國國國國國國國⟧
|
|
1473
1565
|
# Label for menu option to invite collaborators to item
|
|
1474
|
-
boxui.shareMenu.inviteCollabs = ⟦萬萬萬萬萬
|
|
1566
|
+
boxui.shareMenu.inviteCollabs = ⟦萬萬萬萬萬 İиνîŧе Čöļĺǻвøгǻţöгś 國國國國國⟧
|
|
1475
1567
|
# Tooltip to show when only owners and co-owners are allowed to invite collaborators to item
|
|
1476
|
-
boxui.shareMenu.ownerCoownerOnlyTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1568
|
+
boxui.shareMenu.ownerCoownerOnlyTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Υŏŭ ĥáνė іиşцƒƒϊсĩεήŧ Ρёґmїşśіоήś το ίηνíŧε ċóĺľāьőŕăťöяѕ. Õйļÿ ţнę όẃʼnëя āπď čŏ-óωиěŕş çǻņ ĭиνίţě ċόĺľäвõŗåťőґѕ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1477
1569
|
# Description of permissions granted to users who have access to the shared link
|
|
1478
|
-
boxui.shareMenu.shortcutOnly = ⟦萬萬萬
|
|
1570
|
+
boxui.shareMenu.shortcutOnly = ⟦萬萬萬 Śħöґťсűτ Ōиĺŷ 國國國⟧
|
|
1479
1571
|
# Description of permissions granted to users who have access to the shared link
|
|
1480
|
-
boxui.shareMenu.viewAndDownload = ⟦萬萬萬萬萬 V
|
|
1572
|
+
boxui.shareMenu.viewAndDownload = ⟦萬萬萬萬萬 Vϊėш ăпď Ðőŵņĺŏāď 國國國國國⟧
|
|
1481
1573
|
# Description of permissions granted to users who have access to the shared link
|
|
1482
|
-
boxui.shareMenu.viewOnly = ⟦萬萬 V
|
|
1574
|
+
boxui.shareMenu.viewOnly = ⟦萬萬 Vίёώ Øŋļў 國國⟧
|
|
1483
1575
|
# Error message for empty time formats. "HH:MM A" should be localized.
|
|
1484
|
-
boxui.timeInput.emptyTimeError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1576
|
+
boxui.timeInput.emptyTimeError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ŕéqüìґεď ƒīëľď. Ĕňŧēŗ ã ťìmє ĭи ŧĥє ƒŏŗmàŧ ΉĦ:ММ Ά. 國國國國國國國國國國國國國國國⟧
|
|
1485
1577
|
# Error message for invalid time formats. "HH:MM A" should be localized.
|
|
1486
|
-
boxui.timeInput.invalidTimeError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1578
|
+
boxui.timeInput.invalidTimeError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ĩʼnνāľїď ţīmє ƒôгmãτ. Ėηţěѓ å ţїmє ίʼn ťĥĕ ƒõгmäť ĦΉ:ΜМ Ã. 國國國國國國國國國國國國國國國國⟧
|
|
1487
1579
|
# Text to display for a group of users who have accepted an invitation to collaborate
|
|
1488
|
-
boxui.unifiedShare.collaboration.groupCollabText = ⟦萬
|
|
1580
|
+
boxui.unifiedShare.collaboration.groupCollabText = ⟦萬 ĠгóűΡ 國⟧
|
|
1489
1581
|
# Text to display for individual users who have accepted an invitation to collaborate
|
|
1490
|
-
boxui.unifiedShare.collaboration.userCollabText = ⟦萬
|
|
1582
|
+
boxui.unifiedShare.collaboration.userCollabText = ⟦萬 Ūśéѓ 國⟧
|
|
1491
1583
|
# Title for collaborator list modal
|
|
1492
|
-
boxui.unifiedShare.collaboratorListTitle = ⟦萬萬萬萬萬 P
|
|
1584
|
+
boxui.unifiedShare.collaboratorListTitle = ⟦萬萬萬萬萬 PěōΡĺę ίň ‘{itemName}’ 國國國國國⟧
|
|
1493
1585
|
# This string is displayed as tooltip on hovering over expire icon for collab
|
|
1494
|
-
boxui.unifiedShare.collaborators.expirationTooltipClickableText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1586
|
+
boxui.unifiedShare.collaborators.expirationTooltipClickableText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Áсçêśѕ ëхΡίгεѕ óη {date}. Çľіċĸ ƒöŕ ďěťăĭĺś. 國國國國國國國國國國國國⟧
|
|
1495
1587
|
# Text to show when the number of contact email addresses displayed on a tooltip exceeds the maximum amount that can be displayed
|
|
1496
|
-
boxui.unifiedShare.contactEmailsTooltipText = ⟦萬萬萬萬萬萬 {emails},
|
|
1588
|
+
boxui.unifiedShare.contactEmailsTooltipText = ⟦萬萬萬萬萬萬 {emails}, áņď {remainingEmailsCount} mόŗè 國國國國國國⟧
|
|
1497
1589
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1498
|
-
boxui.unifiedShare.contactRestrictionNotice =
|
|
1590
|
+
boxui.unifiedShare.contactRestrictionNotice = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 {count, plural, one {{count} ϊйνïťαţīοи} other {{count} ìŋνìťαţìóňŝ}} сáлňôť ьę şέňť вėĉãùśĕ ĕхţеяńāľ ćóĺľăвòґăťîόл íş ŗèѕţяісτėď ďûĕ ťø ţħé άΡΡĺìεď ѕęсμґįŧγ ΡöĺíсУ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
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
|
|
1592
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 {count, plural, one {{count} ìήνĭţäτίòʼn} other {{count} ίńνїťãτįσńѕ}} čάилôτ вē ŝèлŧ ďцė τø ā ŝεĉůяίŧў Ροļĩ¢ў. 國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1593
|
+
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts
|
|
1594
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Įπνîţäτϊσηş ĉăиʼnöť ьė şèлţ τó {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}" ďùë ţö ã ѕєçµŗîŧγ Ρоĺїçγ. 國國國國國國國國國國國國國國國國國國⟧
|
|
1499
1597
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1500
|
-
boxui.unifiedShare.contactRestrictionNoticeSingular = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1598
|
+
boxui.unifiedShare.contactRestrictionNoticeSingular = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ìлνιţãţĩõńş ¢åņήóť вé ŝêπť ŧø {email} вėсàúśé е×ŧεŗňάĺ çóľľąьσŕáŧίöň ĩş ŕęśŧѓíćţèď ďµê ţō ŧħе άΡΡļìėď ѕεсůѓϊτý Ρőĺїĉỳ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1501
1599
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
|
1502
|
-
boxui.unifiedShare.contactRestrictionRemoveButtonLabel =
|
|
1600
|
+
boxui.unifiedShare.contactRestrictionRemoveButtonLabel = ⟦萬萬萬萬萬 Ŗεmονе ťó ĉоπţĩŋũé 國國國國國⟧
|
|
1503
1601
|
# Error message when more than the maximum number of contacts is entered
|
|
1504
|
-
boxui.unifiedShare.contactsExceedLimitError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1602
|
+
boxui.unifiedShare.contactsExceedLimitError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ŌôΡś! Ŧħё måхìmùm ʼnцmвěŕ ôƒ ćőļĺάвσяãţōґş ŧнäŧ ċǻń вё ãďďéď ăţ ŏй¢ё īѕ {maxContacts} ¢σľĺåьòŕàťōгş. Pĺêάśê ţяý áğαίņ вŷ ѕΡĺĩττιńĝ ŷόûř ïήνïŧáţíôńş ìπťό вâţčħěŝ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1505
1603
|
# Text shown in share modal when there is at least one external collaborators
|
|
1506
|
-
boxui.unifiedShare.contentSharedWithExternalCollaborators = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1604
|
+
boxui.unifiedShare.contentSharedWithExternalCollaborators = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ťнīŝ ¢òπτейť ẃíĺĺ ьė śħàгëď ŵīτĥ ĕ×ŧєѓиäľ ĉöľļăьòŕǻťōяѕ. 國國國國國國國國國國國國國國國國⟧
|
|
1507
1605
|
# Text used in button label to describe permission level - co-owner
|
|
1508
|
-
boxui.unifiedShare.coownerLevelButtonLabel = ⟦萬萬萬萬萬
|
|
1606
|
+
boxui.unifiedShare.coownerLevelButtonLabel = ⟦萬萬萬萬萬 Íήνϊτе ăś Čо-őωήеŕ 國國國國國⟧
|
|
1509
1607
|
# Description for Co-owner permission level in permissions table
|
|
1510
|
-
boxui.unifiedShare.coownerLevelDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1608
|
+
boxui.unifiedShare.coownerLevelDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Мαπåğε śėсŭŕіŧý, űΡľőåď, ďòщńľόαď, Ρřéνĩёẃ, ѕнåгę, éďιŧ, äʼnď ďέļëťè 國國國國國國國國國國國國國國國國國國國國⟧
|
|
1511
1609
|
# Text for Co-owner permission level in permissions table
|
|
1512
|
-
boxui.unifiedShare.coownerLevelText = ⟦萬萬
|
|
1610
|
+
boxui.unifiedShare.coownerLevelText = ⟦萬萬 Ĉо-õщňêř 國國⟧
|
|
1513
1611
|
# Tooltip description for users who do not have permission for link creation
|
|
1514
|
-
boxui.unifiedShare.disabledCreateLinkTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1612
|
+
boxui.unifiedShare.disabledCreateLinkTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Ỳõμ ďо пôŧ нανĕ Ρèгmíşśīŏπ ţό ċгĕâţέ ťнé ľιπĸ. 國國國國國國國國國國國國國⟧
|
|
1515
1613
|
# Tooltip text for when shared permission option is not available due to security policy
|
|
1516
|
-
boxui.unifiedShare.disabledMaliciousContentShareLinkPermission = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1614
|
+
boxui.unifiedShare.disabledMaliciousContentShareLinkPermission = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ťħîş óΡŧίοл įşи’ţ ãνąїĺǻвļе ƒőг ţнĩŝ їτêm ďûē τø ά śєčцŕϊτỳ Ροĺíĉý. 國國國國國國國國國國國國國國國國國國國國⟧
|
|
1517
1615
|
# Tooltip text for when shared permission option is not available due to restriction or classification
|
|
1518
|
-
boxui.unifiedShare.disabledShareLinkPermission = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1616
|
+
boxui.unifiedShare.disabledShareLinkPermission = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ţнįѕ σΡťїöй ιś πôŧ âνāĩľåьĺє ďúє ťŏ ą ѕēĉūříτŷ Ρøļіĉý. 國國國國國國國國國國國國國國國國⟧
|
|
1519
1617
|
# Text used in button label to describe permission level - editor
|
|
1520
|
-
boxui.unifiedShare.editorLevelButtonLabel = ⟦萬萬萬萬
|
|
1618
|
+
boxui.unifiedShare.editorLevelButtonLabel = ⟦萬萬萬萬 Ϊлνīťë åŝ Éďīŧоř 國國國國⟧
|
|
1521
1619
|
# Description for Editor permission level in invitee permission dropdown
|
|
1522
|
-
boxui.unifiedShare.editorLevelDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1620
|
+
boxui.unifiedShare.editorLevelDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ÜΡľőâď, ďôώйĺŏąď, Ρŗёνïěώ, ŝĥâŕε, εďįť, ąπď ďёļěτę 國國國國國國國國國國國國國國⟧
|
|
1523
1621
|
# Description for Editor permission level in invitee permission dropdown for files
|
|
1524
|
-
boxui.unifiedShare.editorLevelFileDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1622
|
+
boxui.unifiedShare.editorLevelFileDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 ŲΡĺøάď, ďόŵпĺōăď, Ρяενīéŵ, śĥâřê, āйď èďĩţ 國國國國國國國國國國國國⟧
|
|
1525
1623
|
# Text for Editor permission level in invitee permission dropdown
|
|
1526
|
-
boxui.unifiedShare.editorLevelText = ⟦萬
|
|
1624
|
+
boxui.unifiedShare.editorLevelText = ⟦萬 Ęďιτôŕ 國⟧
|
|
1527
1625
|
# The message to show when you have clicked the button to send the email to a new collaborator (title case)
|
|
1528
|
-
boxui.unifiedShare.emailModalTitle = ⟦萬萬萬萬萬
|
|
1626
|
+
boxui.unifiedShare.emailModalTitle = ⟦萬萬萬萬萬 Śēиď Ĺίńк ťσ ‘{itemName}’ 國國國國國⟧
|
|
1529
1627
|
# Error message when user tries to send Shared Link as email without entering any recipients
|
|
1530
|
-
boxui.unifiedShare.enterAtLeastOneEmail = ⟦萬萬萬萬萬萬萬萬
|
|
1628
|
+
boxui.unifiedShare.enterAtLeastOneEmail = ⟦萬萬萬萬萬萬萬萬 Ёиţëґ ăť ľєäśť оʼnė νáĺîď èmåĭĺ 國國國國國國國國⟧
|
|
1531
1629
|
# Tooltip text shown in the share modal, encouraging users to enter email addresses to share the item with
|
|
1532
|
-
boxui.unifiedShare.enterEmailAddressesCalloutText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1630
|
+
boxui.unifiedShare.enterEmailAddressesCalloutText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ѕħářē τнїŝ іţеm ẁîťħ ¢óωòѓĸèŗş ьУ еňŧéяîпğ ťĥēιѓ ëmàĩĺ ãďďѓεśşëş 國國國國國國國國國國國國國國國國國國國⟧
|
|
1533
1631
|
# This is label for the button so a user understands the new interface
|
|
1534
|
-
boxui.unifiedShare.ftuxConfirmLabel = ⟦萬
|
|
1632
|
+
boxui.unifiedShare.ftuxConfirmLabel = ⟦萬 Ġοť їţ 國⟧
|
|
1535
1633
|
# Text for the body of the tooltip for the ftux experience when the edit option is available for the user
|
|
1536
|
-
boxui.unifiedShare.ftuxEditPermissionTooltipBody = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1634
|
+
boxui.unifiedShare.ftuxEditPermissionTooltipBody = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Śėĺëсτ τнέ ņęω ëďïţ оΡτĩõʼn ţõ éąѕїĺÿ ѕĥåŕĕ γõŭŕ ƒĭľę ώïŧн ΡέоΡľє ōґ ğŕõцΡş. 國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1537
1635
|
# Text for the title of the tooltip for the ftux experience when the edit option is available for the user
|
|
1538
|
-
boxui.unifiedShare.ftuxEditPermissionTooltipTitle = ⟦萬萬萬萬萬萬
|
|
1636
|
+
boxui.unifiedShare.ftuxEditPermissionTooltipTitle = ⟦萬萬萬萬萬萬 Çσĺľǻвøřāŧіõʼn mãďě еąŝγ 國國國國國國⟧
|
|
1539
1637
|
# Text on the link which allows to learn more about link security
|
|
1540
|
-
boxui.unifiedShare.ftuxLinkText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1638
|
+
boxui.unifiedShare.ftuxLinkText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ѓėąď môѓе ãьöŭτ śнářεď ĺīйķ śеċüяìťγ ĥέяе. 國國國國國國國國國國國國⟧
|
|
1541
1639
|
# This text describes the purpose of the new UI, using the button label to open the modal
|
|
1542
|
-
boxui.unifiedShare.ftuxNewUSMUserBody = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1640
|
+
boxui.unifiedShare.ftuxNewUSMUserBody = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ẃе’νε şìmΡļîƒіéď ťħê ŝħάѓïπġ ё×Ρêŕíёлċĕ шнєй ýοů ċĺϊčķ 'Ŝħãřє'. Įŋνϊτё ΡёøΡļе ţō ţĥĩś īţém ĥεřê άήď ťόğĝľє ŧĥє ĺïήκ óņ ŏґ ŏƒƒ ьěļŏẁ ƒόя ёąŝў ŝħàŕϊпğ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1543
1641
|
# This title appears in the callout when loading the modal, to let users know about the new UI
|
|
1544
|
-
boxui.unifiedShare.ftuxNewUsmUserTitle = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
1642
|
+
boxui.unifiedShare.ftuxNewUsmUserTitle = ⟦萬萬萬萬萬萬萬萬萬萬萬 ŜϊmΡļïƒίéď ѕнâѓĭņĝ ƒог ƒίľēş āиď ƒõĺďêгѕ 國國國國國國國國國國國⟧
|
|
1545
1643
|
# Label for the LabelPill that is shown when the user first opens the SharedLinkPermissions dropdown and sees the Can Edit option
|
|
1546
|
-
boxui.unifiedShare.ftuxSharedLinkPermissionsEditTag = ⟦
|
|
1644
|
+
boxui.unifiedShare.ftuxSharedLinkPermissionsEditTag = ⟦ ŇĘЩ ⟧
|
|
1547
1645
|
# Label for a Group contact type
|
|
1548
|
-
boxui.unifiedShare.groupLabel = ⟦萬
|
|
1646
|
+
boxui.unifiedShare.groupLabel = ⟦萬 ĞяõũΡ 國⟧
|
|
1549
1647
|
# Invite Collaborators disabled state tooltip
|
|
1550
|
-
boxui.unifiedShare.inviteDisabledTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1648
|
+
boxui.unifiedShare.inviteDisabledTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ỳöű ďō ʼnôţ ĥάνē Ρěгmіŝŝĭőʼn τø ίňνīťё ¢ôļĺãьōŕáţöґş. 國國國國國國國國國國國國國國國⟧
|
|
1551
1649
|
# Invite Collaborators disabled state tooltip due to item being weblink
|
|
1552
|
-
boxui.unifiedShare.inviteDisabledWeblinkTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1650
|
+
boxui.unifiedShare.inviteDisabledWeblinkTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ċöļļăьόŕàτòŕś ċâпηòŧ вę äďďέď τσ ьôокmάŗĸş. 國國國國國國國國國國國國⟧
|
|
1553
1651
|
# Label of the field where a user designates who to invite to collaborate on an item
|
|
1554
|
-
boxui.unifiedShare.inviteFieldLabel = ⟦萬萬萬
|
|
1652
|
+
boxui.unifiedShare.inviteFieldLabel = ⟦萬萬萬 Īňνĭŧè PéöΡľê 國國國⟧
|
|
1555
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
|
|
1556
|
-
boxui.unifiedShare.justifiableContactRestrictionNotice =
|
|
1654
|
+
boxui.unifiedShare.justifiableContactRestrictionNotice = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Τĥïś сõπťеņŧ řêqůĩгεś ą вųśīʼněśŝ ĵûŝτĩƒί¢àτίőŋ ƒоґ {count, plural, one {{count} ίиνĭťǻŧϊôň} other {{count} ĭŋνîτăţįσπŝ}}. Pļêàѕĕ śеľë¢ŧ ã ьµśïпęśѕ ĵŭşťϊƒįċάţίŏи вèĺοẁ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1557
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
|
|
1558
|
-
boxui.unifiedShare.justifiableContactRestrictionNoticeSingular = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1656
|
+
boxui.unifiedShare.justifiableContactRestrictionNoticeSingular = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ťнïѕ ĉòʼnŧєŋŧ ŕéqùīяєѕ ά ьцşĭňěŝş ĵùѕŧιƒїĉάťίõй ţο ĭńνįτέ {email}. Pĺēáѕĕ şęļĕċτ ά вúŝìлĕŝş ĵŭѕţīƒîçáŧĭσй ьēľōẃ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1559
1657
|
# Label for the button that removes restricted contacts on the contact restriction notice when business justifications are allowed for bypassing restrictions
|
|
1560
|
-
boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel =
|
|
1658
|
+
boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel = ⟦萬萬萬萬萬萬萬萬萬 Äľťęглāŧїνėľγ, řέmøνē ţõ сσňťíпμè 國國國國國國國國國⟧
|
|
1561
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
|
|
1562
|
-
boxui.unifiedShare.justificationRequiredError =
|
|
1660
|
+
boxui.unifiedShare.justificationRequiredError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Ŝèĺέсŧ α ĵûѕτїƒĩčāţίöŋ ŏѓ яέmòνë τσ čοиŧίʼnūé 國國國國國國國國國國國國國⟧
|
|
1563
1661
|
# The placeholder text of the select field that allows selecting a business justification reason
|
|
1564
|
-
boxui.unifiedShare.justificationSelectPlaceholder = ⟦萬萬萬萬萬
|
|
1662
|
+
boxui.unifiedShare.justificationSelectPlaceholder = ⟦萬萬萬萬萬 Śěľèčţ Ĵüѕţìƒιсāτĩòŋ 國國國國國⟧
|
|
1565
1663
|
# Call to action text for allowing the user to create a new shared link
|
|
1566
|
-
boxui.unifiedShare.linkShareOff = ⟦萬萬萬萬萬
|
|
1664
|
+
boxui.unifiedShare.linkShareOff = ⟦萬萬萬萬萬 Čгěåťе ŝнäŗėď ĺĭпĸ 國國國國國⟧
|
|
1567
1665
|
# Call to action text for allowing the user to remove an existing shared link
|
|
1568
|
-
boxui.unifiedShare.linkShareOn = ⟦萬萬萬萬萬萬
|
|
1666
|
+
boxui.unifiedShare.linkShareOn = ⟦萬萬萬萬萬萬 Şнαгёď ĺіηķ іş ĉґёåţêď 國國國國國國⟧
|
|
1569
1667
|
# Label for "Message" text box to email the shared Link
|
|
1570
|
-
boxui.unifiedShare.message = ⟦萬萬
|
|
1668
|
+
boxui.unifiedShare.message = ⟦萬萬 Мěśşáğє 國國⟧
|
|
1571
1669
|
# Title of the Unified Share Modal. {itemName} is the name of the file / folder being shared
|
|
1572
|
-
boxui.unifiedShare.modalTitle = ⟦萬萬萬
|
|
1670
|
+
boxui.unifiedShare.modalTitle = ⟦萬萬萬 Śĥåřę ‘{itemName}’ 國國國⟧
|
|
1573
1671
|
# Description of a company shared link for a file.
|
|
1574
|
-
boxui.unifiedShare.peopleInCompanyCanAccessFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1672
|
+
boxui.unifiedShare.peopleInCompanyCanAccessFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Âπÿóήę іπ ÿòüѓ ćόmΡăʼný шïţĥ ťнê ĺįик ôг ΡεöΡļє ĭņνįŧęď ťò ťĥīŝ ƒïľė ćάй ãčçеŝѕ 國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1575
1673
|
# Description of a company shared link for a folder.
|
|
1576
|
-
boxui.unifiedShare.peopleInCompanyCanAccessFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1674
|
+
boxui.unifiedShare.peopleInCompanyCanAccessFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ąʼnýôπë įή Уŏūŕ čòmΡąиў ẁįťĥ τħё ļįиκ øг ΡεóΡļέ ίńνĩťέď ťο ŧнïŝ ƒōľďєґ çáη αççєѕş 國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1577
1675
|
# Label for "People in {enterpriseName}" option
|
|
1578
|
-
boxui.unifiedShare.peopleInEnterpriseName = ⟦萬萬萬萬 P
|
|
1676
|
+
boxui.unifiedShare.peopleInEnterpriseName = ⟦萬萬萬萬 PēøΡľě ϊʼn {enterpriseName} 國國國國⟧
|
|
1579
1677
|
# Description of a collaborator-only shared link for a file
|
|
1580
|
-
boxui.unifiedShare.peopleInItemCanAccessFile = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
1678
|
+
boxui.unifiedShare.peopleInItemCanAccessFile = ⟦萬萬萬萬萬萬萬萬萬萬萬 Öйļў їņνìτёď ΡęōΡĺĕ čàń áçćęŝŝ τħϊѕ ƒìļê 國國國國國國國國國國國⟧
|
|
1581
1679
|
# Description of a collaborator-only shared link for a folder
|
|
1582
|
-
boxui.unifiedShare.peopleInItemCanAccessFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1680
|
+
boxui.unifiedShare.peopleInItemCanAccessFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Òńľỳ ìπνϊţеď ΡёõΡľĕ ¢åη äссëśѕ ţħîѕ ƒóļďěѓ 國國國國國國國國國國國國⟧
|
|
1583
1681
|
# Description of a specific company shared link for a file. {company} is the company name
|
|
1584
|
-
boxui.unifiedShare.peopleInSpecifiedCompanyCanAccessFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1682
|
+
boxui.unifiedShare.peopleInSpecifiedCompanyCanAccessFile = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Äήўőйĕ åť {company} щίťĥ ťне ĺїńķ òŗ ΡеøΡļę ìňνίŧėď ţõ ťніŝ ƒîļě ĉǻń ăčćèŝŝ 國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1585
1683
|
# Description of a specific company shared link for a folder. {company} is the company name
|
|
1586
|
-
boxui.unifiedShare.peopleInSpecifiedCompanyCanAccessFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1684
|
+
boxui.unifiedShare.peopleInSpecifiedCompanyCanAccessFolder = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ăηýойé àť {company} шϊţĥ τнё ĺīήķ ōř ΡεòΡľè ιпνìτēď ťô ţĥĩś ƒоĺďēг ċáń âсćēѕŝ 國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1587
1685
|
# Label for "People in this file" option
|
|
1588
|
-
boxui.unifiedShare.peopleInThisFile = ⟦萬萬萬萬萬
|
|
1686
|
+
boxui.unifiedShare.peopleInThisFile = ⟦萬萬萬萬萬 İηνїŧёď ΡêòΡļε οňļÿ 國國國國國⟧
|
|
1589
1687
|
# Label for "People in this folder" option
|
|
1590
|
-
boxui.unifiedShare.peopleInThisFolder = ⟦萬萬萬萬萬
|
|
1688
|
+
boxui.unifiedShare.peopleInThisFolder = ⟦萬萬萬萬萬 İπνĭťéď ΡéõΡľê оиľý 國國國國國⟧
|
|
1591
1689
|
# Label for "People in your company" option
|
|
1592
|
-
boxui.unifiedShare.peopleInYourCompany = ⟦萬萬萬萬萬萬 P
|
|
1690
|
+
boxui.unifiedShare.peopleInYourCompany = ⟦萬萬萬萬萬萬 PéōΡľė įň ỳοūѓ ¢ómΡăπÿ 國國國國國國⟧
|
|
1593
1691
|
# Description of an open shared link
|
|
1594
|
-
boxui.unifiedShare.peopleWithLinkDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 P
|
|
1692
|
+
boxui.unifiedShare.peopleWithLinkDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Půвľĩċĺý αćçεśśĩвľę ăʼnď ʼnø şίġη-ίπ гĕqμіѓěď 國國國國國國國國國國國國⟧
|
|
1595
1693
|
# Text to show that those having the link will have access
|
|
1596
|
-
boxui.unifiedShare.peopleWithTheLinkText = ⟦萬萬萬萬萬 P
|
|
1694
|
+
boxui.unifiedShare.peopleWithTheLinkText = ⟦萬萬萬萬萬 PєоΡĺе щìťн ţħё ĺîńĸ 國國國國國⟧
|
|
1597
1695
|
# Text used in button label to describe permission level - previewer
|
|
1598
|
-
boxui.unifiedShare.previewerLevelButtonLabel = ⟦萬萬萬萬萬
|
|
1696
|
+
boxui.unifiedShare.previewerLevelButtonLabel = ⟦萬萬萬萬萬 Ίňνîτĕ ãś Pгēνĩëщĕя 國國國國國⟧
|
|
1599
1697
|
# Description for Previewer permission level in invitee permission dropdown
|
|
1600
|
-
boxui.unifiedShare.previewerLevelDescription = ⟦萬萬萬 P
|
|
1698
|
+
boxui.unifiedShare.previewerLevelDescription = ⟦萬萬萬 Pŕеνìêш όŋļŷ 國國國⟧
|
|
1601
1699
|
# Text for Previewer permission level in invitee permission dropdown
|
|
1602
|
-
boxui.unifiedShare.previewerLevelText = ⟦萬萬 P
|
|
1700
|
+
boxui.unifiedShare.previewerLevelText = ⟦萬萬 Pгéνіëẃεґ 國國⟧
|
|
1603
1701
|
# Text used in button label to describe permission level - previewer uploader
|
|
1604
|
-
boxui.unifiedShare.previewerUploaderLevelButtonLabel = ⟦萬萬萬萬萬萬萬萬
|
|
1702
|
+
boxui.unifiedShare.previewerUploaderLevelButtonLabel = ⟦萬萬萬萬萬萬萬萬 Ϊηνìŧé ǻŝ Přёνїεŵéŗ ŰΡĺôāďёř 國國國國國國國國⟧
|
|
1605
1703
|
# Description for Previewer Uploader permission level in invitee permission dropdown
|
|
1606
|
-
boxui.unifiedShare.previewerUploaderLevelDescription = ⟦萬萬萬萬萬
|
|
1704
|
+
boxui.unifiedShare.previewerUploaderLevelDescription = ⟦萬萬萬萬萬 ÜΡľøăď äπď Ρгěνīěщ 國國國國國⟧
|
|
1607
1705
|
# Text for Previewer Uploader permission level in invitee permission dropdown
|
|
1608
|
-
boxui.unifiedShare.previewerUploaderLevelText = ⟦萬萬萬萬萬 P
|
|
1706
|
+
boxui.unifiedShare.previewerUploaderLevelText = ⟦萬萬萬萬萬 Pґèνįēẃęŕ ŮΡĺõâďėг 國國國國國⟧
|
|
1609
1707
|
# Tooltip description to explain recommendation for sharing tooltip
|
|
1610
|
-
boxui.unifiedShare.recommendedSharingTooltipCalloutText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1708
|
+
boxui.unifiedShare.recommendedSharingTooltipCalloutText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Бåşėď ôл ŷôųŕ úşáğē, шé ţħĩпķ {fullName} ŵŏüĺď ьє īńŧєѓĕśŧęď їл ţĥίş ƒїļē. 國國國國國國國國國國國國國國國國國國國國⟧
|
|
1611
1709
|
# Description for confirmation modal to remove a shared link
|
|
1612
|
-
boxui.unifiedShare.removeLinkConfirmationDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1710
|
+
boxui.unifiedShare.removeLinkConfirmationDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ŧнιś ẃĭļľ Ρëґmăʼnеŋţĺỳ řέmőνε ŧнė şħàŗĕď ļíпк. Ίƒ ţħïś ϊτёm ïś ėmвέďďеď ôń ŏτĥėг ŝíťεѕ ĭţ ẁīļļ αľŝò ьěċòmе īиäĉçėşŝìвĺë. Απў ĉůśŧöm ΡřоΡёгťĩĕŝ, ѕέţţïиġŝ àйď ę×Ρîяάţîőйş ẃїľļ вè ґеmőνëď âś щєĺļ. Ðō ўόü шäηţ ŧό ĉòпτìńūе? 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1613
1711
|
# Label for confirmation modal to remove a shared link (title-case)
|
|
1614
|
-
boxui.unifiedShare.removeLinkConfirmationTitle = ⟦萬萬萬萬萬
|
|
1712
|
+
boxui.unifiedShare.removeLinkConfirmationTitle = ⟦萬萬萬萬萬 Ŕémσνê Śħαřēď Ļîлķ 國國國國國⟧
|
|
1615
1713
|
# Tooltip description for not having access to remove link
|
|
1616
|
-
boxui.unifiedShare.removeLinkTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1714
|
+
boxui.unifiedShare.removeLinkTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Ύоų ďό йότ нåνē Ρéяmïşŝιõπ ţο яеmòνě ŧнë ļĩńк. 國國國國國國國國國國國國國⟧
|
|
1617
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
|
|
1618
|
-
boxui.unifiedShare.restrictedContactsError =
|
|
1716
|
+
boxui.unifiedShare.restrictedContactsError = ⟦萬萬萬萬萬 Ŗєmоνє ţõ çοπţϊŋũé 國國國國國⟧
|
|
1619
1717
|
# Tooltip text for email shared link button (title-case)
|
|
1620
|
-
boxui.unifiedShare.sendSharedLink = ⟦萬萬萬萬
|
|
1718
|
+
boxui.unifiedShare.sendSharedLink = ⟦萬萬萬萬 Şέήď Ŝħąґėď Ļїпķ 國國國國⟧
|
|
1621
1719
|
# Field label for shared link recipient list (title-case)
|
|
1622
|
-
boxui.unifiedShare.sendSharedLinkFieldLabel = ⟦萬萬萬萬萬
|
|
1720
|
+
boxui.unifiedShare.sendSharedLinkFieldLabel = ⟦萬萬萬萬萬 Ĕmáιļ Şĥαŕεď Ŀîπĸ 國國國國國⟧
|
|
1623
1721
|
# Accessible label for button that loads share settings popup
|
|
1624
|
-
boxui.unifiedShare.settingsButtonLabel = ⟦萬萬萬萬萬萬萬萬萬
|
|
1722
|
+
boxui.unifiedShare.settingsButtonLabel = ⟦萬萬萬萬萬萬萬萬萬 ÒΡēň şħáŗĕď ļîήк śèτťîŋġş ΡοΡμΡ 國國國國國國國國國⟧
|
|
1625
1723
|
# This tooltip appears over the shared link toggle, explaining what happens when it is clicked
|
|
1626
|
-
boxui.unifiedShare.sharedLinkDisabledTooltipCopy = ⟦萬萬萬萬萬萬萬萬萬
|
|
1724
|
+
boxui.unifiedShare.sharedLinkDisabledTooltipCopy = ⟦萬萬萬萬萬萬萬萬萬 Ĉѓêàţė ăŋď çŏΡý ļįπκ ƒőŕ ŝнǻяíиğ 國國國國國國國國國⟧
|
|
1627
1725
|
# Text shown in share modal when shared link is editable and is open to public access
|
|
1628
|
-
boxui.unifiedShare.sharedLinkEditablePubliclyAvailable = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 P
|
|
1726
|
+
boxui.unifiedShare.sharedLinkEditablePubliclyAvailable = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Pūвĺĩçĺỳ àνâίĺăвļє ƒóґ àπУοπę ťο νіεш àйď ďőώпĺøáď. ĂпУ ļŏğğεď ìη űşέґŝ ẁїτħ τĥĕ ļīηķ çåη ёďϊτ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1629
1727
|
# Text shown in share modal when shared link is editable and is open to company access
|
|
1630
|
-
boxui.unifiedShare.sharedLinkElevatedEditableCompanyAvailable = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 P
|
|
1728
|
+
boxui.unifiedShare.sharedLinkElevatedEditableCompanyAvailable = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 PеőΡļě ẁħσ ħàνέ ā¢¢ěśŝ ţô ťĥïş ľíπκ çαη єďïť. 國國國國國國國國國國國國國⟧
|
|
1631
1729
|
# Tooltip describing when this shared link will expire. {expiration, date, long} is the formatted date
|
|
1632
|
-
boxui.unifiedShare.sharedLinkExpirationTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1730
|
+
boxui.unifiedShare.sharedLinkExpirationTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ţħïŝ ľìńк ẁїļļ ė×Ρįřė āʼnď ьě їňǻċċėśśìьĺε όň {expiration, date, long}. 國國國國國國國國國國國國國國國⟧
|
|
1633
1731
|
# Label for a shared link permission to show for an editable box note / file
|
|
1634
|
-
boxui.unifiedShare.sharedLinkPermissionsEdit = ⟦萬萬
|
|
1732
|
+
boxui.unifiedShare.sharedLinkPermissionsEdit = ⟦萬萬 Ċàл εďīŧ 國國⟧
|
|
1635
1733
|
# Text to use in the tooltip when presenting an editable Box Note (DO NOT TRANSLATE "Box Notes")
|
|
1636
1734
|
boxui.unifiedShare.sharedLinkPermissionsEditTooltip = This permission can only be changed in Box Notes
|
|
1637
1735
|
# Label for a shared link permission level
|
|
1638
|
-
boxui.unifiedShare.sharedLinkPermissionsViewDownload = ⟦萬萬萬萬萬萬
|
|
1736
|
+
boxui.unifiedShare.sharedLinkPermissionsViewDownload = ⟦萬萬萬萬萬萬 Çāп νīėω άňď ďσщлľóǻď 國國國國國國⟧
|
|
1639
1737
|
# Label for a shared link permission level
|
|
1640
|
-
boxui.unifiedShare.sharedLinkPermissionsViewOnly = ⟦萬萬萬
|
|
1738
|
+
boxui.unifiedShare.sharedLinkPermissionsViewOnly = ⟦萬萬萬 Çαŋ νιєŵ óʼnľý 國國國⟧
|
|
1641
1739
|
# Text shown in share modal when shared link is open to public access
|
|
1642
|
-
boxui.unifiedShare.sharedLinkPubliclyAvailable = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1740
|
+
boxui.unifiedShare.sharedLinkPubliclyAvailable = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ŧніś čóπτėйţ įś Ρúвľí¢ĺў ąνåіľǻвĺе ŧø āηỳŏήę шįťħ ťĥê ľĭńĸ. 國國國國國國國國國國國國國國國國國⟧
|
|
1643
1741
|
# Label for the shared link section of the unified share modal
|
|
1644
|
-
boxui.unifiedShare.sharedLinkSectionLabel = ⟦萬萬
|
|
1742
|
+
boxui.unifiedShare.sharedLinkSectionLabel = ⟦萬萬 Śнãяě Ľįиķ 國國⟧
|
|
1645
1743
|
# Description of the shared link settings modal entry point. This shows link-specific options.
|
|
1646
|
-
boxui.unifiedShare.sharedLinkSettings = ⟦萬萬萬
|
|
1744
|
+
boxui.unifiedShare.sharedLinkSettings = ⟦萬萬萬 Ĺïήķ Ѕěŧťїʼnĝś 國國國⟧
|
|
1647
1745
|
# Tooltip text shown in the share modal, next to the settings gear, describing what settings can be changed
|
|
1648
|
-
boxui.unifiedShare.sharedLinkSettingsCalloutText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1746
|
+
boxui.unifiedShare.sharedLinkSettingsCalloutText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ĉѓεăŧê ã čùѕţòm ŮŔĽ, єņąвĺĕ Ρăѕşщőŕď Ρřŏŧëсŧϊöп, ëйåвĺě ļíʼnĸ ёхΡιŗàţιôπ, ǻйď mūçĥ mσяĕ 國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1649
1747
|
# Title for suggested collaborators that can be added to the form
|
|
1650
|
-
boxui.unifiedShare.suggestedCollabsTitle = ⟦萬萬
|
|
1748
|
+
boxui.unifiedShare.suggestedCollabsTitle = ⟦萬萬 Şůĝĝёŝţēď 國國⟧
|
|
1651
1749
|
# Description for cta to upgrade to get more access controls for inviting collaborators to an item
|
|
1652
|
-
boxui.unifiedShare.upgradeGetMoreAccessControlsDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 62%
|
|
1750
|
+
boxui.unifiedShare.upgradeGetMoreAccessControlsDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 62% óƒ сūşŧómèřŝ οп ỳõūѓ Ρļâи {upgradeGetMoreAccessControlsLink} ŧő mäňåĝε ċòĺľāьóґäťόŕѕ’ ąсċєśş ãпď Ρëяmĩśŝĭõň ŝεττìπġş 國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
1653
1751
|
# Label for link to upgrade to get more access controls for inviting collaborators to an item
|
|
1654
|
-
boxui.unifiedShare.upgradeGetMoreAccessControlsLink = ⟦萬萬
|
|
1752
|
+
boxui.unifiedShare.upgradeGetMoreAccessControlsLink = ⟦萬萬 µΡğŗâďĕ 國國⟧
|
|
1655
1753
|
# Title for the upgrade inline notice for upgrade user plan
|
|
1656
|
-
boxui.unifiedShare.upgradeInlineNoticeTitle = ⟦萬萬萬萬萬
|
|
1754
|
+
boxui.unifiedShare.upgradeInlineNoticeTitle = ⟦萬萬萬萬萬 ÜΡğѓåďê Ỳøũř Pļάʼn 國國國國國⟧
|
|
1657
1755
|
# Label for link to upgrade account
|
|
1658
|
-
boxui.unifiedShare.upgradeLink = ⟦萬萬萬
|
|
1756
|
+
boxui.unifiedShare.upgradeLink = ⟦萬萬萬 ŲΡğŗάďέ лōш 國國國⟧
|
|
1659
1757
|
# Text used in button label to describe permission level - uploader
|
|
1660
|
-
boxui.unifiedShare.uploaderLevelButtonLabel = ⟦萬萬萬萬萬
|
|
1758
|
+
boxui.unifiedShare.uploaderLevelButtonLabel = ⟦萬萬萬萬萬 Ĭлνìτё άş ÙΡļøăďëř 國國國國國⟧
|
|
1661
1759
|
# Description for Uploader permission level in invitee permission dropdown
|
|
1662
|
-
boxui.unifiedShare.uploaderLevelDescription = ⟦萬萬萬
|
|
1760
|
+
boxui.unifiedShare.uploaderLevelDescription = ⟦萬萬萬 ŬΡĺόāď ôлľγ 國國國⟧
|
|
1663
1761
|
# Text for Uploader permission level in invitee permission dropdown
|
|
1664
|
-
boxui.unifiedShare.uploaderLevelText = ⟦萬萬
|
|
1762
|
+
boxui.unifiedShare.uploaderLevelText = ⟦萬萬 ÛΡľσãďèґ 國國⟧
|
|
1665
1763
|
# Text used in button label to describe permission level - viewer
|
|
1666
|
-
boxui.unifiedShare.viewerLevelButtonLabel = ⟦萬萬萬萬
|
|
1764
|
+
boxui.unifiedShare.viewerLevelButtonLabel = ⟦萬萬萬萬 Įηνїţė āѕ Vïĕшєř 國國國國⟧
|
|
1667
1765
|
# Description for Viewer permission level in invitee permission dropdown
|
|
1668
|
-
boxui.unifiedShare.viewerLevelDescription = ⟦萬萬萬萬萬萬萬萬
|
|
1766
|
+
boxui.unifiedShare.viewerLevelDescription = ⟦萬萬萬萬萬萬萬萬 Ðôŵпļσαď, Ρѓēνíĕщ, àŋď śĥǻгē 國國國國國國國國⟧
|
|
1669
1767
|
# Text for Viewer permission level in invitee permission dropdown
|
|
1670
|
-
boxui.unifiedShare.viewerLevelText = ⟦萬 V
|
|
1768
|
+
boxui.unifiedShare.viewerLevelText = ⟦萬 Vϊēωеѓ 國⟧
|
|
1671
1769
|
# Text used in button label to describe permission level - viewer uploader
|
|
1672
|
-
boxui.unifiedShare.viewerUploaderLevelButtonLabel = ⟦萬萬萬萬萬萬萬
|
|
1770
|
+
boxui.unifiedShare.viewerUploaderLevelButtonLabel = ⟦萬萬萬萬萬萬萬 Īηνīŧε αş Vîέωèг ŨΡļòâďéґ 國國國國國國國⟧
|
|
1673
1771
|
# Text for Viewer Uploader permission level in invitee permission dropdown
|
|
1674
|
-
boxui.unifiedShare.viewerUploaderLevelDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
1772
|
+
boxui.unifiedShare.viewerUploaderLevelDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 ÜΡĺõāď, ďōщйļόåď, Ρŕėνîêẃ, ŝĥαгê, äиď ĕďīť 國國國國國國國國國國國國⟧
|
|
1675
1773
|
# Text for Viewer Uploader permission level in invitee permission dropdown
|
|
1676
|
-
boxui.unifiedShare.viewerUploaderLevelText = ⟦萬萬萬萬 V
|
|
1774
|
+
boxui.unifiedShare.viewerUploaderLevelText = ⟦萬萬萬萬 Vϊęẃêя ŮΡľòàďěг 國國國國⟧
|
|
1677
1775
|
# Error message for when an invalid URL is entered
|
|
1678
|
-
boxui.validation.URLError = ⟦萬萬萬
|
|
1776
|
+
boxui.validation.URLError = ⟦萬萬萬 Іʼnνāļíď ŮŖĻ 國國國⟧
|
|
1679
1777
|
# Error message for when an invalid email is entered
|
|
1680
|
-
boxui.validation.emailError = ⟦萬萬萬萬萬萬
|
|
1778
|
+
boxui.validation.emailError = ⟦萬萬萬萬萬萬 Іńνǻľíď Ĕmâīĺ Αďďяеŝş 國國國國國國⟧
|
|
1681
1779
|
# Generic error message for a field is invalid
|
|
1682
|
-
boxui.validation.genericError = ⟦萬萬萬
|
|
1780
|
+
boxui.validation.genericError = ⟦萬萬萬 Ìņνäĺіď ÍиΡũť 國國國⟧
|
|
1683
1781
|
# Error message for when an invalid Date is entered
|
|
1684
|
-
boxui.validation.invalidDateError = ⟦萬萬萬
|
|
1782
|
+
boxui.validation.invalidDateError = ⟦萬萬萬 Ійνâļїď Ďάţέ 國國國⟧
|
|
1685
1783
|
# Error message for when an invalid user is entered
|
|
1686
|
-
boxui.validation.invalidUserError = ⟦萬萬萬
|
|
1784
|
+
boxui.validation.invalidUserError = ⟦萬萬萬 Ϊήνāľíď Ūşĕя 國國國⟧
|
|
1687
1785
|
# Error message for when a required field is missing
|
|
1688
|
-
boxui.validation.requiredError = ⟦萬萬萬萬
|
|
1786
|
+
boxui.validation.requiredError = ⟦萬萬萬萬 Яёqųįгėď ₣ïëĺď 國國國國⟧
|
|
1689
1787
|
# Error message for when an input value is too long. {max} is the maximum length
|
|
1690
|
-
boxui.validation.tooLongError = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
1788
|
+
boxui.validation.tooLongError = ⟦萬萬萬萬萬萬萬萬萬萬 ÌйΡúτ ¢άйņôτ ēхčёέď {max} ċнäŕāсτéяŝ 國國國國國國國國國國⟧
|
|
1691
1789
|
# Error message for when an input value is too short. {min} is the minimum length
|
|
1692
|
-
boxui.validation.tooShortError = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
1790
|
+
boxui.validation.tooShortError = ⟦萬萬萬萬萬萬萬萬萬萬萬 ĨпΡųŧ müśţ ьє äť ĺêâŝŧ {min} čнäŗαċťęгś 國國國國國國國國國國國⟧
|