@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.
Files changed (322) hide show
  1. package/LICENSE +379 -0
  2. package/README.md +57 -0
  3. package/dist/chunks/annotation-badge.js +49 -0
  4. package/dist/chunks/custom-placeholder.js +72 -0
  5. package/dist/chunks/delete-annotations-message-popover.js +46 -0
  6. package/dist/chunks/delete-confirmation-popover.js +59 -0
  7. package/dist/chunks/dist.js +1749 -0
  8. package/dist/chunks/mention-component.js +96 -0
  9. package/dist/chunks/message-editor.module.js +12 -0
  10. package/dist/chunks/message-editor2.module.js +27 -0
  11. package/dist/chunks/message-footer.js +42 -0
  12. package/dist/chunks/message-header.js +49 -0
  13. package/dist/chunks/messages-view.js +83 -0
  14. package/dist/chunks/mock-collaboration-props.js +19379 -0
  15. package/dist/chunks/resolved-state.js +55 -0
  16. package/dist/chunks/show-replies-button.js +60 -0
  17. package/dist/chunks/text-message.js +21 -0
  18. package/dist/chunks/threaded-annotations.js +71 -0
  19. package/dist/chunks/threaded-annotations2.js +68 -0
  20. package/dist/chunks/virtualized-messages.js +30 -0
  21. package/dist/esm/index.js +7 -0
  22. package/dist/esm/lib/components/mention-component/mention-component.js +2 -0
  23. package/dist/esm/lib/components/mention-component/mention-context.js +26 -0
  24. package/dist/esm/lib/components/message-editor/editor-extensions/custom-mention/custom-mention-suggestions.js +23 -0
  25. package/dist/esm/lib/components/message-editor/editor-extensions/custom-mention/custom-mention.js +59 -0
  26. package/dist/esm/lib/components/message-editor/editor-extensions/custom-mention/useMentionState.js +24 -0
  27. package/dist/esm/lib/components/message-editor/editor-extensions/custom-paragraph.js +13 -0
  28. package/dist/esm/lib/components/message-editor/editor-extensions/custom-placeholder/custom-placeholder-utils.js +26 -0
  29. package/dist/esm/lib/components/message-editor/editor-extensions/custom-placeholder/custom-placeholder.js +2 -0
  30. package/dist/esm/lib/components/message-editor/error-message.js +17 -0
  31. package/dist/esm/lib/components/message-editor/hooks/useMessageEditor.js +68 -0
  32. package/dist/esm/lib/components/message-editor/hooks/useMessagePost.js +35 -0
  33. package/dist/esm/lib/components/message-editor/message-editor-actions.js +29 -0
  34. package/dist/esm/lib/components/message-editor/message-editor-context.js +7 -0
  35. package/dist/esm/lib/components/message-editor/message-editor.js +74 -0
  36. package/dist/esm/lib/components/message-editor/messages.js +44 -0
  37. package/dist/esm/lib/components/message-editor/utils/getMessageEditorState.js +9 -0
  38. package/dist/esm/lib/components/message-header/delete-annotations-message-popover.js +2 -0
  39. package/dist/esm/lib/components/message-header/message-header.js +2 -0
  40. package/dist/esm/lib/components/message-header/messages.js +32 -0
  41. package/dist/esm/lib/components/messages-view/consts.js +2 -0
  42. package/dist/esm/lib/components/messages-view/hooks/useAutoScroll.js +43 -0
  43. package/dist/esm/lib/components/messages-view/hooks/useShowMoreReplies.js +26 -0
  44. package/dist/esm/lib/components/messages-view/hooks/useVirtualizedMessages.js +17 -0
  45. package/dist/esm/lib/components/messages-view/messages-view.js +61 -0
  46. package/dist/esm/lib/components/messages-view/messages.js +12 -0
  47. package/dist/esm/lib/components/messages-view/virtualized-messages.js +2 -0
  48. package/dist/esm/lib/components/text-message/message-renderer.js +58 -0
  49. package/dist/esm/lib/components/text-message/text-message.js +2 -0
  50. package/dist/esm/lib/components/user-avatar/getInitials.js +5 -0
  51. package/dist/esm/lib/components/user-avatar/messages.js +12 -0
  52. package/dist/esm/lib/components/user-avatar/user-avatar.js +31 -0
  53. package/dist/esm/lib/components/v2/annotation-badge/annotation-badge.js +2 -0
  54. package/dist/esm/lib/components/v2/annotation-badge/index.js +2 -0
  55. package/dist/esm/lib/components/v2/annotation-badge/messages.js +6 -0
  56. package/dist/esm/lib/components/v2/message-editor/editor-extensions/custom-mention/custom-mention-suggestions.js +23 -0
  57. package/dist/esm/lib/components/v2/message-editor/editor-extensions/custom-mention/custom-mention.js +59 -0
  58. package/dist/esm/lib/components/v2/message-editor/editor-extensions/custom-mention/mention-trigger-normalization.js +2 -0
  59. package/dist/esm/lib/components/v2/message-editor/editor-extensions/custom-mention/useMentionState.js +24 -0
  60. package/dist/esm/lib/components/v2/message-editor/editor-extensions/custom-paragraph.js +13 -0
  61. package/dist/esm/lib/components/v2/message-editor/hooks/useCharacterLimit.js +24 -0
  62. package/dist/esm/lib/components/v2/message-editor/hooks/useEditorContainerState.js +21 -0
  63. package/dist/esm/lib/components/v2/message-editor/hooks/useMentionUserSelection.js +22 -0
  64. package/dist/esm/lib/components/v2/message-editor/hooks/useMessageSubmit.js +24 -0
  65. package/dist/esm/lib/components/v2/message-editor/message-editor-context.js +19 -0
  66. package/dist/esm/lib/components/v2/message-editor/message-editor.js +159 -0
  67. package/dist/esm/lib/components/v2/message-editor/message-editor.types.js +4 -0
  68. package/dist/esm/lib/components/v2/message-editor/messages.js +44 -0
  69. package/dist/esm/lib/components/v2/message-editor/subcomponents/character-limit-counter.js +26 -0
  70. package/dist/esm/lib/components/v2/message-editor/subcomponents/edit-buttons.js +32 -0
  71. package/dist/esm/lib/components/v2/message-editor/subcomponents/error-message.js +22 -0
  72. package/dist/esm/lib/components/v2/message-editor/subcomponents/post-button.js +27 -0
  73. package/dist/esm/lib/components/v2/message-header/delete-confirmation-popover.js +2 -0
  74. package/dist/esm/lib/components/v2/message-header/message-header.js +74 -0
  75. package/dist/esm/lib/components/v2/message-header/message-options-menu.js +36 -0
  76. package/dist/esm/lib/components/v2/message-header/messages.js +44 -0
  77. package/dist/esm/lib/components/v2/messages-view/hooks/useAutoScroll.js +64 -0
  78. package/dist/esm/lib/components/v2/messages-view/messages-view.js +2 -0
  79. package/dist/esm/lib/components/v2/resolved-state/messages.js +12 -0
  80. package/dist/esm/lib/components/v2/resolved-state/resolved-state.js +2 -0
  81. package/dist/esm/lib/components/v2/show-replies-button/messages.js +12 -0
  82. package/dist/esm/lib/components/v2/show-replies-button/show-replies-button.js +2 -0
  83. package/dist/esm/lib/components/v2/text-message/messages.js +20 -0
  84. package/dist/esm/lib/components/v2/text-message/subcomponents/message-footer.js +2 -0
  85. package/dist/esm/lib/components/v2/text-message/subcomponents/message-renderer.js +60 -0
  86. package/dist/esm/lib/components/v2/text-message/text-message.js +57 -0
  87. package/dist/esm/lib/components/v2/user-avatar/getInitials.js +5 -0
  88. package/dist/esm/lib/components/v2/user-avatar/messages.js +12 -0
  89. package/dist/esm/lib/components/v2/user-avatar/user-avatar.js +35 -0
  90. package/dist/esm/lib/document-node-types.js +0 -0
  91. package/dist/esm/lib/messages.js +24 -0
  92. package/dist/esm/lib/threaded-annotations.js +2 -0
  93. package/dist/esm/lib/utils/getErrorMessage.js +2 -0
  94. package/dist/esm/lib/v2/constants.js +2 -0
  95. package/dist/esm/lib/v2/messages.js +6 -0
  96. package/dist/esm/lib/v2/test-utils/mocks/index.js +7 -0
  97. package/dist/esm/lib/v2/test-utils/mocks/mock-callbacks.js +15 -0
  98. package/dist/esm/lib/v2/test-utils/mocks/mock-collaboration-props.js +2 -0
  99. package/dist/esm/lib/v2/test-utils/mocks/mock-messages-long-strings.js +27 -0
  100. package/dist/esm/lib/v2/test-utils/mocks/mock-messages.js +198 -0
  101. package/dist/esm/lib/v2/test-utils/mocks/mock-users.js +86 -0
  102. package/dist/esm/lib/v2/test-utils/mocks/mock-utilities.js +9 -0
  103. package/dist/esm/lib/v2/threaded-annotations-context.js +49 -0
  104. package/dist/esm/lib/v2/threaded-annotations.js +3 -0
  105. package/dist/esm/lib/v2/types/annotation-badge-types.js +4 -0
  106. package/dist/esm/lib/v2/types/document-node-types.js +0 -0
  107. package/dist/esm/lib/v2/types/index.js +2 -0
  108. package/dist/esm/lib/v2/types/message-types.js +0 -0
  109. package/dist/esm/lib/v2/utils/build-mention-content.js +20 -0
  110. package/dist/esm/lib/v2/utils/serialize-mention-markup.js +12 -0
  111. package/dist/i18n/bn-IN.js +44 -0
  112. package/dist/i18n/bn-IN.properties +84 -0
  113. package/dist/i18n/da-DK.js +44 -0
  114. package/dist/i18n/da-DK.properties +84 -0
  115. package/dist/i18n/de-DE.js +44 -0
  116. package/dist/i18n/de-DE.properties +84 -0
  117. package/dist/i18n/en-AU.js +44 -0
  118. package/dist/i18n/en-AU.properties +84 -0
  119. package/dist/i18n/en-CA.js +44 -0
  120. package/dist/i18n/en-CA.properties +84 -0
  121. package/dist/i18n/en-GB.js +44 -0
  122. package/dist/i18n/en-GB.properties +84 -0
  123. package/dist/i18n/en-US.js +44 -0
  124. package/dist/i18n/en-US.properties +84 -0
  125. package/dist/i18n/en-x-pseudo.js +44 -0
  126. package/dist/i18n/en-x-pseudo.properties +84 -0
  127. package/dist/i18n/es-419.js +44 -0
  128. package/dist/i18n/es-419.properties +84 -0
  129. package/dist/i18n/es-ES.js +44 -0
  130. package/dist/i18n/es-ES.properties +84 -0
  131. package/dist/i18n/fi-FI.js +44 -0
  132. package/dist/i18n/fi-FI.properties +84 -0
  133. package/dist/i18n/fr-CA.js +44 -0
  134. package/dist/i18n/fr-CA.properties +84 -0
  135. package/dist/i18n/fr-FR.js +44 -0
  136. package/dist/i18n/fr-FR.properties +84 -0
  137. package/dist/i18n/hi-IN.js +44 -0
  138. package/dist/i18n/hi-IN.properties +84 -0
  139. package/dist/i18n/it-IT.js +44 -0
  140. package/dist/i18n/it-IT.properties +84 -0
  141. package/dist/i18n/ja-JP.js +44 -0
  142. package/dist/i18n/ja-JP.properties +84 -0
  143. package/dist/i18n/json/src/lib/components/message-editor/messages.json +1 -0
  144. package/dist/i18n/json/src/lib/components/message-header/messages.json +1 -0
  145. package/dist/i18n/json/src/lib/components/messages-view/messages.json +1 -0
  146. package/dist/i18n/json/src/lib/components/user-avatar/messages.json +1 -0
  147. package/dist/i18n/json/src/lib/components/v2/annotation-badge/messages.json +1 -0
  148. package/dist/i18n/json/src/lib/components/v2/message-editor/messages.json +1 -0
  149. package/dist/i18n/json/src/lib/components/v2/message-header/messages.json +1 -0
  150. package/dist/i18n/json/src/lib/components/v2/resolved-state/messages.json +1 -0
  151. package/dist/i18n/json/src/lib/components/v2/show-replies-button/messages.json +1 -0
  152. package/dist/i18n/json/src/lib/components/v2/text-message/messages.json +1 -0
  153. package/dist/i18n/json/src/lib/components/v2/user-avatar/messages.json +1 -0
  154. package/dist/i18n/json/src/lib/messages.json +1 -0
  155. package/dist/i18n/json/src/lib/v2/messages.json +1 -0
  156. package/dist/i18n/ko-KR.js +44 -0
  157. package/dist/i18n/ko-KR.properties +84 -0
  158. package/dist/i18n/nb-NO.js +44 -0
  159. package/dist/i18n/nb-NO.properties +84 -0
  160. package/dist/i18n/nl-NL.js +44 -0
  161. package/dist/i18n/nl-NL.properties +84 -0
  162. package/dist/i18n/pl-PL.js +44 -0
  163. package/dist/i18n/pl-PL.properties +84 -0
  164. package/dist/i18n/pt-BR.js +44 -0
  165. package/dist/i18n/pt-BR.properties +84 -0
  166. package/dist/i18n/ru-RU.js +44 -0
  167. package/dist/i18n/ru-RU.properties +84 -0
  168. package/dist/i18n/sv-SE.js +44 -0
  169. package/dist/i18n/sv-SE.properties +84 -0
  170. package/dist/i18n/tr-TR.js +44 -0
  171. package/dist/i18n/tr-TR.properties +84 -0
  172. package/dist/i18n/zh-CN.js +44 -0
  173. package/dist/i18n/zh-CN.properties +84 -0
  174. package/dist/i18n/zh-TW.js +44 -0
  175. package/dist/i18n/zh-TW.properties +84 -0
  176. package/dist/styles/annotation-badge.css +1 -0
  177. package/dist/styles/custom-placeholder.css +1 -0
  178. package/dist/styles/delete-annotations-message-popover.css +1 -0
  179. package/dist/styles/delete-confirmation-popover.css +1 -0
  180. package/dist/styles/mention-component.css +1 -0
  181. package/dist/styles/message-editor.css +1 -0
  182. package/dist/styles/message-editor2.css +1 -0
  183. package/dist/styles/message-footer.css +1 -0
  184. package/dist/styles/message-header.css +1 -0
  185. package/dist/styles/messages-view.css +1 -0
  186. package/dist/styles/resolved-state.css +1 -0
  187. package/dist/styles/show-replies-button.css +1 -0
  188. package/dist/styles/text-message.css +1 -0
  189. package/dist/styles/threaded-annotations.css +1 -0
  190. package/dist/styles/threaded-annotations2.css +1 -0
  191. package/dist/styles/virtualized-messages.css +1 -0
  192. package/dist/types/index.d.ts +9 -0
  193. package/dist/types/lib/components/mention-component/mention-component.d.ts +12 -0
  194. package/dist/types/lib/components/mention-component/mention-context.d.ts +31 -0
  195. package/dist/types/lib/components/message-editor/editor-extensions/custom-mention/custom-mention-suggestions.d.ts +15 -0
  196. package/dist/types/lib/components/message-editor/editor-extensions/custom-mention/custom-mention.d.ts +1 -0
  197. package/dist/types/lib/components/message-editor/editor-extensions/custom-mention/useMentionState.d.ts +15 -0
  198. package/dist/types/lib/components/message-editor/editor-extensions/custom-paragraph.d.ts +1 -0
  199. package/dist/types/lib/components/message-editor/editor-extensions/custom-placeholder/custom-placeholder-utils.d.ts +38 -0
  200. package/dist/types/lib/components/message-editor/editor-extensions/custom-placeholder/custom-placeholder.d.ts +2 -0
  201. package/dist/types/lib/components/message-editor/error-message.d.ts +3 -0
  202. package/dist/types/lib/components/message-editor/hooks/useMessageEditor.d.ts +12 -0
  203. package/dist/types/lib/components/message-editor/hooks/useMessagePost.d.ts +18 -0
  204. package/dist/types/lib/components/message-editor/message-editor-actions.d.ts +9 -0
  205. package/dist/types/lib/components/message-editor/message-editor-context.d.ts +13 -0
  206. package/dist/types/lib/components/message-editor/message-editor.d.ts +36 -0
  207. package/dist/types/lib/components/message-editor/messages.d.ts +53 -0
  208. package/dist/types/lib/components/message-editor/stories/shared.d.ts +4 -0
  209. package/dist/types/lib/components/message-editor/stories/utils/mock-props.d.ts +4 -0
  210. package/dist/types/lib/components/message-editor/stories/utils/test-utils.d.ts +2 -0
  211. package/dist/types/lib/components/message-editor/utils/getMessageEditorState.d.ts +13 -0
  212. package/dist/types/lib/components/message-header/delete-annotations-message-popover.d.ts +11 -0
  213. package/dist/types/lib/components/message-header/message-header.d.ts +18 -0
  214. package/dist/types/lib/components/message-header/messages.d.ts +38 -0
  215. package/dist/types/lib/components/messages-view/consts.d.ts +4 -0
  216. package/dist/types/lib/components/messages-view/hooks/useAutoScroll.d.ts +9 -0
  217. package/dist/types/lib/components/messages-view/hooks/useShowMoreReplies.d.ts +10 -0
  218. package/dist/types/lib/components/messages-view/hooks/useVirtualizedMessages.d.ts +13 -0
  219. package/dist/types/lib/components/messages-view/messages-view.d.ts +20 -0
  220. package/dist/types/lib/components/messages-view/messages.d.ts +13 -0
  221. package/dist/types/lib/components/messages-view/virtualized-messages.d.ts +22 -0
  222. package/dist/types/lib/components/text-message/message-renderer.d.ts +6 -0
  223. package/dist/types/lib/components/text-message/stories/shared.d.ts +2 -0
  224. package/dist/types/lib/components/text-message/stories/utils/test-utils.d.ts +2 -0
  225. package/dist/types/lib/components/text-message/text-message.d.ts +17 -0
  226. package/dist/types/lib/components/text-message/types.d.ts +35 -0
  227. package/dist/types/lib/components/user-avatar/getInitials.d.ts +1 -0
  228. package/dist/types/lib/components/user-avatar/messages.d.ts +13 -0
  229. package/dist/types/lib/components/user-avatar/user-avatar.d.ts +10 -0
  230. package/dist/types/lib/components/v2/annotation-badge/annotation-badge.d.ts +7 -0
  231. package/dist/types/lib/components/v2/annotation-badge/index.d.ts +1 -0
  232. package/dist/types/lib/components/v2/annotation-badge/messages.d.ts +8 -0
  233. package/dist/types/lib/components/v2/message-editor/editor-extensions/custom-mention/custom-mention-suggestions.d.ts +15 -0
  234. package/dist/types/lib/components/v2/message-editor/editor-extensions/custom-mention/custom-mention.d.ts +1 -0
  235. package/dist/types/lib/components/v2/message-editor/editor-extensions/custom-mention/mention-trigger-normalization.d.ts +5 -0
  236. package/dist/types/lib/components/v2/message-editor/editor-extensions/custom-mention/useMentionState.d.ts +15 -0
  237. package/dist/types/lib/components/v2/message-editor/editor-extensions/custom-paragraph.d.ts +1 -0
  238. package/dist/types/lib/components/v2/message-editor/hooks/useCharacterLimit.d.ts +15 -0
  239. package/dist/types/lib/components/v2/message-editor/hooks/useEditorContainerState.d.ts +27 -0
  240. package/dist/types/lib/components/v2/message-editor/hooks/useMentionUserSelection.d.ts +5 -0
  241. package/dist/types/lib/components/v2/message-editor/hooks/useMessageSubmit.d.ts +13 -0
  242. package/dist/types/lib/components/v2/message-editor/message-editor-context.d.ts +12 -0
  243. package/dist/types/lib/components/v2/message-editor/message-editor.d.ts +3 -0
  244. package/dist/types/lib/components/v2/message-editor/message-editor.types.d.ts +69 -0
  245. package/dist/types/lib/components/v2/message-editor/messages.d.ts +53 -0
  246. package/dist/types/lib/components/v2/message-editor/stories/shared.d.ts +3 -0
  247. package/dist/types/lib/components/v2/message-editor/stories/utils/mock-props.d.ts +6 -0
  248. package/dist/types/lib/components/v2/message-editor/stories/utils/test-utils.d.ts +10 -0
  249. package/dist/types/lib/components/v2/message-editor/subcomponents/character-limit-counter.d.ts +7 -0
  250. package/dist/types/lib/components/v2/message-editor/subcomponents/edit-buttons.d.ts +11 -0
  251. package/dist/types/lib/components/v2/message-editor/subcomponents/error-message.d.ts +3 -0
  252. package/dist/types/lib/components/v2/message-editor/subcomponents/post-button.d.ts +11 -0
  253. package/dist/types/lib/components/v2/message-header/delete-confirmation-popover.d.ts +11 -0
  254. package/dist/types/lib/components/v2/message-header/message-header.d.ts +32 -0
  255. package/dist/types/lib/components/v2/message-header/message-options-menu.d.ts +12 -0
  256. package/dist/types/lib/components/v2/message-header/messages.d.ts +53 -0
  257. package/dist/types/lib/components/v2/message-header/stories/shared.d.ts +2 -0
  258. package/dist/types/lib/components/v2/message-header/stories/utils/test-utils.d.ts +1 -0
  259. package/dist/types/lib/components/v2/messages-view/hooks/useAutoScroll.d.ts +12 -0
  260. package/dist/types/lib/components/v2/messages-view/messages-view.d.ts +17 -0
  261. package/dist/types/lib/components/v2/messages-view/stories/shared.d.ts +7 -0
  262. package/dist/types/lib/components/v2/resolved-state/messages.d.ts +13 -0
  263. package/dist/types/lib/components/v2/resolved-state/resolved-state.d.ts +11 -0
  264. package/dist/types/lib/components/v2/resolved-state/stories/shared.d.ts +2 -0
  265. package/dist/types/lib/components/v2/show-replies-button/messages.d.ts +13 -0
  266. package/dist/types/lib/components/v2/show-replies-button/show-replies-button.d.ts +8 -0
  267. package/dist/types/lib/components/v2/text-message/messages.d.ts +23 -0
  268. package/dist/types/lib/components/v2/text-message/stories/shared.d.ts +2 -0
  269. package/dist/types/lib/components/v2/text-message/stories/utils/test-utils.d.ts +2 -0
  270. package/dist/types/lib/components/v2/text-message/subcomponents/message-footer.d.ts +10 -0
  271. package/dist/types/lib/components/v2/text-message/subcomponents/message-renderer.d.ts +6 -0
  272. package/dist/types/lib/components/v2/text-message/text-message.d.ts +26 -0
  273. package/dist/types/lib/components/v2/user-avatar/getInitials.d.ts +1 -0
  274. package/dist/types/lib/components/v2/user-avatar/messages.d.ts +13 -0
  275. package/dist/types/lib/components/v2/user-avatar/user-avatar.d.ts +12 -0
  276. package/dist/types/lib/document-node-types.d.ts +32 -0
  277. package/dist/types/lib/messages.d.ts +28 -0
  278. package/dist/types/lib/stories/mock/index.d.ts +5 -0
  279. package/dist/types/lib/stories/mock/mock-callbacks.d.ts +6 -0
  280. package/dist/types/lib/stories/mock/mock-messages-long-strings.d.ts +11 -0
  281. package/dist/types/lib/stories/mock/mock-messages.d.ts +8 -0
  282. package/dist/types/lib/stories/mock/mock-users.d.ts +56 -0
  283. package/dist/types/lib/stories/mock/mock-utilities.d.ts +6 -0
  284. package/dist/types/lib/stories/shared.d.ts +9 -0
  285. package/dist/types/lib/stories/utils/mock-collaboration-props.d.ts +13 -0
  286. package/dist/types/lib/stories/utils/mock-props.d.ts +20 -0
  287. package/dist/types/lib/stories/utils/mock-state.d.ts +8 -0
  288. package/dist/types/lib/stories/utils/shared/button-utils.d.ts +6 -0
  289. package/dist/types/lib/stories/utils/shared/index.d.ts +4 -0
  290. package/dist/types/lib/stories/utils/shared/interaction-utils.d.ts +4 -0
  291. package/dist/types/lib/stories/utils/shared/test-selectors.d.ts +7 -0
  292. package/dist/types/lib/stories/utils/shared/text-utils.d.ts +4 -0
  293. package/dist/types/lib/stories/utils/shared/verify-mention-elements.d.ts +2 -0
  294. package/dist/types/lib/stories/utils/test-utils.d.ts +3 -0
  295. package/dist/types/lib/threaded-annotations.d.ts +51 -0
  296. package/dist/types/lib/utils/getErrorMessage.d.ts +1 -0
  297. package/dist/types/lib/v2/constants.d.ts +8 -0
  298. package/dist/types/lib/v2/messages.d.ts +8 -0
  299. package/dist/types/lib/v2/stories/shared.d.ts +18 -0
  300. package/dist/types/lib/v2/test-utils/button-utils.d.ts +15 -0
  301. package/dist/types/lib/v2/test-utils/default-user-selector-props.d.ts +2 -0
  302. package/dist/types/lib/v2/test-utils/index.d.ts +7 -0
  303. package/dist/types/lib/v2/test-utils/interaction-utils.d.ts +9 -0
  304. package/dist/types/lib/v2/test-utils/mocks/index.d.ts +6 -0
  305. package/dist/types/lib/v2/test-utils/mocks/mock-callbacks.d.ts +8 -0
  306. package/dist/types/lib/v2/test-utils/mocks/mock-collaboration-props.d.ts +13 -0
  307. package/dist/types/lib/v2/test-utils/mocks/mock-messages-long-strings.d.ts +5 -0
  308. package/dist/types/lib/v2/test-utils/mocks/mock-messages.d.ts +10 -0
  309. package/dist/types/lib/v2/test-utils/mocks/mock-users.d.ts +55 -0
  310. package/dist/types/lib/v2/test-utils/mocks/mock-utilities.d.ts +6 -0
  311. package/dist/types/lib/v2/test-utils/test-selectors.d.ts +12 -0
  312. package/dist/types/lib/v2/test-utils/text-utils.d.ts +3 -0
  313. package/dist/types/lib/v2/test-utils/verify-mention-elements.d.ts +2 -0
  314. package/dist/types/lib/v2/threaded-annotations-context.d.ts +47 -0
  315. package/dist/types/lib/v2/threaded-annotations.d.ts +42 -0
  316. package/dist/types/lib/v2/types/annotation-badge-types.d.ts +23 -0
  317. package/dist/types/lib/v2/types/document-node-types.d.ts +32 -0
  318. package/dist/types/lib/v2/types/index.d.ts +3 -0
  319. package/dist/types/lib/v2/types/message-types.d.ts +33 -0
  320. package/dist/types/lib/v2/utils/build-mention-content.d.ts +3 -0
  321. package/dist/types/lib/v2/utils/serialize-mention-markup.d.ts +16 -0
  322. package/package.json +66 -0
