@box/activity-feed 1.15.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 (221) hide show
  1. package/LICENSE +379 -0
  2. package/README.md +57 -0
  3. package/dist/chunks/AssigneeList.js +125 -0
  4. package/dist/chunks/TaskDueDate.js +44 -0
  5. package/dist/chunks/TaskItemFooter.js +77 -0
  6. package/dist/chunks/TaskMessage.js +86 -0
  7. package/dist/chunks/TaskState.js +83 -0
  8. package/dist/chunks/activity-feed-list.js +21 -0
  9. package/dist/chunks/activity-feed.js +46 -0
  10. package/dist/chunks/app-activity-item.js +75 -0
  11. package/dist/chunks/editor.js +14 -0
  12. package/dist/chunks/empty-state.js +22 -0
  13. package/dist/chunks/header.js +63 -0
  14. package/dist/chunks/mock-collaboration-props.js +19379 -0
  15. package/dist/chunks/scroll.js +6 -0
  16. package/dist/chunks/task-button.js +44 -0
  17. package/dist/chunks/task-delete-confirmation-popover.js +50 -0
  18. package/dist/chunks/task-options-menu.js +58 -0
  19. package/dist/chunks/types.js +8 -0
  20. package/dist/chunks/version-item.module.js +10 -0
  21. package/dist/esm/index.js +9 -0
  22. package/dist/esm/lib/activity-feed.js +6 -0
  23. package/dist/esm/lib/components/activity-feed-list/activity-feed-list.js +2 -0
  24. package/dist/esm/lib/components/activity-feed-list/index.js +2 -0
  25. package/dist/esm/lib/components/app-activity-item/app-activity-item.js +2 -0
  26. package/dist/esm/lib/components/app-activity-item/index.js +2 -0
  27. package/dist/esm/lib/components/app-activity-item/messages.js +6 -0
  28. package/dist/esm/lib/components/editor/editor.js +2 -0
  29. package/dist/esm/lib/components/editor/index.js +2 -0
  30. package/dist/esm/lib/components/empty-state/empty-state.js +2 -0
  31. package/dist/esm/lib/components/empty-state/index.js +2 -0
  32. package/dist/esm/lib/components/empty-state/messages.js +12 -0
  33. package/dist/esm/lib/components/header/header-filter-options.js +30 -0
  34. package/dist/esm/lib/components/header/header.js +2 -0
  35. package/dist/esm/lib/components/header/messages.js +44 -0
  36. package/dist/esm/lib/components/header/task-button/index.js +2 -0
  37. package/dist/esm/lib/components/header/task-button/messages.js +24 -0
  38. package/dist/esm/lib/components/header/task-button/task-button.js +2 -0
  39. package/dist/esm/lib/components/task-item/TaskItem.js +81 -0
  40. package/dist/esm/lib/components/task-item/TaskItemFooter.js +2 -0
  41. package/dist/esm/lib/components/task-item/components/assignee-list/AssigneeList.js +2 -0
  42. package/dist/esm/lib/components/task-item/components/assignee-list/index.js +2 -0
  43. package/dist/esm/lib/components/task-item/components/task-due-date/TaskDueDate.js +2 -0
  44. package/dist/esm/lib/components/task-item/components/task-due-date/index.js +2 -0
  45. package/dist/esm/lib/components/task-item/components/task-message/MessageRenderer.js +21 -0
  46. package/dist/esm/lib/components/task-item/components/task-message/TaskMessage.js +2 -0
  47. package/dist/esm/lib/components/task-item/components/task-message/index.js +2 -0
  48. package/dist/esm/lib/components/task-item/components/task-message/messages.js +24 -0
  49. package/dist/esm/lib/components/task-item/components/task-message/task-delete-confirmation-popover.js +2 -0
  50. package/dist/esm/lib/components/task-item/components/task-message/task-options-menu.js +2 -0
  51. package/dist/esm/lib/components/task-item/components/task-state/TaskState.js +2 -0
  52. package/dist/esm/lib/components/task-item/components/task-state/index.js +2 -0
  53. package/dist/esm/lib/components/task-item/components/task-state/messages.js +20 -0
  54. package/dist/esm/lib/components/task-item/index.js +6 -0
  55. package/dist/esm/lib/components/task-item/messages.js +76 -0
  56. package/dist/esm/lib/components/task-item/utils/task-item-helpers.js +22 -0
  57. package/dist/esm/lib/components/user-avatar/getInitials.js +5 -0
  58. package/dist/esm/lib/components/user-avatar/index.js +2 -0
  59. package/dist/esm/lib/components/user-avatar/user-avatar.js +22 -0
  60. package/dist/esm/lib/components/version-item/delete-version-item/delete-version-item.js +41 -0
  61. package/dist/esm/lib/components/version-item/delete-version-item/index.js +2 -0
  62. package/dist/esm/lib/components/version-item/divider-version-item/divider-version-item.js +20 -0
  63. package/dist/esm/lib/components/version-item/divider-version-item/index.js +2 -0
  64. package/dist/esm/lib/components/version-item/index.js +2 -0
  65. package/dist/esm/lib/components/version-item/messages.js +36 -0
  66. package/dist/esm/lib/components/version-item/version-item.js +52 -0
  67. package/dist/esm/lib/scroll/create-activity-feed-scroll.js +18 -0
  68. package/dist/esm/lib/scroll/index.js +4 -0
  69. package/dist/esm/lib/scroll/use-activity-feed-scroll.js +7 -0
  70. package/dist/esm/lib/test-utils/mocks/index.js +6 -0
  71. package/dist/esm/lib/test-utils/mocks/mock-collaboration-props.js +2 -0
  72. package/dist/esm/lib/test-utils/mocks/mock-feed-items.js +187 -0
  73. package/dist/esm/lib/test-utils/mocks/mock-mention-context.js +7 -0
  74. package/dist/esm/lib/test-utils/mocks/mock-user-selector-props.js +9 -0
  75. package/dist/esm/lib/test-utils/mocks/mock-users.js +86 -0
  76. package/dist/esm/lib/types/ActivityItem.js +0 -0
  77. package/dist/esm/lib/types/common.js +0 -0
  78. package/dist/esm/lib/types/index.js +0 -0
  79. package/dist/i18n/bn-IN.js +55 -0
  80. package/dist/i18n/bn-IN.properties +106 -0
  81. package/dist/i18n/da-DK.js +55 -0
  82. package/dist/i18n/da-DK.properties +106 -0
  83. package/dist/i18n/de-DE.js +55 -0
  84. package/dist/i18n/de-DE.properties +106 -0
  85. package/dist/i18n/en-AU.js +55 -0
  86. package/dist/i18n/en-AU.properties +106 -0
  87. package/dist/i18n/en-CA.js +55 -0
  88. package/dist/i18n/en-CA.properties +106 -0
  89. package/dist/i18n/en-GB.js +55 -0
  90. package/dist/i18n/en-GB.properties +106 -0
  91. package/dist/i18n/en-US.js +55 -0
  92. package/dist/i18n/en-US.properties +106 -0
  93. package/dist/i18n/en-x-pseudo.js +55 -0
  94. package/dist/i18n/en-x-pseudo.properties +106 -0
  95. package/dist/i18n/es-419.js +55 -0
  96. package/dist/i18n/es-419.properties +106 -0
  97. package/dist/i18n/es-ES.js +55 -0
  98. package/dist/i18n/es-ES.properties +106 -0
  99. package/dist/i18n/fi-FI.js +55 -0
  100. package/dist/i18n/fi-FI.properties +106 -0
  101. package/dist/i18n/fr-CA.js +55 -0
  102. package/dist/i18n/fr-CA.properties +106 -0
  103. package/dist/i18n/fr-FR.js +55 -0
  104. package/dist/i18n/fr-FR.properties +106 -0
  105. package/dist/i18n/hi-IN.js +55 -0
  106. package/dist/i18n/hi-IN.properties +106 -0
  107. package/dist/i18n/it-IT.js +55 -0
  108. package/dist/i18n/it-IT.properties +106 -0
  109. package/dist/i18n/ja-JP.js +55 -0
  110. package/dist/i18n/ja-JP.properties +106 -0
  111. package/dist/i18n/json/src/lib/components/app-activity-item/messages.json +1 -0
  112. package/dist/i18n/json/src/lib/components/empty-state/messages.json +1 -0
  113. package/dist/i18n/json/src/lib/components/header/messages.json +1 -0
  114. package/dist/i18n/json/src/lib/components/header/task-button/messages.json +1 -0
  115. package/dist/i18n/json/src/lib/components/task-item/components/task-message/messages.json +1 -0
  116. package/dist/i18n/json/src/lib/components/task-item/components/task-state/messages.json +1 -0
  117. package/dist/i18n/json/src/lib/components/task-item/messages.json +1 -0
  118. package/dist/i18n/json/src/lib/components/version-item/messages.json +1 -0
  119. package/dist/i18n/ko-KR.js +55 -0
  120. package/dist/i18n/ko-KR.properties +106 -0
  121. package/dist/i18n/nb-NO.js +55 -0
  122. package/dist/i18n/nb-NO.properties +106 -0
  123. package/dist/i18n/nl-NL.js +55 -0
  124. package/dist/i18n/nl-NL.properties +106 -0
  125. package/dist/i18n/pl-PL.js +55 -0
  126. package/dist/i18n/pl-PL.properties +106 -0
  127. package/dist/i18n/pt-BR.js +55 -0
  128. package/dist/i18n/pt-BR.properties +106 -0
  129. package/dist/i18n/ru-RU.js +55 -0
  130. package/dist/i18n/ru-RU.properties +106 -0
  131. package/dist/i18n/sv-SE.js +55 -0
  132. package/dist/i18n/sv-SE.properties +106 -0
  133. package/dist/i18n/tr-TR.js +55 -0
  134. package/dist/i18n/tr-TR.properties +106 -0
  135. package/dist/i18n/zh-CN.js +55 -0
  136. package/dist/i18n/zh-CN.properties +106 -0
  137. package/dist/i18n/zh-TW.js +55 -0
  138. package/dist/i18n/zh-TW.properties +106 -0
  139. package/dist/styles/AssigneeList.css +1 -0
  140. package/dist/styles/TaskDueDate.css +1 -0
  141. package/dist/styles/TaskItemFooter.css +1 -0
  142. package/dist/styles/TaskMessage.css +1 -0
  143. package/dist/styles/TaskState.css +1 -0
  144. package/dist/styles/activity-feed-list.css +1 -0
  145. package/dist/styles/activity-feed.css +1 -0
  146. package/dist/styles/app-activity-item.css +1 -0
  147. package/dist/styles/editor.css +1 -0
  148. package/dist/styles/empty-state.css +1 -0
  149. package/dist/styles/header.css +1 -0
  150. package/dist/styles/task-button.css +1 -0
  151. package/dist/styles/task-delete-confirmation-popover.css +1 -0
  152. package/dist/styles/task-options-menu.css +1 -0
  153. package/dist/styles/version-item.css +1 -0
  154. package/dist/types/index.d.ts +6 -0
  155. package/dist/types/lib/activity-feed.d.ts +62 -0
  156. package/dist/types/lib/components/activity-feed-list/activity-feed-list.d.ts +7 -0
  157. package/dist/types/lib/components/activity-feed-list/index.d.ts +1 -0
  158. package/dist/types/lib/components/app-activity-item/app-activity-item.d.ts +13 -0
  159. package/dist/types/lib/components/app-activity-item/index.d.ts +1 -0
  160. package/dist/types/lib/components/app-activity-item/messages.d.ts +7 -0
  161. package/dist/types/lib/components/editor/editor.d.ts +3 -0
  162. package/dist/types/lib/components/editor/index.d.ts +1 -0
  163. package/dist/types/lib/components/empty-state/empty-state.d.ts +1 -0
  164. package/dist/types/lib/components/empty-state/index.d.ts +1 -0
  165. package/dist/types/lib/components/empty-state/messages.d.ts +12 -0
  166. package/dist/types/lib/components/header/header-filter-options.d.ts +16 -0
  167. package/dist/types/lib/components/header/header.d.ts +49 -0
  168. package/dist/types/lib/components/header/messages.d.ts +52 -0
  169. package/dist/types/lib/components/header/stories/shared.d.ts +13 -0
  170. package/dist/types/lib/components/header/task-button/index.d.ts +1 -0
  171. package/dist/types/lib/components/header/task-button/messages.d.ts +27 -0
  172. package/dist/types/lib/components/header/task-button/task-button.d.ts +8 -0
  173. package/dist/types/lib/components/task-item/TaskItem.d.ts +3 -0
  174. package/dist/types/lib/components/task-item/TaskItemFooter.d.ts +19 -0
  175. package/dist/types/lib/components/task-item/components/assignee-list/AssigneeList.d.ts +11 -0
  176. package/dist/types/lib/components/task-item/components/assignee-list/index.d.ts +1 -0
  177. package/dist/types/lib/components/task-item/components/task-due-date/TaskDueDate.d.ts +5 -0
  178. package/dist/types/lib/components/task-item/components/task-due-date/index.d.ts +1 -0
  179. package/dist/types/lib/components/task-item/components/task-message/MessageRenderer.d.ts +6 -0
  180. package/dist/types/lib/components/task-item/components/task-message/TaskMessage.d.ts +16 -0
  181. package/dist/types/lib/components/task-item/components/task-message/index.d.ts +3 -0
  182. package/dist/types/lib/components/task-item/components/task-message/messages.d.ts +28 -0
  183. package/dist/types/lib/components/task-item/components/task-message/task-delete-confirmation-popover.d.ts +11 -0
  184. package/dist/types/lib/components/task-item/components/task-message/task-options-menu.d.ts +13 -0
  185. package/dist/types/lib/components/task-item/components/task-message/types.d.ts +19 -0
  186. package/dist/types/lib/components/task-item/components/task-state/TaskState.d.ts +28 -0
  187. package/dist/types/lib/components/task-item/components/task-state/index.d.ts +2 -0
  188. package/dist/types/lib/components/task-item/components/task-state/messages.d.ts +23 -0
  189. package/dist/types/lib/components/task-item/index.d.ts +12 -0
  190. package/dist/types/lib/components/task-item/messages.d.ts +93 -0
  191. package/dist/types/lib/components/task-item/types.d.ts +106 -0
  192. package/dist/types/lib/components/task-item/utils/task-item-helpers.d.ts +4 -0
  193. package/dist/types/lib/components/user-avatar/getInitials.d.ts +1 -0
  194. package/dist/types/lib/components/user-avatar/index.d.ts +1 -0
  195. package/dist/types/lib/components/user-avatar/user-avatar.d.ts +11 -0
  196. package/dist/types/lib/components/version-item/delete-version-item/delete-version-item.d.ts +8 -0
  197. package/dist/types/lib/components/version-item/delete-version-item/index.d.ts +1 -0
  198. package/dist/types/lib/components/version-item/divider-version-item/divider-version-item.d.ts +5 -0
  199. package/dist/types/lib/components/version-item/divider-version-item/index.d.ts +1 -0
  200. package/dist/types/lib/components/version-item/index.d.ts +1 -0
  201. package/dist/types/lib/components/version-item/messages.d.ts +42 -0
  202. package/dist/types/lib/components/version-item/version-item.d.ts +23 -0
  203. package/dist/types/lib/scroll/create-activity-feed-scroll.d.ts +2 -0
  204. package/dist/types/lib/scroll/index.d.ts +4 -0
  205. package/dist/types/lib/scroll/types.d.ts +10 -0
  206. package/dist/types/lib/scroll/use-activity-feed-scroll.d.ts +6 -0
  207. package/dist/types/lib/stories/map-activity-item.d.ts +18 -0
  208. package/dist/types/lib/stories/shared.d.ts +15 -0
  209. package/dist/types/lib/test-utils/button-utils.d.ts +14 -0
  210. package/dist/types/lib/test-utils/index.d.ts +1 -0
  211. package/dist/types/lib/test-utils/mocks/index.d.ts +5 -0
  212. package/dist/types/lib/test-utils/mocks/mock-collaboration-props.d.ts +9 -0
  213. package/dist/types/lib/test-utils/mocks/mock-feed-items.d.ts +20 -0
  214. package/dist/types/lib/test-utils/mocks/mock-mention-context.d.ts +2 -0
  215. package/dist/types/lib/test-utils/mocks/mock-user-selector-props.d.ts +2 -0
  216. package/dist/types/lib/test-utils/mocks/mock-users.d.ts +55 -0
  217. package/dist/types/lib/test-utils/text-utils.d.ts +3 -0
  218. package/dist/types/lib/types/ActivityItem.d.ts +145 -0
  219. package/dist/types/lib/types/common.d.ts +82 -0
  220. package/dist/types/lib/types/index.d.ts +3 -0
  221. package/package.json +56 -0
