@box/threaded-annotations 1.80.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/LICENSE +379 -0
- package/README.md +57 -0
- package/dist/chunks/annotation-badge.js +49 -0
- package/dist/chunks/custom-placeholder.js +72 -0
- package/dist/chunks/delete-annotations-message-popover.js +46 -0
- package/dist/chunks/delete-confirmation-popover.js +59 -0
- package/dist/chunks/dist.js +1749 -0
- package/dist/chunks/mention-component.js +96 -0
- package/dist/chunks/message-editor.module.js +12 -0
- package/dist/chunks/message-editor2.module.js +27 -0
- package/dist/chunks/message-footer.js +42 -0
- package/dist/chunks/message-header.js +49 -0
- package/dist/chunks/messages-view.js +83 -0
- package/dist/chunks/mock-collaboration-props.js +19379 -0
- package/dist/chunks/resolved-state.js +55 -0
- package/dist/chunks/show-replies-button.js +60 -0
- package/dist/chunks/text-message.js +21 -0
- package/dist/chunks/threaded-annotations.js +71 -0
- package/dist/chunks/threaded-annotations2.js +68 -0
- package/dist/chunks/virtualized-messages.js +30 -0
- package/dist/esm/index.js +7 -0
- package/dist/esm/lib/components/mention-component/mention-component.js +2 -0
- package/dist/esm/lib/components/mention-component/mention-context.js +26 -0
- package/dist/esm/lib/components/message-editor/editor-extensions/custom-mention/custom-mention-suggestions.js +23 -0
- package/dist/esm/lib/components/message-editor/editor-extensions/custom-mention/custom-mention.js +59 -0
- package/dist/esm/lib/components/message-editor/editor-extensions/custom-mention/useMentionState.js +24 -0
- package/dist/esm/lib/components/message-editor/editor-extensions/custom-paragraph.js +13 -0
- package/dist/esm/lib/components/message-editor/editor-extensions/custom-placeholder/custom-placeholder-utils.js +26 -0
- package/dist/esm/lib/components/message-editor/editor-extensions/custom-placeholder/custom-placeholder.js +2 -0
- package/dist/esm/lib/components/message-editor/error-message.js +17 -0
- package/dist/esm/lib/components/message-editor/hooks/useMessageEditor.js +68 -0
- package/dist/esm/lib/components/message-editor/hooks/useMessagePost.js +35 -0
- package/dist/esm/lib/components/message-editor/message-editor-actions.js +29 -0
- package/dist/esm/lib/components/message-editor/message-editor-context.js +7 -0
- package/dist/esm/lib/components/message-editor/message-editor.js +74 -0
- package/dist/esm/lib/components/message-editor/messages.js +44 -0
- package/dist/esm/lib/components/message-editor/utils/getMessageEditorState.js +9 -0
- package/dist/esm/lib/components/message-header/delete-annotations-message-popover.js +2 -0
- package/dist/esm/lib/components/message-header/message-header.js +2 -0
- package/dist/esm/lib/components/message-header/messages.js +32 -0
- package/dist/esm/lib/components/messages-view/consts.js +2 -0
- package/dist/esm/lib/components/messages-view/hooks/useAutoScroll.js +43 -0
- package/dist/esm/lib/components/messages-view/hooks/useShowMoreReplies.js +26 -0
- package/dist/esm/lib/components/messages-view/hooks/useVirtualizedMessages.js +17 -0
- package/dist/esm/lib/components/messages-view/messages-view.js +61 -0
- package/dist/esm/lib/components/messages-view/messages.js +12 -0
- package/dist/esm/lib/components/messages-view/virtualized-messages.js +2 -0
- package/dist/esm/lib/components/text-message/message-renderer.js +58 -0
- package/dist/esm/lib/components/text-message/text-message.js +2 -0
- package/dist/esm/lib/components/user-avatar/getInitials.js +5 -0
- package/dist/esm/lib/components/user-avatar/messages.js +12 -0
- package/dist/esm/lib/components/user-avatar/user-avatar.js +31 -0
- package/dist/esm/lib/components/v2/annotation-badge/annotation-badge.js +2 -0
- package/dist/esm/lib/components/v2/annotation-badge/index.js +2 -0
- package/dist/esm/lib/components/v2/annotation-badge/messages.js +6 -0
- package/dist/esm/lib/components/v2/message-editor/editor-extensions/custom-mention/custom-mention-suggestions.js +23 -0
- package/dist/esm/lib/components/v2/message-editor/editor-extensions/custom-mention/custom-mention.js +59 -0
- package/dist/esm/lib/components/v2/message-editor/editor-extensions/custom-mention/mention-trigger-normalization.js +2 -0
- package/dist/esm/lib/components/v2/message-editor/editor-extensions/custom-mention/useMentionState.js +24 -0
- package/dist/esm/lib/components/v2/message-editor/editor-extensions/custom-paragraph.js +13 -0
- package/dist/esm/lib/components/v2/message-editor/hooks/useCharacterLimit.js +24 -0
- package/dist/esm/lib/components/v2/message-editor/hooks/useEditorContainerState.js +21 -0
- package/dist/esm/lib/components/v2/message-editor/hooks/useMentionUserSelection.js +22 -0
- package/dist/esm/lib/components/v2/message-editor/hooks/useMessageSubmit.js +24 -0
- package/dist/esm/lib/components/v2/message-editor/message-editor-context.js +19 -0
- package/dist/esm/lib/components/v2/message-editor/message-editor.js +159 -0
- package/dist/esm/lib/components/v2/message-editor/message-editor.types.js +4 -0
- package/dist/esm/lib/components/v2/message-editor/messages.js +44 -0
- package/dist/esm/lib/components/v2/message-editor/subcomponents/character-limit-counter.js +26 -0
- package/dist/esm/lib/components/v2/message-editor/subcomponents/edit-buttons.js +32 -0
- package/dist/esm/lib/components/v2/message-editor/subcomponents/error-message.js +22 -0
- package/dist/esm/lib/components/v2/message-editor/subcomponents/post-button.js +27 -0
- package/dist/esm/lib/components/v2/message-header/delete-confirmation-popover.js +2 -0
- package/dist/esm/lib/components/v2/message-header/message-header.js +74 -0
- package/dist/esm/lib/components/v2/message-header/message-options-menu.js +36 -0
- package/dist/esm/lib/components/v2/message-header/messages.js +44 -0
- package/dist/esm/lib/components/v2/messages-view/hooks/useAutoScroll.js +64 -0
- package/dist/esm/lib/components/v2/messages-view/messages-view.js +2 -0
- package/dist/esm/lib/components/v2/resolved-state/messages.js +12 -0
- package/dist/esm/lib/components/v2/resolved-state/resolved-state.js +2 -0
- package/dist/esm/lib/components/v2/show-replies-button/messages.js +12 -0
- package/dist/esm/lib/components/v2/show-replies-button/show-replies-button.js +2 -0
- package/dist/esm/lib/components/v2/text-message/messages.js +20 -0
- package/dist/esm/lib/components/v2/text-message/subcomponents/message-footer.js +2 -0
- package/dist/esm/lib/components/v2/text-message/subcomponents/message-renderer.js +60 -0
- package/dist/esm/lib/components/v2/text-message/text-message.js +57 -0
- package/dist/esm/lib/components/v2/user-avatar/getInitials.js +5 -0
- package/dist/esm/lib/components/v2/user-avatar/messages.js +12 -0
- package/dist/esm/lib/components/v2/user-avatar/user-avatar.js +35 -0
- package/dist/esm/lib/document-node-types.js +0 -0
- package/dist/esm/lib/messages.js +24 -0
- package/dist/esm/lib/threaded-annotations.js +2 -0
- package/dist/esm/lib/utils/getErrorMessage.js +2 -0
- package/dist/esm/lib/v2/constants.js +2 -0
- package/dist/esm/lib/v2/messages.js +6 -0
- package/dist/esm/lib/v2/test-utils/mocks/index.js +7 -0
- package/dist/esm/lib/v2/test-utils/mocks/mock-callbacks.js +15 -0
- package/dist/esm/lib/v2/test-utils/mocks/mock-collaboration-props.js +2 -0
- package/dist/esm/lib/v2/test-utils/mocks/mock-messages-long-strings.js +27 -0
- package/dist/esm/lib/v2/test-utils/mocks/mock-messages.js +198 -0
- package/dist/esm/lib/v2/test-utils/mocks/mock-users.js +86 -0
- package/dist/esm/lib/v2/test-utils/mocks/mock-utilities.js +9 -0
- package/dist/esm/lib/v2/threaded-annotations-context.js +49 -0
- package/dist/esm/lib/v2/threaded-annotations.js +3 -0
- package/dist/esm/lib/v2/types/annotation-badge-types.js +4 -0
- package/dist/esm/lib/v2/types/document-node-types.js +0 -0
- package/dist/esm/lib/v2/types/index.js +2 -0
- package/dist/esm/lib/v2/types/message-types.js +0 -0
- package/dist/esm/lib/v2/utils/build-mention-content.js +20 -0
- package/dist/esm/lib/v2/utils/serialize-mention-markup.js +12 -0
- package/dist/i18n/bn-IN.js +44 -0
- package/dist/i18n/bn-IN.properties +84 -0
- package/dist/i18n/da-DK.js +44 -0
- package/dist/i18n/da-DK.properties +84 -0
- package/dist/i18n/de-DE.js +44 -0
- package/dist/i18n/de-DE.properties +84 -0
- package/dist/i18n/en-AU.js +44 -0
- package/dist/i18n/en-AU.properties +84 -0
- package/dist/i18n/en-CA.js +44 -0
- package/dist/i18n/en-CA.properties +84 -0
- package/dist/i18n/en-GB.js +44 -0
- package/dist/i18n/en-GB.properties +84 -0
- package/dist/i18n/en-US.js +44 -0
- package/dist/i18n/en-US.properties +84 -0
- package/dist/i18n/en-x-pseudo.js +44 -0
- package/dist/i18n/en-x-pseudo.properties +84 -0
- package/dist/i18n/es-419.js +44 -0
- package/dist/i18n/es-419.properties +84 -0
- package/dist/i18n/es-ES.js +44 -0
- package/dist/i18n/es-ES.properties +84 -0
- package/dist/i18n/fi-FI.js +44 -0
- package/dist/i18n/fi-FI.properties +84 -0
- package/dist/i18n/fr-CA.js +44 -0
- package/dist/i18n/fr-CA.properties +84 -0
- package/dist/i18n/fr-FR.js +44 -0
- package/dist/i18n/fr-FR.properties +84 -0
- package/dist/i18n/hi-IN.js +44 -0
- package/dist/i18n/hi-IN.properties +84 -0
- package/dist/i18n/it-IT.js +44 -0
- package/dist/i18n/it-IT.properties +84 -0
- package/dist/i18n/ja-JP.js +44 -0
- package/dist/i18n/ja-JP.properties +84 -0
- package/dist/i18n/json/src/lib/components/message-editor/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/message-header/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/messages-view/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/user-avatar/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/v2/annotation-badge/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/v2/message-editor/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/v2/message-header/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/v2/resolved-state/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/v2/show-replies-button/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/v2/text-message/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/v2/user-avatar/messages.json +1 -0
- package/dist/i18n/json/src/lib/messages.json +1 -0
- package/dist/i18n/json/src/lib/v2/messages.json +1 -0
- package/dist/i18n/ko-KR.js +44 -0
- package/dist/i18n/ko-KR.properties +84 -0
- package/dist/i18n/nb-NO.js +44 -0
- package/dist/i18n/nb-NO.properties +84 -0
- package/dist/i18n/nl-NL.js +44 -0
- package/dist/i18n/nl-NL.properties +84 -0
- package/dist/i18n/pl-PL.js +44 -0
- package/dist/i18n/pl-PL.properties +84 -0
- package/dist/i18n/pt-BR.js +44 -0
- package/dist/i18n/pt-BR.properties +84 -0
- package/dist/i18n/ru-RU.js +44 -0
- package/dist/i18n/ru-RU.properties +84 -0
- package/dist/i18n/sv-SE.js +44 -0
- package/dist/i18n/sv-SE.properties +84 -0
- package/dist/i18n/tr-TR.js +44 -0
- package/dist/i18n/tr-TR.properties +84 -0
- package/dist/i18n/zh-CN.js +44 -0
- package/dist/i18n/zh-CN.properties +84 -0
- package/dist/i18n/zh-TW.js +44 -0
- package/dist/i18n/zh-TW.properties +84 -0
- package/dist/styles/annotation-badge.css +1 -0
- package/dist/styles/custom-placeholder.css +1 -0
- package/dist/styles/delete-annotations-message-popover.css +1 -0
- package/dist/styles/delete-confirmation-popover.css +1 -0
- package/dist/styles/mention-component.css +1 -0
- package/dist/styles/message-editor.css +1 -0
- package/dist/styles/message-editor2.css +1 -0
- package/dist/styles/message-footer.css +1 -0
- package/dist/styles/message-header.css +1 -0
- package/dist/styles/messages-view.css +1 -0
- package/dist/styles/resolved-state.css +1 -0
- package/dist/styles/show-replies-button.css +1 -0
- package/dist/styles/text-message.css +1 -0
- package/dist/styles/threaded-annotations.css +1 -0
- package/dist/styles/threaded-annotations2.css +1 -0
- package/dist/styles/virtualized-messages.css +1 -0
- package/dist/types/index.d.ts +9 -0
- package/dist/types/lib/components/mention-component/mention-component.d.ts +12 -0
- package/dist/types/lib/components/mention-component/mention-context.d.ts +31 -0
- package/dist/types/lib/components/message-editor/editor-extensions/custom-mention/custom-mention-suggestions.d.ts +15 -0
- package/dist/types/lib/components/message-editor/editor-extensions/custom-mention/custom-mention.d.ts +1 -0
- package/dist/types/lib/components/message-editor/editor-extensions/custom-mention/useMentionState.d.ts +15 -0
- package/dist/types/lib/components/message-editor/editor-extensions/custom-paragraph.d.ts +1 -0
- package/dist/types/lib/components/message-editor/editor-extensions/custom-placeholder/custom-placeholder-utils.d.ts +38 -0
- package/dist/types/lib/components/message-editor/editor-extensions/custom-placeholder/custom-placeholder.d.ts +2 -0
- package/dist/types/lib/components/message-editor/error-message.d.ts +3 -0
- package/dist/types/lib/components/message-editor/hooks/useMessageEditor.d.ts +12 -0
- package/dist/types/lib/components/message-editor/hooks/useMessagePost.d.ts +18 -0
- package/dist/types/lib/components/message-editor/message-editor-actions.d.ts +9 -0
- package/dist/types/lib/components/message-editor/message-editor-context.d.ts +13 -0
- package/dist/types/lib/components/message-editor/message-editor.d.ts +36 -0
- package/dist/types/lib/components/message-editor/messages.d.ts +53 -0
- package/dist/types/lib/components/message-editor/stories/shared.d.ts +4 -0
- package/dist/types/lib/components/message-editor/stories/utils/mock-props.d.ts +4 -0
- package/dist/types/lib/components/message-editor/stories/utils/test-utils.d.ts +2 -0
- package/dist/types/lib/components/message-editor/utils/getMessageEditorState.d.ts +13 -0
- package/dist/types/lib/components/message-header/delete-annotations-message-popover.d.ts +11 -0
- package/dist/types/lib/components/message-header/message-header.d.ts +18 -0
- package/dist/types/lib/components/message-header/messages.d.ts +38 -0
- package/dist/types/lib/components/messages-view/consts.d.ts +4 -0
- package/dist/types/lib/components/messages-view/hooks/useAutoScroll.d.ts +9 -0
- package/dist/types/lib/components/messages-view/hooks/useShowMoreReplies.d.ts +10 -0
- package/dist/types/lib/components/messages-view/hooks/useVirtualizedMessages.d.ts +13 -0
- package/dist/types/lib/components/messages-view/messages-view.d.ts +20 -0
- package/dist/types/lib/components/messages-view/messages.d.ts +13 -0
- package/dist/types/lib/components/messages-view/virtualized-messages.d.ts +22 -0
- package/dist/types/lib/components/text-message/message-renderer.d.ts +6 -0
- package/dist/types/lib/components/text-message/stories/shared.d.ts +2 -0
- package/dist/types/lib/components/text-message/stories/utils/test-utils.d.ts +2 -0
- package/dist/types/lib/components/text-message/text-message.d.ts +17 -0
- package/dist/types/lib/components/text-message/types.d.ts +35 -0
- package/dist/types/lib/components/user-avatar/getInitials.d.ts +1 -0
- package/dist/types/lib/components/user-avatar/messages.d.ts +13 -0
- package/dist/types/lib/components/user-avatar/user-avatar.d.ts +10 -0
- package/dist/types/lib/components/v2/annotation-badge/annotation-badge.d.ts +7 -0
- package/dist/types/lib/components/v2/annotation-badge/index.d.ts +1 -0
- package/dist/types/lib/components/v2/annotation-badge/messages.d.ts +8 -0
- package/dist/types/lib/components/v2/message-editor/editor-extensions/custom-mention/custom-mention-suggestions.d.ts +15 -0
- package/dist/types/lib/components/v2/message-editor/editor-extensions/custom-mention/custom-mention.d.ts +1 -0
- package/dist/types/lib/components/v2/message-editor/editor-extensions/custom-mention/mention-trigger-normalization.d.ts +5 -0
- package/dist/types/lib/components/v2/message-editor/editor-extensions/custom-mention/useMentionState.d.ts +15 -0
- package/dist/types/lib/components/v2/message-editor/editor-extensions/custom-paragraph.d.ts +1 -0
- package/dist/types/lib/components/v2/message-editor/hooks/useCharacterLimit.d.ts +15 -0
- package/dist/types/lib/components/v2/message-editor/hooks/useEditorContainerState.d.ts +27 -0
- package/dist/types/lib/components/v2/message-editor/hooks/useMentionUserSelection.d.ts +5 -0
- package/dist/types/lib/components/v2/message-editor/hooks/useMessageSubmit.d.ts +13 -0
- package/dist/types/lib/components/v2/message-editor/message-editor-context.d.ts +12 -0
- package/dist/types/lib/components/v2/message-editor/message-editor.d.ts +3 -0
- package/dist/types/lib/components/v2/message-editor/message-editor.types.d.ts +69 -0
- package/dist/types/lib/components/v2/message-editor/messages.d.ts +53 -0
- package/dist/types/lib/components/v2/message-editor/stories/shared.d.ts +3 -0
- package/dist/types/lib/components/v2/message-editor/stories/utils/mock-props.d.ts +6 -0
- package/dist/types/lib/components/v2/message-editor/stories/utils/test-utils.d.ts +10 -0
- package/dist/types/lib/components/v2/message-editor/subcomponents/character-limit-counter.d.ts +7 -0
- package/dist/types/lib/components/v2/message-editor/subcomponents/edit-buttons.d.ts +11 -0
- package/dist/types/lib/components/v2/message-editor/subcomponents/error-message.d.ts +3 -0
- package/dist/types/lib/components/v2/message-editor/subcomponents/post-button.d.ts +11 -0
- package/dist/types/lib/components/v2/message-header/delete-confirmation-popover.d.ts +11 -0
- package/dist/types/lib/components/v2/message-header/message-header.d.ts +32 -0
- package/dist/types/lib/components/v2/message-header/message-options-menu.d.ts +12 -0
- package/dist/types/lib/components/v2/message-header/messages.d.ts +53 -0
- package/dist/types/lib/components/v2/message-header/stories/shared.d.ts +2 -0
- package/dist/types/lib/components/v2/message-header/stories/utils/test-utils.d.ts +1 -0
- package/dist/types/lib/components/v2/messages-view/hooks/useAutoScroll.d.ts +12 -0
- package/dist/types/lib/components/v2/messages-view/messages-view.d.ts +17 -0
- package/dist/types/lib/components/v2/messages-view/stories/shared.d.ts +7 -0
- package/dist/types/lib/components/v2/resolved-state/messages.d.ts +13 -0
- package/dist/types/lib/components/v2/resolved-state/resolved-state.d.ts +11 -0
- package/dist/types/lib/components/v2/resolved-state/stories/shared.d.ts +2 -0
- package/dist/types/lib/components/v2/show-replies-button/messages.d.ts +13 -0
- package/dist/types/lib/components/v2/show-replies-button/show-replies-button.d.ts +8 -0
- package/dist/types/lib/components/v2/text-message/messages.d.ts +23 -0
- package/dist/types/lib/components/v2/text-message/stories/shared.d.ts +2 -0
- package/dist/types/lib/components/v2/text-message/stories/utils/test-utils.d.ts +2 -0
- package/dist/types/lib/components/v2/text-message/subcomponents/message-footer.d.ts +10 -0
- package/dist/types/lib/components/v2/text-message/subcomponents/message-renderer.d.ts +6 -0
- package/dist/types/lib/components/v2/text-message/text-message.d.ts +26 -0
- package/dist/types/lib/components/v2/user-avatar/getInitials.d.ts +1 -0
- package/dist/types/lib/components/v2/user-avatar/messages.d.ts +13 -0
- package/dist/types/lib/components/v2/user-avatar/user-avatar.d.ts +12 -0
- package/dist/types/lib/document-node-types.d.ts +32 -0
- package/dist/types/lib/messages.d.ts +28 -0
- package/dist/types/lib/stories/mock/index.d.ts +5 -0
- package/dist/types/lib/stories/mock/mock-callbacks.d.ts +6 -0
- package/dist/types/lib/stories/mock/mock-messages-long-strings.d.ts +11 -0
- package/dist/types/lib/stories/mock/mock-messages.d.ts +8 -0
- package/dist/types/lib/stories/mock/mock-users.d.ts +56 -0
- package/dist/types/lib/stories/mock/mock-utilities.d.ts +6 -0
- package/dist/types/lib/stories/shared.d.ts +9 -0
- package/dist/types/lib/stories/utils/mock-collaboration-props.d.ts +13 -0
- package/dist/types/lib/stories/utils/mock-props.d.ts +20 -0
- package/dist/types/lib/stories/utils/mock-state.d.ts +8 -0
- package/dist/types/lib/stories/utils/shared/button-utils.d.ts +6 -0
- package/dist/types/lib/stories/utils/shared/index.d.ts +4 -0
- package/dist/types/lib/stories/utils/shared/interaction-utils.d.ts +4 -0
- package/dist/types/lib/stories/utils/shared/test-selectors.d.ts +7 -0
- package/dist/types/lib/stories/utils/shared/text-utils.d.ts +4 -0
- package/dist/types/lib/stories/utils/shared/verify-mention-elements.d.ts +2 -0
- package/dist/types/lib/stories/utils/test-utils.d.ts +3 -0
- package/dist/types/lib/threaded-annotations.d.ts +51 -0
- package/dist/types/lib/utils/getErrorMessage.d.ts +1 -0
- package/dist/types/lib/v2/constants.d.ts +8 -0
- package/dist/types/lib/v2/messages.d.ts +8 -0
- package/dist/types/lib/v2/stories/shared.d.ts +18 -0
- package/dist/types/lib/v2/test-utils/button-utils.d.ts +15 -0
- package/dist/types/lib/v2/test-utils/default-user-selector-props.d.ts +2 -0
- package/dist/types/lib/v2/test-utils/index.d.ts +7 -0
- package/dist/types/lib/v2/test-utils/interaction-utils.d.ts +9 -0
- package/dist/types/lib/v2/test-utils/mocks/index.d.ts +6 -0
- package/dist/types/lib/v2/test-utils/mocks/mock-callbacks.d.ts +8 -0
- package/dist/types/lib/v2/test-utils/mocks/mock-collaboration-props.d.ts +13 -0
- package/dist/types/lib/v2/test-utils/mocks/mock-messages-long-strings.d.ts +5 -0
- package/dist/types/lib/v2/test-utils/mocks/mock-messages.d.ts +10 -0
- package/dist/types/lib/v2/test-utils/mocks/mock-users.d.ts +55 -0
- package/dist/types/lib/v2/test-utils/mocks/mock-utilities.d.ts +6 -0
- package/dist/types/lib/v2/test-utils/test-selectors.d.ts +12 -0
- package/dist/types/lib/v2/test-utils/text-utils.d.ts +3 -0
- package/dist/types/lib/v2/test-utils/verify-mention-elements.d.ts +2 -0
- package/dist/types/lib/v2/threaded-annotations-context.d.ts +47 -0
- package/dist/types/lib/v2/threaded-annotations.d.ts +42 -0
- package/dist/types/lib/v2/types/annotation-badge-types.d.ts +23 -0
- package/dist/types/lib/v2/types/document-node-types.d.ts +32 -0
- package/dist/types/lib/v2/types/index.d.ts +3 -0
- package/dist/types/lib/v2/types/message-types.d.ts +33 -0
- package/dist/types/lib/v2/utils/build-mention-content.d.ts +3 -0
- package/dist/types/lib/v2/utils/serialize-mention-markup.d.ts +16 -0
- package/package.json +66 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# Aria label for the threaded annotations container button
|
|
2
|
+
boxui.threadedAnnotations.threadedAnnotationsAriaLabel = Trådannotering
|
|
3
|
+
# Aria label for annotation message container
|
|
4
|
+
groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Merknadsmelding
|
|
5
|
+
# Label showing the page number of an annotation target
|
|
6
|
+
groupSharedFeatures.threadedAnnotations.annotationPage = Side {number}
|
|
7
|
+
# Aria label for cancel delete button
|
|
8
|
+
groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = Avbryt slett-knapp
|
|
9
|
+
# Delete button text
|
|
10
|
+
groupSharedFeatures.threadedAnnotations.delete = Slett
|
|
11
|
+
# Aria label for delete button
|
|
12
|
+
groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Slett-knapp
|
|
13
|
+
# Cancel button text for delete confirmation dialog
|
|
14
|
+
groupSharedFeatures.threadedAnnotations.deleteCancel = Avbryt
|
|
15
|
+
# Confirmation text asking user if they want to delete a comment
|
|
16
|
+
groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = Vil du slette denne kommentaren?
|
|
17
|
+
# Confirmation text asking user if they want to delete a comment and its replies
|
|
18
|
+
groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = Vil du slette denne kommentaren og svar? Denne handlingen kan ikke angres.
|
|
19
|
+
# Aria label for delete confirmation popover
|
|
20
|
+
groupSharedFeatures.threadedAnnotations.deleteConfirmation = Bekreftelse på sletting
|
|
21
|
+
# Edit option in message context menu
|
|
22
|
+
groupSharedFeatures.threadedAnnotations.edit = Rediger
|
|
23
|
+
# Button text to hide replies in threaded annotations
|
|
24
|
+
groupSharedFeatures.threadedAnnotations.hideReplies = Skjul svar
|
|
25
|
+
# Text shown after the author name when a comment thread is marked as resolved
|
|
26
|
+
groupSharedFeatures.threadedAnnotations.markedAsResolved = merket som løst
|
|
27
|
+
# Cancel button text for message editor
|
|
28
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.cancel = Avbryt
|
|
29
|
+
# Aria label for the cancel button in message editor
|
|
30
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel = Avbryt-knapp
|
|
31
|
+
# Character count display showing current count and maximum allowed
|
|
32
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.characterCount = {count}/{maxCount}
|
|
33
|
+
# Screen reader alert and tooltip text shown when character limit is exceeded
|
|
34
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded = Kommentaren din er {excess,plural,one{# tegn} other{# tegn}} for lang
|
|
35
|
+
# Aria label for the rich text editor content area
|
|
36
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel = Meldingsredigerer
|
|
37
|
+
# Aria label for message editor placeholder
|
|
38
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel = Plassholder for meldingstekst
|
|
39
|
+
# First part of placeholder text before @ symbol
|
|
40
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix = Skriv en kommentar eller
|
|
41
|
+
# First part of placeholder text before @ symbol for reply
|
|
42
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply = Skriv et svar eller
|
|
43
|
+
# Last part of placeholder text after @ symbol
|
|
44
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix = for å nevne
|
|
45
|
+
# Placeholder text for uplifted message editor
|
|
46
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted = Legg igjen en kommentar eller @ for å nevne
|
|
47
|
+
# Post button text for message editor
|
|
48
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.post = Publiser
|
|
49
|
+
# Aria label for the post button in message editor
|
|
50
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel = Publiser-knapp
|
|
51
|
+
# Aria label for post button loading state
|
|
52
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.postLoading = Laster …
|
|
53
|
+
# Save button text for message editor
|
|
54
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.save = Lagre
|
|
55
|
+
# Aria label for save button loading state
|
|
56
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading = Lagrer ...
|
|
57
|
+
# Aria label for the scrollable message editor content container
|
|
58
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel = Rullebeholder for meldingsredaktør
|
|
59
|
+
# Aria label for more options button in annotation message
|
|
60
|
+
groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel = Knapp for flere alternativer
|
|
61
|
+
# Reply button text to start composing a reply
|
|
62
|
+
groupSharedFeatures.threadedAnnotations.reply = Svar
|
|
63
|
+
# Aria label for the reply button that opens the message editor
|
|
64
|
+
groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = Svar-knapp
|
|
65
|
+
# Aria label for resolve button
|
|
66
|
+
groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = Avklar
|
|
67
|
+
# Aria label for the resolution status message container
|
|
68
|
+
groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = Melding om løsningsstatus
|
|
69
|
+
# Button text to show more replies with count
|
|
70
|
+
groupSharedFeatures.threadedAnnotations.showMoreReplies = {count,plural,one{# more reply} other{# more replies}}
|
|
71
|
+
# Button text to show replies with count
|
|
72
|
+
groupSharedFeatures.threadedAnnotations.showReplies = {number,plural,one{Vis # svar} other{Vis # flere svar}}
|
|
73
|
+
# Aria label for the reply button
|
|
74
|
+
groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Svar-knapp
|
|
75
|
+
# Aria label for user mention links
|
|
76
|
+
groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = Brukerhenvisning
|
|
77
|
+
# Aria label for message text content
|
|
78
|
+
groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Meldingstekst
|
|
79
|
+
# Aria label for unresolve button
|
|
80
|
+
groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Uavklar
|
|
81
|
+
# Alt text for user avatar image
|
|
82
|
+
groupSharedFeatures.threadedAnnotations.userAvatar = Brukeravatar
|
|
83
|
+
# Aria label for clickable user avatar button
|
|
84
|
+
groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel = Vis brukerprofil-knapp
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxui.threadedAnnotations.threadedAnnotationsAriaLabel": "Threaded aantekening",
|
|
3
|
+
"groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel": "Aantekeningbericht",
|
|
4
|
+
"groupSharedFeatures.threadedAnnotations.annotationPage": "Pagina {number}",
|
|
5
|
+
"groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel": "Knop Verwijdering annuleren",
|
|
6
|
+
"groupSharedFeatures.threadedAnnotations.delete": "Verwijderen",
|
|
7
|
+
"groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel": "Knop Verwijderen",
|
|
8
|
+
"groupSharedFeatures.threadedAnnotations.deleteCancel": "Annuleren",
|
|
9
|
+
"groupSharedFeatures.threadedAnnotations.deleteCommentQuestion": "Wil je deze opmerking verwijderen?",
|
|
10
|
+
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "Deze opmerking en antwoorden verwijderen? Deze actie kan niet ongedaan worden gemaakt.",
|
|
11
|
+
"groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Bevestiging verwijderen",
|
|
12
|
+
"groupSharedFeatures.threadedAnnotations.edit": "Bewerken",
|
|
13
|
+
"groupSharedFeatures.threadedAnnotations.hideReplies": "Reacties verbergen",
|
|
14
|
+
"groupSharedFeatures.threadedAnnotations.markedAsResolved": "gemarkeerd als opgelost",
|
|
15
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Annuleren",
|
|
16
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel": "Knop Annuleren",
|
|
17
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.characterCount": "{count}/{maxCount}",
|
|
18
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded": "Uw opmerking heeft {excess,plural,one{# teken} other{# tekens}} te veel",
|
|
19
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel": "Berichenteditor",
|
|
20
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel": "Tijdelijke aanduiding voor berichtinvoer",
|
|
21
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix": "Schrijf een opmerking of",
|
|
22
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply": "Schrijf een antwoord of",
|
|
23
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix": "om te noemen",
|
|
24
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted": "Laat een opmerking of @ achter om iemand te noemen",
|
|
25
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.post": "Publiceren",
|
|
26
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel": "Knop Plaatsen",
|
|
27
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.postLoading": "Laden…",
|
|
28
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.save": "Opslaan",
|
|
29
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading": "Wordt opgeslagen …",
|
|
30
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel": "Scrolcontainer berichteneditor",
|
|
31
|
+
"groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel": "Knop Meer opties",
|
|
32
|
+
"groupSharedFeatures.threadedAnnotations.reply": "Beantwoorden",
|
|
33
|
+
"groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel": "Knop Beantwoorden",
|
|
34
|
+
"groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel": "Oplossen",
|
|
35
|
+
"groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel": "Statusbericht oplossing",
|
|
36
|
+
"groupSharedFeatures.threadedAnnotations.showMoreReplies": "{count,plural,one{nog # reactie} other{nog # reacties}}",
|
|
37
|
+
"groupSharedFeatures.threadedAnnotations.showReplies": "{number,plural,one{# antwoord tonen} other{Nog # antwoorden tonen}}",
|
|
38
|
+
"groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel": "Knop Beantwoorden",
|
|
39
|
+
"groupSharedFeatures.threadedAnnotations.textMentionAriaLabel": "Gebruikersvermelding",
|
|
40
|
+
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Berichttekst",
|
|
41
|
+
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Oplossing ongedaan maken",
|
|
42
|
+
"groupSharedFeatures.threadedAnnotations.userAvatar": "Avatar van de gebruiker",
|
|
43
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Knop Gebruikersprofiel bekijken"
|
|
44
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# Aria label for the threaded annotations container button
|
|
2
|
+
boxui.threadedAnnotations.threadedAnnotationsAriaLabel = Threaded aantekening
|
|
3
|
+
# Aria label for annotation message container
|
|
4
|
+
groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Aantekeningbericht
|
|
5
|
+
# Label showing the page number of an annotation target
|
|
6
|
+
groupSharedFeatures.threadedAnnotations.annotationPage = Pagina {number}
|
|
7
|
+
# Aria label for cancel delete button
|
|
8
|
+
groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = Knop Verwijdering annuleren
|
|
9
|
+
# Delete button text
|
|
10
|
+
groupSharedFeatures.threadedAnnotations.delete = Verwijderen
|
|
11
|
+
# Aria label for delete button
|
|
12
|
+
groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Knop Verwijderen
|
|
13
|
+
# Cancel button text for delete confirmation dialog
|
|
14
|
+
groupSharedFeatures.threadedAnnotations.deleteCancel = Annuleren
|
|
15
|
+
# Confirmation text asking user if they want to delete a comment
|
|
16
|
+
groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = Wil je deze opmerking verwijderen?
|
|
17
|
+
# Confirmation text asking user if they want to delete a comment and its replies
|
|
18
|
+
groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = Deze opmerking en antwoorden verwijderen? Deze actie kan niet ongedaan worden gemaakt.
|
|
19
|
+
# Aria label for delete confirmation popover
|
|
20
|
+
groupSharedFeatures.threadedAnnotations.deleteConfirmation = Bevestiging verwijderen
|
|
21
|
+
# Edit option in message context menu
|
|
22
|
+
groupSharedFeatures.threadedAnnotations.edit = Bewerken
|
|
23
|
+
# Button text to hide replies in threaded annotations
|
|
24
|
+
groupSharedFeatures.threadedAnnotations.hideReplies = Reacties verbergen
|
|
25
|
+
# Text shown after the author name when a comment thread is marked as resolved
|
|
26
|
+
groupSharedFeatures.threadedAnnotations.markedAsResolved = gemarkeerd als opgelost
|
|
27
|
+
# Cancel button text for message editor
|
|
28
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.cancel = Annuleren
|
|
29
|
+
# Aria label for the cancel button in message editor
|
|
30
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel = Knop Annuleren
|
|
31
|
+
# Character count display showing current count and maximum allowed
|
|
32
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.characterCount = {count}/{maxCount}
|
|
33
|
+
# Screen reader alert and tooltip text shown when character limit is exceeded
|
|
34
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded = Uw opmerking heeft {excess,plural,one{# teken} other{# tekens}} te veel
|
|
35
|
+
# Aria label for the rich text editor content area
|
|
36
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel = Berichenteditor
|
|
37
|
+
# Aria label for message editor placeholder
|
|
38
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel = Tijdelijke aanduiding voor berichtinvoer
|
|
39
|
+
# First part of placeholder text before @ symbol
|
|
40
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix = Schrijf een opmerking of
|
|
41
|
+
# First part of placeholder text before @ symbol for reply
|
|
42
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply = Schrijf een antwoord of
|
|
43
|
+
# Last part of placeholder text after @ symbol
|
|
44
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix = om te noemen
|
|
45
|
+
# Placeholder text for uplifted message editor
|
|
46
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted = Laat een opmerking of @ achter om iemand te noemen
|
|
47
|
+
# Post button text for message editor
|
|
48
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.post = Publiceren
|
|
49
|
+
# Aria label for the post button in message editor
|
|
50
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel = Knop Plaatsen
|
|
51
|
+
# Aria label for post button loading state
|
|
52
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.postLoading = Laden…
|
|
53
|
+
# Save button text for message editor
|
|
54
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.save = Opslaan
|
|
55
|
+
# Aria label for save button loading state
|
|
56
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading = Wordt opgeslagen …
|
|
57
|
+
# Aria label for the scrollable message editor content container
|
|
58
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel = Scrolcontainer berichteneditor
|
|
59
|
+
# Aria label for more options button in annotation message
|
|
60
|
+
groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel = Knop Meer opties
|
|
61
|
+
# Reply button text to start composing a reply
|
|
62
|
+
groupSharedFeatures.threadedAnnotations.reply = Beantwoorden
|
|
63
|
+
# Aria label for the reply button that opens the message editor
|
|
64
|
+
groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = Knop Beantwoorden
|
|
65
|
+
# Aria label for resolve button
|
|
66
|
+
groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = Oplossen
|
|
67
|
+
# Aria label for the resolution status message container
|
|
68
|
+
groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = Statusbericht oplossing
|
|
69
|
+
# Button text to show more replies with count
|
|
70
|
+
groupSharedFeatures.threadedAnnotations.showMoreReplies = {count,plural,one{nog # reactie} other{nog # reacties}}
|
|
71
|
+
# Button text to show replies with count
|
|
72
|
+
groupSharedFeatures.threadedAnnotations.showReplies = {number,plural,one{# antwoord tonen} other{Nog # antwoorden tonen}}
|
|
73
|
+
# Aria label for the reply button
|
|
74
|
+
groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Knop Beantwoorden
|
|
75
|
+
# Aria label for user mention links
|
|
76
|
+
groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = Gebruikersvermelding
|
|
77
|
+
# Aria label for message text content
|
|
78
|
+
groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Berichttekst
|
|
79
|
+
# Aria label for unresolve button
|
|
80
|
+
groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Oplossing ongedaan maken
|
|
81
|
+
# Alt text for user avatar image
|
|
82
|
+
groupSharedFeatures.threadedAnnotations.userAvatar = Avatar van de gebruiker
|
|
83
|
+
# Aria label for clickable user avatar button
|
|
84
|
+
groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel = Knop Gebruikersprofiel bekijken
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxui.threadedAnnotations.threadedAnnotationsAriaLabel": "Wątkowa uwaga",
|
|
3
|
+
"groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel": "Komunikat uwagi",
|
|
4
|
+
"groupSharedFeatures.threadedAnnotations.annotationPage": "Strona {number}",
|
|
5
|
+
"groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel": "Przycisk anulowania usuwania",
|
|
6
|
+
"groupSharedFeatures.threadedAnnotations.delete": "Usuń",
|
|
7
|
+
"groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel": "Przycisk usuwania",
|
|
8
|
+
"groupSharedFeatures.threadedAnnotations.deleteCancel": "Anuluj",
|
|
9
|
+
"groupSharedFeatures.threadedAnnotations.deleteCommentQuestion": "Czy chcesz usunąć ten komentarz?",
|
|
10
|
+
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "Usunąć ten komentarz i odpowiedzi? Nie można cofnąć tego działania.",
|
|
11
|
+
"groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Potwierdzenie usunięcia",
|
|
12
|
+
"groupSharedFeatures.threadedAnnotations.edit": "Edytuj",
|
|
13
|
+
"groupSharedFeatures.threadedAnnotations.hideReplies": "Ukryj odpowiedzi",
|
|
14
|
+
"groupSharedFeatures.threadedAnnotations.markedAsResolved": "oznaczono jako rozwiązane",
|
|
15
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Anuluj",
|
|
16
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel": "Przycisk anulowania",
|
|
17
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.characterCount": "{count}/{maxCount}",
|
|
18
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded": "Twój komentarz jest za długi o {excess,plural,one{# znak} few{# znaki\t} many{# znaków} other{# znaku}}",
|
|
19
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel": "Edytor wiadomości",
|
|
20
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel": "Tekst zastępczy wprowadzania wiadomości",
|
|
21
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix": "Napisz komentarz lub",
|
|
22
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply": "Napisz odpowiedź lub",
|
|
23
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix": "wspomnij",
|
|
24
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted": "Pozostaw komentarz lub @, aby wspomnieć",
|
|
25
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.post": "Publikuj",
|
|
26
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel": "Przycisk publikowania",
|
|
27
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.postLoading": "Wczytywanie…",
|
|
28
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.save": "Zapisz",
|
|
29
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading": "Trwa zapisywanie...",
|
|
30
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel": "Kontener przewijania edytora wiadomości",
|
|
31
|
+
"groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel": "Przycisk większej liczby opcji",
|
|
32
|
+
"groupSharedFeatures.threadedAnnotations.reply": "Odpowiedz",
|
|
33
|
+
"groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel": "Przycisk odpowiedzi",
|
|
34
|
+
"groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel": "Rozstrzygnij",
|
|
35
|
+
"groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel": "Wiadomość o statusie rozwiązania",
|
|
36
|
+
"groupSharedFeatures.threadedAnnotations.showMoreReplies": "{count,plural,one{# dodatkowa odpowiedź} other{# dodatkowej odpowiedzi} few{# dodatkowe odpowiedzi} many{# dodatkowych odpowiedzi}}",
|
|
37
|
+
"groupSharedFeatures.threadedAnnotations.showReplies": "{number,plural,one{Pokaż # odpowiedź} few{Pokaż # odpowiedzi} many{Pokaż # odpowiedzi} other{Pokaż # odpowiedzi}}",
|
|
38
|
+
"groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel": "Przycisk odpowiedzi",
|
|
39
|
+
"groupSharedFeatures.threadedAnnotations.textMentionAriaLabel": "Wspomnienie użytkownika",
|
|
40
|
+
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Tekst wiadomości",
|
|
41
|
+
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Anuluj rozstrzygnięcie",
|
|
42
|
+
"groupSharedFeatures.threadedAnnotations.userAvatar": "Awatar użytkownika",
|
|
43
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Przycisk wyświetlania profilu użytkownika"
|
|
44
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# Aria label for the threaded annotations container button
|
|
2
|
+
boxui.threadedAnnotations.threadedAnnotationsAriaLabel = Wątkowa uwaga
|
|
3
|
+
# Aria label for annotation message container
|
|
4
|
+
groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Komunikat uwagi
|
|
5
|
+
# Label showing the page number of an annotation target
|
|
6
|
+
groupSharedFeatures.threadedAnnotations.annotationPage = Strona {number}
|
|
7
|
+
# Aria label for cancel delete button
|
|
8
|
+
groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = Przycisk anulowania usuwania
|
|
9
|
+
# Delete button text
|
|
10
|
+
groupSharedFeatures.threadedAnnotations.delete = Usuń
|
|
11
|
+
# Aria label for delete button
|
|
12
|
+
groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Przycisk usuwania
|
|
13
|
+
# Cancel button text for delete confirmation dialog
|
|
14
|
+
groupSharedFeatures.threadedAnnotations.deleteCancel = Anuluj
|
|
15
|
+
# Confirmation text asking user if they want to delete a comment
|
|
16
|
+
groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = Czy chcesz usunąć ten komentarz?
|
|
17
|
+
# Confirmation text asking user if they want to delete a comment and its replies
|
|
18
|
+
groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = Usunąć ten komentarz i odpowiedzi? Nie można cofnąć tego działania.
|
|
19
|
+
# Aria label for delete confirmation popover
|
|
20
|
+
groupSharedFeatures.threadedAnnotations.deleteConfirmation = Potwierdzenie usunięcia
|
|
21
|
+
# Edit option in message context menu
|
|
22
|
+
groupSharedFeatures.threadedAnnotations.edit = Edytuj
|
|
23
|
+
# Button text to hide replies in threaded annotations
|
|
24
|
+
groupSharedFeatures.threadedAnnotations.hideReplies = Ukryj odpowiedzi
|
|
25
|
+
# Text shown after the author name when a comment thread is marked as resolved
|
|
26
|
+
groupSharedFeatures.threadedAnnotations.markedAsResolved = oznaczono jako rozwiązane
|
|
27
|
+
# Cancel button text for message editor
|
|
28
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.cancel = Anuluj
|
|
29
|
+
# Aria label for the cancel button in message editor
|
|
30
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel = Przycisk anulowania
|
|
31
|
+
# Character count display showing current count and maximum allowed
|
|
32
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.characterCount = {count}/{maxCount}
|
|
33
|
+
# Screen reader alert and tooltip text shown when character limit is exceeded
|
|
34
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded = Twój komentarz jest za długi o {excess,plural,one{# znak} few{# znaki\t} many{# znaków} other{# znaku}}
|
|
35
|
+
# Aria label for the rich text editor content area
|
|
36
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel = Edytor wiadomości
|
|
37
|
+
# Aria label for message editor placeholder
|
|
38
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel = Tekst zastępczy wprowadzania wiadomości
|
|
39
|
+
# First part of placeholder text before @ symbol
|
|
40
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix = Napisz komentarz lub
|
|
41
|
+
# First part of placeholder text before @ symbol for reply
|
|
42
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply = Napisz odpowiedź lub
|
|
43
|
+
# Last part of placeholder text after @ symbol
|
|
44
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix = wspomnij
|
|
45
|
+
# Placeholder text for uplifted message editor
|
|
46
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted = Pozostaw komentarz lub @, aby wspomnieć
|
|
47
|
+
# Post button text for message editor
|
|
48
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.post = Publikuj
|
|
49
|
+
# Aria label for the post button in message editor
|
|
50
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel = Przycisk publikowania
|
|
51
|
+
# Aria label for post button loading state
|
|
52
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.postLoading = Wczytywanie…
|
|
53
|
+
# Save button text for message editor
|
|
54
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.save = Zapisz
|
|
55
|
+
# Aria label for save button loading state
|
|
56
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading = Trwa zapisywanie...
|
|
57
|
+
# Aria label for the scrollable message editor content container
|
|
58
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel = Kontener przewijania edytora wiadomości
|
|
59
|
+
# Aria label for more options button in annotation message
|
|
60
|
+
groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel = Przycisk większej liczby opcji
|
|
61
|
+
# Reply button text to start composing a reply
|
|
62
|
+
groupSharedFeatures.threadedAnnotations.reply = Odpowiedz
|
|
63
|
+
# Aria label for the reply button that opens the message editor
|
|
64
|
+
groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = Przycisk odpowiedzi
|
|
65
|
+
# Aria label for resolve button
|
|
66
|
+
groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = Rozstrzygnij
|
|
67
|
+
# Aria label for the resolution status message container
|
|
68
|
+
groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = Wiadomość o statusie rozwiązania
|
|
69
|
+
# Button text to show more replies with count
|
|
70
|
+
groupSharedFeatures.threadedAnnotations.showMoreReplies = {count,plural,one{# dodatkowa odpowiedź} other{# dodatkowej odpowiedzi} few{# dodatkowe odpowiedzi} many{# dodatkowych odpowiedzi}}
|
|
71
|
+
# Button text to show replies with count
|
|
72
|
+
groupSharedFeatures.threadedAnnotations.showReplies = {number,plural,one{Pokaż # odpowiedź} few{Pokaż # odpowiedzi} many{Pokaż # odpowiedzi} other{Pokaż # odpowiedzi}}
|
|
73
|
+
# Aria label for the reply button
|
|
74
|
+
groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Przycisk odpowiedzi
|
|
75
|
+
# Aria label for user mention links
|
|
76
|
+
groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = Wspomnienie użytkownika
|
|
77
|
+
# Aria label for message text content
|
|
78
|
+
groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Tekst wiadomości
|
|
79
|
+
# Aria label for unresolve button
|
|
80
|
+
groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Anuluj rozstrzygnięcie
|
|
81
|
+
# Alt text for user avatar image
|
|
82
|
+
groupSharedFeatures.threadedAnnotations.userAvatar = Awatar użytkownika
|
|
83
|
+
# Aria label for clickable user avatar button
|
|
84
|
+
groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel = Przycisk wyświetlania profilu użytkownika
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxui.threadedAnnotations.threadedAnnotationsAriaLabel": "Anotação encadeada",
|
|
3
|
+
"groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel": "Mensagem de anotação",
|
|
4
|
+
"groupSharedFeatures.threadedAnnotations.annotationPage": "Página {number}",
|
|
5
|
+
"groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel": "Botão Cancelar exclusão",
|
|
6
|
+
"groupSharedFeatures.threadedAnnotations.delete": "Excluir",
|
|
7
|
+
"groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel": "Botão Excluir",
|
|
8
|
+
"groupSharedFeatures.threadedAnnotations.deleteCancel": "Cancelar",
|
|
9
|
+
"groupSharedFeatures.threadedAnnotations.deleteCommentQuestion": "Você deseja excluir esse comentário?",
|
|
10
|
+
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "Excluir este comentário e respostas? Essa ação não pode ser desfeita.",
|
|
11
|
+
"groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Confirmação de exclusão",
|
|
12
|
+
"groupSharedFeatures.threadedAnnotations.edit": "Editar",
|
|
13
|
+
"groupSharedFeatures.threadedAnnotations.hideReplies": "Ocultar respostas",
|
|
14
|
+
"groupSharedFeatures.threadedAnnotations.markedAsResolved": "marcado como resolvido",
|
|
15
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Cancelar",
|
|
16
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel": "Botão Cancelar",
|
|
17
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.characterCount": "{count}/{maxCount}",
|
|
18
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded": "Seu comentário é {excess,plural,one{# caractere} many{# caracteres} other{# caracteres}} longo demais",
|
|
19
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel": "Editor de mensagens",
|
|
20
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel": "Espaço reservado para entrada de mensagens",
|
|
21
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix": "Escrever um comentário ou",
|
|
22
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply": "Escrever uma resposta ou",
|
|
23
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix": "para mencionar",
|
|
24
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted": "Deixe um comentário ou @ para mencionar",
|
|
25
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.post": "Postar",
|
|
26
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel": "Botão Publicar",
|
|
27
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.postLoading": "Carregando…",
|
|
28
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.save": "Salvar",
|
|
29
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading": "Salvando...",
|
|
30
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel": "Contêiner de rolagem do editor de mensagens",
|
|
31
|
+
"groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel": "Botão Mais opções",
|
|
32
|
+
"groupSharedFeatures.threadedAnnotations.reply": "Responder",
|
|
33
|
+
"groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel": "Botão Responder",
|
|
34
|
+
"groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel": "Resolver",
|
|
35
|
+
"groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel": "Mensagem de status de resolução",
|
|
36
|
+
"groupSharedFeatures.threadedAnnotations.showMoreReplies": "{count,plural,one{# mais resposta} other{# mais respostas}}",
|
|
37
|
+
"groupSharedFeatures.threadedAnnotations.showReplies": "{number,plural,one{Mostrar # resposta} other{Mostras mais # respostas} many{Mostras mais # respostas}}",
|
|
38
|
+
"groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel": "Botão Responder",
|
|
39
|
+
"groupSharedFeatures.threadedAnnotations.textMentionAriaLabel": "Menção do usuário",
|
|
40
|
+
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Texto da mensagem",
|
|
41
|
+
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Não resolver",
|
|
42
|
+
"groupSharedFeatures.threadedAnnotations.userAvatar": "Avatar do usuário",
|
|
43
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Botão Visualizar perfil do usuário"
|
|
44
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# Aria label for the threaded annotations container button
|
|
2
|
+
boxui.threadedAnnotations.threadedAnnotationsAriaLabel = Anotação encadeada
|
|
3
|
+
# Aria label for annotation message container
|
|
4
|
+
groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Mensagem de anotação
|
|
5
|
+
# Label showing the page number of an annotation target
|
|
6
|
+
groupSharedFeatures.threadedAnnotations.annotationPage = Página {number}
|
|
7
|
+
# Aria label for cancel delete button
|
|
8
|
+
groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = Botão Cancelar exclusão
|
|
9
|
+
# Delete button text
|
|
10
|
+
groupSharedFeatures.threadedAnnotations.delete = Excluir
|
|
11
|
+
# Aria label for delete button
|
|
12
|
+
groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Botão Excluir
|
|
13
|
+
# Cancel button text for delete confirmation dialog
|
|
14
|
+
groupSharedFeatures.threadedAnnotations.deleteCancel = Cancelar
|
|
15
|
+
# Confirmation text asking user if they want to delete a comment
|
|
16
|
+
groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = Você deseja excluir esse comentário?
|
|
17
|
+
# Confirmation text asking user if they want to delete a comment and its replies
|
|
18
|
+
groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = Excluir este comentário e respostas? Essa ação não pode ser desfeita.
|
|
19
|
+
# Aria label for delete confirmation popover
|
|
20
|
+
groupSharedFeatures.threadedAnnotations.deleteConfirmation = Confirmação de exclusão
|
|
21
|
+
# Edit option in message context menu
|
|
22
|
+
groupSharedFeatures.threadedAnnotations.edit = Editar
|
|
23
|
+
# Button text to hide replies in threaded annotations
|
|
24
|
+
groupSharedFeatures.threadedAnnotations.hideReplies = Ocultar respostas
|
|
25
|
+
# Text shown after the author name when a comment thread is marked as resolved
|
|
26
|
+
groupSharedFeatures.threadedAnnotations.markedAsResolved = marcado como resolvido
|
|
27
|
+
# Cancel button text for message editor
|
|
28
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.cancel = Cancelar
|
|
29
|
+
# Aria label for the cancel button in message editor
|
|
30
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel = Botão Cancelar
|
|
31
|
+
# Character count display showing current count and maximum allowed
|
|
32
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.characterCount = {count}/{maxCount}
|
|
33
|
+
# Screen reader alert and tooltip text shown when character limit is exceeded
|
|
34
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded = Seu comentário é {excess,plural,one{# caractere} many{# caracteres} other{# caracteres}} longo demais
|
|
35
|
+
# Aria label for the rich text editor content area
|
|
36
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel = Editor de mensagens
|
|
37
|
+
# Aria label for message editor placeholder
|
|
38
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel = Espaço reservado para entrada de mensagens
|
|
39
|
+
# First part of placeholder text before @ symbol
|
|
40
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix = Escrever um comentário ou
|
|
41
|
+
# First part of placeholder text before @ symbol for reply
|
|
42
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply = Escrever uma resposta ou
|
|
43
|
+
# Last part of placeholder text after @ symbol
|
|
44
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix = para mencionar
|
|
45
|
+
# Placeholder text for uplifted message editor
|
|
46
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted = Deixe um comentário ou @ para mencionar
|
|
47
|
+
# Post button text for message editor
|
|
48
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.post = Postar
|
|
49
|
+
# Aria label for the post button in message editor
|
|
50
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel = Botão Publicar
|
|
51
|
+
# Aria label for post button loading state
|
|
52
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.postLoading = Carregando…
|
|
53
|
+
# Save button text for message editor
|
|
54
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.save = Salvar
|
|
55
|
+
# Aria label for save button loading state
|
|
56
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading = Salvando...
|
|
57
|
+
# Aria label for the scrollable message editor content container
|
|
58
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel = Contêiner de rolagem do editor de mensagens
|
|
59
|
+
# Aria label for more options button in annotation message
|
|
60
|
+
groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel = Botão Mais opções
|
|
61
|
+
# Reply button text to start composing a reply
|
|
62
|
+
groupSharedFeatures.threadedAnnotations.reply = Responder
|
|
63
|
+
# Aria label for the reply button that opens the message editor
|
|
64
|
+
groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = Botão Responder
|
|
65
|
+
# Aria label for resolve button
|
|
66
|
+
groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = Resolver
|
|
67
|
+
# Aria label for the resolution status message container
|
|
68
|
+
groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = Mensagem de status de resolução
|
|
69
|
+
# Button text to show more replies with count
|
|
70
|
+
groupSharedFeatures.threadedAnnotations.showMoreReplies = {count,plural,one{# mais resposta} other{# mais respostas}}
|
|
71
|
+
# Button text to show replies with count
|
|
72
|
+
groupSharedFeatures.threadedAnnotations.showReplies = {number,plural,one{Mostrar # resposta} other{Mostras mais # respostas} many{Mostras mais # respostas}}
|
|
73
|
+
# Aria label for the reply button
|
|
74
|
+
groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Botão Responder
|
|
75
|
+
# Aria label for user mention links
|
|
76
|
+
groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = Menção do usuário
|
|
77
|
+
# Aria label for message text content
|
|
78
|
+
groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Texto da mensagem
|
|
79
|
+
# Aria label for unresolve button
|
|
80
|
+
groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Não resolver
|
|
81
|
+
# Alt text for user avatar image
|
|
82
|
+
groupSharedFeatures.threadedAnnotations.userAvatar = Avatar do usuário
|
|
83
|
+
# Aria label for clickable user avatar button
|
|
84
|
+
groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel = Botão Visualizar perfil do usuário
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxui.threadedAnnotations.threadedAnnotationsAriaLabel": "Ветка примечаний",
|
|
3
|
+
"groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel": "Сообщение примечания",
|
|
4
|
+
"groupSharedFeatures.threadedAnnotations.annotationPage": "Стр. {number}",
|
|
5
|
+
"groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel": "Кнопка отмены удаления",
|
|
6
|
+
"groupSharedFeatures.threadedAnnotations.delete": "Удалить",
|
|
7
|
+
"groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel": "Кнопка удаления",
|
|
8
|
+
"groupSharedFeatures.threadedAnnotations.deleteCancel": "Отмена",
|
|
9
|
+
"groupSharedFeatures.threadedAnnotations.deleteCommentQuestion": "Удалить этот комментарий?",
|
|
10
|
+
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "Удалить этот комментарий и ответы? Это действие невозможно отменить.",
|
|
11
|
+
"groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Подтверждение удаления",
|
|
12
|
+
"groupSharedFeatures.threadedAnnotations.edit": "Изменить",
|
|
13
|
+
"groupSharedFeatures.threadedAnnotations.hideReplies": "Скрыть ответы",
|
|
14
|
+
"groupSharedFeatures.threadedAnnotations.markedAsResolved": "отмечено как решено",
|
|
15
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Отмена",
|
|
16
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel": "Кнопка отмены",
|
|
17
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.characterCount": "{count}/{maxCount}",
|
|
18
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded": "Ваш комментарий превышает допустимую длину на {excess,plural,one{# символ} few{# символа} many{# символов} other{# символа}}",
|
|
19
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel": "Редактор сообщений",
|
|
20
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel": "Поле ввода сообщения",
|
|
21
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix": "Оставьте комментарий или",
|
|
22
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply": "Напишите ответ или",
|
|
23
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix": "упомяните",
|
|
24
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted": "Оставьте комментарий или используйте @ для упоминания",
|
|
25
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.post": "Опубликовать",
|
|
26
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel": "Кнопка публикации",
|
|
27
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.postLoading": "Загрузка…",
|
|
28
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.save": "Сохранить",
|
|
29
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading": "Сохранение...",
|
|
30
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel": "Контейнер прокрутки редактора сообщений",
|
|
31
|
+
"groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel": "Кнопка дополнительных параметров",
|
|
32
|
+
"groupSharedFeatures.threadedAnnotations.reply": "Ответить",
|
|
33
|
+
"groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel": "Кнопка ответа",
|
|
34
|
+
"groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel": "Разрешить",
|
|
35
|
+
"groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel": "Сообщение о статусе решения",
|
|
36
|
+
"groupSharedFeatures.threadedAnnotations.showMoreReplies": "{count,plural,one{еще # ответ } other{еще # ответа(-ов)}}",
|
|
37
|
+
"groupSharedFeatures.threadedAnnotations.showReplies": "{number,plural,one{Показать # ответ} few{Показать еще # ответа} many{Показать еще # ответов} other{Показать еще # ответа}}",
|
|
38
|
+
"groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel": "Кнопка ответа",
|
|
39
|
+
"groupSharedFeatures.threadedAnnotations.textMentionAriaLabel": "Упоминание пользователя",
|
|
40
|
+
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Текст сообщения",
|
|
41
|
+
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Отменить разрешение",
|
|
42
|
+
"groupSharedFeatures.threadedAnnotations.userAvatar": "Аватар пользователя",
|
|
43
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Кнопка просмотра профиля пользователя"
|
|
44
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# Aria label for the threaded annotations container button
|
|
2
|
+
boxui.threadedAnnotations.threadedAnnotationsAriaLabel = Ветка примечаний
|
|
3
|
+
# Aria label for annotation message container
|
|
4
|
+
groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Сообщение примечания
|
|
5
|
+
# Label showing the page number of an annotation target
|
|
6
|
+
groupSharedFeatures.threadedAnnotations.annotationPage = Стр. {number}
|
|
7
|
+
# Aria label for cancel delete button
|
|
8
|
+
groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = Кнопка отмены удаления
|
|
9
|
+
# Delete button text
|
|
10
|
+
groupSharedFeatures.threadedAnnotations.delete = Удалить
|
|
11
|
+
# Aria label for delete button
|
|
12
|
+
groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Кнопка удаления
|
|
13
|
+
# Cancel button text for delete confirmation dialog
|
|
14
|
+
groupSharedFeatures.threadedAnnotations.deleteCancel = Отмена
|
|
15
|
+
# Confirmation text asking user if they want to delete a comment
|
|
16
|
+
groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = Удалить этот комментарий?
|
|
17
|
+
# Confirmation text asking user if they want to delete a comment and its replies
|
|
18
|
+
groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = Удалить этот комментарий и ответы? Это действие невозможно отменить.
|
|
19
|
+
# Aria label for delete confirmation popover
|
|
20
|
+
groupSharedFeatures.threadedAnnotations.deleteConfirmation = Подтверждение удаления
|
|
21
|
+
# Edit option in message context menu
|
|
22
|
+
groupSharedFeatures.threadedAnnotations.edit = Изменить
|
|
23
|
+
# Button text to hide replies in threaded annotations
|
|
24
|
+
groupSharedFeatures.threadedAnnotations.hideReplies = Скрыть ответы
|
|
25
|
+
# Text shown after the author name when a comment thread is marked as resolved
|
|
26
|
+
groupSharedFeatures.threadedAnnotations.markedAsResolved = отмечено как решено
|
|
27
|
+
# Cancel button text for message editor
|
|
28
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.cancel = Отмена
|
|
29
|
+
# Aria label for the cancel button in message editor
|
|
30
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel = Кнопка отмены
|
|
31
|
+
# Character count display showing current count and maximum allowed
|
|
32
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.characterCount = {count}/{maxCount}
|
|
33
|
+
# Screen reader alert and tooltip text shown when character limit is exceeded
|
|
34
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded = Ваш комментарий превышает допустимую длину на {excess,plural,one{# символ} few{# символа} many{# символов} other{# символа}}
|
|
35
|
+
# Aria label for the rich text editor content area
|
|
36
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel = Редактор сообщений
|
|
37
|
+
# Aria label for message editor placeholder
|
|
38
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel = Поле ввода сообщения
|
|
39
|
+
# First part of placeholder text before @ symbol
|
|
40
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix = Оставьте комментарий или
|
|
41
|
+
# First part of placeholder text before @ symbol for reply
|
|
42
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply = Напишите ответ или
|
|
43
|
+
# Last part of placeholder text after @ symbol
|
|
44
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix = упомяните
|
|
45
|
+
# Placeholder text for uplifted message editor
|
|
46
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted = Оставьте комментарий или используйте @ для упоминания
|
|
47
|
+
# Post button text for message editor
|
|
48
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.post = Опубликовать
|
|
49
|
+
# Aria label for the post button in message editor
|
|
50
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel = Кнопка публикации
|
|
51
|
+
# Aria label for post button loading state
|
|
52
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.postLoading = Загрузка…
|
|
53
|
+
# Save button text for message editor
|
|
54
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.save = Сохранить
|
|
55
|
+
# Aria label for save button loading state
|
|
56
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading = Сохранение...
|
|
57
|
+
# Aria label for the scrollable message editor content container
|
|
58
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel = Контейнер прокрутки редактора сообщений
|
|
59
|
+
# Aria label for more options button in annotation message
|
|
60
|
+
groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel = Кнопка дополнительных параметров
|
|
61
|
+
# Reply button text to start composing a reply
|
|
62
|
+
groupSharedFeatures.threadedAnnotations.reply = Ответить
|
|
63
|
+
# Aria label for the reply button that opens the message editor
|
|
64
|
+
groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = Кнопка ответа
|
|
65
|
+
# Aria label for resolve button
|
|
66
|
+
groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = Разрешить
|
|
67
|
+
# Aria label for the resolution status message container
|
|
68
|
+
groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = Сообщение о статусе решения
|
|
69
|
+
# Button text to show more replies with count
|
|
70
|
+
groupSharedFeatures.threadedAnnotations.showMoreReplies = {count,plural,one{еще # ответ } other{еще # ответа(-ов)}}
|
|
71
|
+
# Button text to show replies with count
|
|
72
|
+
groupSharedFeatures.threadedAnnotations.showReplies = {number,plural,one{Показать # ответ} few{Показать еще # ответа} many{Показать еще # ответов} other{Показать еще # ответа}}
|
|
73
|
+
# Aria label for the reply button
|
|
74
|
+
groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Кнопка ответа
|
|
75
|
+
# Aria label for user mention links
|
|
76
|
+
groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = Упоминание пользователя
|
|
77
|
+
# Aria label for message text content
|
|
78
|
+
groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Текст сообщения
|
|
79
|
+
# Aria label for unresolve button
|
|
80
|
+
groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Отменить разрешение
|
|
81
|
+
# Alt text for user avatar image
|
|
82
|
+
groupSharedFeatures.threadedAnnotations.userAvatar = Аватар пользователя
|
|
83
|
+
# Aria label for clickable user avatar button
|
|
84
|
+
groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel = Кнопка просмотра профиля пользователя
|