@@ -0,0 +1,84 @@
1
+ # Aria label for the threaded annotations container button
2
+ boxui.threadedAnnotations.threadedAnnotationsAriaLabel = Threaded annotation
3
+ # Aria label for annotation message container
4
+ groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Annotation message
5
+ # Label showing the page number of an annotation target
6
+ groupSharedFeatures.threadedAnnotations.annotationPage = Page {number}
7
+ # Aria label for cancel delete button
8
+ groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = Cancel delete button
9
+ # Delete button text
10
+ groupSharedFeatures.threadedAnnotations.delete = Delete
11
+ # Aria label for delete button
12
+ groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Delete button
13
+ # Cancel button text for delete confirmation dialog
14
+ groupSharedFeatures.threadedAnnotations.deleteCancel = Cancel
15
+ # Confirmation text asking user if they want to delete a comment
16
+ groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = Do you want to delete this comment?
17
+ # Confirmation text asking user if they want to delete a comment and its replies
18
+ groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = Delete this comment and replies? This action can't be undone.
19
+ # Aria label for delete confirmation popover
20
+ groupSharedFeatures.threadedAnnotations.deleteConfirmation = Delete confirmation
21
+ # Edit option in message context menu
22
+ groupSharedFeatures.threadedAnnotations.edit = Edit
23
+ # Button text to hide replies in threaded annotations
24
+ groupSharedFeatures.threadedAnnotations.hideReplies = Hide replies
25
+ # Text shown after the author name when a comment thread is marked as resolved
26
+ groupSharedFeatures.threadedAnnotations.markedAsResolved = marked as resolved
27
+ # Cancel button text for message editor
28
+ groupSharedFeatures.threadedAnnotations.messageEditor.cancel = Cancel
29
+ # Aria label for the cancel button in message editor
30
+ groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel = Cancel button
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 = Your comment is {excess, plural, one {# character} other {# characters}} too long
35
+ # Aria label for the rich text editor content area
36
+ groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel = Message editor
37
+ # Aria label for message editor placeholder
38
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel = Message input placeholder
39
+ # First part of placeholder text before @ symbol
40
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix = Write a comment or
41
+ # First part of placeholder text before @ symbol for reply
42
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply = Write a reply or
43
+ # Last part of placeholder text after @ symbol
44
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix = to mention
45
+ # Placeholder text for uplifted message editor
46
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted = Leave a comment or @ to mention
47
+ # Post button text for message editor
48
+ groupSharedFeatures.threadedAnnotations.messageEditor.post = Post
49
+ # Aria label for the post button in message editor
50
+ groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel = Post button
51
+ # Aria label for post button loading state
52
+ groupSharedFeatures.threadedAnnotations.messageEditor.postLoading = Loading...
53
+ # Save button text for message editor
54
+ groupSharedFeatures.threadedAnnotations.messageEditor.save = Save
55
+ # Aria label for save button loading state
56
+ groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading = Saving...
57
+ # Aria label for the scrollable message editor content container
58
+ groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel = Message editor scroll container
59
+ # Aria label for more options button in annotation message
60
+ groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel = More options button
61
+ # Reply button text to start composing a reply
62
+ groupSharedFeatures.threadedAnnotations.reply = Reply
63
+ # Aria label for the reply button that opens the message editor
64
+ groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = Reply button
65
+ # Aria label for resolve button
66
+ groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = Resolve
67
+ # Aria label for the resolution status message container
68
+ groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = Resolution status message
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 {Show # reply} other {Show # more replies}}
73
+ # Aria label for the reply button
74
+ groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Reply button
75
+ # Aria label for user mention links
76
+ groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = User mention
77
+ # Aria label for message text content
78
+ groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Message text
79
+ # Aria label for unresolve button
80
+ groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Unresolve
81
+ # Alt text for user avatar image
82
+ groupSharedFeatures.threadedAnnotations.userAvatar = User avatar
83
+ # Aria label for clickable user avatar button
84
+ groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel = View user profile button
@@ -0,0 +1,44 @@
1
+ export default {
2
+ "boxui.threadedAnnotations.threadedAnnotationsAriaLabel": "Threaded annotation",
3
+ "groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel": "Annotation message",
4
+ "groupSharedFeatures.threadedAnnotations.annotationPage": "Page {number}",
5
+ "groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel": "Cancel delete button",
6
+ "groupSharedFeatures.threadedAnnotations.delete": "Delete",
7
+ "groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel": "Delete button",
8
+ "groupSharedFeatures.threadedAnnotations.deleteCancel": "Cancel",
9
+ "groupSharedFeatures.threadedAnnotations.deleteCommentQuestion": "Do you want to delete this comment?",
10
+ "groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "Delete this comment and replies? This action can’t be undone.",
11
+ "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Delete confirmation",
12
+ "groupSharedFeatures.threadedAnnotations.edit": "Edit",
13
+ "groupSharedFeatures.threadedAnnotations.hideReplies": "Hide replies",
14
+ "groupSharedFeatures.threadedAnnotations.markedAsResolved": "marked as resolved",
15
+ "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Cancel",
16
+ "groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel": "Cancel button",
17
+ "groupSharedFeatures.threadedAnnotations.messageEditor.characterCount": "{count}/{maxCount}",
18
+ "groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded": "Your comment is {excess,plural,one{# character} other{# characters}} too long",
19
+ "groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel": "Message editor",
20
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel": "Message input placeholder",
21
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix": "Write a comment or",
22
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply": "Write a reply or",
23
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix": "to mention",
24
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted": "Leave a comment or @ to mention",
25
+ "groupSharedFeatures.threadedAnnotations.messageEditor.post": "Post",
26
+ "groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel": "Post button",
27
+ "groupSharedFeatures.threadedAnnotations.messageEditor.postLoading": "Loading…",
28
+ "groupSharedFeatures.threadedAnnotations.messageEditor.save": "Save",
29
+ "groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading": "Saving...",
30
+ "groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel": "Message editor scroll container",
31
+ "groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel": "More options button",
32
+ "groupSharedFeatures.threadedAnnotations.reply": "Reply",
33
+ "groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel": "Reply button",
34
+ "groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel": "Resolve",
35
+ "groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel": "Resolution status message",
36
+ "groupSharedFeatures.threadedAnnotations.showMoreReplies": "{count,plural,one{# more reply} other{# more replies}}",
37
+ "groupSharedFeatures.threadedAnnotations.showReplies": "{number,plural,one{Show # reply} other{Show # more replies}}",
38
+ "groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel": "Reply button",
39
+ "groupSharedFeatures.threadedAnnotations.textMentionAriaLabel": "User mention",
40
+ "groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Message text",
41
+ "groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Unresolve",
42
+ "groupSharedFeatures.threadedAnnotations.userAvatar": "User avatar",
43
+ "groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "View user profile button"
44
+ }
@@ -0,0 +1,84 @@
1
+ # Aria label for the threaded annotations container button
2
+ boxui.threadedAnnotations.threadedAnnotationsAriaLabel = Threaded annotation
3
+ # Aria label for annotation message container
4
+ groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Annotation message
5
+ # Label showing the page number of an annotation target
6
+ groupSharedFeatures.threadedAnnotations.annotationPage = Page {number}
7
+ # Aria label for cancel delete button
8
+ groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = Cancel delete button
9
+ # Delete button text
10
+ groupSharedFeatures.threadedAnnotations.delete = Delete
11
+ # Aria label for delete button
12
+ groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Delete button
13
+ # Cancel button text for delete confirmation dialog
14
+ groupSharedFeatures.threadedAnnotations.deleteCancel = Cancel
15
+ # Confirmation text asking user if they want to delete a comment
16
+ groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = Do you want to delete this comment?
17
+ # Confirmation text asking user if they want to delete a comment and its replies
18
+ groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = Delete this comment and replies? This action can’t be undone.
19
+ # Aria label for delete confirmation popover
20
+ groupSharedFeatures.threadedAnnotations.deleteConfirmation = Delete confirmation
21
+ # Edit option in message context menu
22
+ groupSharedFeatures.threadedAnnotations.edit = Edit
23
+ # Button text to hide replies in threaded annotations
24
+ groupSharedFeatures.threadedAnnotations.hideReplies = Hide replies
25
+ # Text shown after the author name when a comment thread is marked as resolved
26
+ groupSharedFeatures.threadedAnnotations.markedAsResolved = marked as resolved
27
+ # Cancel button text for message editor
28
+ groupSharedFeatures.threadedAnnotations.messageEditor.cancel = Cancel
29
+ # Aria label for the cancel button in message editor
30
+ groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel = Cancel button
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 = Your comment is {excess,plural,one{# character} other{# characters}} too long
35
+ # Aria label for the rich text editor content area
36
+ groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel = Message editor
37
+ # Aria label for message editor placeholder
38
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel = Message input placeholder
39
+ # First part of placeholder text before @ symbol
40
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix = Write a comment or
41
+ # First part of placeholder text before @ symbol for reply
42
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply = Write a reply or
43
+ # Last part of placeholder text after @ symbol
44
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix = to mention
45
+ # Placeholder text for uplifted message editor
46
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted = Leave a comment or @ to mention
47
+ # Post button text for message editor
48
+ groupSharedFeatures.threadedAnnotations.messageEditor.post = Post
49
+ # Aria label for the post button in message editor
50
+ groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel = Post button
51
+ # Aria label for post button loading state
52
+ groupSharedFeatures.threadedAnnotations.messageEditor.postLoading = Loading…
53
+ # Save button text for message editor
54
+ groupSharedFeatures.threadedAnnotations.messageEditor.save = Save
55
+ # Aria label for save button loading state
56
+ groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading = Saving...
57
+ # Aria label for the scrollable message editor content container
58
+ groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel = Message editor scroll container
59
+ # Aria label for more options button in annotation message
60
+ groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel = More options button
61
+ # Reply button text to start composing a reply
62
+ groupSharedFeatures.threadedAnnotations.reply = Reply
63
+ # Aria label for the reply button that opens the message editor
64
+ groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = Reply button
65
+ # Aria label for resolve button
66
+ groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = Resolve
67
+ # Aria label for the resolution status message container
68
+ groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = Resolution status message
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{Show # reply} other{Show # more replies}}
73
+ # Aria label for the reply button
74
+ groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Reply button
75
+ # Aria label for user mention links
76
+ groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = User mention
77
+ # Aria label for message text content
78
+ groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Message text
79
+ # Aria label for unresolve button
80
+ groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Unresolve
81
+ # Alt text for user avatar image
82
+ groupSharedFeatures.threadedAnnotations.userAvatar = User avatar
83
+ # Aria label for clickable user avatar button
84
+ groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel = View user profile button
@@ -0,0 +1,44 @@
1
+ export default {
2
+ "boxui.threadedAnnotations.threadedAnnotationsAriaLabel": "Threaded annotation",
3
+ "groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel": "Annotation message",
4
+ "groupSharedFeatures.threadedAnnotations.annotationPage": "Page {number}",
5
+ "groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel": "Cancel delete button",
6
+ "groupSharedFeatures.threadedAnnotations.delete": "Delete",
7
+ "groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel": "Delete button",
8
+ "groupSharedFeatures.threadedAnnotations.deleteCancel": "Cancel",
9
+ "groupSharedFeatures.threadedAnnotations.deleteCommentQuestion": "Do you want to delete this comment?",
10
+ "groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "Delete this comment and replies? This action can't be undone.",
11
+ "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Delete confirmation",
12
+ "groupSharedFeatures.threadedAnnotations.edit": "Edit",
13
+ "groupSharedFeatures.threadedAnnotations.hideReplies": "Hide replies",
14
+ "groupSharedFeatures.threadedAnnotations.markedAsResolved": "marked as resolved",
15
+ "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Cancel",
16
+ "groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel": "Cancel button",
17
+ "groupSharedFeatures.threadedAnnotations.messageEditor.characterCount": "{count}/{maxCount}",
18
+ "groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded": "Your comment is {excess, plural, one {# character} other {# characters}} too long",
19
+ "groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel": "Message editor",
20
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel": "Message input placeholder",
21
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix": "Write a comment or",
22
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply": "Write a reply or",
23
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix": "to mention",
24
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted": "Leave a comment or @ to mention",
25
+ "groupSharedFeatures.threadedAnnotations.messageEditor.post": "Post",
26
+ "groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel": "Post button",
27
+ "groupSharedFeatures.threadedAnnotations.messageEditor.postLoading": "Loading...",
28
+ "groupSharedFeatures.threadedAnnotations.messageEditor.save": "Save",
29
+ "groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading": "Saving...",
30
+ "groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel": "Message editor scroll container",
31
+ "groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel": "More options button",
32
+ "groupSharedFeatures.threadedAnnotations.reply": "Reply",
33
+ "groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel": "Reply button",
34
+ "groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel": "Resolve",
35
+ "groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel": "Resolution status message",
36
+ "groupSharedFeatures.threadedAnnotations.showMoreReplies": "{count, plural, one {# more reply} other {# more replies}}",
37
+ "groupSharedFeatures.threadedAnnotations.showReplies": "{number, plural, one {Show # reply} other {Show # more replies}}",
38
+ "groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel": "Reply button",
39
+ "groupSharedFeatures.threadedAnnotations.textMentionAriaLabel": "User mention",
40
+ "groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Message text",
41
+ "groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Unresolve",
42
+ "groupSharedFeatures.threadedAnnotations.userAvatar": "User avatar",
43
+ "groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "View user profile button"
44
+ }
@@ -0,0 +1,84 @@
1
+ # Aria label for the threaded annotations container button
2
+ boxui.threadedAnnotations.threadedAnnotationsAriaLabel = Threaded annotation
3
+ # Aria label for annotation message container
4
+ groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Annotation message
5
+ # Label showing the page number of an annotation target
6
+ groupSharedFeatures.threadedAnnotations.annotationPage = Page {number}
7
+ # Aria label for cancel delete button
8
+ groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = Cancel delete button
9
+ # Delete button text
10
+ groupSharedFeatures.threadedAnnotations.delete = Delete
11
+ # Aria label for delete button
12
+ groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Delete button
13
+ # Cancel button text for delete confirmation dialog
14
+ groupSharedFeatures.threadedAnnotations.deleteCancel = Cancel
15
+ # Confirmation text asking user if they want to delete a comment
16
+ groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = Do you want to delete this comment?
17
+ # Confirmation text asking user if they want to delete a comment and its replies
18
+ groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = Delete this comment and replies? This action can't be undone.
19
+ # Aria label for delete confirmation popover
20
+ groupSharedFeatures.threadedAnnotations.deleteConfirmation = Delete confirmation
21
+ # Edit option in message context menu
22
+ groupSharedFeatures.threadedAnnotations.edit = Edit
23
+ # Button text to hide replies in threaded annotations
24
+ groupSharedFeatures.threadedAnnotations.hideReplies = Hide replies
25
+ # Text shown after the author name when a comment thread is marked as resolved
26
+ groupSharedFeatures.threadedAnnotations.markedAsResolved = marked as resolved
27
+ # Cancel button text for message editor
28
+ groupSharedFeatures.threadedAnnotations.messageEditor.cancel = Cancel
29
+ # Aria label for the cancel button in message editor
30
+ groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel = Cancel button
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 = Your comment is {excess, plural, one {# character} other {# characters}} too long
35
+ # Aria label for the rich text editor content area
36
+ groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel = Message editor
37
+ # Aria label for message editor placeholder
38
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel = Message input placeholder
39
+ # First part of placeholder text before @ symbol
40
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix = Write a comment or
41
+ # First part of placeholder text before @ symbol for reply
42
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply = Write a reply or
43
+ # Last part of placeholder text after @ symbol
44
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix = to mention
45
+ # Placeholder text for uplifted message editor
46
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted = Leave a comment or @ to mention
47
+ # Post button text for message editor
48
+ groupSharedFeatures.threadedAnnotations.messageEditor.post = Post
49
+ # Aria label for the post button in message editor
50
+ groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel = Post button
51
+ # Aria label for post button loading state
52
+ groupSharedFeatures.threadedAnnotations.messageEditor.postLoading = Loading...
53
+ # Save button text for message editor
54
+ groupSharedFeatures.threadedAnnotations.messageEditor.save = Save
55
+ # Aria label for save button loading state
56
+ groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading = Saving...
57
+ # Aria label for the scrollable message editor content container
58
+ groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel = Message editor scroll container
59
+ # Aria label for more options button in annotation message
60
+ groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel = More options button
61
+ # Reply button text to start composing a reply
62
+ groupSharedFeatures.threadedAnnotations.reply = Reply
63
+ # Aria label for the reply button that opens the message editor
64
+ groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = Reply button
65
+ # Aria label for resolve button
66
+ groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = Resolve
67
+ # Aria label for the resolution status message container
68
+ groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = Resolution status message
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 {Show # reply} other {Show # more replies}}
73
+ # Aria label for the reply button
74
+ groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Reply button
75
+ # Aria label for user mention links
76
+ groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = User mention
77
+ # Aria label for message text content
78
+ groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Message text
79
+ # Aria label for unresolve button
80
+ groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Unresolve
81
+ # Alt text for user avatar image
82
+ groupSharedFeatures.threadedAnnotations.userAvatar = User avatar
83
+ # Aria label for clickable user avatar button
84
+ groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel = View user profile button
@@ -0,0 +1,44 @@
1
+ export default {
2
+ "boxui.threadedAnnotations.threadedAnnotationsAriaLabel": "⟦萬萬萬萬萬 Ŧĥŗēǻďęď ǻήńöţãŧìőή 國國國國國⟧",
3
+ "groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel": "⟦萬萬萬萬萬 Ăππöŧâŧϊőʼn mēśşāĝё 國國國國國⟧",
4
+ "groupSharedFeatures.threadedAnnotations.annotationPage": "⟦萬萬 Pàġё {number} 國國⟧",
5
+ "groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel": "⟦萬萬萬萬萬 Ĉàиçĕľ ďéĺêτĕ вůτťŏη 國國國國國⟧",
6
+ "groupSharedFeatures.threadedAnnotations.delete": "⟦萬 Ðěľéťě 國⟧",
7
+ "groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel": "⟦萬萬萬 Ďėĺėτę вùťťõл 國國國⟧",
8
+ "groupSharedFeatures.threadedAnnotations.deleteCancel": "⟦萬 Ĉåпćёľ 國⟧",
9
+ "groupSharedFeatures.threadedAnnotations.deleteCommentQuestion": "⟦萬萬萬萬萬萬萬萬萬萬 Ðõ ўőü щàńţ ťö ďёľëťè ŧĥìѕ ćőmmëņτ? 國國國國國國國國國國⟧",
10
+ "groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ďëļĕτё ţнïŝ ċόmméňŧ âиď ѓéΡļīєş? Ŧĥīş άċťĩŏń ćàи'τ вè ũиďòлё. 國國國國國國國國國國國國國國國國國國⟧",
11
+ "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "⟦萬萬萬萬萬 Ďĕľêţє ċőпƒιѓmäťϊòň 國國國國國⟧",
12
+ "groupSharedFeatures.threadedAnnotations.edit": "⟦萬 Εďįτ 國⟧",
13
+ "groupSharedFeatures.threadedAnnotations.hideReplies": "⟦萬萬萬 Ĥіďε яěΡľїēś 國國國⟧",
14
+ "groupSharedFeatures.threadedAnnotations.markedAsResolved": "⟦萬萬萬萬萬 mάґκęď άś ŕêѕőĺνέď 國國國國國⟧",
15
+ "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "⟦萬 Ċάηčèĺ 國⟧",
16
+ "groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel": "⟦萬萬萬 Çãπĉέļ ьμţţŏπ 國國國⟧",
17
+ "groupSharedFeatures.threadedAnnotations.messageEditor.characterCount": "⟦萬萬萬 {count}/{maxCount} 國國國⟧",
18
+ "groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ỳŏμř ¢ŏmmеиť ïѕ {excess, plural, one {# ĉħǻґàċŧέґ} other {# ¢ĥăяāĉŧęŕś}} ťόõ ĺôлġ 國國國國國國國國國國國國國國國國國國⟧",
19
+ "groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel": "⟦萬萬萬萬 Мěśŝāĝě èďįťоŗ 國國國國⟧",
20
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel": "⟦萬萬萬萬萬萬萬 Μėşѕāġε іŋΡüť Ρĺáćęнσļďēѓ 國國國國國國國⟧",
21
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix": "⟦萬萬萬萬萬 Ŵѓĩτę à čømmèʼnť όŕ 國國國國國⟧",
22
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply": "⟦萬萬萬萬 Ẃřιτě ǻ ѓêΡļγ øґ 國國國國⟧",
23
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix": "⟦萬萬 ţó mέʼnŧĭσл 國國⟧",
24
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted": "⟦萬萬萬萬萬萬萬萬萬 Ľêåνё à ĉοmmėиţ õґ @ ŧó mēπţίοи 國國國國國國國國國⟧",
25
+ "groupSharedFeatures.threadedAnnotations.messageEditor.post": "⟦萬 Põŝţ 國⟧",
26
+ "groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel": "⟦萬萬萬 Póśτ вųŧťŏй 國國國⟧",
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": "⟦萬萬萬萬萬萬萬 Γěśôĺµţιòń şťάţŭş mêśŝąĝé 國國國國國國國⟧",
36
+ "groupSharedFeatures.threadedAnnotations.showMoreReplies": "⟦萬萬萬萬萬萬萬萬萬萬萬 {count, plural, one {# möŕė ѓєΡľў} other {# mоŕë ѓèΡľìëś}} 國國國國國國國國國國國⟧",
37
+ "groupSharedFeatures.threadedAnnotations.showReplies": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 {number, plural, one {Şħøẁ # ŕεΡľÿ} other {Şнοώ # môŗє ŗέΡĺĩěś}} 國國國國國國國國國國國國國⟧",
38
+ "groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel": "⟦萬萬萬 ŔěΡļỳ вµťţŏл 國國國⟧",
39
+ "groupSharedFeatures.threadedAnnotations.textMentionAriaLabel": "⟦萬萬萬 Ùşεŕ mèňţĭοʼn 國國國⟧",
40
+ "groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "⟦萬萬萬 Мēşŝąğé ţé×ŧ 國國國⟧",
41
+ "groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "⟦萬萬 Üήґεşŏļνë 國國⟧",
42
+ "groupSharedFeatures.threadedAnnotations.userAvatar": "⟦萬萬萬 Ũśєŕ ãνâταŗ 國國國⟧",
43
+ "groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "⟦萬萬萬萬萬萬萬 Vïėẁ μѕëŕ Ρґσƒϊļє ьцţτøņ 國國國國國國國⟧"
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 = ⟦萬萬萬萬萬 Ăππöŧâŧϊőʼn mēśşāĝё 國國國國國⟧
5
+ # Label showing the page number of an annotation target
6
+ groupSharedFeatures.threadedAnnotations.annotationPage = ⟦萬萬 Pàġё {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 = ⟦萬萬萬萬萬萬萬萬萬萬 Ðõ ўőü щàńţ ťö ďёľëťè ŧĥìѕ ćőmmëņτ? 國國國國國國國國國國⟧
17
+ # Confirmation text asking user if they want to delete a comment and its replies
18
+ groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ďëļĕτё ţнïŝ ċόmméňŧ âиď ѓéΡļīєş? Ŧĥīş άċťĩŏń ćàи'τ вè ũиďòлё. 國國國國國國國國國國國國國國國國國國⟧
19
+ # Aria label for delete confirmation popover
20
+ groupSharedFeatures.threadedAnnotations.deleteConfirmation = ⟦萬萬萬萬萬 Ďĕľêţє ċőпƒιѓmäťϊòň 國國國國國⟧
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 = ⟦萬萬萬萬萬 mάґκęď άś ŕêѕőĺνέď 國國國國國⟧
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 = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ỳŏμř ¢ŏmmеиť ïѕ {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 = ⟦萬萬萬萬萬 Ŵѓĩτę à čømmèʼnť όŕ 國國國國國⟧
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 = ⟦萬萬 ţó mέʼnŧĭσл 國國⟧
45
+ # Placeholder text for uplifted message editor
46
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted = ⟦萬萬萬萬萬萬萬萬萬 Ľêåνё à ĉοmmėиţ õґ @ ŧó mēπţίοи 國國國國國國國國國⟧
47
+ # Post button text for message editor
48
+ groupSharedFeatures.threadedAnnotations.messageEditor.post = ⟦萬 Põŝţ 國⟧
49
+ # Aria label for the post button in message editor
50
+ groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel = ⟦萬萬萬 Póśτ вųŧťŏй 國國國⟧
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 = ⟦萬萬萬萬萬萬萬 Γěśôĺµţιòń şťάţŭş mêśŝąĝé 國國國國國國國⟧
69
+ # Button text to show more replies with count
70
+ groupSharedFeatures.threadedAnnotations.showMoreReplies = ⟦萬萬萬萬萬萬萬萬萬萬萬 {count, plural, one {# möŕė ѓєΡľў} other {# mоŕë ѓèΡľìëś}} 國國國國國國國國國國國⟧
71
+ # Button text to show replies with count
72
+ groupSharedFeatures.threadedAnnotations.showReplies = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 {number, plural, one {Şħøẁ # ŕεΡľÿ} other {Şнοώ # môŗє ŗέΡĺĩěś}} 國國國國國國國國國國國國國⟧
73
+ # Aria label for the reply button
74
+ groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = ⟦萬萬萬 ŔěΡļỳ вµťţŏл 國國國⟧
75
+ # Aria label for user mention links
76
+ groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = ⟦萬萬萬 Ùşεŕ mèňţĭοʼn 國國國⟧
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 = ⟦萬萬萬萬萬萬萬 Vïėẁ μѕëŕ Ρґσƒϊļє ьцţτøņ 國國國國國國國⟧
@@ -0,0 +1,44 @@
1
+ export default {
2
+ "boxui.threadedAnnotations.threadedAnnotationsAriaLabel": "Anotación en hilos",
3
+ "groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel": "Mensaje de anotación",
4
+ "groupSharedFeatures.threadedAnnotations.annotationPage": "Página {number}",
5
+ "groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel": "Botón Cancelar eliminación",
6
+ "groupSharedFeatures.threadedAnnotations.delete": "Eliminar",
7
+ "groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel": "Botón Eliminar",
8
+ "groupSharedFeatures.threadedAnnotations.deleteCancel": "Anular",
9
+ "groupSharedFeatures.threadedAnnotations.deleteCommentQuestion": "¿Desea eliminar este comentario?",
10
+ "groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "¿Desea eliminar este comentario y las respuestas? Esta acción no se puede deshacer.",
11
+ "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Confirmación de eliminación",
12
+ "groupSharedFeatures.threadedAnnotations.edit": "Edición",
13
+ "groupSharedFeatures.threadedAnnotations.hideReplies": "Ocultar respuestas",
14
+ "groupSharedFeatures.threadedAnnotations.markedAsResolved": "marcado como resuelto",
15
+ "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Anular",
16
+ "groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel": "Botón Cancelar",
17
+ "groupSharedFeatures.threadedAnnotations.messageEditor.characterCount": "{count}/{maxCount}",
18
+ "groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded": "Su comentario es {excess,plural,one{# carácter} many{# caracteres} other{# caracteres}} más largo",
19
+ "groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel": "Editor de mensajes",
20
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel": "Marcador de entrada de mensaje",
21
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix": "Escriba un comentario o",
22
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply": "Escriba una respuesta o",
23
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix": "para mencionar",
24
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted": "Deje un comentario o @ para mencionar",
25
+ "groupSharedFeatures.threadedAnnotations.messageEditor.post": "Publicar",
26
+ "groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel": "Botón Publicar",
27
+ "groupSharedFeatures.threadedAnnotations.messageEditor.postLoading": "Cargando…",
28
+ "groupSharedFeatures.threadedAnnotations.messageEditor.save": "Guardar",
29
+ "groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading": "Guardando…",
30
+ "groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel": "Contenedor de desplazamiento del editor de mensajes",
31
+ "groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel": "Botón Más opciones",
32
+ "groupSharedFeatures.threadedAnnotations.reply": "Responder",
33
+ "groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel": "Botón Responder",
34
+ "groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel": "Resolver",
35
+ "groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel": "Mensaje de estado de resolución",
36
+ "groupSharedFeatures.threadedAnnotations.showMoreReplies": "{count,plural,one{# respuesta más} other{# respuestas más}}",
37
+ "groupSharedFeatures.threadedAnnotations.showReplies": "{number,plural,one{Mostrar # respuesta} many{Mostrar # respuestas más} other{Mostrar # respuestas más}}",
38
+ "groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel": "Botón Responder",
39
+ "groupSharedFeatures.threadedAnnotations.textMentionAriaLabel": "Mención del usuario",
40
+ "groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Texto del mensaje",
41
+ "groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Anular",
42
+ "groupSharedFeatures.threadedAnnotations.userAvatar": "Avatar del usuario",
43
+ "groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Botón Ver perfil de usuario"
44
+ }
@@ -0,0 +1,84 @@
1
+ # Aria label for the threaded annotations container button
2
+ boxui.threadedAnnotations.threadedAnnotationsAriaLabel = Anotación en hilos
3
+ # Aria label for annotation message container
4
+ groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Mensaje de anotación
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ón Cancelar eliminación
9
+ # Delete button text
10
+ groupSharedFeatures.threadedAnnotations.delete = Eliminar
11
+ # Aria label for delete button
12
+ groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Botón Eliminar
13
+ # Cancel button text for delete confirmation dialog
14
+ groupSharedFeatures.threadedAnnotations.deleteCancel = Anular
15
+ # Confirmation text asking user if they want to delete a comment
16
+ groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = ¿Desea eliminar este comentario?
17
+ # Confirmation text asking user if they want to delete a comment and its replies
18
+ groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = ¿Desea eliminar este comentario y las respuestas? Esta acción no se puede deshacer.
19
+ # Aria label for delete confirmation popover
20
+ groupSharedFeatures.threadedAnnotations.deleteConfirmation = Confirmación de eliminación
21
+ # Edit option in message context menu
22
+ groupSharedFeatures.threadedAnnotations.edit = Edición
23
+ # Button text to hide replies in threaded annotations
24
+ groupSharedFeatures.threadedAnnotations.hideReplies = Ocultar respuestas
25
+ # Text shown after the author name when a comment thread is marked as resolved
26
+ groupSharedFeatures.threadedAnnotations.markedAsResolved = marcado como resuelto
27
+ # Cancel button text for message editor
28
+ groupSharedFeatures.threadedAnnotations.messageEditor.cancel = Anular
29
+ # Aria label for the cancel button in message editor
30
+ groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel = Botón 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 = Su comentario es {excess,plural,one{# carácter} many{# caracteres} other{# caracteres}} más largo
35
+ # Aria label for the rich text editor content area
36
+ groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel = Editor de mensajes
37
+ # Aria label for message editor placeholder
38
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel = Marcador de entrada de mensaje
39
+ # First part of placeholder text before @ symbol
40
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix = Escriba un comentario o
41
+ # First part of placeholder text before @ symbol for reply
42
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply = Escriba una respuesta o
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 = Deje un comentario o @ para mencionar
47
+ # Post button text for message editor
48
+ groupSharedFeatures.threadedAnnotations.messageEditor.post = Publicar
49
+ # Aria label for the post button in message editor
50
+ groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel = Botón Publicar
51
+ # Aria label for post button loading state
52
+ groupSharedFeatures.threadedAnnotations.messageEditor.postLoading = Cargando…
53
+ # Save button text for message editor
54
+ groupSharedFeatures.threadedAnnotations.messageEditor.save = Guardar
55
+ # Aria label for save button loading state
56
+ groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading = Guardando…
57
+ # Aria label for the scrollable message editor content container
58
+ groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel = Contenedor de desplazamiento del editor de mensajes
59
+ # Aria label for more options button in annotation message
60
+ groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel = Botón Más opciones
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ón 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 = Mensaje de estado de resolución
69
+ # Button text to show more replies with count
70
+ groupSharedFeatures.threadedAnnotations.showMoreReplies = {count,plural,one{# respuesta más} other{# respuestas más}}
71
+ # Button text to show replies with count
72
+ groupSharedFeatures.threadedAnnotations.showReplies = {number,plural,one{Mostrar # respuesta} many{Mostrar # respuestas más} other{Mostrar # respuestas más}}
73
+ # Aria label for the reply button
74
+ groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Botón Responder
75
+ # Aria label for user mention links
76
+ groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = Mención del usuario
77
+ # Aria label for message text content
78
+ groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Texto del mensaje
79
+ # Aria label for unresolve button
80
+ groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Anular
81
+ # Alt text for user avatar image
82
+ groupSharedFeatures.threadedAnnotations.userAvatar = Avatar del usuario
83
+ # Aria label for clickable user avatar button
84
+ groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel = Botón Ver perfil de usuario