@@ -0,0 +1,55 @@
1
+ export default {
2
+ "groupSharedFeatures.activityFeed.activityItemText": "{appName}: {parsedContent} · {timestamp}",
3
+ "groupSharedFeatures.activityFeed.emptyState.body": "Per iniziare la conversazione, lascia un commento. Utilizza @ per menzionare i collaboratori in questo file.",
4
+ "groupSharedFeatures.activityFeed.emptyState.title": "Ancora nessun commento",
5
+ "groupSharedFeatures.activityFeed.header.closeAriaLabel": "Chiudi",
6
+ "groupSharedFeatures.activityFeed.header.filterAriaLabel": "Filtro",
7
+ "groupSharedFeatures.activityFeed.header.filtersTitle": "Filtri",
8
+ "groupSharedFeatures.activityFeed.header.hideResolvedComments": "Solo non risolti",
9
+ "groupSharedFeatures.activityFeed.header.hideResolvedCommentsDescription": "Esclude i commenti contrassegnati come risolti",
10
+ "groupSharedFeatures.activityFeed.header.mentionMe": "Menzionami",
11
+ "groupSharedFeatures.activityFeed.header.mentionMeDescription": "Commenti in cui sei @menzionato",
12
+ "groupSharedFeatures.activityFeed.header.mentionMeDescriptionWithTasks": "Commenti in cui sei @menzionato e attività che ti sono state assegnate",
13
+ "groupSharedFeatures.activityFeed.header.showResolvedComments": "Mostra commenti risolti",
14
+ "groupSharedFeatures.activityFeed.header.showResolvedCommentsDescription": "Commenti contrassegnati come risolti",
15
+ "groupSharedFeatures.activityFeed.header.taskButton.addTaskLabel": "Aggiungi attività",
16
+ "groupSharedFeatures.activityFeed.header.taskButton.approvalTaskDescription": "Gli assegnatari avranno la responsabilità di approvare o rifiutare le attività",
17
+ "groupSharedFeatures.activityFeed.header.taskButton.approvalTaskTitle": "Attività di approvazione",
18
+ "groupSharedFeatures.activityFeed.header.taskButton.generalTaskDescription": "Gli assegnatari avranno la responsabilità di contrassegnare le attività come complete",
19
+ "groupSharedFeatures.activityFeed.header.taskButton.generalTaskTitle": "Attività generale",
20
+ "groupSharedFeatures.activityFeed.taskCard.approvalTaskLabel": "Attività di approvazione",
21
+ "groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusApproved": "Approvata",
22
+ "groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusCompleted": "Completata",
23
+ "groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusRejected": "Rifiutata",
24
+ "groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationBody": "Eliminare l’attività? L’azione non può essere annullata.",
25
+ "groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationCancel": "Annulla",
26
+ "groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationConfirm": "Elimina",
27
+ "groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationDialogAriaLabel": "Conferma eliminazione attività",
28
+ "groupSharedFeatures.activityFeed.taskCard.loadAssigneesError": "Impossibile caricare gli assegnatari. Riprova.",
29
+ "groupSharedFeatures.activityFeed.taskCard.loadingAssignees": "Caricamento in corso…",
30
+ "groupSharedFeatures.activityFeed.taskCard.moreOptionsAriaLabel": "Pulsante Altre opzioni",
31
+ "groupSharedFeatures.activityFeed.taskCard.showLessAssignees": "Mostra meno",
32
+ "groupSharedFeatures.activityFeed.taskCard.showMore": "Mostra altro",
33
+ "groupSharedFeatures.activityFeed.taskCard.showMoreAssignees": "Mostra altri {count}",
34
+ "groupSharedFeatures.activityFeed.taskCard.showMoreAssigneesApproximate": "Mostra più di {count}",
35
+ "groupSharedFeatures.activityFeed.taskCard.taskApproveAction": "Approva",
36
+ "groupSharedFeatures.activityFeed.taskCard.taskCompleteAction": "Contrassegna come completata",
37
+ "groupSharedFeatures.activityFeed.taskCard.taskDeleteMenuItem": "Elimina attività",
38
+ "groupSharedFeatures.activityFeed.taskCard.taskDueDateLabel": "Scadenza {monthDay} {time}",
39
+ "groupSharedFeatures.activityFeed.taskCard.taskEditMenuItem": "Modifica attività",
40
+ "groupSharedFeatures.activityFeed.taskCard.taskLabel": "Attività",
41
+ "groupSharedFeatures.activityFeed.taskCard.taskRejectAction": "Rifiuta",
42
+ "groupSharedFeatures.activityFeed.taskCard.taskViewDetailsAction": "Visualizza dettagli dell’attività",
43
+ "groupSharedFeatures.activityFeed.taskState.approvedHeadline": "Approvata",
44
+ "groupSharedFeatures.activityFeed.taskState.completedCountParenthetical": "({completedCount} di {totalCount})",
45
+ "groupSharedFeatures.activityFeed.taskState.completedHeadline": "Completata",
46
+ "groupSharedFeatures.activityFeed.taskState.rejectedHeadline": "Rifiutata",
47
+ "groupSharedFeatures.activityFeed.versionItem.appPromoted": "{appName} ha promosso: <badge>V{versionNumber}</badge>",
48
+ "groupSharedFeatures.activityFeed.versionItem.appRestored": "{appName} ha ripristinato: <badge>V{versionNumber}</badge>",
49
+ "groupSharedFeatures.activityFeed.versionItem.appUploaded": "{appName} ha caricato: <badge>V{versionNumber}</badge>",
50
+ "groupSharedFeatures.activityFeed.versionItem.versionDeleted": "{authorName} ha eliminato V{versionNumber} · {timestamp}",
51
+ "groupSharedFeatures.activityFeed.versionItem.versionDeletedNoTimestamp": "{authorName} ha eliminato V{versionNumber}",
52
+ "groupSharedFeatures.activityFeed.versionItem.versionPromoted": "Versione promossa: <badge>V{versionNumber}</badge>",
53
+ "groupSharedFeatures.activityFeed.versionItem.versionRestored": "Versione ripristinata: <badge>V{versionNumber}</badge>",
54
+ "groupSharedFeatures.activityFeed.versionItem.versionUploaded": "Versione caricata: <badge>V{versionNumber}</badge>"
55
+ }
@@ -0,0 +1,106 @@
1
+ # Text for an activity item in the activity feed
2
+ groupSharedFeatures.activityFeed.activityItemText = {appName}: {parsedContent} · {timestamp}
3
+ # Body text shown in the activity feed empty state
4
+ groupSharedFeatures.activityFeed.emptyState.body = Per iniziare la conversazione, lascia un commento. Utilizza @ per menzionare i collaboratori in questo file.
5
+ # Title shown in the activity feed empty state
6
+ groupSharedFeatures.activityFeed.emptyState.title = Ancora nessun commento
7
+ # Aria label for the close button in the activity feed header
8
+ groupSharedFeatures.activityFeed.header.closeAriaLabel = Chiudi
9
+ # Aria label for the filter toggle button in the activity feed header
10
+ groupSharedFeatures.activityFeed.header.filterAriaLabel = Filtro
11
+ # Title label for the filters dropdown in the activity feed header
12
+ groupSharedFeatures.activityFeed.header.filtersTitle = Filtri
13
+ # Label for the filter option that hides resolved comments
14
+ groupSharedFeatures.activityFeed.header.hideResolvedComments = Solo non risolti
15
+ # Description for the filter option that hides resolved comments
16
+ groupSharedFeatures.activityFeed.header.hideResolvedCommentsDescription = Esclude i commenti contrassegnati come risolti
17
+ # Label for the filter option that shows only comments mentioning the current user
18
+ groupSharedFeatures.activityFeed.header.mentionMe = Menzionami
19
+ # Description for the mention-me filter (comments only)
20
+ groupSharedFeatures.activityFeed.header.mentionMeDescription = Commenti in cui sei @menzionato
21
+ # Description for the mention-me filter (comments and tasks)
22
+ groupSharedFeatures.activityFeed.header.mentionMeDescriptionWithTasks = Commenti in cui sei @menzionato e attività che ti sono state assegnate
23
+ # Label for the filter option that includes resolved comments
24
+ groupSharedFeatures.activityFeed.header.showResolvedComments = Mostra commenti risolti
25
+ # Description for the filter option that includes resolved comments
26
+ groupSharedFeatures.activityFeed.header.showResolvedCommentsDescription = Commenti contrassegnati come risolti
27
+ # Label for the dropdown trigger button that opens the task type menu
28
+ groupSharedFeatures.activityFeed.header.taskButton.addTaskLabel = Aggiungi attività
29
+ # Description for the approval task menu item in the add task dropdown
30
+ groupSharedFeatures.activityFeed.header.taskButton.approvalTaskDescription = Gli assegnatari avranno la responsabilità di approvare o rifiutare le attività
31
+ # Title for the approval task menu item in the add task dropdown
32
+ groupSharedFeatures.activityFeed.header.taskButton.approvalTaskTitle = Attività di approvazione
33
+ # Description for the general task menu item in the add task dropdown
34
+ groupSharedFeatures.activityFeed.header.taskButton.generalTaskDescription = Gli assegnatari avranno la responsabilità di contrassegnare le attività come complete
35
+ # Title for the general task menu item in the add task dropdown
36
+ groupSharedFeatures.activityFeed.header.taskButton.generalTaskTitle = Attività generale
37
+ # Label header for approval task card
38
+ groupSharedFeatures.activityFeed.taskCard.approvalTaskLabel = Attività di approvazione
39
+ # Per-assignee row suffix when the assignee approved an approval task
40
+ groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusApproved = Approvata
41
+ # Per-assignee row suffix when the assignee has completed (sentence case, green in UI)
42
+ groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusCompleted = Completata
43
+ # Per-assignee row suffix when the assignee rejected an approval task
44
+ groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusRejected = Rifiutata
45
+ # Confirmation message when deleting a task from the task message options
46
+ groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationBody = Eliminare l’attività? L’azione non può essere annullata.
47
+ # Cancel button on delete task confirmation popover
48
+ groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationCancel = Annulla
49
+ # Confirm delete button on delete task confirmation popover
50
+ groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationConfirm = Elimina
51
+ # Accessible name for the delete task confirmation popover
52
+ groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationDialogAriaLabel = Conferma eliminazione attività
53
+ # Error message when fetching more assignees from server fails
54
+ groupSharedFeatures.activityFeed.taskCard.loadAssigneesError = Impossibile caricare gli assegnatari. Riprova.
55
+ # Loading state text when fetching more assignees from server
56
+ groupSharedFeatures.activityFeed.taskCard.loadingAssignees = Caricamento in corso…
57
+ # Aria label for more options button in task message
58
+ groupSharedFeatures.activityFeed.taskCard.moreOptionsAriaLabel = Pulsante Altre opzioni
59
+ # Button to hide additional assignees
60
+ groupSharedFeatures.activityFeed.taskCard.showLessAssignees = Mostra meno
61
+ # Button to load more assignees from server when count is unknown
62
+ groupSharedFeatures.activityFeed.taskCard.showMore = Mostra altro
63
+ # Button to show more assignees when exact count is known
64
+ groupSharedFeatures.activityFeed.taskCard.showMoreAssignees = Mostra altri {count}
65
+ # Button to show more assignees when approximate count (at least this many more on server)
66
+ groupSharedFeatures.activityFeed.taskCard.showMoreAssigneesApproximate = Mostra più di {count}
67
+ # Approve action for an approval task
68
+ groupSharedFeatures.activityFeed.taskCard.taskApproveAction = Approva
69
+ # Completion action for a general task
70
+ groupSharedFeatures.activityFeed.taskCard.taskCompleteAction = Contrassegna come completata
71
+ # Text to show on menu item to delete task
72
+ groupSharedFeatures.activityFeed.taskCard.taskDeleteMenuItem = Elimina attività
73
+ # Due date row: "Due" plus short month/day (with year when not the current year) and time. Placeholders are locale-formatted.
74
+ groupSharedFeatures.activityFeed.taskCard.taskDueDateLabel = Scadenza {monthDay} {time}
75
+ # Text to show on menu item to edit task
76
+ groupSharedFeatures.activityFeed.taskCard.taskEditMenuItem = Modifica attività
77
+ # Label header for task card
78
+ groupSharedFeatures.activityFeed.taskCard.taskLabel = Attività
79
+ # Reject action for an approval task
80
+ groupSharedFeatures.activityFeed.taskCard.taskRejectAction = Rifiuta
81
+ # View details action for a multi-file task
82
+ groupSharedFeatures.activityFeed.taskCard.taskViewDetailsAction = Visualizza dettagli dell’attività
83
+ # Headline when an approval task is approved
84
+ groupSharedFeatures.activityFeed.taskState.approvedHeadline = Approvata
85
+ # Assignee completion count shown after the Completed headline
86
+ groupSharedFeatures.activityFeed.taskState.completedCountParenthetical = ({completedCount} di {totalCount})
87
+ # Headline for a task that is fully completed
88
+ groupSharedFeatures.activityFeed.taskState.completedHeadline = Completata
89
+ # Headline for a task or approval that was rejected
90
+ groupSharedFeatures.activityFeed.taskState.rejectedHeadline = Rifiutata
91
+ # Label when an app promoted a file version in the activity feed. {appName} is the display name of the application (e.g., "Box Sign"). {versionNumber} is the numeric version. <badge> wraps the clickable version badge.
92
+ groupSharedFeatures.activityFeed.versionItem.appPromoted = {appName} ha promosso: <badge>V{versionNumber}</badge>
93
+ # Label when an app restored a file version in the activity feed. {appName} is the display name of the application (e.g., "Box Sign"). {versionNumber} is the numeric version. <badge> wraps the clickable version badge.
94
+ groupSharedFeatures.activityFeed.versionItem.appRestored = {appName} ha ripristinato: <badge>V{versionNumber}</badge>
95
+ # Label when an app uploaded a file version in the activity feed. {appName} is the display name of the application (e.g., "Box Sign"). {versionNumber} is the numeric version. <badge> wraps the clickable version badge.
96
+ groupSharedFeatures.activityFeed.versionItem.appUploaded = {appName} ha caricato: <badge>V{versionNumber}</badge>
97
+ # Inline text for a deleted version with timestamp in the activity feed. {authorName} is the user who deleted, {versionNumber} is the numeric version (e.g., 33), {timestamp} is a relative time.
98
+ groupSharedFeatures.activityFeed.versionItem.versionDeleted = {authorName} ha eliminato V{versionNumber} · {timestamp}
99
+ # Inline text for a deleted version without timestamp in the activity feed. {authorName} is the user who deleted, {versionNumber} is the numeric version (e.g., 33).
100
+ groupSharedFeatures.activityFeed.versionItem.versionDeletedNoTimestamp = {authorName} ha eliminato V{versionNumber}
101
+ # Label for a promoted version marker in the activity feed. {versionNumber} is the numeric version. <badge> wraps the clickable version badge.
102
+ groupSharedFeatures.activityFeed.versionItem.versionPromoted = Versione promossa: <badge>V{versionNumber}</badge>
103
+ # Label for a restored version marker in the activity feed. {versionNumber} is the numeric version. <badge> wraps the clickable version badge.
104
+ groupSharedFeatures.activityFeed.versionItem.versionRestored = Versione ripristinata: <badge>V{versionNumber}</badge>
105
+ # Label for an uploaded version marker in the activity feed. {versionNumber} is the numeric version. <badge> wraps the clickable version badge.
106
+ groupSharedFeatures.activityFeed.versionItem.versionUploaded = Versione caricata: <badge>V{versionNumber}</badge>
@@ -0,0 +1,55 @@
1
+ export default {
2
+ "groupSharedFeatures.activityFeed.activityItemText": "{appName}: {parsedContent} · {timestamp}",
3
+ "groupSharedFeatures.activityFeed.emptyState.body": "コメントして会話を始めましょう。このファイルのコラボレータをメンションするには、@を使用します。",
4
+ "groupSharedFeatures.activityFeed.emptyState.title": "コメントはまだありません",
5
+ "groupSharedFeatures.activityFeed.header.closeAriaLabel": "閉じる",
6
+ "groupSharedFeatures.activityFeed.header.filterAriaLabel": "フィルタ",
7
+ "groupSharedFeatures.activityFeed.header.filtersTitle": "フィルタ",
8
+ "groupSharedFeatures.activityFeed.header.hideResolvedComments": "未対応のみ",
9
+ "groupSharedFeatures.activityFeed.header.hideResolvedCommentsDescription": "対応済みとしてマークされたコメントを除外します",
10
+ "groupSharedFeatures.activityFeed.header.mentionMe": "私へのメンション",
11
+ "groupSharedFeatures.activityFeed.header.mentionMeDescription": "あなたが@メンションされたコメント",
12
+ "groupSharedFeatures.activityFeed.header.mentionMeDescriptionWithTasks": "あなたが@メンションされたコメントと、あなたに割り当てられたタスク",
13
+ "groupSharedFeatures.activityFeed.header.showResolvedComments": "対応済みのコメントを表示",
14
+ "groupSharedFeatures.activityFeed.header.showResolvedCommentsDescription": "解決済みとしてマークされたコメント",
15
+ "groupSharedFeatures.activityFeed.header.taskButton.addTaskLabel": "タスクを追加",
16
+ "groupSharedFeatures.activityFeed.header.taskButton.approvalTaskDescription": "担当者は、タスクを承認または拒否する責任があります",
17
+ "groupSharedFeatures.activityFeed.header.taskButton.approvalTaskTitle": "承認タスク",
18
+ "groupSharedFeatures.activityFeed.header.taskButton.generalTaskDescription": "担当者は、タスクを完了としてマークする責任があります",
19
+ "groupSharedFeatures.activityFeed.header.taskButton.generalTaskTitle": "一般タスク",
20
+ "groupSharedFeatures.activityFeed.taskCard.approvalTaskLabel": "承認タスク",
21
+ "groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusApproved": "承認済み",
22
+ "groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusCompleted": "完了",
23
+ "groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusRejected": "拒否済み",
24
+ "groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationBody": "このタスクを削除しますか? この操作は元に戻せません。",
25
+ "groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationCancel": "キャンセル",
26
+ "groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationConfirm": "削除",
27
+ "groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationDialogAriaLabel": "タスクの削除の確認",
28
+ "groupSharedFeatures.activityFeed.taskCard.loadAssigneesError": "担当者を読み込めませんでした。もう一度お試しください。",
29
+ "groupSharedFeatures.activityFeed.taskCard.loadingAssignees": "読み込み中…",
30
+ "groupSharedFeatures.activityFeed.taskCard.moreOptionsAriaLabel": "[その他のオプション] ボタン",
31
+ "groupSharedFeatures.activityFeed.taskCard.showLessAssignees": "少なく表示",
32
+ "groupSharedFeatures.activityFeed.taskCard.showMore": "さらに表示",
33
+ "groupSharedFeatures.activityFeed.taskCard.showMoreAssignees": "さらに{count}人を表示",
34
+ "groupSharedFeatures.activityFeed.taskCard.showMoreAssigneesApproximate": "さらに{count}人以上を表示",
35
+ "groupSharedFeatures.activityFeed.taskCard.taskApproveAction": "承認",
36
+ "groupSharedFeatures.activityFeed.taskCard.taskCompleteAction": "完了としてマーク",
37
+ "groupSharedFeatures.activityFeed.taskCard.taskDeleteMenuItem": "タスクを削除",
38
+ "groupSharedFeatures.activityFeed.taskCard.taskDueDateLabel": "期限: {monthDay}{time}",
39
+ "groupSharedFeatures.activityFeed.taskCard.taskEditMenuItem": "タスクを変更",
40
+ "groupSharedFeatures.activityFeed.taskCard.taskLabel": "タスク",
41
+ "groupSharedFeatures.activityFeed.taskCard.taskRejectAction": "拒否",
42
+ "groupSharedFeatures.activityFeed.taskCard.taskViewDetailsAction": "タスクの詳細を表示",
43
+ "groupSharedFeatures.activityFeed.taskState.approvedHeadline": "承認しました",
44
+ "groupSharedFeatures.activityFeed.taskState.completedCountParenthetical": "({completedCount}/{totalCount}件)",
45
+ "groupSharedFeatures.activityFeed.taskState.completedHeadline": "完了しました",
46
+ "groupSharedFeatures.activityFeed.taskState.rejectedHeadline": "拒否しました",
47
+ "groupSharedFeatures.activityFeed.versionItem.appPromoted": "{appName}が昇格しました: <badge>V{versionNumber}</badge>",
48
+ "groupSharedFeatures.activityFeed.versionItem.appRestored": "{appName}が復元しました: <badge>V{versionNumber}</badge>",
49
+ "groupSharedFeatures.activityFeed.versionItem.appUploaded": "{appName}がアップロードしました: <badge>V{versionNumber}</badge>",
50
+ "groupSharedFeatures.activityFeed.versionItem.versionDeleted": "{authorName}がV{versionNumber}を削除しました ・ {timestamp}",
51
+ "groupSharedFeatures.activityFeed.versionItem.versionDeletedNoTimestamp": "{authorName}がV{versionNumber}を削除しました",
52
+ "groupSharedFeatures.activityFeed.versionItem.versionPromoted": "バージョンが昇格されました: <badge>V{versionNumber}</badge>",
53
+ "groupSharedFeatures.activityFeed.versionItem.versionRestored": "バージョンが復元されました: <badge>V{versionNumber}</badge>",
54
+ "groupSharedFeatures.activityFeed.versionItem.versionUploaded": "バージョンがアップロードされました: <badge>V{versionNumber}</badge>"
55
+ }
@@ -0,0 +1,106 @@
1
+ # Text for an activity item in the activity feed
2
+ groupSharedFeatures.activityFeed.activityItemText = {appName}: {parsedContent} · {timestamp}
3
+ # Body text shown in the activity feed empty state
4
+ groupSharedFeatures.activityFeed.emptyState.body = コメントして会話を始めましょう。このファイルのコラボレータをメンションするには、@を使用します。
5
+ # Title shown in the activity feed empty state
6
+ groupSharedFeatures.activityFeed.emptyState.title = コメントはまだありません
7
+ # Aria label for the close button in the activity feed header
8
+ groupSharedFeatures.activityFeed.header.closeAriaLabel = 閉じる
9
+ # Aria label for the filter toggle button in the activity feed header
10
+ groupSharedFeatures.activityFeed.header.filterAriaLabel = フィルタ
11
+ # Title label for the filters dropdown in the activity feed header
12
+ groupSharedFeatures.activityFeed.header.filtersTitle = フィルタ
13
+ # Label for the filter option that hides resolved comments
14
+ groupSharedFeatures.activityFeed.header.hideResolvedComments = 未対応のみ
15
+ # Description for the filter option that hides resolved comments
16
+ groupSharedFeatures.activityFeed.header.hideResolvedCommentsDescription = 対応済みとしてマークされたコメントを除外します
17
+ # Label for the filter option that shows only comments mentioning the current user
18
+ groupSharedFeatures.activityFeed.header.mentionMe = 私へのメンション
19
+ # Description for the mention-me filter (comments only)
20
+ groupSharedFeatures.activityFeed.header.mentionMeDescription = あなたが@メンションされたコメント
21
+ # Description for the mention-me filter (comments and tasks)
22
+ groupSharedFeatures.activityFeed.header.mentionMeDescriptionWithTasks = あなたが@メンションされたコメントと、あなたに割り当てられたタスク
23
+ # Label for the filter option that includes resolved comments
24
+ groupSharedFeatures.activityFeed.header.showResolvedComments = 対応済みのコメントを表示
25
+ # Description for the filter option that includes resolved comments
26
+ groupSharedFeatures.activityFeed.header.showResolvedCommentsDescription = 解決済みとしてマークされたコメント
27
+ # Label for the dropdown trigger button that opens the task type menu
28
+ groupSharedFeatures.activityFeed.header.taskButton.addTaskLabel = タスクを追加
29
+ # Description for the approval task menu item in the add task dropdown
30
+ groupSharedFeatures.activityFeed.header.taskButton.approvalTaskDescription = 担当者は、タスクを承認または拒否する責任があります
31
+ # Title for the approval task menu item in the add task dropdown
32
+ groupSharedFeatures.activityFeed.header.taskButton.approvalTaskTitle = 承認タスク
33
+ # Description for the general task menu item in the add task dropdown
34
+ groupSharedFeatures.activityFeed.header.taskButton.generalTaskDescription = 担当者は、タスクを完了としてマークする責任があります
35
+ # Title for the general task menu item in the add task dropdown
36
+ groupSharedFeatures.activityFeed.header.taskButton.generalTaskTitle = 一般タスク
37
+ # Label header for approval task card
38
+ groupSharedFeatures.activityFeed.taskCard.approvalTaskLabel = 承認タスク
39
+ # Per-assignee row suffix when the assignee approved an approval task
40
+ groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusApproved = 承認済み
41
+ # Per-assignee row suffix when the assignee has completed (sentence case, green in UI)
42
+ groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusCompleted = 完了
43
+ # Per-assignee row suffix when the assignee rejected an approval task
44
+ groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusRejected = 拒否済み
45
+ # Confirmation message when deleting a task from the task message options
46
+ groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationBody = このタスクを削除しますか? この操作は元に戻せません。
47
+ # Cancel button on delete task confirmation popover
48
+ groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationCancel = キャンセル
49
+ # Confirm delete button on delete task confirmation popover
50
+ groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationConfirm = 削除
51
+ # Accessible name for the delete task confirmation popover
52
+ groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationDialogAriaLabel = タスクの削除の確認
53
+ # Error message when fetching more assignees from server fails
54
+ groupSharedFeatures.activityFeed.taskCard.loadAssigneesError = 担当者を読み込めませんでした。もう一度お試しください。
55
+ # Loading state text when fetching more assignees from server
56
+ groupSharedFeatures.activityFeed.taskCard.loadingAssignees = 読み込み中…
57
+ # Aria label for more options button in task message
58
+ groupSharedFeatures.activityFeed.taskCard.moreOptionsAriaLabel = [その他のオプション] ボタン
59
+ # Button to hide additional assignees
60
+ groupSharedFeatures.activityFeed.taskCard.showLessAssignees = 少なく表示
61
+ # Button to load more assignees from server when count is unknown
62
+ groupSharedFeatures.activityFeed.taskCard.showMore = さらに表示
63
+ # Button to show more assignees when exact count is known
64
+ groupSharedFeatures.activityFeed.taskCard.showMoreAssignees = さらに{count}人を表示
65
+ # Button to show more assignees when approximate count (at least this many more on server)
66
+ groupSharedFeatures.activityFeed.taskCard.showMoreAssigneesApproximate = さらに{count}人以上を表示
67
+ # Approve action for an approval task
68
+ groupSharedFeatures.activityFeed.taskCard.taskApproveAction = 承認
69
+ # Completion action for a general task
70
+ groupSharedFeatures.activityFeed.taskCard.taskCompleteAction = 完了としてマーク
71
+ # Text to show on menu item to delete task
72
+ groupSharedFeatures.activityFeed.taskCard.taskDeleteMenuItem = タスクを削除
73
+ # Due date row: "Due" plus short month/day (with year when not the current year) and time. Placeholders are locale-formatted.
74
+ groupSharedFeatures.activityFeed.taskCard.taskDueDateLabel = 期限: {monthDay}{time}
75
+ # Text to show on menu item to edit task
76
+ groupSharedFeatures.activityFeed.taskCard.taskEditMenuItem = タスクを変更
77
+ # Label header for task card
78
+ groupSharedFeatures.activityFeed.taskCard.taskLabel = タスク
79
+ # Reject action for an approval task
80
+ groupSharedFeatures.activityFeed.taskCard.taskRejectAction = 拒否
81
+ # View details action for a multi-file task
82
+ groupSharedFeatures.activityFeed.taskCard.taskViewDetailsAction = タスクの詳細を表示
83
+ # Headline when an approval task is approved
84
+ groupSharedFeatures.activityFeed.taskState.approvedHeadline = 承認しました
85
+ # Assignee completion count shown after the Completed headline
86
+ groupSharedFeatures.activityFeed.taskState.completedCountParenthetical = ({completedCount}/{totalCount}件)
87
+ # Headline for a task that is fully completed
88
+ groupSharedFeatures.activityFeed.taskState.completedHeadline = 完了しました
89
+ # Headline for a task or approval that was rejected
90
+ groupSharedFeatures.activityFeed.taskState.rejectedHeadline = 拒否しました
91
+ # Label when an app promoted a file version in the activity feed. {appName} is the display name of the application (e.g., "Box Sign"). {versionNumber} is the numeric version. <badge> wraps the clickable version badge.
92
+ groupSharedFeatures.activityFeed.versionItem.appPromoted = {appName}が昇格しました: <badge>V{versionNumber}</badge>
93
+ # Label when an app restored a file version in the activity feed. {appName} is the display name of the application (e.g., "Box Sign"). {versionNumber} is the numeric version. <badge> wraps the clickable version badge.
94
+ groupSharedFeatures.activityFeed.versionItem.appRestored = {appName}が復元しました: <badge>V{versionNumber}</badge>
95
+ # Label when an app uploaded a file version in the activity feed. {appName} is the display name of the application (e.g., "Box Sign"). {versionNumber} is the numeric version. <badge> wraps the clickable version badge.
96
+ groupSharedFeatures.activityFeed.versionItem.appUploaded = {appName}がアップロードしました: <badge>V{versionNumber}</badge>
97
+ # Inline text for a deleted version with timestamp in the activity feed. {authorName} is the user who deleted, {versionNumber} is the numeric version (e.g., 33), {timestamp} is a relative time.
98
+ groupSharedFeatures.activityFeed.versionItem.versionDeleted = {authorName}がV{versionNumber}を削除しました ・ {timestamp}
99
+ # Inline text for a deleted version without timestamp in the activity feed. {authorName} is the user who deleted, {versionNumber} is the numeric version (e.g., 33).
100
+ groupSharedFeatures.activityFeed.versionItem.versionDeletedNoTimestamp = {authorName}がV{versionNumber}を削除しました
101
+ # Label for a promoted version marker in the activity feed. {versionNumber} is the numeric version. <badge> wraps the clickable version badge.
102
+ groupSharedFeatures.activityFeed.versionItem.versionPromoted = バージョンが昇格されました: <badge>V{versionNumber}</badge>
103
+ # Label for a restored version marker in the activity feed. {versionNumber} is the numeric version. <badge> wraps the clickable version badge.
104
+ groupSharedFeatures.activityFeed.versionItem.versionRestored = バージョンが復元されました: <badge>V{versionNumber}</badge>
105
+ # Label for an uploaded version marker in the activity feed. {versionNumber} is the numeric version. <badge> wraps the clickable version badge.
106
+ groupSharedFeatures.activityFeed.versionItem.versionUploaded = バージョンがアップロードされました: <badge>V{versionNumber}</badge>
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.activityFeed.activityItemText","description":"Text for an activity item in the activity feed","defaultMessage":"{appName}: {parsedContent} · {timestamp}"}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.activityFeed.emptyState.body","description":"Body text shown in the activity feed empty state","defaultMessage":"Leave a comment to start the conversation. Use @ to mention collaborators in this file."},{"id":"groupSharedFeatures.activityFeed.emptyState.title","description":"Title shown in the activity feed empty state","defaultMessage":"No comments yet"}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.activityFeed.header.closeAriaLabel","description":"Aria label for the close button in the activity feed header","defaultMessage":"Close"},{"id":"groupSharedFeatures.activityFeed.header.filterAriaLabel","description":"Aria label for the filter toggle button in the activity feed header","defaultMessage":"Filter"},{"id":"groupSharedFeatures.activityFeed.header.filtersTitle","description":"Title label for the filters dropdown in the activity feed header","defaultMessage":"Filters"},{"id":"groupSharedFeatures.activityFeed.header.showResolvedComments","description":"Label for the filter option that includes resolved comments","defaultMessage":"Show resolved comments"},{"id":"groupSharedFeatures.activityFeed.header.showResolvedCommentsDescription","description":"Description for the filter option that includes resolved comments","defaultMessage":"Comments that were marked resolved"},{"id":"groupSharedFeatures.activityFeed.header.hideResolvedComments","description":"Label for the filter option that hides resolved comments","defaultMessage":"Unresolved only"},{"id":"groupSharedFeatures.activityFeed.header.hideResolvedCommentsDescription","description":"Description for the filter option that hides resolved comments","defaultMessage":"Excludes comments that were marked resolved"},{"id":"groupSharedFeatures.activityFeed.header.mentionMe","description":"Label for the filter option that shows only comments mentioning the current user","defaultMessage":"Mention me"},{"id":"groupSharedFeatures.activityFeed.header.mentionMeDescription","description":"Description for the mention-me filter (comments only)","defaultMessage":"Comments where you're @mentioned"},{"id":"groupSharedFeatures.activityFeed.header.mentionMeDescriptionWithTasks","description":"Description for the mention-me filter (comments and tasks)","defaultMessage":"Comments where you're @mentioned and tasks you're assigned in"}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.activityFeed.header.taskButton.approvalTaskDescription","description":"Description for the approval task menu item in the add task dropdown","defaultMessage":"Assignees will be responsible for approving or rejecting tasks"},{"id":"groupSharedFeatures.activityFeed.header.taskButton.approvalTaskTitle","description":"Title for the approval task menu item in the add task dropdown","defaultMessage":"Approval Task"},{"id":"groupSharedFeatures.activityFeed.header.taskButton.generalTaskDescription","description":"Description for the general task menu item in the add task dropdown","defaultMessage":"Assignees will be responsible for marking tasks as complete"},{"id":"groupSharedFeatures.activityFeed.header.taskButton.generalTaskTitle","description":"Title for the general task menu item in the add task dropdown","defaultMessage":"General Task"},{"id":"groupSharedFeatures.activityFeed.header.taskButton.addTaskLabel","description":"Label for the dropdown trigger button that opens the task type menu","defaultMessage":"Add Task"}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.activityFeed.taskCard.moreOptionsAriaLabel","description":"Aria label for more options button in task message","defaultMessage":"More options button"},{"id":"groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationBody","description":"Confirmation message when deleting a task from the task message options","defaultMessage":"Delete this task? This action can't be undone."},{"id":"groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationDialogAriaLabel","description":"Accessible name for the delete task confirmation popover","defaultMessage":"Delete task confirmation"},{"id":"groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationCancel","description":"Cancel button on delete task confirmation popover","defaultMessage":"Cancel"},{"id":"groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationConfirm","description":"Confirm delete button on delete task confirmation popover","defaultMessage":"Delete"}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.activityFeed.taskState.approvedHeadline","description":"Headline when an approval task is approved","defaultMessage":"Approved"},{"id":"groupSharedFeatures.activityFeed.taskState.completedHeadline","description":"Headline for a task that is fully completed","defaultMessage":"Completed"},{"id":"groupSharedFeatures.activityFeed.taskState.completedCountParenthetical","description":"Assignee completion count shown after the Completed headline","defaultMessage":"({completedCount} of {totalCount})"},{"id":"groupSharedFeatures.activityFeed.taskState.rejectedHeadline","description":"Headline for a task or approval that was rejected","defaultMessage":"Rejected"}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.activityFeed.taskCard.taskLabel","description":"Label header for task card","defaultMessage":"Task"},{"id":"groupSharedFeatures.activityFeed.taskCard.approvalTaskLabel","description":"Label header for approval task card","defaultMessage":"Approval Task"},{"id":"groupSharedFeatures.activityFeed.taskCard.taskEditMenuItem","description":"Text to show on menu item to edit task","defaultMessage":"Modify task"},{"id":"groupSharedFeatures.activityFeed.taskCard.taskDeleteMenuItem","description":"Text to show on menu item to delete task","defaultMessage":"Delete task"},{"id":"groupSharedFeatures.activityFeed.taskCard.taskCompleteAction","description":"Completion action for a general task","defaultMessage":"Mark as Complete"},{"id":"groupSharedFeatures.activityFeed.taskCard.taskApproveAction","description":"Approve action for an approval task","defaultMessage":"Approve"},{"id":"groupSharedFeatures.activityFeed.taskCard.taskRejectAction","description":"Reject action for an approval task","defaultMessage":"Reject"},{"id":"groupSharedFeatures.activityFeed.taskCard.taskViewDetailsAction","description":"View details action for a multi-file task","defaultMessage":"View Task Details"},{"id":"groupSharedFeatures.activityFeed.taskCard.taskDueDateLabel","description":"Due date row: \"Due\" plus short month/day (with year when not the current year) and time. Placeholders are locale-formatted.","defaultMessage":"Due {monthDay} {time}"},{"id":"groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusCompleted","description":"Per-assignee row suffix when the assignee has completed (sentence case, green in UI)","defaultMessage":"Completed"},{"id":"groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusApproved","description":"Per-assignee row suffix when the assignee approved an approval task","defaultMessage":"Approved"},{"id":"groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusRejected","description":"Per-assignee row suffix when the assignee rejected an approval task","defaultMessage":"Rejected"},{"id":"groupSharedFeatures.activityFeed.taskCard.showMoreAssignees","description":"Button to show more assignees when exact count is known","defaultMessage":"Show {count} More"},{"id":"groupSharedFeatures.activityFeed.taskCard.showMoreAssigneesApproximate","description":"Button to show more assignees when approximate count (at least this many more on server)","defaultMessage":"Show {count}+ More"},{"id":"groupSharedFeatures.activityFeed.taskCard.showMore","description":"Button to load more assignees from server when count is unknown","defaultMessage":"Show More"},{"id":"groupSharedFeatures.activityFeed.taskCard.showLessAssignees","description":"Button to hide additional assignees","defaultMessage":"Show Less"},{"id":"groupSharedFeatures.activityFeed.taskCard.loadingAssignees","description":"Loading state text when fetching more assignees from server","defaultMessage":"Loading..."},{"id":"groupSharedFeatures.activityFeed.taskCard.loadAssigneesError","description":"Error message when fetching more assignees from server fails","defaultMessage":"Failed to load assignees. Try again."}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.activityFeed.versionItem.appPromoted","description":"Label when an app promoted a file version in the activity feed. {appName} is the display name of the application (e.g., \"Box Sign\"). {versionNumber} is the numeric version. <badge> wraps the clickable version badge.","defaultMessage":"{appName} Promoted: <badge>V{versionNumber}</badge>"},{"id":"groupSharedFeatures.activityFeed.versionItem.appRestored","description":"Label when an app restored a file version in the activity feed. {appName} is the display name of the application (e.g., \"Box Sign\"). {versionNumber} is the numeric version. <badge> wraps the clickable version badge.","defaultMessage":"{appName} Restored: <badge>V{versionNumber}</badge>"},{"id":"groupSharedFeatures.activityFeed.versionItem.appUploaded","description":"Label when an app uploaded a file version in the activity feed. {appName} is the display name of the application (e.g., \"Box Sign\"). {versionNumber} is the numeric version. <badge> wraps the clickable version badge.","defaultMessage":"{appName} Uploaded: <badge>V{versionNumber}</badge>"},{"id":"groupSharedFeatures.activityFeed.versionItem.versionDeleted","description":"Inline text for a deleted version with timestamp in the activity feed. {authorName} is the user who deleted, {versionNumber} is the numeric version (e.g., 33), {timestamp} is a relative time.","defaultMessage":"{authorName} deleted V{versionNumber} · {timestamp}"},{"id":"groupSharedFeatures.activityFeed.versionItem.versionDeletedNoTimestamp","description":"Inline text for a deleted version without timestamp in the activity feed. {authorName} is the user who deleted, {versionNumber} is the numeric version (e.g., 33).","defaultMessage":"{authorName} deleted V{versionNumber}"},{"id":"groupSharedFeatures.activityFeed.versionItem.versionPromoted","description":"Label for a promoted version marker in the activity feed. {versionNumber} is the numeric version. <badge> wraps the clickable version badge.","defaultMessage":"Version Promoted: <badge>V{versionNumber}</badge>"},{"id":"groupSharedFeatures.activityFeed.versionItem.versionRestored","description":"Label for a restored version marker in the activity feed. {versionNumber} is the numeric version. <badge> wraps the clickable version badge.","defaultMessage":"Version Restored: <badge>V{versionNumber}</badge>"},{"id":"groupSharedFeatures.activityFeed.versionItem.versionUploaded","description":"Label for an uploaded version marker in the activity feed. {versionNumber} is the numeric version. <badge> wraps the clickable version badge.","defaultMessage":"Version Uploaded: <badge>V{versionNumber}</badge>"}]
@@ -0,0 +1,55 @@
1
+ export default {
2
+ "groupSharedFeatures.activityFeed.activityItemText": "{appName}: {parsedContent} · {timestamp}",
3
+ "groupSharedFeatures.activityFeed.emptyState.body": "대화를 시작하려면 코멘트를 남겨주세요. @를 사용하여 이 파일의 공동 작업자를 멘션할 수 있습니다.",
4
+ "groupSharedFeatures.activityFeed.emptyState.title": "아직 코멘트가 없습니다",
5
+ "groupSharedFeatures.activityFeed.header.closeAriaLabel": "닫기",
6
+ "groupSharedFeatures.activityFeed.header.filterAriaLabel": "필터",
7
+ "groupSharedFeatures.activityFeed.header.filtersTitle": "필터",
8
+ "groupSharedFeatures.activityFeed.header.hideResolvedComments": "미해결 항목만 보기",
9
+ "groupSharedFeatures.activityFeed.header.hideResolvedCommentsDescription": "‘해결됨’으로 표시된 코멘트 제외",
10
+ "groupSharedFeatures.activityFeed.header.mentionMe": "나를 멘션",
11
+ "groupSharedFeatures.activityFeed.header.mentionMeDescription": "내가 @멘션된 코멘트",
12
+ "groupSharedFeatures.activityFeed.header.mentionMeDescriptionWithTasks": "내가 @멘션된 코멘트 및 나에게 할당된 작업",
13
+ "groupSharedFeatures.activityFeed.header.showResolvedComments": "해결된 코멘트 표시",
14
+ "groupSharedFeatures.activityFeed.header.showResolvedCommentsDescription": "‘해결됨’으로 표시된 코멘트",
15
+ "groupSharedFeatures.activityFeed.header.taskButton.addTaskLabel": "작업 추가",
16
+ "groupSharedFeatures.activityFeed.header.taskButton.approvalTaskDescription": "담당자는 작업 승인 또는 거부 처리를 맡게 됩니다",
17
+ "groupSharedFeatures.activityFeed.header.taskButton.approvalTaskTitle": "승인 작업",
18
+ "groupSharedFeatures.activityFeed.header.taskButton.generalTaskDescription": "담당자는 작업을 ‘완료’로 표시하는 역할을 맡게 됩니다",
19
+ "groupSharedFeatures.activityFeed.header.taskButton.generalTaskTitle": "일반 작업",
20
+ "groupSharedFeatures.activityFeed.taskCard.approvalTaskLabel": "승인 작업",
21
+ "groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusApproved": "승인됨",
22
+ "groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusCompleted": "완료",
23
+ "groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusRejected": "거부됨",
24
+ "groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationBody": "이 작업을 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다.",
25
+ "groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationCancel": "취소",
26
+ "groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationConfirm": "삭제",
27
+ "groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationDialogAriaLabel": "작업 삭제 확인",
28
+ "groupSharedFeatures.activityFeed.taskCard.loadAssigneesError": "담당자를 로드하지 못했습니다. 다시 시도해 주세요.",
29
+ "groupSharedFeatures.activityFeed.taskCard.loadingAssignees": "로드 중…",
30
+ "groupSharedFeatures.activityFeed.taskCard.moreOptionsAriaLabel": "추가 옵션 버튼",
31
+ "groupSharedFeatures.activityFeed.taskCard.showLessAssignees": "간단히 표시",
32
+ "groupSharedFeatures.activityFeed.taskCard.showMore": "더 보기",
33
+ "groupSharedFeatures.activityFeed.taskCard.showMoreAssignees": "{count}개 더 보기",
34
+ "groupSharedFeatures.activityFeed.taskCard.showMoreAssigneesApproximate": "{count}+개 더 보기",
35
+ "groupSharedFeatures.activityFeed.taskCard.taskApproveAction": "승인",
36
+ "groupSharedFeatures.activityFeed.taskCard.taskCompleteAction": "완료로 표시",
37
+ "groupSharedFeatures.activityFeed.taskCard.taskDeleteMenuItem": "작업 삭제",
38
+ "groupSharedFeatures.activityFeed.taskCard.taskDueDateLabel": "{monthDay} {time} 기한",
39
+ "groupSharedFeatures.activityFeed.taskCard.taskEditMenuItem": "작업 수정",
40
+ "groupSharedFeatures.activityFeed.taskCard.taskLabel": "작업",
41
+ "groupSharedFeatures.activityFeed.taskCard.taskRejectAction": "거부",
42
+ "groupSharedFeatures.activityFeed.taskCard.taskViewDetailsAction": "작업 세부 정보 보기",
43
+ "groupSharedFeatures.activityFeed.taskState.approvedHeadline": "승인됨",
44
+ "groupSharedFeatures.activityFeed.taskState.completedCountParenthetical": "({totalCount} 중 {completedCount})",
45
+ "groupSharedFeatures.activityFeed.taskState.completedHeadline": "완료",
46
+ "groupSharedFeatures.activityFeed.taskState.rejectedHeadline": "거부됨",
47
+ "groupSharedFeatures.activityFeed.versionItem.appPromoted": "{appName} 승급됨: <badge>V{versionNumber}</badge>",
48
+ "groupSharedFeatures.activityFeed.versionItem.appRestored": "{appName} 복원됨: <badge>V{versionNumber}</badge>",
49
+ "groupSharedFeatures.activityFeed.versionItem.appUploaded": "{appName} 업로드됨: <badge>V{versionNumber}</badge>",
50
+ "groupSharedFeatures.activityFeed.versionItem.versionDeleted": "{authorName} 님이 V{versionNumber}을(를) 삭제했습니다 · {timestamp}",
51
+ "groupSharedFeatures.activityFeed.versionItem.versionDeletedNoTimestamp": "{authorName} 님이 V{versionNumber}을(를) 삭제했습니다",
52
+ "groupSharedFeatures.activityFeed.versionItem.versionPromoted": "버전 승급됨: <badge>V{versionNumber}</badge>",
53
+ "groupSharedFeatures.activityFeed.versionItem.versionRestored": "버전 복원됨: <badge>V{versionNumber}</badge>",
54
+ "groupSharedFeatures.activityFeed.versionItem.versionUploaded": "버전 업로드됨: <badge>V{versionNumber}</badge>"
55
+ }
@@ -0,0 +1,106 @@
1
+ # Text for an activity item in the activity feed
2
+ groupSharedFeatures.activityFeed.activityItemText = {appName}: {parsedContent} · {timestamp}
3
+ # Body text shown in the activity feed empty state
4
+ groupSharedFeatures.activityFeed.emptyState.body = 대화를 시작하려면 코멘트를 남겨주세요. @를 사용하여 이 파일의 공동 작업자를 멘션할 수 있습니다.
5
+ # Title shown in the activity feed empty state
6
+ groupSharedFeatures.activityFeed.emptyState.title = 아직 코멘트가 없습니다
7
+ # Aria label for the close button in the activity feed header
8
+ groupSharedFeatures.activityFeed.header.closeAriaLabel = 닫기
9
+ # Aria label for the filter toggle button in the activity feed header
10
+ groupSharedFeatures.activityFeed.header.filterAriaLabel = 필터
11
+ # Title label for the filters dropdown in the activity feed header
12
+ groupSharedFeatures.activityFeed.header.filtersTitle = 필터
13
+ # Label for the filter option that hides resolved comments
14
+ groupSharedFeatures.activityFeed.header.hideResolvedComments = 미해결 항목만 보기
15
+ # Description for the filter option that hides resolved comments
16
+ groupSharedFeatures.activityFeed.header.hideResolvedCommentsDescription = ‘해결됨’으로 표시된 코멘트 제외
17
+ # Label for the filter option that shows only comments mentioning the current user
18
+ groupSharedFeatures.activityFeed.header.mentionMe = 나를 멘션
19
+ # Description for the mention-me filter (comments only)
20
+ groupSharedFeatures.activityFeed.header.mentionMeDescription = 내가 @멘션된 코멘트
21
+ # Description for the mention-me filter (comments and tasks)
22
+ groupSharedFeatures.activityFeed.header.mentionMeDescriptionWithTasks = 내가 @멘션된 코멘트 및 나에게 할당된 작업
23
+ # Label for the filter option that includes resolved comments
24
+ groupSharedFeatures.activityFeed.header.showResolvedComments = 해결된 코멘트 표시
25
+ # Description for the filter option that includes resolved comments
26
+ groupSharedFeatures.activityFeed.header.showResolvedCommentsDescription = ‘해결됨’으로 표시된 코멘트
27
+ # Label for the dropdown trigger button that opens the task type menu
28
+ groupSharedFeatures.activityFeed.header.taskButton.addTaskLabel = 작업 추가
29
+ # Description for the approval task menu item in the add task dropdown
30
+ groupSharedFeatures.activityFeed.header.taskButton.approvalTaskDescription = 담당자는 작업 승인 또는 거부 처리를 맡게 됩니다
31
+ # Title for the approval task menu item in the add task dropdown
32
+ groupSharedFeatures.activityFeed.header.taskButton.approvalTaskTitle = 승인 작업
33
+ # Description for the general task menu item in the add task dropdown
34
+ groupSharedFeatures.activityFeed.header.taskButton.generalTaskDescription = 담당자는 작업을 ‘완료’로 표시하는 역할을 맡게 됩니다
35
+ # Title for the general task menu item in the add task dropdown
36
+ groupSharedFeatures.activityFeed.header.taskButton.generalTaskTitle = 일반 작업
37
+ # Label header for approval task card
38
+ groupSharedFeatures.activityFeed.taskCard.approvalTaskLabel = 승인 작업
39
+ # Per-assignee row suffix when the assignee approved an approval task
40
+ groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusApproved = 승인됨
41
+ # Per-assignee row suffix when the assignee has completed (sentence case, green in UI)
42
+ groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusCompleted = 완료
43
+ # Per-assignee row suffix when the assignee rejected an approval task
44
+ groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusRejected = 거부됨
45
+ # Confirmation message when deleting a task from the task message options
46
+ groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationBody = 이 작업을 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다.
47
+ # Cancel button on delete task confirmation popover
48
+ groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationCancel = 취소
49
+ # Confirm delete button on delete task confirmation popover
50
+ groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationConfirm = 삭제
51
+ # Accessible name for the delete task confirmation popover
52
+ groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationDialogAriaLabel = 작업 삭제 확인
53
+ # Error message when fetching more assignees from server fails
54
+ groupSharedFeatures.activityFeed.taskCard.loadAssigneesError = 담당자를 로드하지 못했습니다. 다시 시도해 주세요.
55
+ # Loading state text when fetching more assignees from server
56
+ groupSharedFeatures.activityFeed.taskCard.loadingAssignees = 로드 중…
57
+ # Aria label for more options button in task message
58
+ groupSharedFeatures.activityFeed.taskCard.moreOptionsAriaLabel = 추가 옵션 버튼
59
+ # Button to hide additional assignees
60
+ groupSharedFeatures.activityFeed.taskCard.showLessAssignees = 간단히 표시
61
+ # Button to load more assignees from server when count is unknown
62
+ groupSharedFeatures.activityFeed.taskCard.showMore = 더 보기
63
+ # Button to show more assignees when exact count is known
64
+ groupSharedFeatures.activityFeed.taskCard.showMoreAssignees = {count}개 더 보기
65
+ # Button to show more assignees when approximate count (at least this many more on server)
66
+ groupSharedFeatures.activityFeed.taskCard.showMoreAssigneesApproximate = {count}+개 더 보기
67
+ # Approve action for an approval task
68
+ groupSharedFeatures.activityFeed.taskCard.taskApproveAction = 승인
69
+ # Completion action for a general task
70
+ groupSharedFeatures.activityFeed.taskCard.taskCompleteAction = 완료로 표시
71
+ # Text to show on menu item to delete task
72
+ groupSharedFeatures.activityFeed.taskCard.taskDeleteMenuItem = 작업 삭제
73
+ # Due date row: "Due" plus short month/day (with year when not the current year) and time. Placeholders are locale-formatted.
74
+ groupSharedFeatures.activityFeed.taskCard.taskDueDateLabel = {monthDay} {time} 기한
75
+ # Text to show on menu item to edit task
76
+ groupSharedFeatures.activityFeed.taskCard.taskEditMenuItem = 작업 수정
77
+ # Label header for task card
78
+ groupSharedFeatures.activityFeed.taskCard.taskLabel = 작업
79
+ # Reject action for an approval task
80
+ groupSharedFeatures.activityFeed.taskCard.taskRejectAction = 거부
81
+ # View details action for a multi-file task
82
+ groupSharedFeatures.activityFeed.taskCard.taskViewDetailsAction = 작업 세부 정보 보기
83
+ # Headline when an approval task is approved
84
+ groupSharedFeatures.activityFeed.taskState.approvedHeadline = 승인됨
85
+ # Assignee completion count shown after the Completed headline
86
+ groupSharedFeatures.activityFeed.taskState.completedCountParenthetical = ({totalCount} 중 {completedCount})
87
+ # Headline for a task that is fully completed
88
+ groupSharedFeatures.activityFeed.taskState.completedHeadline = 완료
89
+ # Headline for a task or approval that was rejected
90
+ groupSharedFeatures.activityFeed.taskState.rejectedHeadline = 거부됨
91
+ # Label when an app promoted a file version in the activity feed. {appName} is the display name of the application (e.g., "Box Sign"). {versionNumber} is the numeric version. <badge> wraps the clickable version badge.
92
+ groupSharedFeatures.activityFeed.versionItem.appPromoted = {appName} 승급됨: <badge>V{versionNumber}</badge>
93
+ # Label when an app restored a file version in the activity feed. {appName} is the display name of the application (e.g., "Box Sign"). {versionNumber} is the numeric version. <badge> wraps the clickable version badge.
94
+ groupSharedFeatures.activityFeed.versionItem.appRestored = {appName} 복원됨: <badge>V{versionNumber}</badge>
95
+ # Label when an app uploaded a file version in the activity feed. {appName} is the display name of the application (e.g., "Box Sign"). {versionNumber} is the numeric version. <badge> wraps the clickable version badge.
96
+ groupSharedFeatures.activityFeed.versionItem.appUploaded = {appName} 업로드됨: <badge>V{versionNumber}</badge>
97
+ # Inline text for a deleted version with timestamp in the activity feed. {authorName} is the user who deleted, {versionNumber} is the numeric version (e.g., 33), {timestamp} is a relative time.
98
+ groupSharedFeatures.activityFeed.versionItem.versionDeleted = {authorName} 님이 V{versionNumber}을(를) 삭제했습니다 · {timestamp}
99
+ # Inline text for a deleted version without timestamp in the activity feed. {authorName} is the user who deleted, {versionNumber} is the numeric version (e.g., 33).
100
+ groupSharedFeatures.activityFeed.versionItem.versionDeletedNoTimestamp = {authorName} 님이 V{versionNumber}을(를) 삭제했습니다
101
+ # Label for a promoted version marker in the activity feed. {versionNumber} is the numeric version. <badge> wraps the clickable version badge.
102
+ groupSharedFeatures.activityFeed.versionItem.versionPromoted = 버전 승급됨: <badge>V{versionNumber}</badge>
103
+ # Label for a restored version marker in the activity feed. {versionNumber} is the numeric version. <badge> wraps the clickable version badge.
104
+ groupSharedFeatures.activityFeed.versionItem.versionRestored = 버전 복원됨: <badge>V{versionNumber}</badge>
105
+ # Label for an uploaded version marker in the activity feed. {versionNumber} is the numeric version. <badge> wraps the clickable version badge.
106
+ groupSharedFeatures.activityFeed.versionItem.versionUploaded = 버전 업로드됨: <badge>V{versionNumber}</badge>