@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 = थ्रेडेड टिप्पणी
|
|
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{# वर्ण} 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{# उत्तर दिखाएं} 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 = उपयोगकर्ता प्रोफ़ाइल देखें बटन
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxui.threadedAnnotations.threadedAnnotationsAriaLabel": "Annotazione nel thread",
|
|
3
|
+
"groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel": "Messaggio di annotazione",
|
|
4
|
+
"groupSharedFeatures.threadedAnnotations.annotationPage": "Pagina {number}",
|
|
5
|
+
"groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel": "Pulsante Annulla eliminazione",
|
|
6
|
+
"groupSharedFeatures.threadedAnnotations.delete": "Elimina",
|
|
7
|
+
"groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel": "Pulsante Elimina",
|
|
8
|
+
"groupSharedFeatures.threadedAnnotations.deleteCancel": "Annulla",
|
|
9
|
+
"groupSharedFeatures.threadedAnnotations.deleteCommentQuestion": "Vuoi eliminare questo commento?",
|
|
10
|
+
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "Vuoi eliminare il commento e le risposte? L’azione non può essere annullata.",
|
|
11
|
+
"groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Conferma eliminazione",
|
|
12
|
+
"groupSharedFeatures.threadedAnnotations.edit": "Modifica",
|
|
13
|
+
"groupSharedFeatures.threadedAnnotations.hideReplies": "Nascondi risposte",
|
|
14
|
+
"groupSharedFeatures.threadedAnnotations.markedAsResolved": "ha contrassegnato l’elemento come risolto",
|
|
15
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Annulla",
|
|
16
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel": "Pulsante Annulla",
|
|
17
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.characterCount": "{count}/{maxCount}",
|
|
18
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded": "Il tuo commento eccede il limite di lunghezza di {excess,plural,one{# carattere} many{# caratteri} other{# caratteri}}",
|
|
19
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel": "Editor del messaggio",
|
|
20
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel": "Segnaposto per il messaggio",
|
|
21
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix": "Scrivi un commento o",
|
|
22
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply": "Scrivi una risposta o",
|
|
23
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix": "per menzionare",
|
|
24
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted": "Lascia un commento o usa @ per taggare qualcuno",
|
|
25
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.post": "Pubblica",
|
|
26
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel": "Pulsante Pubblica",
|
|
27
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.postLoading": "Caricamento in corso…",
|
|
28
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.save": "Salva",
|
|
29
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading": "Salvataggio in corso...",
|
|
30
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel": "Contenitore di scorrimento dell’editor dei messaggi",
|
|
31
|
+
"groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel": "Pulsante Altre opzioni",
|
|
32
|
+
"groupSharedFeatures.threadedAnnotations.reply": "Rispondi",
|
|
33
|
+
"groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel": "Pulsante Rispondi",
|
|
34
|
+
"groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel": "Risolvi",
|
|
35
|
+
"groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel": "Messaggio sullo stato della risoluzione",
|
|
36
|
+
"groupSharedFeatures.threadedAnnotations.showMoreReplies": "{count,plural,one{# more reply} other{# more replies}}",
|
|
37
|
+
"groupSharedFeatures.threadedAnnotations.showReplies": "{number,plural,one{Mostra # risposta} many{Mostra altre # risposte} other{Mostra altre # risposte}}",
|
|
38
|
+
"groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel": "Pulsante Rispondi",
|
|
39
|
+
"groupSharedFeatures.threadedAnnotations.textMentionAriaLabel": "Menzione utente",
|
|
40
|
+
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Testo del messaggio",
|
|
41
|
+
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Annulla risoluzione",
|
|
42
|
+
"groupSharedFeatures.threadedAnnotations.userAvatar": "Avatar utente",
|
|
43
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Pulsante Visualizza il profilo utente"
|
|
44
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# Aria label for the threaded annotations container button
|
|
2
|
+
boxui.threadedAnnotations.threadedAnnotationsAriaLabel = Annotazione nel thread
|
|
3
|
+
# Aria label for annotation message container
|
|
4
|
+
groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Messaggio di annotazione
|
|
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 = Pulsante Annulla eliminazione
|
|
9
|
+
# Delete button text
|
|
10
|
+
groupSharedFeatures.threadedAnnotations.delete = Elimina
|
|
11
|
+
# Aria label for delete button
|
|
12
|
+
groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Pulsante Elimina
|
|
13
|
+
# Cancel button text for delete confirmation dialog
|
|
14
|
+
groupSharedFeatures.threadedAnnotations.deleteCancel = Annulla
|
|
15
|
+
# Confirmation text asking user if they want to delete a comment
|
|
16
|
+
groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = Vuoi eliminare questo commento?
|
|
17
|
+
# Confirmation text asking user if they want to delete a comment and its replies
|
|
18
|
+
groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = Vuoi eliminare il commento e le risposte? L’azione non può essere annullata.
|
|
19
|
+
# Aria label for delete confirmation popover
|
|
20
|
+
groupSharedFeatures.threadedAnnotations.deleteConfirmation = Conferma eliminazione
|
|
21
|
+
# Edit option in message context menu
|
|
22
|
+
groupSharedFeatures.threadedAnnotations.edit = Modifica
|
|
23
|
+
# Button text to hide replies in threaded annotations
|
|
24
|
+
groupSharedFeatures.threadedAnnotations.hideReplies = Nascondi risposte
|
|
25
|
+
# Text shown after the author name when a comment thread is marked as resolved
|
|
26
|
+
groupSharedFeatures.threadedAnnotations.markedAsResolved = ha contrassegnato l’elemento come risolto
|
|
27
|
+
# Cancel button text for message editor
|
|
28
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.cancel = Annulla
|
|
29
|
+
# Aria label for the cancel button in message editor
|
|
30
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel = Pulsante Annulla
|
|
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 = Il tuo commento eccede il limite di lunghezza di {excess,plural,one{# carattere} many{# caratteri} other{# caratteri}}
|
|
35
|
+
# Aria label for the rich text editor content area
|
|
36
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel = Editor del messaggio
|
|
37
|
+
# Aria label for message editor placeholder
|
|
38
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel = Segnaposto per il messaggio
|
|
39
|
+
# First part of placeholder text before @ symbol
|
|
40
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix = Scrivi un commento o
|
|
41
|
+
# First part of placeholder text before @ symbol for reply
|
|
42
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply = Scrivi una risposta o
|
|
43
|
+
# Last part of placeholder text after @ symbol
|
|
44
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix = per menzionare
|
|
45
|
+
# Placeholder text for uplifted message editor
|
|
46
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted = Lascia un commento o usa @ per taggare qualcuno
|
|
47
|
+
# Post button text for message editor
|
|
48
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.post = Pubblica
|
|
49
|
+
# Aria label for the post button in message editor
|
|
50
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel = Pulsante Pubblica
|
|
51
|
+
# Aria label for post button loading state
|
|
52
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.postLoading = Caricamento in corso…
|
|
53
|
+
# Save button text for message editor
|
|
54
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.save = Salva
|
|
55
|
+
# Aria label for save button loading state
|
|
56
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading = Salvataggio in corso...
|
|
57
|
+
# Aria label for the scrollable message editor content container
|
|
58
|
+
groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel = Contenitore di scorrimento dell’editor dei messaggi
|
|
59
|
+
# Aria label for more options button in annotation message
|
|
60
|
+
groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel = Pulsante Altre opzioni
|
|
61
|
+
# Reply button text to start composing a reply
|
|
62
|
+
groupSharedFeatures.threadedAnnotations.reply = Rispondi
|
|
63
|
+
# Aria label for the reply button that opens the message editor
|
|
64
|
+
groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = Pulsante Rispondi
|
|
65
|
+
# Aria label for resolve button
|
|
66
|
+
groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = Risolvi
|
|
67
|
+
# Aria label for the resolution status message container
|
|
68
|
+
groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = Messaggio sullo stato della risoluzione
|
|
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{Mostra # risposta} many{Mostra altre # risposte} other{Mostra altre # risposte}}
|
|
73
|
+
# Aria label for the reply button
|
|
74
|
+
groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Pulsante Rispondi
|
|
75
|
+
# Aria label for user mention links
|
|
76
|
+
groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = Menzione utente
|
|
77
|
+
# Aria label for message text content
|
|
78
|
+
groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Testo del messaggio
|
|
79
|
+
# Aria label for unresolve button
|
|
80
|
+
groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Annulla risoluzione
|
|
81
|
+
# Alt text for user avatar image
|
|
82
|
+
groupSharedFeatures.threadedAnnotations.userAvatar = Avatar utente
|
|
83
|
+
# Aria label for clickable user avatar button
|
|
84
|
+
groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel = Pulsante Visualizza il profilo utente
|
|
@@ -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{#文字} 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{#件の返信を表示} 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{#文字} 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{#件の返信を表示} 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 = ユーザープロフィールを表示するボタン
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.cancel","description":"Cancel button text for message editor","defaultMessage":"Cancel"},{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.post","description":"Post button text for message editor","defaultMessage":"Post"},{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.postLoading","description":"Aria label for post button loading state","defaultMessage":"Loading..."},{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix","description":"First part of placeholder text before @ symbol","defaultMessage":"Write a comment or"},{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply","description":"First part of placeholder text before @ symbol for reply","defaultMessage":"Write a reply or"},{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix","description":"Last part of placeholder text after @ symbol","defaultMessage":"to mention"},{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel","description":"Aria label for the cancel button in message editor","defaultMessage":"Cancel button"},{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel","description":"Aria label for the post button in message editor","defaultMessage":"Post button"},{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel","description":"Aria label for the rich text editor content area","defaultMessage":"Message editor"},{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel","description":"Aria label for message editor placeholder","defaultMessage":"Message input placeholder"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.threadedAnnotations.deleteConfirmation","description":"Aria label for delete confirmation popover","defaultMessage":"Delete confirmation"},{"id":"groupSharedFeatures.threadedAnnotations.deleteCommentQuestion","description":"Confirmation text asking user if they want to delete a comment","defaultMessage":"Do you want to delete this comment?"},{"id":"groupSharedFeatures.threadedAnnotations.deleteCancel","description":"Cancel button text for delete confirmation dialog","defaultMessage":"Cancel"},{"id":"groupSharedFeatures.threadedAnnotations.delete","description":"Delete button text","defaultMessage":"Delete"},{"id":"groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel","description":"Aria label for more options button in annotation message","defaultMessage":"More options button"},{"id":"groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel","description":"Aria label for cancel delete button","defaultMessage":"Cancel delete button"},{"id":"groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel","description":"Aria label for delete button","defaultMessage":"Delete button"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.threadedAnnotations.hideReplies","description":"Button text to hide replies in threaded annotations","defaultMessage":"Hide replies"},{"id":"groupSharedFeatures.threadedAnnotations.showMoreReplies","description":"Button text to show more replies with count","defaultMessage":"{count, plural, one {# more reply} other {# more replies}}"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.threadedAnnotations.userAvatar","description":"Alt text for user avatar image","defaultMessage":"User avatar"},{"id":"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel","description":"Aria label for clickable user avatar button","defaultMessage":"View user profile button"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.threadedAnnotations.annotationPage","description":"Label showing the page number of an annotation target","defaultMessage":"Page {number}"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.cancel","description":"Cancel button text for message editor","defaultMessage":"Cancel"},{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.characterCount","description":"Character count display showing current count and maximum allowed","defaultMessage":"{count}/{maxCount}"},{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded","description":"Screen reader alert and tooltip text shown when character limit is exceeded","defaultMessage":"Your comment is {excess, plural, one {# character} other {# characters}} too long"},{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel","description":"Aria label for the rich text editor content area","defaultMessage":"Message editor"},{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted","description":"Placeholder text for uplifted message editor","defaultMessage":"Leave a comment or @ to mention"},{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.post","description":"Post button text for message editor","defaultMessage":"Post"},{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.postLoading","description":"Aria label for post button loading state","defaultMessage":"Loading..."},{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.save","description":"Save button text for message editor","defaultMessage":"Save"},{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading","description":"Aria label for save button loading state","defaultMessage":"Saving..."},{"id":"groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel","description":"Aria label for the scrollable message editor content container","defaultMessage":"Message editor scroll container"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.threadedAnnotations.deleteConfirmation","description":"Aria label for delete confirmation popover","defaultMessage":"Delete confirmation"},{"id":"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion","description":"Confirmation text asking user if they want to delete a comment and its replies","defaultMessage":"Delete this comment and replies?\nThis action can't be undone."},{"id":"groupSharedFeatures.threadedAnnotations.deleteCancel","description":"Cancel button text for delete confirmation dialog","defaultMessage":"Cancel"},{"id":"groupSharedFeatures.threadedAnnotations.delete","description":"Delete button text","defaultMessage":"Delete"},{"id":"groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel","description":"Aria label for more options button in annotation message","defaultMessage":"More options button"},{"id":"groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel","description":"Aria label for cancel delete button","defaultMessage":"Cancel delete button"},{"id":"groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel","description":"Aria label for delete button","defaultMessage":"Delete button"},{"id":"groupSharedFeatures.threadedAnnotations.edit","description":"Edit option in message context menu","defaultMessage":"Edit"},{"id":"groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel","description":"Aria label for resolve button","defaultMessage":"Resolve"},{"id":"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel","description":"Aria label for unresolve button","defaultMessage":"Unresolve"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.threadedAnnotations.markedAsResolved","description":"Text shown after the author name when a comment thread is marked as resolved","defaultMessage":"marked as resolved"},{"id":"groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel","description":"Aria label for the resolution status message container","defaultMessage":"Resolution status message"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.threadedAnnotations.showReplies","description":"Button text to show replies with count","defaultMessage":"{number, plural, one {Show # reply} other {Show # more replies}}"},{"id":"groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel","description":"Aria label for the reply button","defaultMessage":"Reply button"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel","description":"Aria label for annotation message container","defaultMessage":"Annotation message"},{"id":"groupSharedFeatures.threadedAnnotations.reply","description":"Reply button text to start composing a reply","defaultMessage":"Reply"},{"id":"groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel","description":"Aria label for the reply button that opens the message editor","defaultMessage":"Reply button"},{"id":"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel","description":"Aria label for message text content","defaultMessage":"Message text"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.threadedAnnotations.userAvatar","description":"Alt text for user avatar image","defaultMessage":"User avatar"},{"id":"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel","description":"Aria label for clickable user avatar button","defaultMessage":"View user profile button"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.threadedAnnotations.reply","description":"Reply button text to start composing a reply","defaultMessage":"Reply"},{"id":"groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel","description":"Aria label for annotation message container","defaultMessage":"Annotation message"},{"id":"groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel","description":"Aria label for the reply button that opens the message editor","defaultMessage":"Reply button"},{"id":"groupSharedFeatures.threadedAnnotations.textMentionAriaLabel","description":"Aria label for user mention links","defaultMessage":"User mention"},{"id":"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel","description":"Aria label for message text content","defaultMessage":"Message text"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"boxui.threadedAnnotations.threadedAnnotationsAriaLabel","description":"Aria label for the threaded annotations container button","defaultMessage":"Threaded annotation"}]
|
|
@@ -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{#자} 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{답글 #개 보기} 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{#자} 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{답글 #개 보기} 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 = 사용자 프로필 보기 버튼
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxui.threadedAnnotations.threadedAnnotationsAriaLabel": "Trådannotering",
|
|
3
|
+
"groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel": "Merknadsmelding",
|
|
4
|
+
"groupSharedFeatures.threadedAnnotations.annotationPage": "Side {number}",
|
|
5
|
+
"groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel": "Avbryt slett-knapp",
|
|
6
|
+
"groupSharedFeatures.threadedAnnotations.delete": "Slett",
|
|
7
|
+
"groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel": "Slett-knapp",
|
|
8
|
+
"groupSharedFeatures.threadedAnnotations.deleteCancel": "Avbryt",
|
|
9
|
+
"groupSharedFeatures.threadedAnnotations.deleteCommentQuestion": "Vil du slette denne kommentaren?",
|
|
10
|
+
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "Vil du slette denne kommentaren og svar? Denne handlingen kan ikke angres.",
|
|
11
|
+
"groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Bekreftelse på sletting",
|
|
12
|
+
"groupSharedFeatures.threadedAnnotations.edit": "Rediger",
|
|
13
|
+
"groupSharedFeatures.threadedAnnotations.hideReplies": "Skjul svar",
|
|
14
|
+
"groupSharedFeatures.threadedAnnotations.markedAsResolved": "merket som løst",
|
|
15
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Avbryt",
|
|
16
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel": "Avbryt-knapp",
|
|
17
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.characterCount": "{count}/{maxCount}",
|
|
18
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded": "Kommentaren din er {excess,plural,one{# tegn} other{# tegn}} for lang",
|
|
19
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel": "Meldingsredigerer",
|
|
20
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel": "Plassholder for meldingstekst",
|
|
21
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix": "Skriv en kommentar eller",
|
|
22
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply": "Skriv et svar eller",
|
|
23
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix": "for å nevne",
|
|
24
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted": "Legg igjen en kommentar eller @ for å nevne",
|
|
25
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.post": "Publiser",
|
|
26
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel": "Publiser-knapp",
|
|
27
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.postLoading": "Laster …",
|
|
28
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.save": "Lagre",
|
|
29
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading": "Lagrer ...",
|
|
30
|
+
"groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel": "Rullebeholder for meldingsredaktør",
|
|
31
|
+
"groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel": "Knapp for flere alternativer",
|
|
32
|
+
"groupSharedFeatures.threadedAnnotations.reply": "Svar",
|
|
33
|
+
"groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel": "Svar-knapp",
|
|
34
|
+
"groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel": "Avklar",
|
|
35
|
+
"groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel": "Melding om løsningsstatus",
|
|
36
|
+
"groupSharedFeatures.threadedAnnotations.showMoreReplies": "{count,plural,one{# more reply} other{# more replies}}",
|
|
37
|
+
"groupSharedFeatures.threadedAnnotations.showReplies": "{number,plural,one{Vis # svar} other{Vis # flere svar}}",
|
|
38
|
+
"groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel": "Svar-knapp",
|
|
39
|
+
"groupSharedFeatures.threadedAnnotations.textMentionAriaLabel": "Brukerhenvisning",
|
|
40
|
+
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Meldingstekst",
|
|
41
|
+
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Uavklar",
|
|
42
|
+
"groupSharedFeatures.threadedAnnotations.userAvatar": "Brukeravatar",
|
|
43
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Vis brukerprofil-knapp"
|
|
44
|
+
}
|