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/tr-TR.js
CHANGED
|
@@ -269,6 +269,7 @@ export default {
|
|
|
269
269
|
"be.sidebarSkillsErrorContent": "Skills özelliği güncellenirken bir hata oluştu. Lütfen sayfayı yenileyin ve tekrar deneyin.",
|
|
270
270
|
"be.sidebarSkillsErrorTitle": "Skills Hatası",
|
|
271
271
|
"be.sidebarSkillsTitle": "Skills",
|
|
272
|
+
"be.sidebarVersions.accessError": "Sürüm oluşturmaya erişiminiz yok",
|
|
272
273
|
"be.sidebarVersions.current": "Güncel Sürüm",
|
|
273
274
|
"be.sidebarVersions.delete": "Sil",
|
|
274
275
|
"be.sidebarVersions.deleteError": "Dosya sürümü silinemedi.",
|
|
@@ -279,6 +280,7 @@ export default {
|
|
|
279
280
|
"be.sidebarVersions.empty": "Bu dosya için önceki bir sürüm mevcut değil.",
|
|
280
281
|
"be.sidebarVersions.fetchError": "Dosya sürümleri geri alınamadı.",
|
|
281
282
|
"be.sidebarVersions.fileRequestDisplayName": "Dosya İsteği",
|
|
283
|
+
"be.sidebarVersions.notAvailable": "Üzgünüz, mevcut hesap planınızda sürüm geçmişi işlevi kullanılamıyor. Sürüm oluşturma işlevine erişim için ücretli planlarımızdan birini seçin.",
|
|
282
284
|
"be.sidebarVersions.preview": "Ön görüntüle",
|
|
283
285
|
"be.sidebarVersions.priorWeek": "Geçen Hafta",
|
|
284
286
|
"be.sidebarVersions.promote": "Geçerli Kıl",
|
|
@@ -292,6 +294,8 @@ export default {
|
|
|
292
294
|
"be.sidebarVersions.title": "Sürüm Geçmişi",
|
|
293
295
|
"be.sidebarVersions.today": "Bugün",
|
|
294
296
|
"be.sidebarVersions.toggle": "Eylemler Menüsünü Aç/Kapat",
|
|
297
|
+
"be.sidebarVersions.upgradeButton": "Yükselt",
|
|
298
|
+
"be.sidebarVersions.upgradeLink": "Şimdi Yükselt",
|
|
295
299
|
"be.sidebarVersions.uploadedBy": "{name} tarafından yüklendi",
|
|
296
300
|
"be.sidebarVersions.versionLimitExceeded": "Son {versionLimit, number} {versionLimit, plural, one {sürüm} other {sürüm}} ile sınırlısınız.",
|
|
297
301
|
"be.sidebarVersions.versionMaxEntries": "Sürüm geçmişi, en son {maxVersions} girişle sınırlıdır.",
|
|
@@ -300,6 +304,7 @@ export default {
|
|
|
300
304
|
"be.sidebarVersions.versionRetentionDelete": "Veri saklama ilkesine göre {time} tarihinde silinecek.",
|
|
301
305
|
"be.sidebarVersions.versionRetentionIndefinite": "Veri saklama ilkesine göre süresiz olarak tutulacak.",
|
|
302
306
|
"be.sidebarVersions.versionRetentionRemove": "Veri saklama ilkesi {time} tarihinde sona erecek.",
|
|
307
|
+
"be.sidebarVersions.versionUpsell": "Üzgünüz, mevcut hesap planınızda sürüm geçmişi işlevi kullanılamıyor. Sürüm oluşturma işlevine erişim için ücretli planlarımızdan birini seçin.",
|
|
303
308
|
"be.sidebarVersions.versionUserUnknown": "Bilinmeyen",
|
|
304
309
|
"be.sidebarVersions.yesterday": "Dün",
|
|
305
310
|
"be.sizeASC": "Boyut: En Küçük → En Büyük",
|
|
@@ -441,6 +446,9 @@ export default {
|
|
|
441
446
|
"boxui.core.send": "Gönder",
|
|
442
447
|
"boxui.datePicker.chooseDate": "Tarih Seç",
|
|
443
448
|
"boxui.datePicker.dateClearButton": "Tarihi Temizle",
|
|
449
|
+
"boxui.datePicker.dateInputMaxError": "Lütfen {maxLocaleDate} tarihinden önceki bir tarihi girin",
|
|
450
|
+
"boxui.datePicker.dateInputMinError": "Lütfen {minLocaleDate} tarihinden sonraki bir tarihi girin",
|
|
451
|
+
"boxui.datePicker.dateInputRangeError": "Lütfen {minLocaleDate} ve {maxLocaleDate} arasındaki bir tarihi girin",
|
|
444
452
|
"boxui.datePicker.iconAlertText": "Geçersiz Tarih",
|
|
445
453
|
"boxui.draftjs.mentionSelector.noUsersFound": "Kullanıcı bulunamadı",
|
|
446
454
|
"boxui.draftjs.mentionSelector.startMention": "Bildirim alması için birinden bahsedin",
|
|
@@ -614,6 +622,7 @@ export default {
|
|
|
614
622
|
"boxui.securityControls.shortSharing": "Paylaşım kısıtlaması geçerlidir",
|
|
615
623
|
"boxui.securityControls.shortSharingApp": "Paylaşım ve uygulama kısıtlamaları geçerlidir",
|
|
616
624
|
"boxui.securityControls.shortSharingDownload": "Paylaşım ve indirme kısıtlamaları geçerlidir",
|
|
625
|
+
"boxui.securityControls.shortWatermarking": "Filigran uygulandı",
|
|
617
626
|
"boxui.securityControls.viewAll": "Tümünü Görüntüle",
|
|
618
627
|
"boxui.securityControls.webDownloadExternal": "Harici kullanıcıların web'de indirme faaliyetleri kısıtlanmıştır.",
|
|
619
628
|
"boxui.securityControls.webDownloadExternalOwners": "Sahipler/Ortaklar dışındaki kullanıcıların ve harici kullanıcıların web'de indirme faaliyetleri kısıtlanmıştır.",
|
|
@@ -818,6 +827,8 @@ export default {
|
|
|
818
827
|
"boxui.unifiedShare.suggestedCollabsTitle": "Önerilen",
|
|
819
828
|
"boxui.unifiedShare.upgradeGetMoreAccessControlsDescription": "Planınızdaki müşterilerin %62'si, işbirlikçilerin erişim ve izin ayarlarını yönetmek için planlarını {upgradeGetMoreAccessControlsLink}",
|
|
820
829
|
"boxui.unifiedShare.upgradeGetMoreAccessControlsLink": "yükseltiyor",
|
|
830
|
+
"boxui.unifiedShare.upgradeInlineNoticeTitle": "Planınızı Yükseltin",
|
|
831
|
+
"boxui.unifiedShare.upgradeLink": "Şimdi yükselt",
|
|
821
832
|
"boxui.unifiedShare.uploaderLevelButtonLabel": "Yükleyici Olarak Davet Et",
|
|
822
833
|
"boxui.unifiedShare.uploaderLevelDescription": "Yalnızca yükleme",
|
|
823
834
|
"boxui.unifiedShare.uploaderLevelText": "Yükleyici",
|
|
@@ -830,6 +841,7 @@ export default {
|
|
|
830
841
|
"boxui.validation.URLError": "Geçersiz URL",
|
|
831
842
|
"boxui.validation.emailError": "Geçersiz E-posta Adresi",
|
|
832
843
|
"boxui.validation.genericError": "Geçersiz Giriş",
|
|
844
|
+
"boxui.validation.invalidDateError": "Geçersiz Tarih",
|
|
833
845
|
"boxui.validation.invalidUserError": "Geçersiz Kullanıcı",
|
|
834
846
|
"boxui.validation.requiredError": "Zorunlu Alan",
|
|
835
847
|
"boxui.validation.tooLongError": "Giriş {max} karakterden fazla olmamalıdır",
|
package/i18n/tr-TR.properties
CHANGED
|
@@ -538,6 +538,8 @@ be.sidebarSkillsErrorContent = Skills özelliği güncellenirken bir hata oluşt
|
|
|
538
538
|
be.sidebarSkillsErrorTitle = Skills Hatası
|
|
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 = Sürüm oluşturmaya erişiminiz yok
|
|
541
543
|
# Label for the current version item in the version history list.
|
|
542
544
|
be.sidebarVersions.current = Güncel Sürüm
|
|
543
545
|
# Label for the version delete action.
|
|
@@ -558,6 +560,8 @@ be.sidebarVersions.empty = Bu dosya için önceki bir sürüm mevcut değil.
|
|
|
558
560
|
be.sidebarVersions.fetchError = Dosya sürümleri geri alınamadı.
|
|
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 = Dosya İsteği
|
|
563
|
+
# Error message with upsell for the versions fetch call for users who dont have the version feature.
|
|
564
|
+
be.sidebarVersions.notAvailable = Üzgünüz, mevcut hesap planınızda sürüm geçmişi işlevi kullanılamıyor. Sürüm oluşturma işlevine erişim için ücretli planlarımızdan birini seçin.
|
|
561
565
|
# Label for the version preview action.
|
|
562
566
|
be.sidebarVersions.preview = Ön görüntüle
|
|
563
567
|
# Header to display for group of versions created in the prior week
|
|
@@ -584,6 +588,10 @@ be.sidebarVersions.title = Sürüm Geçmişi
|
|
|
584
588
|
be.sidebarVersions.today = Bugün
|
|
585
589
|
# Label for the version actions dropdown menu toggle button.
|
|
586
590
|
be.sidebarVersions.toggle = Eylemler Menüsünü Aç/Kapat
|
|
591
|
+
# Text on the upgrade button shown when user does not have access to Version History
|
|
592
|
+
be.sidebarVersions.upgradeButton = Yükselt
|
|
593
|
+
# Text on the upgrade button shown when user does not have access to Version History
|
|
594
|
+
be.sidebarVersions.upgradeLink = Şimdi Yükselt
|
|
587
595
|
# Message displayed for an uploaded version. {name} is the user who performed the action.
|
|
588
596
|
be.sidebarVersions.uploadedBy = {name} tarafından yüklendi
|
|
589
597
|
# Text displayed if a version exceeds the user's maximum allowed version count
|
|
@@ -600,6 +608,8 @@ be.sidebarVersions.versionRetentionDelete = Veri saklama ilkesine göre {time} t
|
|
|
600
608
|
be.sidebarVersions.versionRetentionIndefinite = Veri saklama ilkesine göre süresiz olarak tutulacak.
|
|
601
609
|
# Message describing when the version retention policy will expire.
|
|
602
610
|
be.sidebarVersions.versionRetentionRemove = Veri saklama ilkesi {time} tarihinde sona erecek.
|
|
611
|
+
# Upgrade message shown when user does not have access to Version History
|
|
612
|
+
be.sidebarVersions.versionUpsell = Üzgünüz, mevcut hesap planınızda sürüm geçmişi işlevi kullanılamıyor. Sürüm oluşturma işlevine erişim için ücretli planlarımızdan birini seçin.
|
|
603
613
|
# Name displayed for unknown or deleted users.
|
|
604
614
|
be.sidebarVersions.versionUserUnknown = Bilinmeyen
|
|
605
615
|
# Header to display for group of versions created today
|
|
@@ -882,6 +892,12 @@ boxui.core.send = Gönder
|
|
|
882
892
|
boxui.datePicker.chooseDate = Tarih Seç
|
|
883
893
|
# Button for clearing date picker
|
|
884
894
|
boxui.datePicker.dateClearButton = Tarihi Temizle
|
|
895
|
+
# Error message when date is later than the maximum date
|
|
896
|
+
boxui.datePicker.dateInputMaxError = Lütfen {maxLocaleDate} tarihinden önceki bir tarihi girin
|
|
897
|
+
# Error message when date is earlier than the minimum date
|
|
898
|
+
boxui.datePicker.dateInputMinError = Lütfen {minLocaleDate} tarihinden sonraki bir tarihi girin
|
|
899
|
+
# Error message when date is out of the minimum and maximum range
|
|
900
|
+
boxui.datePicker.dateInputRangeError = Lütfen {minLocaleDate} ve {maxLocaleDate} arasındaki bir tarihi girin
|
|
885
901
|
# Date entered is invalid
|
|
886
902
|
boxui.datePicker.iconAlertText = Geçersiz Tarih
|
|
887
903
|
# Message for screenReader users when trying to tag a user but there are no matches
|
|
@@ -1228,6 +1244,8 @@ boxui.securityControls.shortSharing = Paylaşım kısıtlaması geçerlidir
|
|
|
1228
1244
|
boxui.securityControls.shortSharingApp = Paylaşım ve uygulama kısıtlamaları geçerlidir
|
|
1229
1245
|
# Short summary displayed for classification when both sharing and download restrictions are applied to it
|
|
1230
1246
|
boxui.securityControls.shortSharingDownload = Paylaşım ve indirme kısıtlamaları geçerlidir
|
|
1247
|
+
# Short summary displayed for classification when watermarking is applied to it
|
|
1248
|
+
boxui.securityControls.shortWatermarking = Filigran uygulandı
|
|
1231
1249
|
# Button to display security controls modal
|
|
1232
1250
|
boxui.securityControls.viewAll = Tümünü Görüntüle
|
|
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 = Önerilen
|
|
|
1636
1654
|
boxui.unifiedShare.upgradeGetMoreAccessControlsDescription = Planınızdaki müşterilerin %62'si, işbirlikçilerin erişim ve izin ayarlarını yönetmek için planlarını {upgradeGetMoreAccessControlsLink}
|
|
1637
1655
|
# Label for link to upgrade to get more access controls for inviting collaborators to an item
|
|
1638
1656
|
boxui.unifiedShare.upgradeGetMoreAccessControlsLink = yükseltiyor
|
|
1657
|
+
# Title for the upgrade inline notice for upgrade user plan
|
|
1658
|
+
boxui.unifiedShare.upgradeInlineNoticeTitle = Planınızı Yükseltin
|
|
1659
|
+
# Label for link to upgrade account
|
|
1660
|
+
boxui.unifiedShare.upgradeLink = Şimdi yükselt
|
|
1639
1661
|
# Text used in button label to describe permission level - uploader
|
|
1640
1662
|
boxui.unifiedShare.uploaderLevelButtonLabel = Yükleyici Olarak Davet Et
|
|
1641
1663
|
# Description for Uploader permission level in invitee permission dropdown
|
|
@@ -1660,6 +1682,8 @@ boxui.validation.URLError = Geçersiz URL
|
|
|
1660
1682
|
boxui.validation.emailError = Geçersiz E-posta Adresi
|
|
1661
1683
|
# Generic error message for a field is invalid
|
|
1662
1684
|
boxui.validation.genericError = Geçersiz Giriş
|
|
1685
|
+
# Error message for when an invalid Date is entered
|
|
1686
|
+
boxui.validation.invalidDateError = Geçersiz Tarih
|
|
1663
1687
|
# Error message for when an invalid user is entered
|
|
1664
1688
|
boxui.validation.invalidUserError = Geçersiz Kullanıcı
|
|
1665
1689
|
# Error message for when a required field is missing
|
package/i18n/zh-CN.js
CHANGED
|
@@ -269,6 +269,7 @@ export default {
|
|
|
269
269
|
"be.sidebarSkillsErrorContent": "更新技能时出现错误。请刷新页面并重试。",
|
|
270
270
|
"be.sidebarSkillsErrorTitle": "技能错误",
|
|
271
271
|
"be.sidebarSkillsTitle": "技能",
|
|
272
|
+
"be.sidebarVersions.accessError": "您无权访问版本控制",
|
|
272
273
|
"be.sidebarVersions.current": "当前版本",
|
|
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": "文件请求",
|
|
283
|
+
"be.sidebarVersions.notAvailable": "抱歉,您当前的帐户计划不提供版本历史记录。要访问版本控制,请从我们的付费计划中进行选择。",
|
|
282
284
|
"be.sidebarVersions.preview": "预览",
|
|
283
285
|
"be.sidebarVersions.priorWeek": "上周",
|
|
284
286
|
"be.sidebarVersions.promote": "设为当前",
|
|
@@ -292,6 +294,8 @@ export default {
|
|
|
292
294
|
"be.sidebarVersions.title": "版本历史记录",
|
|
293
295
|
"be.sidebarVersions.today": "今天",
|
|
294
296
|
"be.sidebarVersions.toggle": "切换操作菜单",
|
|
297
|
+
"be.sidebarVersions.upgradeButton": "升级",
|
|
298
|
+
"be.sidebarVersions.upgradeLink": "立即升级",
|
|
295
299
|
"be.sidebarVersions.uploadedBy": "由 {name} 上传",
|
|
296
300
|
"be.sidebarVersions.versionLimitExceeded": "您仅限于最后 {versionLimit, number} {versionLimit, plural, one { 个版本} other {个版本}}。",
|
|
297
301
|
"be.sidebarVersions.versionMaxEntries": "版本历史记录仅限于过去 {maxVersions} 个条目。",
|
|
@@ -300,6 +304,7 @@ export default {
|
|
|
300
304
|
"be.sidebarVersions.versionRetentionDelete": "根据保留策略将于 {time} 删除。",
|
|
301
305
|
"be.sidebarVersions.versionRetentionIndefinite": "根据保留策略无限期保留。",
|
|
302
306
|
"be.sidebarVersions.versionRetentionRemove": "保留策略于 {time} 过期。",
|
|
307
|
+
"be.sidebarVersions.versionUpsell": "抱歉,您当前的帐户计划不提供版本历史记录。要访问版本控制,请从我们的付费计划中进行选择。",
|
|
303
308
|
"be.sidebarVersions.versionUserUnknown": "未知",
|
|
304
309
|
"be.sidebarVersions.yesterday": "昨天",
|
|
305
310
|
"be.sizeASC": "大小:最小 → 最大",
|
|
@@ -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": "请输入 {maxLocaleDate} 之前的日期",
|
|
450
|
+
"boxui.datePicker.dateInputMinError": "请输入 {minLocaleDate} 之后的日期",
|
|
451
|
+
"boxui.datePicker.dateInputRangeError": "请输入 {minLocaleDate} 与 {maxLocaleDate} 之间的日期",
|
|
444
452
|
"boxui.datePicker.iconAlertText": "无效的日期",
|
|
445
453
|
"boxui.draftjs.mentionSelector.noUsersFound": "未找到用户",
|
|
446
454
|
"boxui.draftjs.mentionSelector.startMention": "提及某人去通知他们",
|
|
@@ -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": "应用水印",
|
|
617
626
|
"boxui.securityControls.viewAll": "查看全部",
|
|
618
627
|
"boxui.securityControls.webDownloadExternal": "外部用户在 Web 上的下载受限。",
|
|
619
628
|
"boxui.securityControls.webDownloadExternalOwners": "在 Web 上的下载受限,所有者/共有者除外。外部用户下载同样受限。",
|
|
@@ -818,6 +827,8 @@ export default {
|
|
|
818
827
|
"boxui.unifiedShare.suggestedCollabsTitle": "推荐",
|
|
819
828
|
"boxui.unifiedShare.upgradeGetMoreAccessControlsDescription": "62% 参与此计划的客户 {upgradeGetMoreAccessControlsLink} 以管理协作者的访问和权限设置",
|
|
820
829
|
"boxui.unifiedShare.upgradeGetMoreAccessControlsLink": "升级",
|
|
830
|
+
"boxui.unifiedShare.upgradeInlineNoticeTitle": "升级您的计划",
|
|
831
|
+
"boxui.unifiedShare.upgradeLink": "立即升级",
|
|
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": "无效 URL",
|
|
831
842
|
"boxui.validation.emailError": "无效的电子邮件地址",
|
|
832
843
|
"boxui.validation.genericError": "无效输入",
|
|
844
|
+
"boxui.validation.invalidDateError": "无效的日期",
|
|
833
845
|
"boxui.validation.invalidUserError": "无效用户",
|
|
834
846
|
"boxui.validation.requiredError": "必填字段",
|
|
835
847
|
"boxui.validation.tooLongError": "输入内容不可超过 {max} 个字符",
|
package/i18n/zh-CN.properties
CHANGED
|
@@ -538,6 +538,8 @@ be.sidebarSkillsErrorContent = 更新技能时出现错误。请刷新页面并
|
|
|
538
538
|
be.sidebarSkillsErrorTitle = 技能错误
|
|
539
539
|
# Title for the preview details skills.
|
|
540
540
|
be.sidebarSkillsTitle = 技能
|
|
541
|
+
# Heading for inline error messages with upsell.
|
|
542
|
+
be.sidebarVersions.accessError = 您无权访问版本控制
|
|
541
543
|
# Label for the current version item in the version history list.
|
|
542
544
|
be.sidebarVersions.current = 当前版本
|
|
543
545
|
# Label for the version delete action.
|
|
@@ -558,6 +560,8 @@ be.sidebarVersions.empty = 此文件没有可用的旧版本。
|
|
|
558
560
|
be.sidebarVersions.fetchError = 无法检索文件版本。
|
|
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 = 文件请求
|
|
563
|
+
# Error message with upsell for the versions fetch call for users who dont have the version feature.
|
|
564
|
+
be.sidebarVersions.notAvailable = 抱歉,您当前的帐户计划不提供版本历史记录。要访问版本控制,请从我们的付费计划中进行选择。
|
|
561
565
|
# Label for the version preview action.
|
|
562
566
|
be.sidebarVersions.preview = 预览
|
|
563
567
|
# Header to display for group of versions created in the prior week
|
|
@@ -584,6 +588,10 @@ be.sidebarVersions.title = 版本历史记录
|
|
|
584
588
|
be.sidebarVersions.today = 今天
|
|
585
589
|
# Label for the version actions dropdown menu toggle button.
|
|
586
590
|
be.sidebarVersions.toggle = 切换操作菜单
|
|
591
|
+
# Text on the upgrade button shown when user does not have access to Version History
|
|
592
|
+
be.sidebarVersions.upgradeButton = 升级
|
|
593
|
+
# Text on the upgrade button shown when user does not have access to Version History
|
|
594
|
+
be.sidebarVersions.upgradeLink = 立即升级
|
|
587
595
|
# Message displayed for an uploaded version. {name} is the user who performed the action.
|
|
588
596
|
be.sidebarVersions.uploadedBy = 由 {name} 上传
|
|
589
597
|
# Text displayed if a version exceeds the user's maximum allowed version count
|
|
@@ -600,6 +608,8 @@ be.sidebarVersions.versionRetentionDelete = 根据保留策略将于 {time} 删
|
|
|
600
608
|
be.sidebarVersions.versionRetentionIndefinite = 根据保留策略无限期保留。
|
|
601
609
|
# Message describing when the version retention policy will expire.
|
|
602
610
|
be.sidebarVersions.versionRetentionRemove = 保留策略于 {time} 过期。
|
|
611
|
+
# Upgrade message shown when user does not have access to Version History
|
|
612
|
+
be.sidebarVersions.versionUpsell = 抱歉,您当前的帐户计划不提供版本历史记录。要访问版本控制,请从我们的付费计划中进行选择。
|
|
603
613
|
# Name displayed for unknown or deleted users.
|
|
604
614
|
be.sidebarVersions.versionUserUnknown = 未知
|
|
605
615
|
# Header to display for group of versions created today
|
|
@@ -882,6 +892,12 @@ boxui.core.send = 发送
|
|
|
882
892
|
boxui.datePicker.chooseDate = 选择日期
|
|
883
893
|
# Button for clearing date picker
|
|
884
894
|
boxui.datePicker.dateClearButton = 清除日期
|
|
895
|
+
# Error message when date is later than the maximum date
|
|
896
|
+
boxui.datePicker.dateInputMaxError = 请输入 {maxLocaleDate} 之前的日期
|
|
897
|
+
# Error message when date is earlier than the minimum date
|
|
898
|
+
boxui.datePicker.dateInputMinError = 请输入 {minLocaleDate} 之后的日期
|
|
899
|
+
# Error message when date is out of the minimum and maximum range
|
|
900
|
+
boxui.datePicker.dateInputRangeError = 请输入 {minLocaleDate} 与 {maxLocaleDate} 之间的日期
|
|
885
901
|
# Date entered is invalid
|
|
886
902
|
boxui.datePicker.iconAlertText = 无效的日期
|
|
887
903
|
# Message for screenReader users when trying to tag a user but there are no matches
|
|
@@ -1228,6 +1244,8 @@ boxui.securityControls.shortSharing = 所应用的共享限制
|
|
|
1228
1244
|
boxui.securityControls.shortSharingApp = 所应用的共享和应用程序限制
|
|
1229
1245
|
# Short summary displayed for classification when both sharing and download restrictions are applied to it
|
|
1230
1246
|
boxui.securityControls.shortSharingDownload = 所应用的共享和下载限制
|
|
1247
|
+
# Short summary displayed for classification when watermarking is applied to it
|
|
1248
|
+
boxui.securityControls.shortWatermarking = 应用水印
|
|
1231
1249
|
# Button to display security controls modal
|
|
1232
1250
|
boxui.securityControls.viewAll = 查看全部
|
|
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 = 推荐
|
|
|
1636
1654
|
boxui.unifiedShare.upgradeGetMoreAccessControlsDescription = 62% 参与此计划的客户 {upgradeGetMoreAccessControlsLink} 以管理协作者的访问和权限设置
|
|
1637
1655
|
# Label for link to upgrade to get more access controls for inviting collaborators to an item
|
|
1638
1656
|
boxui.unifiedShare.upgradeGetMoreAccessControlsLink = 升级
|
|
1657
|
+
# Title for the upgrade inline notice for upgrade user plan
|
|
1658
|
+
boxui.unifiedShare.upgradeInlineNoticeTitle = 升级您的计划
|
|
1659
|
+
# Label for link to upgrade account
|
|
1660
|
+
boxui.unifiedShare.upgradeLink = 立即升级
|
|
1639
1661
|
# Text used in button label to describe permission level - uploader
|
|
1640
1662
|
boxui.unifiedShare.uploaderLevelButtonLabel = 邀请为上传者
|
|
1641
1663
|
# Description for Uploader permission level in invitee permission dropdown
|
|
@@ -1660,6 +1682,8 @@ boxui.validation.URLError = 无效 URL
|
|
|
1660
1682
|
boxui.validation.emailError = 无效的电子邮件地址
|
|
1661
1683
|
# Generic error message for a field is invalid
|
|
1662
1684
|
boxui.validation.genericError = 无效输入
|
|
1685
|
+
# Error message for when an invalid Date is entered
|
|
1686
|
+
boxui.validation.invalidDateError = 无效的日期
|
|
1663
1687
|
# Error message for when an invalid user is entered
|
|
1664
1688
|
boxui.validation.invalidUserError = 无效用户
|
|
1665
1689
|
# Error message for when a required field is missing
|
package/i18n/zh-TW.js
CHANGED
|
@@ -269,6 +269,7 @@ export default {
|
|
|
269
269
|
"be.sidebarSkillsErrorContent": "更新技能時發生錯誤。請重新整理頁面並再試一次。",
|
|
270
270
|
"be.sidebarSkillsErrorTitle": "技能錯誤",
|
|
271
271
|
"be.sidebarSkillsTitle": "技能",
|
|
272
|
+
"be.sidebarVersions.accessError": "您無法存取版本管理功能",
|
|
272
273
|
"be.sidebarVersions.current": "最新版本",
|
|
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": "檔案要求",
|
|
283
|
+
"be.sidebarVersions.notAvailable": "抱歉,您目前的帳戶方案無法使用版本記錄。若要存取版本管理功能,請選擇我們的其中一個付費方案。",
|
|
282
284
|
"be.sidebarVersions.preview": "預覽",
|
|
283
285
|
"be.sidebarVersions.priorWeek": "上週",
|
|
284
286
|
"be.sidebarVersions.promote": "還原為最新",
|
|
@@ -292,6 +294,8 @@ export default {
|
|
|
292
294
|
"be.sidebarVersions.title": "版本記錄",
|
|
293
295
|
"be.sidebarVersions.today": "今天",
|
|
294
296
|
"be.sidebarVersions.toggle": "切換動作功能表",
|
|
297
|
+
"be.sidebarVersions.upgradeButton": "升級",
|
|
298
|
+
"be.sidebarVersions.upgradeLink": "立即升級",
|
|
295
299
|
"be.sidebarVersions.uploadedBy": "已由 {name} 上傳",
|
|
296
300
|
"be.sidebarVersions.versionLimitExceeded": "您只能有最後 {versionLimit, number} {versionLimit, plural, one {個版本} other {個版本}}。",
|
|
297
301
|
"be.sidebarVersions.versionMaxEntries": "版本記錄限於最後 {maxVersions} 個項目。",
|
|
@@ -300,6 +304,7 @@ export default {
|
|
|
300
304
|
"be.sidebarVersions.versionRetentionDelete": "根據保留原則將於 {time} 刪除。",
|
|
301
305
|
"be.sidebarVersions.versionRetentionIndefinite": "已根據保留原則無限期保留。",
|
|
302
306
|
"be.sidebarVersions.versionRetentionRemove": "保留原則到期時間:{time}。",
|
|
307
|
+
"be.sidebarVersions.versionUpsell": "抱歉,您目前的帳戶方案無法使用版本記錄。若要存取版本管理功能,請選擇我們的其中一個付費方案。",
|
|
303
308
|
"be.sidebarVersions.versionUserUnknown": "未知",
|
|
304
309
|
"be.sidebarVersions.yesterday": "昨天",
|
|
305
310
|
"be.sizeASC": "大小:最小 → 最大",
|
|
@@ -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": "請輸入 {maxLocaleDate} 之前的日期",
|
|
450
|
+
"boxui.datePicker.dateInputMinError": "請輸入 {minLocaleDate} 之後的日期",
|
|
451
|
+
"boxui.datePicker.dateInputRangeError": "請輸入介於 {minLocaleDate} 和 {maxLocaleDate} 之間的日期",
|
|
444
452
|
"boxui.datePicker.iconAlertText": "無效日期",
|
|
445
453
|
"boxui.draftjs.mentionSelector.noUsersFound": "找不到使用者",
|
|
446
454
|
"boxui.draftjs.mentionSelector.startMention": "提及某人來通知該名人員",
|
|
@@ -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": "套用浮水印",
|
|
617
626
|
"boxui.securityControls.viewAll": "檢視全部",
|
|
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% 會{upgradeGetMoreAccessControlsLink},以能夠管理共同作業者的存取權限和權限設定",
|
|
820
829
|
"boxui.unifiedShare.upgradeGetMoreAccessControlsLink": "升級",
|
|
830
|
+
"boxui.unifiedShare.upgradeInlineNoticeTitle": "升級您的方案",
|
|
831
|
+
"boxui.unifiedShare.upgradeLink": "立即升級",
|
|
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": "URL 無效",
|
|
831
842
|
"boxui.validation.emailError": "無效的電子郵件地址",
|
|
832
843
|
"boxui.validation.genericError": "無效輸入",
|
|
844
|
+
"boxui.validation.invalidDateError": "無效日期",
|
|
833
845
|
"boxui.validation.invalidUserError": "使用者無效",
|
|
834
846
|
"boxui.validation.requiredError": "必填欄位",
|
|
835
847
|
"boxui.validation.tooLongError": "不可輸入超過 {max} 個字元",
|
package/i18n/zh-TW.properties
CHANGED
|
@@ -538,6 +538,8 @@ be.sidebarSkillsErrorContent = 更新技能時發生錯誤。請重新整理頁
|
|
|
538
538
|
be.sidebarSkillsErrorTitle = 技能錯誤
|
|
539
539
|
# Title for the preview details skills.
|
|
540
540
|
be.sidebarSkillsTitle = 技能
|
|
541
|
+
# Heading for inline error messages with upsell.
|
|
542
|
+
be.sidebarVersions.accessError = 您無法存取版本管理功能
|
|
541
543
|
# Label for the current version item in the version history list.
|
|
542
544
|
be.sidebarVersions.current = 最新版本
|
|
543
545
|
# Label for the version delete action.
|
|
@@ -558,6 +560,8 @@ be.sidebarVersions.empty = 此檔案沒有先前的版本可用。
|
|
|
558
560
|
be.sidebarVersions.fetchError = 無法擷取檔案版本。
|
|
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 = 檔案要求
|
|
563
|
+
# Error message with upsell for the versions fetch call for users who dont have the version feature.
|
|
564
|
+
be.sidebarVersions.notAvailable = 抱歉,您目前的帳戶方案無法使用版本記錄。若要存取版本管理功能,請選擇我們的其中一個付費方案。
|
|
561
565
|
# Label for the version preview action.
|
|
562
566
|
be.sidebarVersions.preview = 預覽
|
|
563
567
|
# Header to display for group of versions created in the prior week
|
|
@@ -584,6 +588,10 @@ be.sidebarVersions.title = 版本記錄
|
|
|
584
588
|
be.sidebarVersions.today = 今天
|
|
585
589
|
# Label for the version actions dropdown menu toggle button.
|
|
586
590
|
be.sidebarVersions.toggle = 切換動作功能表
|
|
591
|
+
# Text on the upgrade button shown when user does not have access to Version History
|
|
592
|
+
be.sidebarVersions.upgradeButton = 升級
|
|
593
|
+
# Text on the upgrade button shown when user does not have access to Version History
|
|
594
|
+
be.sidebarVersions.upgradeLink = 立即升級
|
|
587
595
|
# Message displayed for an uploaded version. {name} is the user who performed the action.
|
|
588
596
|
be.sidebarVersions.uploadedBy = 已由 {name} 上傳
|
|
589
597
|
# Text displayed if a version exceeds the user's maximum allowed version count
|
|
@@ -600,6 +608,8 @@ be.sidebarVersions.versionRetentionDelete = 根據保留原則將於 {time} 刪
|
|
|
600
608
|
be.sidebarVersions.versionRetentionIndefinite = 已根據保留原則無限期保留。
|
|
601
609
|
# Message describing when the version retention policy will expire.
|
|
602
610
|
be.sidebarVersions.versionRetentionRemove = 保留原則到期時間:{time}。
|
|
611
|
+
# Upgrade message shown when user does not have access to Version History
|
|
612
|
+
be.sidebarVersions.versionUpsell = 抱歉,您目前的帳戶方案無法使用版本記錄。若要存取版本管理功能,請選擇我們的其中一個付費方案。
|
|
603
613
|
# Name displayed for unknown or deleted users.
|
|
604
614
|
be.sidebarVersions.versionUserUnknown = 未知
|
|
605
615
|
# Header to display for group of versions created today
|
|
@@ -882,6 +892,12 @@ boxui.core.send = 傳送
|
|
|
882
892
|
boxui.datePicker.chooseDate = 選擇日期
|
|
883
893
|
# Button for clearing date picker
|
|
884
894
|
boxui.datePicker.dateClearButton = 清除日期
|
|
895
|
+
# Error message when date is later than the maximum date
|
|
896
|
+
boxui.datePicker.dateInputMaxError = 請輸入 {maxLocaleDate} 之前的日期
|
|
897
|
+
# Error message when date is earlier than the minimum date
|
|
898
|
+
boxui.datePicker.dateInputMinError = 請輸入 {minLocaleDate} 之後的日期
|
|
899
|
+
# Error message when date is out of the minimum and maximum range
|
|
900
|
+
boxui.datePicker.dateInputRangeError = 請輸入介於 {minLocaleDate} 和 {maxLocaleDate} 之間的日期
|
|
885
901
|
# Date entered is invalid
|
|
886
902
|
boxui.datePicker.iconAlertText = 無效日期
|
|
887
903
|
# Message for screenReader users when trying to tag a user but there are no matches
|
|
@@ -1228,6 +1244,8 @@ boxui.securityControls.shortSharing = 適用共用限制
|
|
|
1228
1244
|
boxui.securityControls.shortSharingApp = 適用共用及應用程式限制
|
|
1229
1245
|
# Short summary displayed for classification when both sharing and download restrictions are applied to it
|
|
1230
1246
|
boxui.securityControls.shortSharingDownload = 適用共用及下載限制
|
|
1247
|
+
# Short summary displayed for classification when watermarking is applied to it
|
|
1248
|
+
boxui.securityControls.shortWatermarking = 套用浮水印
|
|
1231
1249
|
# Button to display security controls modal
|
|
1232
1250
|
boxui.securityControls.viewAll = 檢視全部
|
|
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 = 建議
|
|
|
1636
1654
|
boxui.unifiedShare.upgradeGetMoreAccessControlsDescription = 與您擁有相同方案的客戶中,有 62% 會{upgradeGetMoreAccessControlsLink},以能夠管理共同作業者的存取權限和權限設定
|
|
1637
1655
|
# Label for link to upgrade to get more access controls for inviting collaborators to an item
|
|
1638
1656
|
boxui.unifiedShare.upgradeGetMoreAccessControlsLink = 升級
|
|
1657
|
+
# Title for the upgrade inline notice for upgrade user plan
|
|
1658
|
+
boxui.unifiedShare.upgradeInlineNoticeTitle = 升級您的方案
|
|
1659
|
+
# Label for link to upgrade account
|
|
1660
|
+
boxui.unifiedShare.upgradeLink = 立即升級
|
|
1639
1661
|
# Text used in button label to describe permission level - uploader
|
|
1640
1662
|
boxui.unifiedShare.uploaderLevelButtonLabel = 邀請成為上傳者
|
|
1641
1663
|
# Description for Uploader permission level in invitee permission dropdown
|
|
@@ -1660,6 +1682,8 @@ boxui.validation.URLError = URL 無效
|
|
|
1660
1682
|
boxui.validation.emailError = 無效的電子郵件地址
|
|
1661
1683
|
# Generic error message for a field is invalid
|
|
1662
1684
|
boxui.validation.genericError = 無效輸入
|
|
1685
|
+
# Error message for when an invalid Date is entered
|
|
1686
|
+
boxui.validation.invalidDateError = 無效日期
|
|
1663
1687
|
# Error message for when an invalid user is entered
|
|
1664
1688
|
boxui.validation.invalidUserError = 使用者無效
|
|
1665
1689
|
# Error message for when a required field is missing
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "box-ui-elements",
|
|
3
|
-
"version": "15.0.0
|
|
3
|
+
"version": "15.0.0",
|
|
4
4
|
"description": "Box UI Elements",
|
|
5
5
|
"author": "Box (https://www.box.com/)",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -82,10 +82,10 @@
|
|
|
82
82
|
"start:storybook": "LANGUAGE=en-US REACT=true BABEL_ENV=development NODE_ENV=development start-storybook -p 6061",
|
|
83
83
|
"start:storybook:ci": "yarn start:storybook --ci",
|
|
84
84
|
"start:storybook:legacy": "BROWSERSLIST_ENV=production yarn start:storybook",
|
|
85
|
-
"test": "NODE_ICU_DATA=node_modules/full-icu BABEL_ENV=test NODE_ENV=test yarn jest",
|
|
85
|
+
"test": "NODE_ICU_DATA=node_modules/full-icu BABEL_ENV=test NODE_ENV=test yarn jest -c scripts/jest/jest.config.js",
|
|
86
86
|
"test:e2e": "BROWSERSLIST_ENV=test npm-run-all -p -r start:examples cy:run",
|
|
87
87
|
"test:e2e:open": "BROWSERSLIST_ENV=test npm-run-all -p -r start:examples cy:open",
|
|
88
|
-
"test:images": "yarn test -c scripts/jest/jest.config.js --maxWorkers=4",
|
|
88
|
+
"test:images": "yarn test -c scripts/jest/jest.images.config.js --maxWorkers=4",
|
|
89
89
|
"test:visuals": "start-server-and-test start:storybook:ci http-get://localhost:6061 test:images",
|
|
90
90
|
"ts:defs": "tsc --declaration --emitDeclarationOnly --declarationDir es --noEmit false"
|
|
91
91
|
},
|
|
@@ -192,6 +192,7 @@
|
|
|
192
192
|
"@svgr/core": "^5.0.1",
|
|
193
193
|
"@svgr/plugin-prettier": "^5.0.1",
|
|
194
194
|
"@svgr/plugin-svgo": "^5.1.0",
|
|
195
|
+
"@testing-library/jest-dom": "^5.16.2",
|
|
195
196
|
"@testing-library/react": "^10.4.3",
|
|
196
197
|
"@testing-library/react-hooks": "^3.3.0",
|
|
197
198
|
"@types/classnames": "^2.2.9",
|
|
@@ -215,7 +216,7 @@
|
|
|
215
216
|
"@typescript-eslint/parser": "^4.11.1",
|
|
216
217
|
"@wojtekmaj/enzyme-adapter-react-17": "^0.4.0",
|
|
217
218
|
"autoprefixer": "^9.7.4",
|
|
218
|
-
"axios": "0.
|
|
219
|
+
"axios": "0.25.0",
|
|
219
220
|
"babel-core": "^7.0.0-bridge.0",
|
|
220
221
|
"babel-eslint": "^10.0.3",
|
|
221
222
|
"babel-jest": "^24.9.0",
|
|
@@ -313,6 +314,7 @@
|
|
|
313
314
|
"react-modal": "^3.8.1",
|
|
314
315
|
"react-popper": "^1.3.4",
|
|
315
316
|
"react-process-string": "^1.2.0",
|
|
317
|
+
"react-responsive": "8.2.0",
|
|
316
318
|
"react-router-dom": "^5.0.0",
|
|
317
319
|
"react-scrollbars-custom": "^4.0.21",
|
|
318
320
|
"react-styleguidist": "^8.0.6",
|
|
@@ -357,7 +359,7 @@
|
|
|
357
359
|
"@box/cldr-data": "^34.2.0",
|
|
358
360
|
"@box/react-virtualized": "9.22.3-rc-box.2",
|
|
359
361
|
"@hapi/address": ">=2.0.0 <2.1.2",
|
|
360
|
-
"axios": "^0.
|
|
362
|
+
"axios": "^0.25.0",
|
|
361
363
|
"classnames": "^2.2.5",
|
|
362
364
|
"color": "^3.1.2",
|
|
363
365
|
"draft-js": "^0.10.1",
|
|
@@ -385,6 +387,7 @@
|
|
|
385
387
|
"react-modal": "^3.8.1",
|
|
386
388
|
"react-popper": "^1.3.4",
|
|
387
389
|
"react-process-string": "^1.2.0",
|
|
390
|
+
"react-responsive": "8.2.0",
|
|
388
391
|
"react-router-dom": "^5.0.0",
|
|
389
392
|
"react-scrollbars-custom": "^4.0.21",
|
|
390
393
|
"react-tether": "^1.0.0",
|
package/src/__mocks__/pikaday.js
CHANGED
|
@@ -8,22 +8,10 @@
|
|
|
8
8
|
"type": "app_integration"
|
|
9
9
|
},
|
|
10
10
|
"items": [
|
|
11
|
-
{
|
|
12
|
-
"display_name": "Adobe Sign",
|
|
13
|
-
"display_description": "Send for Signature",
|
|
14
|
-
"display_order": 1,
|
|
15
|
-
"is_disabled": false,
|
|
16
|
-
"should_show_consent_popup": false,
|
|
17
|
-
"disabled_reasons": [],
|
|
18
|
-
"app_integration": {
|
|
19
|
-
"id": "3282",
|
|
20
|
-
"type": "app_integration"
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
11
|
{
|
|
24
12
|
"display_name": "Google Docs",
|
|
25
13
|
"display_description": "Open with Google Docs",
|
|
26
|
-
"display_order":
|
|
14
|
+
"display_order": 2,
|
|
27
15
|
"is_disabled": true,
|
|
28
16
|
"disabled_reasons": ["manually disabled"],
|
|
29
17
|
"should_show_consent_popup": false,
|
|
@@ -35,7 +23,7 @@
|
|
|
35
23
|
{
|
|
36
24
|
"display_name": "Google Slides",
|
|
37
25
|
"display_description": "Open with Google Slides",
|
|
38
|
-
"display_order":
|
|
26
|
+
"display_order": 1,
|
|
39
27
|
"is_disabled": false,
|
|
40
28
|
"disabled_reasons": [],
|
|
41
29
|
"should_show_consent_popup": false,
|
|
@@ -48,17 +36,6 @@
|
|
|
48
36
|
},
|
|
49
37
|
"defaultAsIntegrations": [
|
|
50
38
|
[
|
|
51
|
-
{
|
|
52
|
-
"displayName": "Adobe Sign",
|
|
53
|
-
"displayDescription": "Send for Signature",
|
|
54
|
-
"displayOrder": 1,
|
|
55
|
-
"isDefault": true,
|
|
56
|
-
"isDisabled": false,
|
|
57
|
-
"requiresConsent": false,
|
|
58
|
-
"DisabledReasons": [],
|
|
59
|
-
"appIntegrationId": "3282",
|
|
60
|
-
"type": "app_integration"
|
|
61
|
-
},
|
|
62
39
|
{
|
|
63
40
|
"displayName": "Google Docs",
|
|
64
41
|
"displayDescription": "Open with Google Docs",
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
import axios from 'axios';
|
|
8
8
|
import LocalStore from '../../utils/LocalStore';
|
|
9
9
|
import { DEFAULT_HOSTNAME_UPLOAD, DEFAULT_HOSTNAME_UPLOAD_APP, HEADER_CONTENT_TYPE } from '../../constants';
|
|
10
|
-
import type { StringAnyMap,
|
|
10
|
+
import type { StringAnyMap, StringMixedMap } from '../../common/types/core';
|
|
11
11
|
|
|
12
12
|
const CACHED_RESULTS_LOCAL_STORE_KEY = 'bcu-uploads-reachability-cached-results';
|
|
13
13
|
|
|
@@ -175,7 +175,7 @@ class UploadsReachability {
|
|
|
175
175
|
*/
|
|
176
176
|
async makeReachabilityRequest(uploadHost: string) {
|
|
177
177
|
const url = `${uploadHost}html5?reachability_test=run`;
|
|
178
|
-
const headers:
|
|
178
|
+
const headers: StringMixedMap = {
|
|
179
179
|
[HEADER_CONTENT_TYPE]: 'application/x-www-form-urlencoded; charset=UTF-8',
|
|
180
180
|
'X-File-Name': 'reachability_pseudofile.txt',
|
|
181
181
|
'X-File-Size': '1234',
|
package/src/common/messages.js
CHANGED
|
@@ -92,6 +92,11 @@ const messages = defineMessages({
|
|
|
92
92
|
description: 'Error message for when a required field is missing',
|
|
93
93
|
id: 'boxui.validation.requiredError',
|
|
94
94
|
},
|
|
95
|
+
invalidDateError: {
|
|
96
|
+
defaultMessage: 'Invalid Date',
|
|
97
|
+
description: 'Error message for when an invalid Date is entered',
|
|
98
|
+
id: 'boxui.validation.invalidDateError',
|
|
99
|
+
},
|
|
95
100
|
});
|
|
96
101
|
|
|
97
102
|
export default messages;
|
package/src/common/types/core.js
CHANGED
|
@@ -49,6 +49,7 @@ type ClassComponent<P, S> = Class<React$Component<P, S>>;
|
|
|
49
49
|
// }
|
|
50
50
|
type StringMap = { [string]: string };
|
|
51
51
|
type StringAnyMap = { [string]: any };
|
|
52
|
+
type StringMixedMap = { [string]: mixed };
|
|
52
53
|
type StringBooleanMap = { [string]: boolean };
|
|
53
54
|
type NumberBooleanMap = { [number]: boolean };
|
|
54
55
|
|
|
@@ -470,6 +471,7 @@ export type {
|
|
|
470
471
|
ClassComponent,
|
|
471
472
|
StringMap,
|
|
472
473
|
StringAnyMap,
|
|
474
|
+
StringMixedMap,
|
|
473
475
|
StringBooleanMap,
|
|
474
476
|
NumberBooleanMap,
|
|
475
477
|
Access,
|
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import AccessibleSVG, { SVGProps } from '../accessible-svg/AccessibleSVG';
|
|
3
|
+
import * as vars from '../../styles/variables';
|
|
3
4
|
|
|
4
5
|
const UnknownUserAvatar = ({ className = '', height = 28, title, width = 28 }: SVGProps) => (
|
|
5
6
|
<AccessibleSVG
|
|
6
7
|
className={`unknown-user-avatar ${className}`}
|
|
7
8
|
height={height}
|
|
8
9
|
title={title}
|
|
9
|
-
viewBox="0 0
|
|
10
|
+
viewBox="0 0 16 16"
|
|
10
11
|
width={width}
|
|
11
12
|
>
|
|
12
|
-
<circle cx="14" cy="14" fill="#ededed" r="14" />
|
|
13
13
|
<path
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
fill={vars.bdlGray50}
|
|
15
|
+
fillRule="evenodd"
|
|
16
|
+
d="M8 0a8 8 0 110 16A8 8 0 018 0zm0 9.5c-1.21 0-2.293.413-3.232 1.096-.56.407-.953.817-1.168 1.104a.5.5 0 00.8.6c.035-.047.114-.141.234-.267.205-.214.447-.428.722-.629.78-.567 1.665-.904 2.644-.904.979 0 1.865.337 2.644.904.275.2.517.415.722.63.12.125.199.219.234.266a.5.5 0 00.8-.6c-.215-.287-.607-.697-1.168-1.104C10.293 9.913 9.21 9.5 8 9.5zm0-6a2.5 2.5 0 000 5 2.5 2.5 0 000-5zm0 1a1.5 1.5 0 11-.001 3.001A1.5 1.5 0 018 4.5z"
|
|
16
17
|
/>
|
|
17
18
|
</AccessibleSVG>
|
|
18
19
|
);
|