box-ui-elements 15.0.0-beta.7 → 15.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/CONTRIBUTING.md +3 -1
- package/dist/explorer.css +1 -1
- package/dist/explorer.js +58 -26
- package/dist/openwith.css +1 -1
- package/dist/openwith.js +10 -17
- package/dist/picker.css +1 -1
- package/dist/picker.js +12 -19
- package/dist/preview.css +1 -1
- package/dist/preview.js +56 -24
- package/dist/sharing.css +1 -1
- package/dist/sharing.js +54 -22
- package/dist/sidebar.css +1 -1
- package/dist/sidebar.js +56 -24
- package/dist/uploader.css +1 -1
- package/dist/uploader.js +12 -19
- package/es/api/uploads/UploadsReachability.js.flow +2 -2
- package/es/api/uploads/UploadsReachability.js.map +1 -1
- package/es/common/messages.js +4 -0
- package/es/common/messages.js.flow +5 -0
- package/es/common/messages.js.map +1 -1
- package/es/common/types/core.js.flow +2 -0
- package/es/common/types/core.js.map +1 -1
- package/es/components/avatar/UnknownUserAvatar.js +6 -9
- package/es/components/avatar/UnknownUserAvatar.js.map +1 -1
- package/es/components/close-button/CloseButton.js +24 -0
- package/es/components/close-button/CloseButton.js.flow +26 -0
- package/es/components/close-button/CloseButton.js.map +1 -0
- package/es/components/close-button/CloseButton.scss +10 -0
- package/es/components/close-button/CloseButton.stories.js +14 -0
- package/es/components/close-button/CloseButton.stories.js.map +1 -0
- package/es/components/close-button/index.js +2 -0
- package/es/components/close-button/index.js.flow +2 -0
- package/es/components/close-button/index.js.map +1 -0
- package/es/components/date-picker/AccessiblePikaday.js +113 -0
- package/es/components/date-picker/AccessiblePikaday.js.map +1 -0
- package/es/components/date-picker/DatePicker.js +426 -106
- package/es/components/date-picker/DatePicker.js.map +1 -1
- package/es/components/date-picker/DatePicker.scss +32 -22
- package/es/components/date-picker/DatePicker.stories.js +10 -0
- package/es/components/date-picker/DatePicker.stories.js.map +1 -1
- package/es/components/date-picker/_pikaday.scss +8 -2
- package/es/components/flyout/Flyout.js +13 -3
- package/es/components/flyout/Flyout.js.flow +14 -3
- package/es/components/flyout/Flyout.js.map +1 -1
- package/es/components/flyout/Flyout.scss +40 -0
- package/es/components/flyout/FlyoutContext.js +6 -0
- package/es/components/flyout/FlyoutContext.js.flow +9 -0
- package/es/components/flyout/FlyoutContext.js.map +1 -0
- package/es/components/flyout/OverlayHeader.js +33 -0
- package/es/components/flyout/OverlayHeader.js.map +1 -0
- package/es/components/flyout/OverlayHeader.scss +9 -0
- package/es/components/flyout/_variables.scss +1 -0
- package/es/components/flyout/index.js +2 -0
- package/es/components/flyout/index.js.flow +2 -0
- package/es/components/flyout/index.js.map +1 -1
- package/es/components/image-tooltip/ImageTooltip.js +1 -2
- package/es/components/image-tooltip/ImageTooltip.js.map +1 -1
- package/es/components/media-query/constants.js +26 -0
- package/es/components/media-query/constants.js.flow +32 -0
- package/es/components/media-query/constants.js.map +1 -0
- package/es/components/media-query/index.js +3 -0
- package/es/components/media-query/index.js.flow +4 -0
- package/es/components/media-query/index.js.map +1 -0
- package/es/components/media-query/stories/MediaQuery.stories.js +37 -0
- package/es/components/media-query/stories/MediaQuery.stories.js.flow +80 -0
- package/es/components/media-query/stories/MediaQuery.stories.js.map +1 -0
- package/es/components/media-query/types.js +2 -0
- package/es/components/media-query/types.js.flow +29 -0
- package/es/components/media-query/types.js.map +1 -0
- package/es/components/media-query/useMediaQuery.js +91 -0
- package/es/components/media-query/useMediaQuery.js.flow +97 -0
- package/es/components/media-query/useMediaQuery.js.map +1 -0
- package/es/components/media-query/withMediaQuery.js +21 -0
- package/es/components/media-query/withMediaQuery.js.flow +23 -0
- package/es/components/media-query/withMediaQuery.js.map +1 -0
- package/es/components/modal/Modal.scss +27 -0
- package/es/components/preview/previewIcons.js +4 -0
- package/es/components/preview/previewIcons.js.map +1 -1
- package/es/components/search-form/SearchForm.scss +0 -5
- package/es/components/selector-dropdown/SelectorDropdown.js +5 -3
- package/es/components/selector-dropdown/SelectorDropdown.js.flow +3 -3
- package/es/components/selector-dropdown/SelectorDropdown.js.map +1 -1
- package/es/components/tab-view/Tabs.scss +0 -4
- package/es/components/tooltip/Tooltip.js +21 -4
- package/es/components/tooltip/Tooltip.js.map +1 -1
- package/es/constants.js +1 -0
- package/es/constants.js.flow +1 -0
- package/es/constants.js.map +1 -1
- package/es/elements/content-open-with/IconFileMap.js +0 -2
- package/es/elements/content-open-with/IconFileMap.js.flow +0 -2
- package/es/elements/content-open-with/IconFileMap.js.map +1 -1
- package/es/elements/content-sidebar/Sidebar.js +2 -1
- package/es/elements/content-sidebar/Sidebar.js.flow +1 -1
- package/es/elements/content-sidebar/Sidebar.js.map +1 -1
- package/es/elements/content-sidebar/activity-feed/common/delete-confirmation/DeleteConfirmation.scss +3 -3
- package/es/elements/content-sidebar/activity-feed/task-form/TaskForm.js +14 -4
- package/es/elements/content-sidebar/activity-feed/task-form/TaskForm.js.flow +18 -5
- package/es/elements/content-sidebar/activity-feed/task-form/TaskForm.js.map +1 -1
- package/es/elements/content-sidebar/versions/StaticVersionSidebar.js +78 -0
- package/es/elements/content-sidebar/versions/StaticVersionSidebar.js.flow +97 -0
- package/es/elements/content-sidebar/versions/StaticVersionSidebar.js.map +1 -0
- package/es/elements/content-sidebar/versions/StaticVersionsSidebar.scss +67 -0
- package/es/elements/content-sidebar/versions/VersionsSidebar.js +12 -4
- package/es/elements/content-sidebar/versions/VersionsSidebar.js.flow +16 -3
- package/es/elements/content-sidebar/versions/VersionsSidebar.js.map +1 -1
- package/es/elements/content-sidebar/versions/VersionsSidebar.scss +5 -0
- package/es/elements/content-sidebar/versions/VersionsSidebarContainer.js +42 -10
- package/es/elements/content-sidebar/versions/VersionsSidebarContainer.js.flow +42 -7
- package/es/elements/content-sidebar/versions/VersionsSidebarContainer.js.map +1 -1
- package/es/elements/content-sidebar/versions/flowTypes.js.flow +1 -0
- package/es/elements/content-sidebar/versions/messages.js +20 -0
- package/es/elements/content-sidebar/versions/messages.js.flow +28 -0
- package/es/elements/content-sidebar/versions/messages.js.map +1 -1
- package/es/features/classification/constants.js +2 -1
- package/es/features/classification/constants.js.flow +2 -0
- package/es/features/classification/constants.js.map +1 -1
- package/es/features/classification/flowTypes.js +1 -0
- package/es/features/classification/flowTypes.js.flow +7 -1
- package/es/features/classification/flowTypes.js.map +1 -1
- package/es/features/classification/security-controls/SecurityControls.js +3 -4
- package/es/features/classification/security-controls/SecurityControls.js.flow +3 -4
- package/es/features/classification/security-controls/SecurityControls.js.map +1 -1
- package/es/features/classification/security-controls/SecurityControlsItem.js +1 -1
- package/es/features/classification/security-controls/SecurityControlsItem.js.flow +20 -17
- package/es/features/classification/security-controls/SecurityControlsItem.js.map +1 -1
- package/es/features/classification/security-controls/SecurityControlsItem.scss +4 -0
- package/es/features/classification/security-controls/SecurityControlsModal.js +2 -2
- package/es/features/classification/security-controls/SecurityControlsModal.js.flow +2 -2
- package/es/features/classification/security-controls/SecurityControlsModal.js.map +1 -1
- package/es/features/classification/security-controls/messages.js +4 -0
- package/es/features/classification/security-controls/messages.js.flow +5 -0
- package/es/features/classification/security-controls/messages.js.map +1 -1
- package/es/features/classification/security-controls/utils.js +56 -35
- package/es/features/classification/security-controls/utils.js.flow +51 -27
- package/es/features/classification/security-controls/utils.js.map +1 -1
- package/es/features/collapsible-sidebar/CollapsibleSidebar.js +9 -3
- package/es/features/collapsible-sidebar/CollapsibleSidebar.js.flow +13 -5
- package/es/features/collapsible-sidebar/CollapsibleSidebar.js.map +1 -1
- package/es/features/collapsible-sidebar/CollapsibleSidebar.scss +35 -3
- package/es/features/content-explorer/content-explorer/ContentExplorer.scss +1 -1
- package/es/features/content-explorer/item-list/ItemList.js +1 -0
- package/es/features/content-explorer/item-list/ItemList.js.flow +1 -0
- package/es/features/content-explorer/item-list/ItemList.js.map +1 -1
- package/es/features/content-explorer/item-list/ItemListName.js +13 -2
- package/es/features/content-explorer/item-list/ItemListName.js.flow +3 -2
- package/es/features/content-explorer/item-list/ItemListName.js.map +1 -1
- package/es/features/header-flyout/HeaderFlyout.js +8 -10
- package/es/features/header-flyout/HeaderFlyout.js.flow +4 -8
- package/es/features/header-flyout/HeaderFlyout.js.map +1 -1
- package/es/features/header-flyout/styles/HeaderFlyout.scss +54 -15
- package/es/features/header-flyout/styles/_variables.scss +4 -0
- package/es/features/message-center/components/message-center-modal/MessageCenterModal.js +1 -0
- package/es/features/message-center/components/message-center-modal/MessageCenterModal.js.flow +1 -0
- package/es/features/message-center/components/message-center-modal/MessageCenterModal.js.map +1 -1
- package/es/features/presence/PresenceCollaborator.js +90 -0
- package/es/features/presence/PresenceCollaborator.js.flow +81 -0
- package/es/features/presence/PresenceCollaborator.js.map +1 -0
- package/es/features/presence/PresenceCollaborator.scss +28 -0
- package/es/features/presence/PresenceCollaboratorsList.js +9 -57
- package/es/features/presence/PresenceCollaboratorsList.js.flow +7 -58
- package/es/features/presence/PresenceCollaboratorsList.js.map +1 -1
- package/es/features/presence/PresenceCollaboratorsList.scss +8 -35
- package/es/features/quick-search/QuickSearch.js +4 -2
- package/es/features/quick-search/QuickSearch.js.flow +13 -1
- package/es/features/quick-search/QuickSearch.js.map +1 -1
- package/es/features/unified-share-modal/SharedLinkSection.js +9 -20
- package/es/features/unified-share-modal/SharedLinkSection.js.flow +6 -27
- package/es/features/unified-share-modal/SharedLinkSection.js.map +1 -1
- package/es/features/unified-share-modal/UnifiedShareForm.js +95 -53
- package/es/features/unified-share-modal/UnifiedShareForm.js.flow +70 -14
- package/es/features/unified-share-modal/UnifiedShareForm.js.map +1 -1
- package/es/features/unified-share-modal/UnifiedShareModal.scss +3 -0
- package/es/features/unified-share-modal/flowTypes.js.flow +6 -0
- package/es/features/unified-share-modal/flowTypes.js.map +1 -1
- package/es/features/unified-share-modal/messages.js +8 -0
- package/es/features/unified-share-modal/messages.js.flow +10 -0
- package/es/features/unified-share-modal/messages.js.map +1 -1
- package/es/features/unified-share-modal/utils/mergeContacts.js +13 -10
- package/es/features/unified-share-modal/utils/mergeContacts.js.flow +4 -2
- package/es/features/unified-share-modal/utils/mergeContacts.js.map +1 -1
- package/es/icon/content/FileXbd32.js +39 -0
- package/es/icon/content/FileXbd32.js.flow +38 -0
- package/es/icon/content/FileXbd32.js.map +1 -0
- package/es/icon/content/FileXbd32.stories.js +13 -0
- package/es/icon/content/FileXbd32.stories.js.map +1 -0
- package/es/icon/content/FileXdw32.js +39 -0
- package/es/icon/content/FileXdw32.js.flow +38 -0
- package/es/icon/content/FileXdw32.js.map +1 -0
- package/es/icon/content/FileXdw32.stories.js +13 -0
- package/es/icon/content/FileXdw32.stories.js.map +1 -0
- package/es/icon/content/RetentionPolicyModifiable32.js +36 -0
- package/es/icon/content/RetentionPolicyModifiable32.js.flow +31 -0
- package/es/icon/content/RetentionPolicyModifiable32.js.map +1 -0
- package/es/icon/content/RetentionPolicyModifiable32.stories.js +13 -0
- package/es/icon/content/RetentionPolicyModifiable32.stories.js.map +1 -0
- package/es/icon/content/RetentionPolicyNonModifiable32.js +36 -0
- package/es/icon/content/RetentionPolicyNonModifiable32.js.flow +31 -0
- package/es/icon/content/RetentionPolicyNonModifiable32.js.map +1 -0
- package/es/icon/content/RetentionPolicyNonModifiable32.stories.js +13 -0
- package/es/icon/content/RetentionPolicyNonModifiable32.stories.js.map +1 -0
- package/es/icons/avatars/UnknownUserAvatar.js +10 -34
- package/es/icons/avatars/UnknownUserAvatar.js.map +1 -1
- package/es/icons/file-icon/FileIcon.js +8 -2
- package/es/icons/file-icon/FileIcon.js.flow +2 -2
- package/es/icons/file-icon/FileIcon.js.map +1 -1
- package/es/icons/general/IconSearch.js +1 -1
- package/es/icons/general/IconSearch.js.flow +1 -1
- package/es/icons/general/IconSearch.js.map +1 -1
- package/es/icons/general/IconSearchJuicy.js +30 -0
- package/es/icons/general/IconSearchJuicy.js.flow +26 -0
- package/es/icons/general/IconSearchJuicy.js.map +1 -0
- package/es/icons/google-docs/IconGoogle.js +89 -0
- package/es/icons/google-docs/IconGoogle.js.flow +57 -0
- package/es/icons/google-docs/IconGoogle.js.map +1 -0
- package/es/icons/item-icon/ItemIcon.js +4 -0
- package/es/icons/item-icon/ItemIcon.js.map +1 -1
- package/es/icons/microsoft-office/IconOffice.js +80 -0
- package/es/icons/microsoft-office/IconOffice.js.flow +45 -0
- package/es/icons/microsoft-office/IconOffice.js.map +1 -0
- package/es/illustration/EmailVerification140.js +111 -0
- package/es/illustration/EmailVerification140.js.flow +102 -0
- package/es/illustration/EmailVerification140.js.map +1 -0
- package/es/illustration/EmailVerification140.stories.js +13 -0
- package/es/illustration/EmailVerification140.stories.js.map +1 -0
- package/es/src/components/close-button/CloseButton.d.ts +9 -0
- package/es/src/components/close-button/CloseButton.stories.d.ts +9 -0
- package/es/src/components/close-button/__tests__/CloseButton.stories.test.d.ts +0 -0
- package/es/src/components/close-button/__tests__/CloseButton.test.d.ts +1 -0
- package/es/src/components/close-button/index.d.ts +1 -0
- package/es/src/components/date-picker/AccessiblePikaday.d.ts +16 -0
- package/es/src/components/date-picker/DatePicker.d.ts +33 -6
- package/es/src/components/date-picker/DatePicker.stories.d.ts +2 -1
- package/es/src/components/flyout/OverlayHeader.d.ts +10 -0
- package/es/src/components/tooltip/Tooltip.d.ts +4 -3
- package/es/src/icon/content/FileXbd32.d.ts +13 -0
- package/es/src/icon/content/FileXbd32.stories.d.ts +9 -0
- package/es/src/icon/content/FileXdw32.d.ts +13 -0
- package/es/src/icon/content/FileXdw32.stories.d.ts +9 -0
- package/es/src/icon/content/RetentionPolicyModifiable32.d.ts +13 -0
- package/es/src/icon/content/RetentionPolicyModifiable32.stories.d.ts +9 -0
- package/es/src/icon/content/RetentionPolicyNonModifiable32.d.ts +13 -0
- package/es/src/icon/content/RetentionPolicyNonModifiable32.stories.d.ts +9 -0
- package/es/src/icons/avatars/UnknownUserAvatar.d.ts +0 -1
- package/es/src/icons/general/IconSearchJuicy.d.ts +3 -0
- package/es/src/icons/general/__tests__/IconSearchJuicy.test.d.ts +1 -0
- package/es/src/icons/google-docs/IconGoogle.d.ts +12 -0
- package/es/src/icons/google-docs/__tests__/IconGoogle.test.d.ts +1 -0
- package/es/src/icons/item-icon/ItemIcon.d.ts +2 -0
- package/es/src/icons/microsoft-office/IconOffice.d.ts +12 -0
- package/es/src/icons/microsoft-office/__tests__/IconOffice.test.d.ts +1 -0
- package/es/src/illustration/EmailVerification140.d.ts +13 -0
- package/es/src/illustration/EmailVerification140.stories.d.ts +9 -0
- package/es/src/styles/variables.d.ts +9 -0
- package/es/styles/_variables.scss +1 -0
- package/es/styles/common/_forms.scss +6 -0
- package/es/styles/constants/_layout.scss +3 -0
- package/es/styles/constants/_media-queries.scss +15 -0
- package/es/styles/variables.js +18 -0
- package/es/styles/variables.js.flow +10 -1
- package/es/styles/variables.js.map +1 -1
- package/es/utils/Browser.js +12 -0
- package/es/utils/Browser.js.flow +10 -0
- package/es/utils/Browser.js.map +1 -1
- package/es/utils/validators.js +26 -4
- package/es/utils/validators.js.flow +25 -3
- package/es/utils/validators.js.map +1 -1
- package/i18n/bn-IN.js +12 -0
- package/i18n/bn-IN.properties +24 -0
- package/i18n/da-DK.js +12 -0
- package/i18n/da-DK.properties +24 -0
- package/i18n/de-DE.js +12 -0
- package/i18n/de-DE.properties +24 -0
- package/i18n/en-AU.js +12 -0
- package/i18n/en-AU.properties +24 -0
- package/i18n/en-CA.js +12 -0
- package/i18n/en-CA.properties +24 -0
- package/i18n/en-GB.js +12 -0
- package/i18n/en-GB.properties +24 -0
- package/i18n/en-US.js +12 -0
- package/i18n/en-US.properties +24 -0
- package/i18n/en-x-pseudo.js +12 -0
- package/i18n/es-419.js +12 -0
- package/i18n/es-419.properties +24 -0
- package/i18n/es-ES.js +12 -0
- package/i18n/es-ES.properties +24 -0
- package/i18n/fi-FI.js +12 -0
- package/i18n/fi-FI.properties +24 -0
- package/i18n/fr-CA.js +12 -0
- package/i18n/fr-CA.properties +24 -0
- package/i18n/fr-FR.js +12 -0
- package/i18n/fr-FR.properties +24 -0
- package/i18n/hi-IN.js +12 -0
- package/i18n/hi-IN.properties +24 -0
- package/i18n/it-IT.js +12 -0
- package/i18n/it-IT.properties +24 -0
- package/i18n/ja-JP.js +25 -13
- package/i18n/ja-JP.properties +37 -13
- package/i18n/ko-KR.js +12 -0
- package/i18n/ko-KR.properties +24 -0
- package/i18n/nb-NO.js +12 -0
- package/i18n/nb-NO.properties +24 -0
- package/i18n/nl-NL.js +12 -0
- package/i18n/nl-NL.properties +24 -0
- package/i18n/pl-PL.js +12 -0
- package/i18n/pl-PL.properties +24 -0
- package/i18n/pt-BR.js +12 -0
- package/i18n/pt-BR.properties +24 -0
- package/i18n/ru-RU.js +12 -0
- package/i18n/ru-RU.properties +24 -0
- package/i18n/sv-SE.js +12 -0
- package/i18n/sv-SE.properties +24 -0
- package/i18n/tr-TR.js +12 -0
- package/i18n/tr-TR.properties +24 -0
- package/i18n/zh-CN.js +12 -0
- package/i18n/zh-CN.properties +24 -0
- package/i18n/zh-TW.js +12 -0
- package/i18n/zh-TW.properties +24 -0
- package/package.json +8 -5
- package/src/__mocks__/pikaday.js +1 -0
- package/src/api/__tests__/MockOpenWithData.json +2 -25
- package/src/api/uploads/UploadsReachability.js +2 -2
- package/src/common/messages.js +5 -0
- package/src/common/types/core.js +2 -0
- package/src/components/avatar/UnknownUserAvatar.tsx +5 -4
- package/src/components/close-button/CloseButton.js.flow +26 -0
- package/src/components/close-button/CloseButton.scss +10 -0
- package/src/components/close-button/CloseButton.stories.md +1 -0
- package/src/components/close-button/CloseButton.stories.tsx +14 -0
- package/src/components/close-button/CloseButton.tsx +30 -0
- package/src/components/close-button/__tests__/CloseButton.stories.test.tsx +6 -0
- package/src/components/close-button/__tests__/CloseButton.test.tsx +40 -0
- package/src/components/close-button/__tests__/__image_snapshots__/close-button-stories-test-tsx-components-close-button-close-button-looks-visually-correct-when-using-story-components-buttons-closebutton-regular-1-snap.png +0 -0
- package/src/components/close-button/index.js.flow +2 -0
- package/src/components/close-button/index.ts +1 -0
- package/src/components/date-picker/AccessiblePikaday.ts +79 -0
- package/src/components/date-picker/DatePicker.scss +32 -22
- package/src/components/date-picker/DatePicker.stories.tsx +6 -0
- package/src/components/date-picker/DatePicker.tsx +350 -64
- package/src/components/date-picker/__tests__/DatePicker.test.tsx +44 -2
- package/src/components/date-picker/__tests__/__image_snapshots__/date-picker-stories-test-tsx-components-date-picker-date-picker-allows-editing-in-story-components-datepicker-manually-editable-1-snap.png +0 -0
- package/src/components/date-picker/__tests__/__image_snapshots__/date-picker-stories-test-tsx-components-date-picker-date-picker-allows-keyboard-selection-in-components-datepicker-always-visible-with-custom-input-field-1-snap.png +0 -0
- package/src/components/date-picker/__tests__/__image_snapshots__/date-picker-stories-test-tsx-components-date-picker-date-picker-closes-calendar-and-clears-date-for-components-datepicker-basic-1-snap.png +0 -0
- package/src/components/date-picker/__tests__/__image_snapshots__/date-picker-stories-test-tsx-components-date-picker-date-picker-looks-visually-correct-when-using-story-components-datepicker-always-visible-with-custom-input-field-1-snap.png +0 -0
- package/src/components/date-picker/__tests__/__image_snapshots__/date-picker-stories-test-tsx-components-date-picker-date-picker-looks-visually-correct-when-using-story-components-datepicker-basic-1-snap.png +0 -0
- package/src/components/date-picker/__tests__/__image_snapshots__/date-picker-stories-test-tsx-components-date-picker-date-picker-looks-visually-correct-when-using-story-components-datepicker-custom-error-tooltip-position-1-snap.png +0 -0
- package/src/components/date-picker/__tests__/__image_snapshots__/date-picker-stories-test-tsx-components-date-picker-date-picker-looks-visually-correct-when-using-story-components-datepicker-disabled-with-error-message-1-snap.png +0 -0
- package/src/components/date-picker/__tests__/__image_snapshots__/date-picker-stories-test-tsx-components-date-picker-date-picker-looks-visually-correct-when-using-story-components-datepicker-manually-editable-1-snap.png +0 -0
- package/src/components/date-picker/__tests__/__image_snapshots__/date-picker-stories-test-tsx-components-date-picker-date-picker-looks-visually-correct-when-using-story-components-datepicker-with-description-1-snap.png +0 -0
- package/src/components/date-picker/__tests__/__image_snapshots__/date-picker-stories-test-tsx-components-date-picker-date-picker-looks-visually-correct-when-using-story-components-datepicker-with-limited-date-range-1-snap.png +0 -0
- package/src/components/date-picker/__tests__/__image_snapshots__/date-picker-stories-test-tsx-components-date-picker-date-picker-looks-visually-correct-when-using-story-components-datepicker-with-range-1-snap.png +0 -0
- package/src/components/date-picker/__tests__/__image_snapshots__/date-picker-stories-test-tsx-components-date-picker-date-picker-reflects-changes-in-components-datepicker-always-visible-with-custom-input-field-1-snap.png +0 -0
- package/src/components/date-picker/__tests__/__image_snapshots__/date-picker-stories-test-tsx-components-date-picker-date-picker-shows-calendar-and-date-for-components-datepicker-basic-1-snap.png +0 -0
- package/src/components/date-picker/__tests__/__image_snapshots__/date-picker-stories-test-tsx-components-date-picker-date-picker-shows-limited-range-in-components-datepicker-with-limited-date-range-1-snap.png +0 -0
- package/src/components/date-picker/_pikaday.scss +8 -2
- package/src/components/flyout/Flyout.js +14 -3
- package/src/components/flyout/Flyout.scss +40 -0
- package/src/components/flyout/FlyoutContext.js +9 -0
- package/src/components/flyout/OverlayHeader.scss +9 -0
- package/src/components/flyout/OverlayHeader.tsx +38 -0
- package/src/components/flyout/__tests__/Flyout.test.js +15 -0
- package/src/components/flyout/__tests__/OverlayHeader.test.js +56 -0
- package/src/components/flyout/_variables.scss +1 -0
- package/src/components/flyout/index.js +2 -0
- package/src/components/image-tooltip/ImageTooltip.tsx +1 -2
- package/src/components/media-query/__tests__/useMediaQuery.test.js +48 -0
- package/src/components/media-query/__tests__/withMediaQuery.test.js +29 -0
- package/src/components/media-query/constants.js +32 -0
- package/src/components/media-query/index.js +4 -0
- package/src/components/media-query/stories/MediaQuery.stories.js +80 -0
- package/src/components/media-query/stories/MediaQuery.stories.md +29 -0
- package/src/components/media-query/types.js +29 -0
- package/src/components/media-query/useMediaQuery.js +97 -0
- package/src/components/media-query/withMediaQuery.js +23 -0
- package/src/components/modal/Modal.scss +27 -0
- package/src/components/modal/__tests__/Modal.stories.test.js +10 -0
- package/src/components/modal/__tests__/__image_snapshots__/modal-stories-test-js-components-modal-modal-looks-visually-correct-for-small-screens-when-button-is-clicked-in-story-components-modal-basic-1-snap.png +0 -0
- package/src/components/modal/__tests__/__image_snapshots__/modal-stories-test-js-components-modal-modal-looks-visually-correct-for-small-screens-when-button-is-clicked-in-story-components-modal-with-custom-backdrop-click-handler-1-snap.png +0 -0
- package/src/components/preview/previewIcons.ts +4 -0
- package/src/components/search-form/SearchForm.scss +0 -5
- package/src/components/selector-dropdown/SelectorDropdown.js +3 -3
- package/src/components/selector-dropdown/__tests__/SelectorDropdown.test.js +5 -1
- package/src/components/sidebar-toggle-button/__tests__/__snapshots__/SidebarToggleButton.test.js.snap +0 -8
- package/src/components/tab-view/Tabs.scss +0 -4
- package/src/components/tooltip/Tooltip.tsx +20 -5
- package/src/components/tooltip/__tests__/Tooltip.test.tsx +17 -4
- package/src/components/tooltip/__tests__/__snapshots__/Tooltip.test.tsx.snap +0 -2
- package/src/constants.js +1 -0
- package/src/elements/content-open-with/IconFileMap.js +0 -2
- package/src/elements/content-open-with/__tests__/ContentOpenWith.test.js +13 -13
- package/src/elements/content-open-with/__tests__/OpenWithButton.test.js +1 -1
- package/src/elements/content-open-with/__tests__/OpenWithDropdownMenu.test.js +1 -5
- package/src/elements/content-open-with/__tests__/OpenWithDropdownMenuItem.test.js +2 -2
- package/src/elements/content-open-with/__tests__/__snapshots__/ContentOpenWith.test.js.snap +5 -5
- package/src/elements/content-open-with/__tests__/__snapshots__/OpenWithButton.test.js.snap +1 -1
- package/src/elements/content-open-with/__tests__/__snapshots__/OpenWithDropdownMenu.test.js.snap +1 -11
- package/src/elements/content-open-with/__tests__/__snapshots__/OpenWithDropdownMenuItem.test.js.snap +4 -3
- package/src/elements/content-sidebar/Sidebar.js +1 -1
- package/src/elements/content-sidebar/__tests__/AddTaskButton.test.js +15 -0
- package/src/elements/content-sidebar/activity-feed/common/delete-confirmation/DeleteConfirmation.scss +3 -3
- package/src/elements/content-sidebar/activity-feed/task-form/TaskForm.js +18 -5
- package/src/elements/content-sidebar/versions/StaticVersionSidebar.js +97 -0
- package/src/elements/content-sidebar/versions/StaticVersionsSidebar.scss +67 -0
- package/src/elements/content-sidebar/versions/VersionsSidebar.js +16 -3
- package/src/elements/content-sidebar/versions/VersionsSidebar.scss +5 -0
- package/src/elements/content-sidebar/versions/VersionsSidebarContainer.js +42 -7
- package/src/elements/content-sidebar/versions/__tests__/VersionsSidebar.test.js +18 -1
- package/src/elements/content-sidebar/versions/__tests__/VersionsSidebarContainer.test.js +51 -2
- package/src/elements/content-sidebar/versions/__tests__/__snapshots__/VersionsSidebarContainer.test.js.snap +75 -0
- package/src/elements/content-sidebar/versions/flowTypes.js +1 -0
- package/src/elements/content-sidebar/versions/messages.js +28 -0
- package/src/features/classification/constants.js +2 -0
- package/src/features/classification/flowTypes.js +7 -1
- package/src/features/classification/security-controls/SecurityControls.js +3 -4
- package/src/features/classification/security-controls/SecurityControlsItem.js +20 -17
- package/src/features/classification/security-controls/SecurityControlsItem.scss +4 -0
- package/src/features/classification/security-controls/SecurityControlsModal.js +2 -2
- package/src/features/classification/security-controls/__tests__/SecurityControlsItem.test.js +10 -0
- package/src/features/classification/security-controls/__tests__/__snapshots__/SecurityControls.test.js.snap +6 -6
- package/src/features/classification/security-controls/__tests__/__snapshots__/SecurityControlsItem.test.js.snap +35 -0
- package/src/features/classification/security-controls/__tests__/__snapshots__/SecurityControlsModal.test.js.snap +2 -2
- package/src/features/classification/security-controls/__tests__/__snapshots__/utils.test.js.snap +20 -0
- package/src/features/classification/security-controls/__tests__/utils.test.js +38 -18
- package/src/features/classification/security-controls/messages.js +5 -0
- package/src/features/classification/security-controls/utils.js +51 -27
- package/src/features/collapsible-sidebar/CollapsibleSidebar.js +13 -5
- package/src/features/collapsible-sidebar/CollapsibleSidebar.scss +35 -3
- package/src/features/collapsible-sidebar/__tests__/CollapsibleSidebar.test.js +35 -0
- package/src/features/collapsible-sidebar/__tests__/__snapshots__/CollapsibleSidebar.test.js.snap +1 -0
- package/src/features/content-explorer/content-explorer/ContentExplorer.scss +1 -1
- package/src/features/content-explorer/item-list/ItemList.js +1 -0
- package/src/features/content-explorer/item-list/ItemListName.js +3 -2
- package/src/features/content-explorer/item-list/__tests__/ItemListName.test.js +16 -2
- package/src/features/header-flyout/HeaderFlyout.js +4 -8
- package/src/features/header-flyout/__tests__/__snapshots__/HeaderFlyout.test.js.snap +14 -11
- package/src/features/header-flyout/styles/HeaderFlyout.scss +54 -15
- package/src/features/header-flyout/styles/_variables.scss +4 -0
- package/src/features/message-center/components/message-center-modal/MessageCenterModal.js +1 -0
- package/src/features/metadata-instance-editor/__tests__/__snapshots__/TemplateDropdown.test.js.snap +7 -0
- package/src/features/pagination/__tests__/__snapshots__/MarkerBasedPagination.test.js.snap +0 -8
- package/src/features/pagination/__tests__/__snapshots__/OffsetBasedPagination.test.js.snap +0 -16
- package/src/features/presence/PresenceCollaborator.js +81 -0
- package/src/features/presence/PresenceCollaborator.scss +28 -0
- package/src/features/presence/PresenceCollaboratorsList.js +7 -58
- package/src/features/presence/PresenceCollaboratorsList.scss +8 -35
- package/src/features/presence/__tests__/PresenceCollaborator.test.js +36 -0
- package/src/features/presence/__tests__/PresenceCollaboratorsList.test.js +13 -57
- package/src/features/presence/__tests__/__snapshots__/Presence.test.js.snap +5 -0
- package/src/features/presence/__tests__/__snapshots__/PresenceLink.test.js.snap +3 -0
- package/src/features/query-bar/__tests__/__snapshots__/ColumnButton.test.js.snap +3 -0
- package/src/features/quick-search/QuickSearch.js +13 -1
- package/src/features/quick-search/__tests__/QuickSearch.test.js +17 -0
- package/src/features/unified-share-modal/SharedLinkSection.js +6 -27
- package/src/features/unified-share-modal/UnifiedShareForm.js +70 -14
- package/src/features/unified-share-modal/UnifiedShareModal.scss +3 -0
- package/src/features/unified-share-modal/__tests__/EmailForm.test.js +9 -0
- package/src/features/unified-share-modal/__tests__/SharedLinkSection.test.js +14 -4
- package/src/features/unified-share-modal/__tests__/UnifiedShareForm.test.js +53 -4
- package/src/features/unified-share-modal/__tests__/__snapshots__/SharedLinkSection.test.js.snap +9 -0
- package/src/features/unified-share-modal/__tests__/__snapshots__/UnifiedShareForm.test.js.snap +0 -159
- package/src/features/unified-share-modal/flowTypes.js +6 -0
- package/src/features/unified-share-modal/messages.js +10 -0
- package/src/features/unified-share-modal/utils/__tests__/mergeContacts.test.js +23 -0
- package/src/features/unified-share-modal/utils/mergeContacts.js +4 -2
- package/src/icon/content/FileXbd32.js.flow +38 -0
- package/src/icon/content/FileXbd32.stories.tsx +13 -0
- package/src/icon/content/FileXbd32.tsx +37 -0
- package/src/icon/content/FileXdw32.js.flow +38 -0
- package/src/icon/content/FileXdw32.stories.tsx +13 -0
- package/src/icon/content/FileXdw32.tsx +37 -0
- package/src/icon/content/RetentionPolicyModifiable32.js.flow +31 -0
- package/src/icon/content/RetentionPolicyModifiable32.stories.tsx +14 -0
- package/src/icon/content/RetentionPolicyModifiable32.tsx +29 -0
- package/src/icon/content/RetentionPolicyNonModifiable32.js.flow +31 -0
- package/src/icon/content/RetentionPolicyNonModifiable32.stories.tsx +14 -0
- package/src/icon/content/RetentionPolicyNonModifiable32.tsx +29 -0
- package/src/icons/adobe-sign/README.md +1 -1
- package/src/icons/avatars/UnknownUserAvatar.tsx +7 -15
- package/src/icons/file-icon/FileIcon.js.flow +2 -2
- package/src/icons/file-icon/FileIcon.tsx +8 -2
- package/src/icons/file-icon/__tests__/FileIcon.test.tsx +28 -69
- package/src/icons/file-icon/__tests__/__snapshots__/FileIcon.test.tsx.snap +48 -34
- package/src/icons/general/IconSearch.js.flow +1 -1
- package/src/icons/general/IconSearch.tsx +1 -1
- package/src/icons/general/IconSearchJuicy.js.flow +26 -0
- package/src/icons/general/IconSearchJuicy.tsx +25 -0
- package/src/icons/general/README.md +5 -0
- package/src/icons/general/__tests__/IconSearchJuicy.test.tsx +38 -0
- package/src/icons/google-docs/IconGoogle.js.flow +57 -0
- package/src/icons/google-docs/IconGoogle.tsx +50 -0
- package/src/icons/google-docs/__tests__/IconGoogle.test.tsx +44 -0
- package/src/icons/item-icon/ItemIcon.tsx +4 -0
- package/src/icons/item-icon/__tests__/ItemIcon.test.tsx +47 -115
- package/src/icons/item-icon/__tests__/__snapshots__/ItemIcon.test.tsx.snap +229 -229
- package/src/icons/microsoft-office/IconOffice.js.flow +45 -0
- package/src/icons/microsoft-office/IconOffice.tsx +38 -0
- package/src/icons/microsoft-office/__tests__/IconOffice.test.tsx +44 -0
- package/src/illustration/EmailVerification140.js.flow +102 -0
- package/src/illustration/EmailVerification140.stories.tsx +13 -0
- package/src/illustration/EmailVerification140.tsx +100 -0
- package/src/styles/_variables.scss +1 -0
- package/src/styles/common/_forms.scss +6 -0
- package/src/styles/constants/_layout.scss +3 -0
- package/src/styles/constants/_media-queries.scss +15 -0
- package/src/styles/variables.js +10 -1
- package/src/styles/variables.json +10 -1
- package/src/styles/variables.ts +9 -0
- package/src/utils/Browser.js +10 -0
- package/src/utils/validators.js +25 -3
package/i18n/en-CA.js
CHANGED
|
@@ -269,6 +269,7 @@ export default {
|
|
|
269
269
|
"be.sidebarSkillsErrorContent": "An error has occurred while updating skills. Please refresh the page and try again.",
|
|
270
270
|
"be.sidebarSkillsErrorTitle": "Skills Error",
|
|
271
271
|
"be.sidebarSkillsTitle": "Skills",
|
|
272
|
+
"be.sidebarVersions.accessError": "You don't have access to versioning",
|
|
272
273
|
"be.sidebarVersions.current": "Current Version",
|
|
273
274
|
"be.sidebarVersions.delete": "Delete",
|
|
274
275
|
"be.sidebarVersions.deleteError": "File version could not be deleted.",
|
|
@@ -279,6 +280,7 @@ export default {
|
|
|
279
280
|
"be.sidebarVersions.empty": "No prior versions are available for this file.",
|
|
280
281
|
"be.sidebarVersions.fetchError": "File versions could not be retrieved.",
|
|
281
282
|
"be.sidebarVersions.fileRequestDisplayName": "File Request",
|
|
283
|
+
"be.sidebarVersions.notAvailable": "Sorry, version history is not available with your current account plan. To access versioning, select from one of our paid plans.",
|
|
282
284
|
"be.sidebarVersions.preview": "Preview",
|
|
283
285
|
"be.sidebarVersions.priorWeek": "Last Week",
|
|
284
286
|
"be.sidebarVersions.promote": "Make Current",
|
|
@@ -292,6 +294,8 @@ export default {
|
|
|
292
294
|
"be.sidebarVersions.title": "Version History",
|
|
293
295
|
"be.sidebarVersions.today": "Today",
|
|
294
296
|
"be.sidebarVersions.toggle": "Toggle Actions Menu",
|
|
297
|
+
"be.sidebarVersions.upgradeButton": "Upgrade",
|
|
298
|
+
"be.sidebarVersions.upgradeLink": "Upgrade Now",
|
|
295
299
|
"be.sidebarVersions.uploadedBy": "Uploaded by {name}",
|
|
296
300
|
"be.sidebarVersions.versionLimitExceeded": "You are limited to the last {versionLimit, number} {versionLimit, plural, one {version} other {versions}}.",
|
|
297
301
|
"be.sidebarVersions.versionMaxEntries": "Version history is limited to the last {maxVersions} entries.",
|
|
@@ -300,6 +304,7 @@ export default {
|
|
|
300
304
|
"be.sidebarVersions.versionRetentionDelete": "Will be deleted {time} by retention policy.",
|
|
301
305
|
"be.sidebarVersions.versionRetentionIndefinite": "Retained indefinitely by retention policy.",
|
|
302
306
|
"be.sidebarVersions.versionRetentionRemove": "Retention policy expires on {time}.",
|
|
307
|
+
"be.sidebarVersions.versionUpsell": "Sorry, version history is not available with your current account plan. To access versioning, select from one of our paid plans.",
|
|
303
308
|
"be.sidebarVersions.versionUserUnknown": "Unknown",
|
|
304
309
|
"be.sidebarVersions.yesterday": "Yesterday",
|
|
305
310
|
"be.sizeASC": "Size: Smallest → Largest",
|
|
@@ -441,6 +446,9 @@ export default {
|
|
|
441
446
|
"boxui.core.send": "Send",
|
|
442
447
|
"boxui.datePicker.chooseDate": "Choose Date",
|
|
443
448
|
"boxui.datePicker.dateClearButton": "Clear Date",
|
|
449
|
+
"boxui.datePicker.dateInputMaxError": "Please enter a date before {maxLocaleDate}",
|
|
450
|
+
"boxui.datePicker.dateInputMinError": "Please enter a date after {minLocaleDate}",
|
|
451
|
+
"boxui.datePicker.dateInputRangeError": "Please enter a date between {minLocaleDate} and {maxLocaleDate}",
|
|
444
452
|
"boxui.datePicker.iconAlertText": "Invalid Date",
|
|
445
453
|
"boxui.draftjs.mentionSelector.noUsersFound": "No users found",
|
|
446
454
|
"boxui.draftjs.mentionSelector.startMention": "Mention someone to notify them",
|
|
@@ -614,6 +622,7 @@ export default {
|
|
|
614
622
|
"boxui.securityControls.shortSharing": "Sharing restriction applies",
|
|
615
623
|
"boxui.securityControls.shortSharingApp": "Sharing and app restrictions apply",
|
|
616
624
|
"boxui.securityControls.shortSharingDownload": "Sharing and download restrictions apply",
|
|
625
|
+
"boxui.securityControls.shortWatermarking": "Watermarking applies",
|
|
617
626
|
"boxui.securityControls.viewAll": "View All",
|
|
618
627
|
"boxui.securityControls.webDownloadExternal": "Download restricted on web for external users.",
|
|
619
628
|
"boxui.securityControls.webDownloadExternalOwners": "Download restricted on web, except Owners/Co-Owners. Also restricted for external users.",
|
|
@@ -818,6 +827,8 @@ export default {
|
|
|
818
827
|
"boxui.unifiedShare.suggestedCollabsTitle": "Suggested",
|
|
819
828
|
"boxui.unifiedShare.upgradeGetMoreAccessControlsDescription": "62% of customers on your plan {upgradeGetMoreAccessControlsLink} to manage collaborators’ access and permission settings",
|
|
820
829
|
"boxui.unifiedShare.upgradeGetMoreAccessControlsLink": "upgrade",
|
|
830
|
+
"boxui.unifiedShare.upgradeInlineNoticeTitle": "Upgrade Your Plan",
|
|
831
|
+
"boxui.unifiedShare.upgradeLink": "Upgrade now",
|
|
821
832
|
"boxui.unifiedShare.uploaderLevelButtonLabel": "Invite as Uploader",
|
|
822
833
|
"boxui.unifiedShare.uploaderLevelDescription": "Upload only",
|
|
823
834
|
"boxui.unifiedShare.uploaderLevelText": "Uploader",
|
|
@@ -830,6 +841,7 @@ export default {
|
|
|
830
841
|
"boxui.validation.URLError": "Invalid URL",
|
|
831
842
|
"boxui.validation.emailError": "Invalid Email Address",
|
|
832
843
|
"boxui.validation.genericError": "Invalid Input",
|
|
844
|
+
"boxui.validation.invalidDateError": "Invalid Date",
|
|
833
845
|
"boxui.validation.invalidUserError": "Invalid User",
|
|
834
846
|
"boxui.validation.requiredError": "Required Field",
|
|
835
847
|
"boxui.validation.tooLongError": "Input cannot exceed {max} characters",
|
package/i18n/en-CA.properties
CHANGED
|
@@ -538,6 +538,8 @@ be.sidebarSkillsErrorContent = An error has occurred while updating skills. Plea
|
|
|
538
538
|
be.sidebarSkillsErrorTitle = Skills Error
|
|
539
539
|
# Title for the preview details skills.
|
|
540
540
|
be.sidebarSkillsTitle = Skills
|
|
541
|
+
# Heading for inline error messages with upsell.
|
|
542
|
+
be.sidebarVersions.accessError = You don't have access to versioning
|
|
541
543
|
# Label for the current version item in the version history list.
|
|
542
544
|
be.sidebarVersions.current = Current Version
|
|
543
545
|
# Label for the version delete action.
|
|
@@ -558,6 +560,8 @@ be.sidebarVersions.empty = No prior versions are available for this file.
|
|
|
558
560
|
be.sidebarVersions.fetchError = File versions could not be retrieved.
|
|
559
561
|
# name of the File Request feature used to translate when a File Request is uploaded by the service
|
|
560
562
|
be.sidebarVersions.fileRequestDisplayName = File Request
|
|
563
|
+
# Error message with upsell for the versions fetch call for users who dont have the version feature.
|
|
564
|
+
be.sidebarVersions.notAvailable = Sorry, version history is not available with your current account plan. To access versioning, select from one of our paid plans.
|
|
561
565
|
# Label for the version preview action.
|
|
562
566
|
be.sidebarVersions.preview = Preview
|
|
563
567
|
# Header to display for group of versions created in the prior week
|
|
@@ -584,6 +588,10 @@ be.sidebarVersions.title = Version History
|
|
|
584
588
|
be.sidebarVersions.today = Today
|
|
585
589
|
# Label for the version actions dropdown menu toggle button.
|
|
586
590
|
be.sidebarVersions.toggle = Toggle Actions Menu
|
|
591
|
+
# Text on the upgrade button shown when user does not have access to Version History
|
|
592
|
+
be.sidebarVersions.upgradeButton = Upgrade
|
|
593
|
+
# Text on the upgrade button shown when user does not have access to Version History
|
|
594
|
+
be.sidebarVersions.upgradeLink = Upgrade Now
|
|
587
595
|
# Message displayed for an uploaded version. {name} is the user who performed the action.
|
|
588
596
|
be.sidebarVersions.uploadedBy = Uploaded by {name}
|
|
589
597
|
# Text displayed if a version exceeds the user's maximum allowed version count
|
|
@@ -600,6 +608,8 @@ be.sidebarVersions.versionRetentionDelete = Will be deleted {time} by retention
|
|
|
600
608
|
be.sidebarVersions.versionRetentionIndefinite = Retained indefinitely by retention policy.
|
|
601
609
|
# Message describing when the version retention policy will expire.
|
|
602
610
|
be.sidebarVersions.versionRetentionRemove = Retention policy expires on {time}.
|
|
611
|
+
# Upgrade message shown when user does not have access to Version History
|
|
612
|
+
be.sidebarVersions.versionUpsell = Sorry, version history is not available with your current account plan. To access versioning, select from one of our paid plans.
|
|
603
613
|
# Name displayed for unknown or deleted users.
|
|
604
614
|
be.sidebarVersions.versionUserUnknown = Unknown
|
|
605
615
|
# Header to display for group of versions created today
|
|
@@ -882,6 +892,12 @@ boxui.core.send = Send
|
|
|
882
892
|
boxui.datePicker.chooseDate = Choose Date
|
|
883
893
|
# Button for clearing date picker
|
|
884
894
|
boxui.datePicker.dateClearButton = Clear Date
|
|
895
|
+
# Error message when date is later than the maximum date
|
|
896
|
+
boxui.datePicker.dateInputMaxError = Please enter a date before {maxLocaleDate}
|
|
897
|
+
# Error message when date is earlier than the minimum date
|
|
898
|
+
boxui.datePicker.dateInputMinError = Please enter a date after {minLocaleDate}
|
|
899
|
+
# Error message when date is out of the minimum and maximum range
|
|
900
|
+
boxui.datePicker.dateInputRangeError = Please enter a date between {minLocaleDate} and {maxLocaleDate}
|
|
885
901
|
# Date entered is invalid
|
|
886
902
|
boxui.datePicker.iconAlertText = Invalid Date
|
|
887
903
|
# Message for screenReader users when trying to tag a user but there are no matches
|
|
@@ -1228,6 +1244,8 @@ boxui.securityControls.shortSharing = Sharing restriction applies
|
|
|
1228
1244
|
boxui.securityControls.shortSharingApp = Sharing and app restrictions apply
|
|
1229
1245
|
# Short summary displayed for classification when both sharing and download restrictions are applied to it
|
|
1230
1246
|
boxui.securityControls.shortSharingDownload = Sharing and download restrictions apply
|
|
1247
|
+
# Short summary displayed for classification when watermarking is applied to it
|
|
1248
|
+
boxui.securityControls.shortWatermarking = Watermarking applies
|
|
1231
1249
|
# Button to display security controls modal
|
|
1232
1250
|
boxui.securityControls.viewAll = View All
|
|
1233
1251
|
# Bullet point that summarizes web download restrictions applied to classification, when restriction applies to external users
|
|
@@ -1636,6 +1654,10 @@ boxui.unifiedShare.suggestedCollabsTitle = Suggested
|
|
|
1636
1654
|
boxui.unifiedShare.upgradeGetMoreAccessControlsDescription = 62% of customers on your plan {upgradeGetMoreAccessControlsLink} to manage collaborators’ access and permission settings
|
|
1637
1655
|
# Label for link to upgrade to get more access controls for inviting collaborators to an item
|
|
1638
1656
|
boxui.unifiedShare.upgradeGetMoreAccessControlsLink = upgrade
|
|
1657
|
+
# Title for the upgrade inline notice for upgrade user plan
|
|
1658
|
+
boxui.unifiedShare.upgradeInlineNoticeTitle = Upgrade Your Plan
|
|
1659
|
+
# Label for link to upgrade account
|
|
1660
|
+
boxui.unifiedShare.upgradeLink = Upgrade now
|
|
1639
1661
|
# Text used in button label to describe permission level - uploader
|
|
1640
1662
|
boxui.unifiedShare.uploaderLevelButtonLabel = Invite as Uploader
|
|
1641
1663
|
# Description for Uploader permission level in invitee permission dropdown
|
|
@@ -1660,6 +1682,8 @@ boxui.validation.URLError = Invalid URL
|
|
|
1660
1682
|
boxui.validation.emailError = Invalid Email Address
|
|
1661
1683
|
# Generic error message for a field is invalid
|
|
1662
1684
|
boxui.validation.genericError = Invalid Input
|
|
1685
|
+
# Error message for when an invalid Date is entered
|
|
1686
|
+
boxui.validation.invalidDateError = Invalid Date
|
|
1663
1687
|
# Error message for when an invalid user is entered
|
|
1664
1688
|
boxui.validation.invalidUserError = Invalid User
|
|
1665
1689
|
# Error message for when a required field is missing
|
package/i18n/en-GB.js
CHANGED
|
@@ -269,6 +269,7 @@ export default {
|
|
|
269
269
|
"be.sidebarSkillsErrorContent": "An error has occurred while updating skills. Please refresh the page and try again.",
|
|
270
270
|
"be.sidebarSkillsErrorTitle": "Skills error",
|
|
271
271
|
"be.sidebarSkillsTitle": "Skills",
|
|
272
|
+
"be.sidebarVersions.accessError": "You don't have access to versioning",
|
|
272
273
|
"be.sidebarVersions.current": "Current version",
|
|
273
274
|
"be.sidebarVersions.delete": "Delete",
|
|
274
275
|
"be.sidebarVersions.deleteError": "File version could not be deleted.",
|
|
@@ -279,6 +280,7 @@ export default {
|
|
|
279
280
|
"be.sidebarVersions.empty": "No prior versions are available for this file.",
|
|
280
281
|
"be.sidebarVersions.fetchError": "File versions could not be retrieved.",
|
|
281
282
|
"be.sidebarVersions.fileRequestDisplayName": "File request",
|
|
283
|
+
"be.sidebarVersions.notAvailable": "Sorry, version history is not available with your current account plan. To access versioning, select from one of our paid plans.",
|
|
282
284
|
"be.sidebarVersions.preview": "Preview",
|
|
283
285
|
"be.sidebarVersions.priorWeek": "Last week",
|
|
284
286
|
"be.sidebarVersions.promote": "Make current",
|
|
@@ -292,6 +294,8 @@ export default {
|
|
|
292
294
|
"be.sidebarVersions.title": "Version history",
|
|
293
295
|
"be.sidebarVersions.today": "Today",
|
|
294
296
|
"be.sidebarVersions.toggle": "Toggle actions menu",
|
|
297
|
+
"be.sidebarVersions.upgradeButton": "Upgrade",
|
|
298
|
+
"be.sidebarVersions.upgradeLink": "Upgrade now",
|
|
295
299
|
"be.sidebarVersions.uploadedBy": "Uploaded by {name}",
|
|
296
300
|
"be.sidebarVersions.versionLimitExceeded": "You are limited to the last {versionLimit, number} {versionLimit, plural, one {version} other {versions}}.",
|
|
297
301
|
"be.sidebarVersions.versionMaxEntries": "Version history is limited to the last {maxVersions} entries.",
|
|
@@ -300,6 +304,7 @@ export default {
|
|
|
300
304
|
"be.sidebarVersions.versionRetentionDelete": "Will be deleted {time} by retention policy.",
|
|
301
305
|
"be.sidebarVersions.versionRetentionIndefinite": "Retained indefinitely by retention policy.",
|
|
302
306
|
"be.sidebarVersions.versionRetentionRemove": "Retention policy expires on {time}.",
|
|
307
|
+
"be.sidebarVersions.versionUpsell": "Sorry, version history is not available with your current account plan. To access versioning, select from one of our paid plans.",
|
|
303
308
|
"be.sidebarVersions.versionUserUnknown": "Unknown",
|
|
304
309
|
"be.sidebarVersions.yesterday": "Yesterday",
|
|
305
310
|
"be.sizeASC": "Size: smallest → largest",
|
|
@@ -441,6 +446,9 @@ export default {
|
|
|
441
446
|
"boxui.core.send": "Send",
|
|
442
447
|
"boxui.datePicker.chooseDate": "Choose date",
|
|
443
448
|
"boxui.datePicker.dateClearButton": "Clear date",
|
|
449
|
+
"boxui.datePicker.dateInputMaxError": "Please enter a date before {maxLocaleDate}",
|
|
450
|
+
"boxui.datePicker.dateInputMinError": "Please enter a date after {minLocaleDate}",
|
|
451
|
+
"boxui.datePicker.dateInputRangeError": "Please enter a date between {minLocaleDate} and {maxLocaleDate}",
|
|
444
452
|
"boxui.datePicker.iconAlertText": "Invalid date",
|
|
445
453
|
"boxui.draftjs.mentionSelector.noUsersFound": "No users found",
|
|
446
454
|
"boxui.draftjs.mentionSelector.startMention": "Mention someone to notify them",
|
|
@@ -614,6 +622,7 @@ export default {
|
|
|
614
622
|
"boxui.securityControls.shortSharing": "Sharing restriction applies",
|
|
615
623
|
"boxui.securityControls.shortSharingApp": "Sharing and app restrictions apply",
|
|
616
624
|
"boxui.securityControls.shortSharingDownload": "Sharing and download restrictions apply",
|
|
625
|
+
"boxui.securityControls.shortWatermarking": "Watermarking applies",
|
|
617
626
|
"boxui.securityControls.viewAll": "View all",
|
|
618
627
|
"boxui.securityControls.webDownloadExternal": "Download restricted on web for external users.",
|
|
619
628
|
"boxui.securityControls.webDownloadExternalOwners": "Download restricted on web, except Owners/Co-Owners. Also restricted for external users.",
|
|
@@ -818,6 +827,8 @@ export default {
|
|
|
818
827
|
"boxui.unifiedShare.suggestedCollabsTitle": "Suggested",
|
|
819
828
|
"boxui.unifiedShare.upgradeGetMoreAccessControlsDescription": "62% of customers on your plan {upgradeGetMoreAccessControlsLink} to manage collaborators' access and permission settings",
|
|
820
829
|
"boxui.unifiedShare.upgradeGetMoreAccessControlsLink": "upgrade",
|
|
830
|
+
"boxui.unifiedShare.upgradeInlineNoticeTitle": "Upgrade your plan",
|
|
831
|
+
"boxui.unifiedShare.upgradeLink": "Upgrade now",
|
|
821
832
|
"boxui.unifiedShare.uploaderLevelButtonLabel": "Invite as uploader",
|
|
822
833
|
"boxui.unifiedShare.uploaderLevelDescription": "Upload only",
|
|
823
834
|
"boxui.unifiedShare.uploaderLevelText": "Uploader",
|
|
@@ -830,6 +841,7 @@ export default {
|
|
|
830
841
|
"boxui.validation.URLError": "Invalid URL",
|
|
831
842
|
"boxui.validation.emailError": "Invalid email address",
|
|
832
843
|
"boxui.validation.genericError": "Invalid input",
|
|
844
|
+
"boxui.validation.invalidDateError": "Invalid date",
|
|
833
845
|
"boxui.validation.invalidUserError": "Invalid user",
|
|
834
846
|
"boxui.validation.requiredError": "Required field",
|
|
835
847
|
"boxui.validation.tooLongError": "Input cannot exceed {max} characters",
|
package/i18n/en-GB.properties
CHANGED
|
@@ -538,6 +538,8 @@ be.sidebarSkillsErrorContent = An error has occurred while updating skills. Plea
|
|
|
538
538
|
be.sidebarSkillsErrorTitle = Skills error
|
|
539
539
|
# Title for the preview details skills.
|
|
540
540
|
be.sidebarSkillsTitle = Skills
|
|
541
|
+
# Heading for inline error messages with upsell.
|
|
542
|
+
be.sidebarVersions.accessError = You don't have access to versioning
|
|
541
543
|
# Label for the current version item in the version history list.
|
|
542
544
|
be.sidebarVersions.current = Current version
|
|
543
545
|
# Label for the version delete action.
|
|
@@ -558,6 +560,8 @@ be.sidebarVersions.empty = No prior versions are available for this file.
|
|
|
558
560
|
be.sidebarVersions.fetchError = File versions could not be retrieved.
|
|
559
561
|
# name of the File Request feature used to translate when a File Request is uploaded by the service
|
|
560
562
|
be.sidebarVersions.fileRequestDisplayName = File request
|
|
563
|
+
# Error message with upsell for the versions fetch call for users who dont have the version feature.
|
|
564
|
+
be.sidebarVersions.notAvailable = Sorry, version history is not available with your current account plan. To access versioning, select from one of our paid plans.
|
|
561
565
|
# Label for the version preview action.
|
|
562
566
|
be.sidebarVersions.preview = Preview
|
|
563
567
|
# Header to display for group of versions created in the prior week
|
|
@@ -584,6 +588,10 @@ be.sidebarVersions.title = Version history
|
|
|
584
588
|
be.sidebarVersions.today = Today
|
|
585
589
|
# Label for the version actions dropdown menu toggle button.
|
|
586
590
|
be.sidebarVersions.toggle = Toggle actions menu
|
|
591
|
+
# Text on the upgrade button shown when user does not have access to Version History
|
|
592
|
+
be.sidebarVersions.upgradeButton = Upgrade
|
|
593
|
+
# Text on the upgrade button shown when user does not have access to Version History
|
|
594
|
+
be.sidebarVersions.upgradeLink = Upgrade now
|
|
587
595
|
# Message displayed for an uploaded version. {name} is the user who performed the action.
|
|
588
596
|
be.sidebarVersions.uploadedBy = Uploaded by {name}
|
|
589
597
|
# Text displayed if a version exceeds the user's maximum allowed version count
|
|
@@ -600,6 +608,8 @@ be.sidebarVersions.versionRetentionDelete = Will be deleted {time} by retention
|
|
|
600
608
|
be.sidebarVersions.versionRetentionIndefinite = Retained indefinitely by retention policy.
|
|
601
609
|
# Message describing when the version retention policy will expire.
|
|
602
610
|
be.sidebarVersions.versionRetentionRemove = Retention policy expires on {time}.
|
|
611
|
+
# Upgrade message shown when user does not have access to Version History
|
|
612
|
+
be.sidebarVersions.versionUpsell = Sorry, version history is not available with your current account plan. To access versioning, select from one of our paid plans.
|
|
603
613
|
# Name displayed for unknown or deleted users.
|
|
604
614
|
be.sidebarVersions.versionUserUnknown = Unknown
|
|
605
615
|
# Header to display for group of versions created today
|
|
@@ -882,6 +892,12 @@ boxui.core.send = Send
|
|
|
882
892
|
boxui.datePicker.chooseDate = Choose date
|
|
883
893
|
# Button for clearing date picker
|
|
884
894
|
boxui.datePicker.dateClearButton = Clear date
|
|
895
|
+
# Error message when date is later than the maximum date
|
|
896
|
+
boxui.datePicker.dateInputMaxError = Please enter a date before {maxLocaleDate}
|
|
897
|
+
# Error message when date is earlier than the minimum date
|
|
898
|
+
boxui.datePicker.dateInputMinError = Please enter a date after {minLocaleDate}
|
|
899
|
+
# Error message when date is out of the minimum and maximum range
|
|
900
|
+
boxui.datePicker.dateInputRangeError = Please enter a date between {minLocaleDate} and {maxLocaleDate}
|
|
885
901
|
# Date entered is invalid
|
|
886
902
|
boxui.datePicker.iconAlertText = Invalid date
|
|
887
903
|
# Message for screenReader users when trying to tag a user but there are no matches
|
|
@@ -1228,6 +1244,8 @@ boxui.securityControls.shortSharing = Sharing restriction applies
|
|
|
1228
1244
|
boxui.securityControls.shortSharingApp = Sharing and app restrictions apply
|
|
1229
1245
|
# Short summary displayed for classification when both sharing and download restrictions are applied to it
|
|
1230
1246
|
boxui.securityControls.shortSharingDownload = Sharing and download restrictions apply
|
|
1247
|
+
# Short summary displayed for classification when watermarking is applied to it
|
|
1248
|
+
boxui.securityControls.shortWatermarking = Watermarking applies
|
|
1231
1249
|
# Button to display security controls modal
|
|
1232
1250
|
boxui.securityControls.viewAll = View all
|
|
1233
1251
|
# Bullet point that summarizes web download restrictions applied to classification, when restriction applies to external users
|
|
@@ -1636,6 +1654,10 @@ boxui.unifiedShare.suggestedCollabsTitle = Suggested
|
|
|
1636
1654
|
boxui.unifiedShare.upgradeGetMoreAccessControlsDescription = 62% of customers on your plan {upgradeGetMoreAccessControlsLink} to manage collaborators' access and permission settings
|
|
1637
1655
|
# Label for link to upgrade to get more access controls for inviting collaborators to an item
|
|
1638
1656
|
boxui.unifiedShare.upgradeGetMoreAccessControlsLink = upgrade
|
|
1657
|
+
# Title for the upgrade inline notice for upgrade user plan
|
|
1658
|
+
boxui.unifiedShare.upgradeInlineNoticeTitle = Upgrade your plan
|
|
1659
|
+
# Label for link to upgrade account
|
|
1660
|
+
boxui.unifiedShare.upgradeLink = Upgrade now
|
|
1639
1661
|
# Text used in button label to describe permission level - uploader
|
|
1640
1662
|
boxui.unifiedShare.uploaderLevelButtonLabel = Invite as uploader
|
|
1641
1663
|
# Description for Uploader permission level in invitee permission dropdown
|
|
@@ -1660,6 +1682,8 @@ boxui.validation.URLError = Invalid URL
|
|
|
1660
1682
|
boxui.validation.emailError = Invalid email address
|
|
1661
1683
|
# Generic error message for a field is invalid
|
|
1662
1684
|
boxui.validation.genericError = Invalid input
|
|
1685
|
+
# Error message for when an invalid Date is entered
|
|
1686
|
+
boxui.validation.invalidDateError = Invalid date
|
|
1663
1687
|
# Error message for when an invalid user is entered
|
|
1664
1688
|
boxui.validation.invalidUserError = Invalid user
|
|
1665
1689
|
# Error message for when a required field is missing
|
package/i18n/en-US.js
CHANGED
|
@@ -269,6 +269,7 @@ export default {
|
|
|
269
269
|
"be.sidebarSkillsErrorContent": "An error has occurred while updating skills. Please refresh the page and try again.",
|
|
270
270
|
"be.sidebarSkillsErrorTitle": "Skills Error",
|
|
271
271
|
"be.sidebarSkillsTitle": "Skills",
|
|
272
|
+
"be.sidebarVersions.accessError": "You don't have access to versioning",
|
|
272
273
|
"be.sidebarVersions.current": "Current Version",
|
|
273
274
|
"be.sidebarVersions.delete": "Delete",
|
|
274
275
|
"be.sidebarVersions.deleteError": "File version could not be deleted.",
|
|
@@ -279,6 +280,7 @@ export default {
|
|
|
279
280
|
"be.sidebarVersions.empty": "No prior versions are available for this file.",
|
|
280
281
|
"be.sidebarVersions.fetchError": "File versions could not be retrieved.",
|
|
281
282
|
"be.sidebarVersions.fileRequestDisplayName": "File Request",
|
|
283
|
+
"be.sidebarVersions.notAvailable": "Sorry, version history is not available with your current account plan. To access versioning, select from one of our paid plans.",
|
|
282
284
|
"be.sidebarVersions.preview": "Preview",
|
|
283
285
|
"be.sidebarVersions.priorWeek": "Last Week",
|
|
284
286
|
"be.sidebarVersions.promote": "Make Current",
|
|
@@ -292,6 +294,8 @@ export default {
|
|
|
292
294
|
"be.sidebarVersions.title": "Version History",
|
|
293
295
|
"be.sidebarVersions.today": "Today",
|
|
294
296
|
"be.sidebarVersions.toggle": "Toggle Actions Menu",
|
|
297
|
+
"be.sidebarVersions.upgradeButton": "Upgrade",
|
|
298
|
+
"be.sidebarVersions.upgradeLink": "Upgrade Now",
|
|
295
299
|
"be.sidebarVersions.uploadedBy": "Uploaded by {name}",
|
|
296
300
|
"be.sidebarVersions.versionLimitExceeded": "You are limited to the last {versionLimit, number} {versionLimit, plural, one {version} other {versions}}.",
|
|
297
301
|
"be.sidebarVersions.versionMaxEntries": "Version history is limited to the last {maxVersions} entries.",
|
|
@@ -300,6 +304,7 @@ export default {
|
|
|
300
304
|
"be.sidebarVersions.versionRetentionDelete": "Will be deleted {time} by retention policy.",
|
|
301
305
|
"be.sidebarVersions.versionRetentionIndefinite": "Retained indefinitely by retention policy.",
|
|
302
306
|
"be.sidebarVersions.versionRetentionRemove": "Retention policy expires on {time}.",
|
|
307
|
+
"be.sidebarVersions.versionUpsell": "Sorry, version history is not available with your current account plan. To access versioning, select from one of our paid plans.",
|
|
303
308
|
"be.sidebarVersions.versionUserUnknown": "Unknown",
|
|
304
309
|
"be.sidebarVersions.yesterday": "Yesterday",
|
|
305
310
|
"be.sizeASC": "Size: Smallest → Largest",
|
|
@@ -441,6 +446,9 @@ export default {
|
|
|
441
446
|
"boxui.core.send": "Send",
|
|
442
447
|
"boxui.datePicker.chooseDate": "Choose Date",
|
|
443
448
|
"boxui.datePicker.dateClearButton": "Clear Date",
|
|
449
|
+
"boxui.datePicker.dateInputMaxError": "Please enter a date before {maxLocaleDate}",
|
|
450
|
+
"boxui.datePicker.dateInputMinError": "Please enter a date after {minLocaleDate}",
|
|
451
|
+
"boxui.datePicker.dateInputRangeError": "Please enter a date between {minLocaleDate} and {maxLocaleDate}",
|
|
444
452
|
"boxui.datePicker.iconAlertText": "Invalid Date",
|
|
445
453
|
"boxui.draftjs.mentionSelector.noUsersFound": "No users found",
|
|
446
454
|
"boxui.draftjs.mentionSelector.startMention": "Mention someone to notify them",
|
|
@@ -614,6 +622,7 @@ export default {
|
|
|
614
622
|
"boxui.securityControls.shortSharing": "Sharing restriction applies",
|
|
615
623
|
"boxui.securityControls.shortSharingApp": "Sharing and app restrictions apply",
|
|
616
624
|
"boxui.securityControls.shortSharingDownload": "Sharing and download restrictions apply",
|
|
625
|
+
"boxui.securityControls.shortWatermarking": "Watermarking applies",
|
|
617
626
|
"boxui.securityControls.viewAll": "View All",
|
|
618
627
|
"boxui.securityControls.webDownloadExternal": "Download restricted on web for external users.",
|
|
619
628
|
"boxui.securityControls.webDownloadExternalOwners": "Download restricted on web, except Owners/Co-Owners. Also restricted for external users.",
|
|
@@ -818,6 +827,8 @@ export default {
|
|
|
818
827
|
"boxui.unifiedShare.suggestedCollabsTitle": "Suggested",
|
|
819
828
|
"boxui.unifiedShare.upgradeGetMoreAccessControlsDescription": "62% of customers on your plan {upgradeGetMoreAccessControlsLink} to manage collaborators’ access and permission settings",
|
|
820
829
|
"boxui.unifiedShare.upgradeGetMoreAccessControlsLink": "upgrade",
|
|
830
|
+
"boxui.unifiedShare.upgradeInlineNoticeTitle": "Upgrade Your Plan",
|
|
831
|
+
"boxui.unifiedShare.upgradeLink": "Upgrade now",
|
|
821
832
|
"boxui.unifiedShare.uploaderLevelButtonLabel": "Invite as Uploader",
|
|
822
833
|
"boxui.unifiedShare.uploaderLevelDescription": "Upload only",
|
|
823
834
|
"boxui.unifiedShare.uploaderLevelText": "Uploader",
|
|
@@ -830,6 +841,7 @@ export default {
|
|
|
830
841
|
"boxui.validation.URLError": "Invalid URL",
|
|
831
842
|
"boxui.validation.emailError": "Invalid Email Address",
|
|
832
843
|
"boxui.validation.genericError": "Invalid Input",
|
|
844
|
+
"boxui.validation.invalidDateError": "Invalid Date",
|
|
833
845
|
"boxui.validation.invalidUserError": "Invalid User",
|
|
834
846
|
"boxui.validation.requiredError": "Required Field",
|
|
835
847
|
"boxui.validation.tooLongError": "Input cannot exceed {max} characters",
|
package/i18n/en-US.properties
CHANGED
|
@@ -538,6 +538,8 @@ be.sidebarSkillsErrorContent = An error has occurred while updating skills. Plea
|
|
|
538
538
|
be.sidebarSkillsErrorTitle = Skills Error
|
|
539
539
|
# Title for the preview details skills.
|
|
540
540
|
be.sidebarSkillsTitle = Skills
|
|
541
|
+
# Heading for inline error messages with upsell.
|
|
542
|
+
be.sidebarVersions.accessError = You don't have access to versioning
|
|
541
543
|
# Label for the current version item in the version history list.
|
|
542
544
|
be.sidebarVersions.current = Current Version
|
|
543
545
|
# Label for the version delete action.
|
|
@@ -558,6 +560,8 @@ be.sidebarVersions.empty = No prior versions are available for this file.
|
|
|
558
560
|
be.sidebarVersions.fetchError = File versions could not be retrieved.
|
|
559
561
|
# name of the File Request feature used to translate when a File Request is uploaded by the service
|
|
560
562
|
be.sidebarVersions.fileRequestDisplayName = File Request
|
|
563
|
+
# Error message with upsell for the versions fetch call for users who dont have the version feature.
|
|
564
|
+
be.sidebarVersions.notAvailable = Sorry, version history is not available with your current account plan. To access versioning, select from one of our paid plans.
|
|
561
565
|
# Label for the version preview action.
|
|
562
566
|
be.sidebarVersions.preview = Preview
|
|
563
567
|
# Header to display for group of versions created in the prior week
|
|
@@ -584,6 +588,10 @@ be.sidebarVersions.title = Version History
|
|
|
584
588
|
be.sidebarVersions.today = Today
|
|
585
589
|
# Label for the version actions dropdown menu toggle button.
|
|
586
590
|
be.sidebarVersions.toggle = Toggle Actions Menu
|
|
591
|
+
# Text on the upgrade button shown when user does not have access to Version History
|
|
592
|
+
be.sidebarVersions.upgradeButton = Upgrade
|
|
593
|
+
# Text on the upgrade button shown when user does not have access to Version History
|
|
594
|
+
be.sidebarVersions.upgradeLink = Upgrade Now
|
|
587
595
|
# Message displayed for an uploaded version. {name} is the user who performed the action.
|
|
588
596
|
be.sidebarVersions.uploadedBy = Uploaded by {name}
|
|
589
597
|
# Text displayed if a version exceeds the user's maximum allowed version count
|
|
@@ -600,6 +608,8 @@ be.sidebarVersions.versionRetentionDelete = Will be deleted {time} by retention
|
|
|
600
608
|
be.sidebarVersions.versionRetentionIndefinite = Retained indefinitely by retention policy.
|
|
601
609
|
# Message describing when the version retention policy will expire.
|
|
602
610
|
be.sidebarVersions.versionRetentionRemove = Retention policy expires on {time}.
|
|
611
|
+
# Upgrade message shown when user does not have access to Version History
|
|
612
|
+
be.sidebarVersions.versionUpsell = Sorry, version history is not available with your current account plan. To access versioning, select from one of our paid plans.
|
|
603
613
|
# Name displayed for unknown or deleted users.
|
|
604
614
|
be.sidebarVersions.versionUserUnknown = Unknown
|
|
605
615
|
# Header to display for group of versions created today
|
|
@@ -882,6 +892,12 @@ boxui.core.send = Send
|
|
|
882
892
|
boxui.datePicker.chooseDate = Choose Date
|
|
883
893
|
# Button for clearing date picker
|
|
884
894
|
boxui.datePicker.dateClearButton = Clear Date
|
|
895
|
+
# Error message when date is later than the maximum date
|
|
896
|
+
boxui.datePicker.dateInputMaxError = Please enter a date before {maxLocaleDate}
|
|
897
|
+
# Error message when date is earlier than the minimum date
|
|
898
|
+
boxui.datePicker.dateInputMinError = Please enter a date after {minLocaleDate}
|
|
899
|
+
# Error message when date is out of the minimum and maximum range
|
|
900
|
+
boxui.datePicker.dateInputRangeError = Please enter a date between {minLocaleDate} and {maxLocaleDate}
|
|
885
901
|
# Date entered is invalid
|
|
886
902
|
boxui.datePicker.iconAlertText = Invalid Date
|
|
887
903
|
# Message for screenReader users when trying to tag a user but there are no matches
|
|
@@ -1228,6 +1244,8 @@ boxui.securityControls.shortSharing = Sharing restriction applies
|
|
|
1228
1244
|
boxui.securityControls.shortSharingApp = Sharing and app restrictions apply
|
|
1229
1245
|
# Short summary displayed for classification when both sharing and download restrictions are applied to it
|
|
1230
1246
|
boxui.securityControls.shortSharingDownload = Sharing and download restrictions apply
|
|
1247
|
+
# Short summary displayed for classification when watermarking is applied to it
|
|
1248
|
+
boxui.securityControls.shortWatermarking = Watermarking applies
|
|
1231
1249
|
# Button to display security controls modal
|
|
1232
1250
|
boxui.securityControls.viewAll = View All
|
|
1233
1251
|
# Bullet point that summarizes web download restrictions applied to classification, when restriction applies to external users
|
|
@@ -1636,6 +1654,10 @@ boxui.unifiedShare.suggestedCollabsTitle = Suggested
|
|
|
1636
1654
|
boxui.unifiedShare.upgradeGetMoreAccessControlsDescription = 62% of customers on your plan {upgradeGetMoreAccessControlsLink} to manage collaborators’ access and permission settings
|
|
1637
1655
|
# Label for link to upgrade to get more access controls for inviting collaborators to an item
|
|
1638
1656
|
boxui.unifiedShare.upgradeGetMoreAccessControlsLink = upgrade
|
|
1657
|
+
# Title for the upgrade inline notice for upgrade user plan
|
|
1658
|
+
boxui.unifiedShare.upgradeInlineNoticeTitle = Upgrade Your Plan
|
|
1659
|
+
# Label for link to upgrade account
|
|
1660
|
+
boxui.unifiedShare.upgradeLink = Upgrade now
|
|
1639
1661
|
# Text used in button label to describe permission level - uploader
|
|
1640
1662
|
boxui.unifiedShare.uploaderLevelButtonLabel = Invite as Uploader
|
|
1641
1663
|
# Description for Uploader permission level in invitee permission dropdown
|
|
@@ -1660,6 +1682,8 @@ boxui.validation.URLError = Invalid URL
|
|
|
1660
1682
|
boxui.validation.emailError = Invalid Email Address
|
|
1661
1683
|
# Generic error message for a field is invalid
|
|
1662
1684
|
boxui.validation.genericError = Invalid Input
|
|
1685
|
+
# Error message for when an invalid Date is entered
|
|
1686
|
+
boxui.validation.invalidDateError = Invalid Date
|
|
1663
1687
|
# Error message for when an invalid user is entered
|
|
1664
1688
|
boxui.validation.invalidUserError = Invalid User
|
|
1665
1689
|
# Error message for when a required field is missing
|
package/i18n/en-x-pseudo.js
CHANGED
|
@@ -269,6 +269,7 @@ export default {
|
|
|
269
269
|
"be.sidebarSkillsErrorContent": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ăй ëґяŏř нάş ŏсçûřřεď ẃħĩļë ŭΡďăŧīňġ ŝĸîļļŝ. Pļеāѕέ ґëƒяéŝħ ţħĕ Ρåġє αŋď ťѓУ ăġàīп. 國國國國國國國國國國國國國國國國國國國國國國國國⟧",
|
|
270
270
|
"be.sidebarSkillsErrorTitle": "⟦萬萬萬 Ŝĸîļĺŝ Έŗŕоґ 國國國⟧",
|
|
271
271
|
"be.sidebarSkillsTitle": "⟦萬 Şкϊļľś 國⟧",
|
|
272
|
+
"be.sidebarVersions.accessError": "You don't have access to versioning",
|
|
272
273
|
"be.sidebarVersions.current": "⟦萬萬萬萬 Ćũґяĕйŧ Vєŗśіŏи 國國國國⟧",
|
|
273
274
|
"be.sidebarVersions.delete": "⟦萬 Ďεľěťë 國⟧",
|
|
274
275
|
"be.sidebarVersions.deleteError": "⟦萬萬萬萬萬萬萬萬萬萬 ₣іľё νěяŝįοŋ сσůļď ŋόŧ ьέ ďėľеťéď. 國國國國國國國國國國⟧",
|
|
@@ -279,6 +280,7 @@ export default {
|
|
|
279
280
|
"be.sidebarVersions.empty": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Ňο Ρŕїσŗ νěŗşįоηѕ ǻŗё åνάīĺäьľė ƒõŕ ţніѕ ƒϊļê. 國國國國國國國國國國國國國⟧",
|
|
280
281
|
"be.sidebarVersions.fetchError": "⟦萬萬萬萬萬萬萬萬萬萬萬 ₣īľě νêŕѕîőηś ċöüļď ηŏτ ьĕ яėτŕίеνёď. 國國國國國國國國國國國⟧",
|
|
281
282
|
"be.sidebarVersions.fileRequestDisplayName": "⟦萬萬萬 ₣îĺė Ґеqŭèѕŧ 國國國⟧",
|
|
283
|
+
"be.sidebarVersions.notAvailable": "Sorry, version history is not available with your current account plan. To access versioning, select from one of our paid plans.",
|
|
282
284
|
"be.sidebarVersions.preview": "⟦萬萬 Pŗęνĩęẃ 國國⟧",
|
|
283
285
|
"be.sidebarVersions.priorWeek": "⟦萬萬 Ľąŝť Ẃêеķ 國國⟧",
|
|
284
286
|
"be.sidebarVersions.promote": "⟦萬萬萬 Мäĸё Ƶґѓеʼnτ 國國國⟧",
|
|
@@ -292,6 +294,8 @@ export default {
|
|
|
292
294
|
"be.sidebarVersions.title": "⟦萬萬萬萬 Vёяѕîóи ĦïѕťόŕУ 國國國國⟧",
|
|
293
295
|
"be.sidebarVersions.today": "⟦萬 ŢõďαУ 國⟧",
|
|
294
296
|
"be.sidebarVersions.toggle": "⟦萬萬萬萬萬 Τоġĝļε Ǻčŧīοήś Μεņµ 國國國國國⟧",
|
|
297
|
+
"be.sidebarVersions.upgradeButton": "Upgrade",
|
|
298
|
+
"be.sidebarVersions.upgradeLink": "Upgrade Now",
|
|
295
299
|
"be.sidebarVersions.uploadedBy": "⟦萬萬萬萬萬 ÚΡĺσåďêď ьŷ {name} 國國國國國⟧",
|
|
296
300
|
"be.sidebarVersions.versionLimitExceeded": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ϋōũ áѓé ļιmϊţĕď ŧô ŧħё ĺǻśť {versionLimit, number} {versionLimit, plural, one {νěŕśїση} other {νέяśίσňş}}. 國國國國國國國國國國國國國國國國國國國⟧",
|
|
297
301
|
"be.sidebarVersions.versionMaxEntries": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Vęѓŝīőʼn ħϊşţоґỳ їŝ ĺįmίŧéď ŧő ţнє ĺάśţ {maxVersions} ёπťŕίєś. 國國國國國國國國國國國國國國國⟧",
|
|
@@ -300,6 +304,7 @@ export default {
|
|
|
300
304
|
"be.sidebarVersions.versionRetentionDelete": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Щįļļ вё ďēĺєŧêď {time} ьγ ѓεťèʼnτϊόň Ρòĺϊċý. 國國國國國國國國國國國國⟧",
|
|
301
305
|
"be.sidebarVersions.versionRetentionIndefinite": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ѓęťąįήєď їňďеƒίлįţеļγ ьγ ґêţęπŧιòŋ Ρŏĺιčγ. 國國國國國國國國國國國國⟧",
|
|
302
306
|
"be.sidebarVersions.versionRetentionRemove": "⟦萬萬萬萬萬萬萬萬萬萬 Řєŧέπťíôп Ροĺìċў ê×Ρίŗėş оń {time}. 國國國國國國國國國國⟧",
|
|
307
|
+
"be.sidebarVersions.versionUpsell": "Sorry, version history is not available with your current account plan. To access versioning, select from one of our paid plans.",
|
|
303
308
|
"be.sidebarVersions.versionUserUnknown": "⟦萬萬 Ųпкиŏẁʼn 國國⟧",
|
|
304
309
|
"be.sidebarVersions.yesterday": "⟦萬萬 Ύеѕτėřďäў 國國⟧",
|
|
305
310
|
"be.sizeASC": "⟦萬萬萬萬萬萬萬 Ŝїźę: Şmàľļëşŧ → Ļãřĝëşŧ 國國國國國國國⟧",
|
|
@@ -441,6 +446,9 @@ export default {
|
|
|
441
446
|
"boxui.core.send": "⟦萬 Şěπď 國⟧",
|
|
442
447
|
"boxui.datePicker.chooseDate": "⟦萬萬萬 Çħσøŝέ Ďǻţě 國國國⟧",
|
|
443
448
|
"boxui.datePicker.dateClearButton": "⟦萬萬 Čļęáя Ðãťė 國國⟧",
|
|
449
|
+
"boxui.datePicker.dateInputMaxError": "Please enter a date before {maxLocaleDate}",
|
|
450
|
+
"boxui.datePicker.dateInputMinError": "Please enter a date after {minLocaleDate}",
|
|
451
|
+
"boxui.datePicker.dateInputRangeError": "Please enter a date between {minLocaleDate} and {maxLocaleDate}",
|
|
444
452
|
"boxui.datePicker.iconAlertText": "⟦萬萬萬 Ĩпνăľįď Ðǻτè 國國國⟧",
|
|
445
453
|
"boxui.draftjs.mentionSelector.noUsersFound": "⟦萬萬萬萬 Ŋő ųѕëřś ƒŏúпď 國國國國⟧",
|
|
446
454
|
"boxui.draftjs.mentionSelector.startMention": "⟦萬萬萬萬萬萬萬萬 Μεлŧíõп śømęόņë ŧō ńōŧїƒў ţнėm 國國國國國國國國⟧",
|
|
@@ -614,6 +622,7 @@ export default {
|
|
|
614
622
|
"boxui.securityControls.shortSharing": "⟦萬萬萬萬萬萬萬萬 Şħåŗìиĝ řëŝťѓιсťĩøπ āΡΡĺіêѕ 國國國國國國國國⟧",
|
|
615
623
|
"boxui.securityControls.shortSharingApp": "⟦萬萬萬萬萬萬萬萬萬萬 Ѕħăяïňġ ǻпď åΡΡ ŗеѕτѓϊċτιôŋś äΡΡļў 國國國國國國國國國國⟧",
|
|
616
624
|
"boxui.securityControls.shortSharingDownload": "⟦萬萬萬萬萬萬萬萬萬萬萬 Şнαяϊŋġ àпď ďóшŋĺòâď řéŝτѓίсţįöйŝ àΡΡĺỳ 國國國國國國國國國國國⟧",
|
|
625
|
+
"boxui.securityControls.shortWatermarking": "Watermarking applies",
|
|
617
626
|
"boxui.securityControls.viewAll": "⟦萬萬 Vĭéẃ Âļļ 國國⟧",
|
|
618
627
|
"boxui.securityControls.webDownloadExternal": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Ðőщйĺőąď яέśŧгіćťéď ōň шêь ƒöŗ ėхτėŕиàľ ūŝēŕŝ. 國國國國國國國國國國國國國⟧",
|
|
619
628
|
"boxui.securityControls.webDownloadExternalOwners": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ďŏẃйĺòąď řèŝτяìсŧеď ση щėь, ě×сёΡţ Θώпêŕş/Ćο-Õώпёŗş. Ăĺѕō ŕёѕτяĩçτĕď ƒőŗ ęхτеяиãļ ùŝëяѕ. 國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
|
|
@@ -818,6 +827,8 @@ export default {
|
|
|
818
827
|
"boxui.unifiedShare.suggestedCollabsTitle": "⟦萬萬 Ѕűĝĝēѕτēď 國國⟧",
|
|
819
828
|
"boxui.unifiedShare.upgradeGetMoreAccessControlsDescription": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 62% õƒ ĉμşťômеŗѕ ôπ ŷŏùг Ρļąл {upgradeGetMoreAccessControlsLink} ťõ máπáĝє сôļľāьŏřάťōѓś’ åċ¢ëŝѕ ąʼnď Ρëŗmįşśīòŋ ѕëţŧīπğŝ 國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
|
|
820
829
|
"boxui.unifiedShare.upgradeGetMoreAccessControlsLink": "⟦萬萬 ŭΡğяâďε 國國⟧",
|
|
830
|
+
"boxui.unifiedShare.upgradeInlineNoticeTitle": "Upgrade Your Plan",
|
|
831
|
+
"boxui.unifiedShare.upgradeLink": "Upgrade now",
|
|
821
832
|
"boxui.unifiedShare.uploaderLevelButtonLabel": "⟦萬萬萬萬萬 Ìиνîţē ǻş ŰΡļôãďёя 國國國國國⟧",
|
|
822
833
|
"boxui.unifiedShare.uploaderLevelDescription": "⟦萬萬萬 ŰΡĺóåď óйĺÿ 國國國⟧",
|
|
823
834
|
"boxui.unifiedShare.uploaderLevelText": "⟦萬萬 ŬΡĺôăďêг 國國⟧",
|
|
@@ -830,6 +841,7 @@ export default {
|
|
|
830
841
|
"boxui.validation.URLError": "⟦萬萬萬 Іʼnνάĺіď ÚΓĿ 國國國⟧",
|
|
831
842
|
"boxui.validation.emailError": "⟦萬萬萬萬萬萬 Ĩηνăĺіď Ēmåíļ Αďďгėśѕ 國國國國國國⟧",
|
|
832
843
|
"boxui.validation.genericError": "⟦萬萬萬 Íηνãĺìď ÌņΡúŧ 國國國⟧",
|
|
844
|
+
"boxui.validation.invalidDateError": "Invalid Date",
|
|
833
845
|
"boxui.validation.invalidUserError": "⟦萬萬萬 Īпνāļíď Ùѕеř 國國國⟧",
|
|
834
846
|
"boxui.validation.requiredError": "⟦萬萬萬萬 Ŕēqùĭґēď ₣īèľď 國國國國⟧",
|
|
835
847
|
"boxui.validation.tooLongError": "⟦萬萬萬萬萬萬萬萬萬萬 ÎпΡŭŧ ćάņпόţ е×¢єεď {max} ¢ħáѓâćτéѓś 國國國國國國國國國國⟧",
|
package/i18n/es-419.js
CHANGED
|
@@ -269,6 +269,7 @@ export default {
|
|
|
269
269
|
"be.sidebarSkillsErrorContent": "Se ha producido un error al actualizar las capacidades. Actualice la página e inténtelo de nuevo.",
|
|
270
270
|
"be.sidebarSkillsErrorTitle": "Error de capacidades",
|
|
271
271
|
"be.sidebarSkillsTitle": "Capacidades",
|
|
272
|
+
"be.sidebarVersions.accessError": "No dispone de acceso a las versiones",
|
|
272
273
|
"be.sidebarVersions.current": "Versión actual",
|
|
273
274
|
"be.sidebarVersions.delete": "Eliminar",
|
|
274
275
|
"be.sidebarVersions.deleteError": "No se ha podido eliminar la versión de archivo.",
|
|
@@ -279,6 +280,7 @@ export default {
|
|
|
279
280
|
"be.sidebarVersions.empty": "No hay versiones anteriores disponibles para este archivo.",
|
|
280
281
|
"be.sidebarVersions.fetchError": "No se han podido recuperar las versiones de archivo.",
|
|
281
282
|
"be.sidebarVersions.fileRequestDisplayName": "Solicitud de archivo",
|
|
283
|
+
"be.sidebarVersions.notAvailable": "Lo sentimos, el historial de versiones no está disponible con su plan de cuenta actual. Para acceder a las versiones, seleccione uno de nuestros planes de pago.",
|
|
282
284
|
"be.sidebarVersions.preview": "Vista previa",
|
|
283
285
|
"be.sidebarVersions.priorWeek": "La semana pasada",
|
|
284
286
|
"be.sidebarVersions.promote": "Actualizar",
|
|
@@ -292,6 +294,8 @@ export default {
|
|
|
292
294
|
"be.sidebarVersions.title": "Historial de versiones",
|
|
293
295
|
"be.sidebarVersions.today": "Hoy",
|
|
294
296
|
"be.sidebarVersions.toggle": "Alternar menú de acciones",
|
|
297
|
+
"be.sidebarVersions.upgradeButton": "Mejorar",
|
|
298
|
+
"be.sidebarVersions.upgradeLink": "Mejore ahora",
|
|
295
299
|
"be.sidebarVersions.uploadedBy": "Cargada por {name}",
|
|
296
300
|
"be.sidebarVersions.versionLimitExceeded": "Su recuento permitido se limita a {versionLimit, plural, one {la siguiente versión más reciente} other {las siguientes versiones más recientes}}: {versionlimit, number}.",
|
|
297
301
|
"be.sidebarVersions.versionMaxEntries": "El historial de versiones se encuentra limitado a las últimas {maxVersions} entradas.",
|
|
@@ -300,6 +304,7 @@ export default {
|
|
|
300
304
|
"be.sidebarVersions.versionRetentionDelete": "Se eliminará el {time} según la política de retención.",
|
|
301
305
|
"be.sidebarVersions.versionRetentionIndefinite": "Sujeta a una política de retención indefinida.",
|
|
302
306
|
"be.sidebarVersions.versionRetentionRemove": "La política de retención vence el {time}.",
|
|
307
|
+
"be.sidebarVersions.versionUpsell": "Lo sentimos, el historial de versiones no está disponible con su plan de cuenta actual. Para acceder a las versiones, seleccione uno de nuestros planes de pago.",
|
|
303
308
|
"be.sidebarVersions.versionUserUnknown": "Desconocido",
|
|
304
309
|
"be.sidebarVersions.yesterday": "Ayer",
|
|
305
310
|
"be.sizeASC": "Tamaño: menor → mayor",
|
|
@@ -441,6 +446,9 @@ export default {
|
|
|
441
446
|
"boxui.core.send": "Enviar",
|
|
442
447
|
"boxui.datePicker.chooseDate": "Elegir fecha",
|
|
443
448
|
"boxui.datePicker.dateClearButton": "Borrar fecha",
|
|
449
|
+
"boxui.datePicker.dateInputMaxError": "Introduzca una fecha anterior al {maxLocaleDate}.",
|
|
450
|
+
"boxui.datePicker.dateInputMinError": "Introduzca una fecha posterior al {minLocaleDate}.",
|
|
451
|
+
"boxui.datePicker.dateInputRangeError": "Introduzca una fecha entre el {minLocaleDate} y el {maxLocaleDate}",
|
|
444
452
|
"boxui.datePicker.iconAlertText": "Fecha no válida",
|
|
445
453
|
"boxui.draftjs.mentionSelector.noUsersFound": "No se han encontrado usuarios",
|
|
446
454
|
"boxui.draftjs.mentionSelector.startMention": "Mencione a alguien para que reciba una notificación",
|
|
@@ -614,6 +622,7 @@ export default {
|
|
|
614
622
|
"boxui.securityControls.shortSharing": "Se aplican restricciones de uso compartido.",
|
|
615
623
|
"boxui.securityControls.shortSharingApp": "Se aplican restricciones de uso compartido y aplicaciones.",
|
|
616
624
|
"boxui.securityControls.shortSharingDownload": "Se aplican restricciones de uso compartido y descarga.",
|
|
625
|
+
"boxui.securityControls.shortWatermarking": "Marca de agua aplicada",
|
|
617
626
|
"boxui.securityControls.viewAll": "Ver todo",
|
|
618
627
|
"boxui.securityControls.webDownloadExternal": "Descarga restringida en la web para usuarios externos.",
|
|
619
628
|
"boxui.securityControls.webDownloadExternalOwners": "Descarga restringida en la web, excepto propietarios/copropietarios. También restringida para usuarios externos.",
|
|
@@ -818,6 +827,8 @@ export default {
|
|
|
818
827
|
"boxui.unifiedShare.suggestedCollabsTitle": "Recomendados",
|
|
819
828
|
"boxui.unifiedShare.upgradeGetMoreAccessControlsDescription": "El 62 % de los clientes con su mismo plan deciden {upgradeGetMoreAccessControlsLink} para gestionar el acceso de los colaboradores y su configuración de permisos.",
|
|
820
829
|
"boxui.unifiedShare.upgradeGetMoreAccessControlsLink": "mejorar",
|
|
830
|
+
"boxui.unifiedShare.upgradeInlineNoticeTitle": "Mejore su plan",
|
|
831
|
+
"boxui.unifiedShare.upgradeLink": "Mejorar ahora",
|
|
821
832
|
"boxui.unifiedShare.uploaderLevelButtonLabel": "Invitar a cargar",
|
|
822
833
|
"boxui.unifiedShare.uploaderLevelDescription": "Solo carga",
|
|
823
834
|
"boxui.unifiedShare.uploaderLevelText": "Carga",
|
|
@@ -830,6 +841,7 @@ export default {
|
|
|
830
841
|
"boxui.validation.URLError": "URL no válida",
|
|
831
842
|
"boxui.validation.emailError": "La dirección de correo electrónico no es válida.",
|
|
832
843
|
"boxui.validation.genericError": "Entrada no válida",
|
|
844
|
+
"boxui.validation.invalidDateError": "Fecha no válida",
|
|
833
845
|
"boxui.validation.invalidUserError": "Usuario no válido",
|
|
834
846
|
"boxui.validation.requiredError": "Campo obligatorio",
|
|
835
847
|
"boxui.validation.tooLongError": "La entrada no puede superar los {max} caracteres.",
|