@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.
- package/LICENSE +379 -0
- package/README.md +57 -0
- package/dist/chunks/AssigneeList.js +125 -0
- package/dist/chunks/TaskDueDate.js +44 -0
- package/dist/chunks/TaskItemFooter.js +77 -0
- package/dist/chunks/TaskMessage.js +86 -0
- package/dist/chunks/TaskState.js +83 -0
- package/dist/chunks/activity-feed-list.js +21 -0
- package/dist/chunks/activity-feed.js +46 -0
- package/dist/chunks/app-activity-item.js +75 -0
- package/dist/chunks/editor.js +14 -0
- package/dist/chunks/empty-state.js +22 -0
- package/dist/chunks/header.js +63 -0
- package/dist/chunks/mock-collaboration-props.js +19379 -0
- package/dist/chunks/scroll.js +6 -0
- package/dist/chunks/task-button.js +44 -0
- package/dist/chunks/task-delete-confirmation-popover.js +50 -0
- package/dist/chunks/task-options-menu.js +58 -0
- package/dist/chunks/types.js +8 -0
- package/dist/chunks/version-item.module.js +10 -0
- package/dist/esm/index.js +9 -0
- package/dist/esm/lib/activity-feed.js +6 -0
- package/dist/esm/lib/components/activity-feed-list/activity-feed-list.js +2 -0
- package/dist/esm/lib/components/activity-feed-list/index.js +2 -0
- package/dist/esm/lib/components/app-activity-item/app-activity-item.js +2 -0
- package/dist/esm/lib/components/app-activity-item/index.js +2 -0
- package/dist/esm/lib/components/app-activity-item/messages.js +6 -0
- package/dist/esm/lib/components/editor/editor.js +2 -0
- package/dist/esm/lib/components/editor/index.js +2 -0
- package/dist/esm/lib/components/empty-state/empty-state.js +2 -0
- package/dist/esm/lib/components/empty-state/index.js +2 -0
- package/dist/esm/lib/components/empty-state/messages.js +12 -0
- package/dist/esm/lib/components/header/header-filter-options.js +30 -0
- package/dist/esm/lib/components/header/header.js +2 -0
- package/dist/esm/lib/components/header/messages.js +44 -0
- package/dist/esm/lib/components/header/task-button/index.js +2 -0
- package/dist/esm/lib/components/header/task-button/messages.js +24 -0
- package/dist/esm/lib/components/header/task-button/task-button.js +2 -0
- package/dist/esm/lib/components/task-item/TaskItem.js +81 -0
- package/dist/esm/lib/components/task-item/TaskItemFooter.js +2 -0
- package/dist/esm/lib/components/task-item/components/assignee-list/AssigneeList.js +2 -0
- package/dist/esm/lib/components/task-item/components/assignee-list/index.js +2 -0
- package/dist/esm/lib/components/task-item/components/task-due-date/TaskDueDate.js +2 -0
- package/dist/esm/lib/components/task-item/components/task-due-date/index.js +2 -0
- package/dist/esm/lib/components/task-item/components/task-message/MessageRenderer.js +21 -0
- package/dist/esm/lib/components/task-item/components/task-message/TaskMessage.js +2 -0
- package/dist/esm/lib/components/task-item/components/task-message/index.js +2 -0
- package/dist/esm/lib/components/task-item/components/task-message/messages.js +24 -0
- package/dist/esm/lib/components/task-item/components/task-message/task-delete-confirmation-popover.js +2 -0
- package/dist/esm/lib/components/task-item/components/task-message/task-options-menu.js +2 -0
- package/dist/esm/lib/components/task-item/components/task-state/TaskState.js +2 -0
- package/dist/esm/lib/components/task-item/components/task-state/index.js +2 -0
- package/dist/esm/lib/components/task-item/components/task-state/messages.js +20 -0
- package/dist/esm/lib/components/task-item/index.js +6 -0
- package/dist/esm/lib/components/task-item/messages.js +76 -0
- package/dist/esm/lib/components/task-item/utils/task-item-helpers.js +22 -0
- package/dist/esm/lib/components/user-avatar/getInitials.js +5 -0
- package/dist/esm/lib/components/user-avatar/index.js +2 -0
- package/dist/esm/lib/components/user-avatar/user-avatar.js +22 -0
- package/dist/esm/lib/components/version-item/delete-version-item/delete-version-item.js +41 -0
- package/dist/esm/lib/components/version-item/delete-version-item/index.js +2 -0
- package/dist/esm/lib/components/version-item/divider-version-item/divider-version-item.js +20 -0
- package/dist/esm/lib/components/version-item/divider-version-item/index.js +2 -0
- package/dist/esm/lib/components/version-item/index.js +2 -0
- package/dist/esm/lib/components/version-item/messages.js +36 -0
- package/dist/esm/lib/components/version-item/version-item.js +52 -0
- package/dist/esm/lib/scroll/create-activity-feed-scroll.js +18 -0
- package/dist/esm/lib/scroll/index.js +4 -0
- package/dist/esm/lib/scroll/use-activity-feed-scroll.js +7 -0
- package/dist/esm/lib/test-utils/mocks/index.js +6 -0
- package/dist/esm/lib/test-utils/mocks/mock-collaboration-props.js +2 -0
- package/dist/esm/lib/test-utils/mocks/mock-feed-items.js +187 -0
- package/dist/esm/lib/test-utils/mocks/mock-mention-context.js +7 -0
- package/dist/esm/lib/test-utils/mocks/mock-user-selector-props.js +9 -0
- package/dist/esm/lib/test-utils/mocks/mock-users.js +86 -0
- package/dist/esm/lib/types/ActivityItem.js +0 -0
- package/dist/esm/lib/types/common.js +0 -0
- package/dist/esm/lib/types/index.js +0 -0
- package/dist/i18n/bn-IN.js +55 -0
- package/dist/i18n/bn-IN.properties +106 -0
- package/dist/i18n/da-DK.js +55 -0
- package/dist/i18n/da-DK.properties +106 -0
- package/dist/i18n/de-DE.js +55 -0
- package/dist/i18n/de-DE.properties +106 -0
- package/dist/i18n/en-AU.js +55 -0
- package/dist/i18n/en-AU.properties +106 -0
- package/dist/i18n/en-CA.js +55 -0
- package/dist/i18n/en-CA.properties +106 -0
- package/dist/i18n/en-GB.js +55 -0
- package/dist/i18n/en-GB.properties +106 -0
- package/dist/i18n/en-US.js +55 -0
- package/dist/i18n/en-US.properties +106 -0
- package/dist/i18n/en-x-pseudo.js +55 -0
- package/dist/i18n/en-x-pseudo.properties +106 -0
- package/dist/i18n/es-419.js +55 -0
- package/dist/i18n/es-419.properties +106 -0
- package/dist/i18n/es-ES.js +55 -0
- package/dist/i18n/es-ES.properties +106 -0
- package/dist/i18n/fi-FI.js +55 -0
- package/dist/i18n/fi-FI.properties +106 -0
- package/dist/i18n/fr-CA.js +55 -0
- package/dist/i18n/fr-CA.properties +106 -0
- package/dist/i18n/fr-FR.js +55 -0
- package/dist/i18n/fr-FR.properties +106 -0
- package/dist/i18n/hi-IN.js +55 -0
- package/dist/i18n/hi-IN.properties +106 -0
- package/dist/i18n/it-IT.js +55 -0
- package/dist/i18n/it-IT.properties +106 -0
- package/dist/i18n/ja-JP.js +55 -0
- package/dist/i18n/ja-JP.properties +106 -0
- package/dist/i18n/json/src/lib/components/app-activity-item/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/empty-state/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/header/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/header/task-button/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/task-item/components/task-message/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/task-item/components/task-state/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/task-item/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/version-item/messages.json +1 -0
- package/dist/i18n/ko-KR.js +55 -0
- package/dist/i18n/ko-KR.properties +106 -0
- package/dist/i18n/nb-NO.js +55 -0
- package/dist/i18n/nb-NO.properties +106 -0
- package/dist/i18n/nl-NL.js +55 -0
- package/dist/i18n/nl-NL.properties +106 -0
- package/dist/i18n/pl-PL.js +55 -0
- package/dist/i18n/pl-PL.properties +106 -0
- package/dist/i18n/pt-BR.js +55 -0
- package/dist/i18n/pt-BR.properties +106 -0
- package/dist/i18n/ru-RU.js +55 -0
- package/dist/i18n/ru-RU.properties +106 -0
- package/dist/i18n/sv-SE.js +55 -0
- package/dist/i18n/sv-SE.properties +106 -0
- package/dist/i18n/tr-TR.js +55 -0
- package/dist/i18n/tr-TR.properties +106 -0
- package/dist/i18n/zh-CN.js +55 -0
- package/dist/i18n/zh-CN.properties +106 -0
- package/dist/i18n/zh-TW.js +55 -0
- package/dist/i18n/zh-TW.properties +106 -0
- package/dist/styles/AssigneeList.css +1 -0
- package/dist/styles/TaskDueDate.css +1 -0
- package/dist/styles/TaskItemFooter.css +1 -0
- package/dist/styles/TaskMessage.css +1 -0
- package/dist/styles/TaskState.css +1 -0
- package/dist/styles/activity-feed-list.css +1 -0
- package/dist/styles/activity-feed.css +1 -0
- package/dist/styles/app-activity-item.css +1 -0
- package/dist/styles/editor.css +1 -0
- package/dist/styles/empty-state.css +1 -0
- package/dist/styles/header.css +1 -0
- package/dist/styles/task-button.css +1 -0
- package/dist/styles/task-delete-confirmation-popover.css +1 -0
- package/dist/styles/task-options-menu.css +1 -0
- package/dist/styles/version-item.css +1 -0
- package/dist/types/index.d.ts +6 -0
- package/dist/types/lib/activity-feed.d.ts +62 -0
- package/dist/types/lib/components/activity-feed-list/activity-feed-list.d.ts +7 -0
- package/dist/types/lib/components/activity-feed-list/index.d.ts +1 -0
- package/dist/types/lib/components/app-activity-item/app-activity-item.d.ts +13 -0
- package/dist/types/lib/components/app-activity-item/index.d.ts +1 -0
- package/dist/types/lib/components/app-activity-item/messages.d.ts +7 -0
- package/dist/types/lib/components/editor/editor.d.ts +3 -0
- package/dist/types/lib/components/editor/index.d.ts +1 -0
- package/dist/types/lib/components/empty-state/empty-state.d.ts +1 -0
- package/dist/types/lib/components/empty-state/index.d.ts +1 -0
- package/dist/types/lib/components/empty-state/messages.d.ts +12 -0
- package/dist/types/lib/components/header/header-filter-options.d.ts +16 -0
- package/dist/types/lib/components/header/header.d.ts +49 -0
- package/dist/types/lib/components/header/messages.d.ts +52 -0
- package/dist/types/lib/components/header/stories/shared.d.ts +13 -0
- package/dist/types/lib/components/header/task-button/index.d.ts +1 -0
- package/dist/types/lib/components/header/task-button/messages.d.ts +27 -0
- package/dist/types/lib/components/header/task-button/task-button.d.ts +8 -0
- package/dist/types/lib/components/task-item/TaskItem.d.ts +3 -0
- package/dist/types/lib/components/task-item/TaskItemFooter.d.ts +19 -0
- package/dist/types/lib/components/task-item/components/assignee-list/AssigneeList.d.ts +11 -0
- package/dist/types/lib/components/task-item/components/assignee-list/index.d.ts +1 -0
- package/dist/types/lib/components/task-item/components/task-due-date/TaskDueDate.d.ts +5 -0
- package/dist/types/lib/components/task-item/components/task-due-date/index.d.ts +1 -0
- package/dist/types/lib/components/task-item/components/task-message/MessageRenderer.d.ts +6 -0
- package/dist/types/lib/components/task-item/components/task-message/TaskMessage.d.ts +16 -0
- package/dist/types/lib/components/task-item/components/task-message/index.d.ts +3 -0
- package/dist/types/lib/components/task-item/components/task-message/messages.d.ts +28 -0
- package/dist/types/lib/components/task-item/components/task-message/task-delete-confirmation-popover.d.ts +11 -0
- package/dist/types/lib/components/task-item/components/task-message/task-options-menu.d.ts +13 -0
- package/dist/types/lib/components/task-item/components/task-message/types.d.ts +19 -0
- package/dist/types/lib/components/task-item/components/task-state/TaskState.d.ts +28 -0
- package/dist/types/lib/components/task-item/components/task-state/index.d.ts +2 -0
- package/dist/types/lib/components/task-item/components/task-state/messages.d.ts +23 -0
- package/dist/types/lib/components/task-item/index.d.ts +12 -0
- package/dist/types/lib/components/task-item/messages.d.ts +93 -0
- package/dist/types/lib/components/task-item/types.d.ts +106 -0
- package/dist/types/lib/components/task-item/utils/task-item-helpers.d.ts +4 -0
- package/dist/types/lib/components/user-avatar/getInitials.d.ts +1 -0
- package/dist/types/lib/components/user-avatar/index.d.ts +1 -0
- package/dist/types/lib/components/user-avatar/user-avatar.d.ts +11 -0
- package/dist/types/lib/components/version-item/delete-version-item/delete-version-item.d.ts +8 -0
- package/dist/types/lib/components/version-item/delete-version-item/index.d.ts +1 -0
- package/dist/types/lib/components/version-item/divider-version-item/divider-version-item.d.ts +5 -0
- package/dist/types/lib/components/version-item/divider-version-item/index.d.ts +1 -0
- package/dist/types/lib/components/version-item/index.d.ts +1 -0
- package/dist/types/lib/components/version-item/messages.d.ts +42 -0
- package/dist/types/lib/components/version-item/version-item.d.ts +23 -0
- package/dist/types/lib/scroll/create-activity-feed-scroll.d.ts +2 -0
- package/dist/types/lib/scroll/index.d.ts +4 -0
- package/dist/types/lib/scroll/types.d.ts +10 -0
- package/dist/types/lib/scroll/use-activity-feed-scroll.d.ts +6 -0
- package/dist/types/lib/stories/map-activity-item.d.ts +18 -0
- package/dist/types/lib/stories/shared.d.ts +15 -0
- package/dist/types/lib/test-utils/button-utils.d.ts +14 -0
- package/dist/types/lib/test-utils/index.d.ts +1 -0
- package/dist/types/lib/test-utils/mocks/index.d.ts +5 -0
- package/dist/types/lib/test-utils/mocks/mock-collaboration-props.d.ts +9 -0
- package/dist/types/lib/test-utils/mocks/mock-feed-items.d.ts +20 -0
- package/dist/types/lib/test-utils/mocks/mock-mention-context.d.ts +2 -0
- package/dist/types/lib/test-utils/mocks/mock-user-selector-props.d.ts +2 -0
- package/dist/types/lib/test-utils/mocks/mock-users.d.ts +55 -0
- package/dist/types/lib/test-utils/text-utils.d.ts +3 -0
- package/dist/types/lib/types/ActivityItem.d.ts +145 -0
- package/dist/types/lib/types/common.d.ts +82 -0
- package/dist/types/lib/types/index.d.ts +3 -0
- package/package.json +56 -0
|
@@ -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 = Aloita keskustelu jättämällä kommentti. Käytä @ mainitaksesi tämän tiedoston yhteistyökumppanit.
|
|
5
|
+
# Title shown in the activity feed empty state
|
|
6
|
+
groupSharedFeatures.activityFeed.emptyState.title = Ei vielä kommentteja
|
|
7
|
+
# Aria label for the close button in the activity feed header
|
|
8
|
+
groupSharedFeatures.activityFeed.header.closeAriaLabel = Sulje
|
|
9
|
+
# Aria label for the filter toggle button in the activity feed header
|
|
10
|
+
groupSharedFeatures.activityFeed.header.filterAriaLabel = Suodata
|
|
11
|
+
# Title label for the filters dropdown in the activity feed header
|
|
12
|
+
groupSharedFeatures.activityFeed.header.filtersTitle = Suodattimet
|
|
13
|
+
# Label for the filter option that hides resolved comments
|
|
14
|
+
groupSharedFeatures.activityFeed.header.hideResolvedComments = Vain ratkaisemattomat
|
|
15
|
+
# Description for the filter option that hides resolved comments
|
|
16
|
+
groupSharedFeatures.activityFeed.header.hideResolvedCommentsDescription = Ei sisällä kommentteja, jotka merkittiin ratkaistuiksi
|
|
17
|
+
# Label for the filter option that shows only comments mentioning the current user
|
|
18
|
+
groupSharedFeatures.activityFeed.header.mentionMe = Mainitse minut
|
|
19
|
+
# Description for the mention-me filter (comments only)
|
|
20
|
+
groupSharedFeatures.activityFeed.header.mentionMeDescription = Kommentit, joissa sinut on @mainittu
|
|
21
|
+
# Description for the mention-me filter (comments and tasks)
|
|
22
|
+
groupSharedFeatures.activityFeed.header.mentionMeDescriptionWithTasks = Kommentit, joissa sinut @mainitaan ja tehtävät, joihin sinut on määritetty
|
|
23
|
+
# Label for the filter option that includes resolved comments
|
|
24
|
+
groupSharedFeatures.activityFeed.header.showResolvedComments = Näytä ratkaistut kommentit
|
|
25
|
+
# Description for the filter option that includes resolved comments
|
|
26
|
+
groupSharedFeatures.activityFeed.header.showResolvedCommentsDescription = Kommentit, jotka merkittiin ratkaistuiksi
|
|
27
|
+
# Label for the dropdown trigger button that opens the task type menu
|
|
28
|
+
groupSharedFeatures.activityFeed.header.taskButton.addTaskLabel = Lisää tehtävä
|
|
29
|
+
# Description for the approval task menu item in the add task dropdown
|
|
30
|
+
groupSharedFeatures.activityFeed.header.taskButton.approvalTaskDescription = Vastuuhenkilöt hyväksyvät tai hylkäävät tehtäviä
|
|
31
|
+
# Title for the approval task menu item in the add task dropdown
|
|
32
|
+
groupSharedFeatures.activityFeed.header.taskButton.approvalTaskTitle = Hyväksyntätehtävä
|
|
33
|
+
# Description for the general task menu item in the add task dropdown
|
|
34
|
+
groupSharedFeatures.activityFeed.header.taskButton.generalTaskDescription = Vastuuhenkilöt merkitsevät tehtävät valmiiksi
|
|
35
|
+
# Title for the general task menu item in the add task dropdown
|
|
36
|
+
groupSharedFeatures.activityFeed.header.taskButton.generalTaskTitle = Yleinen tehtävä
|
|
37
|
+
# Label header for approval task card
|
|
38
|
+
groupSharedFeatures.activityFeed.taskCard.approvalTaskLabel = Hyväksyntätehtävä
|
|
39
|
+
# Per-assignee row suffix when the assignee approved an approval task
|
|
40
|
+
groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusApproved = Hyväksytty
|
|
41
|
+
# Per-assignee row suffix when the assignee has completed (sentence case, green in UI)
|
|
42
|
+
groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusCompleted = Valmis
|
|
43
|
+
# Per-assignee row suffix when the assignee rejected an approval task
|
|
44
|
+
groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusRejected = Hylätty
|
|
45
|
+
# Confirmation message when deleting a task from the task message options
|
|
46
|
+
groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationBody = Poistetaanko tämä tehtävä? Tätä toimintoa ei voi kumota.
|
|
47
|
+
# Cancel button on delete task confirmation popover
|
|
48
|
+
groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationCancel = Peruuta
|
|
49
|
+
# Confirm delete button on delete task confirmation popover
|
|
50
|
+
groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationConfirm = Poista
|
|
51
|
+
# Accessible name for the delete task confirmation popover
|
|
52
|
+
groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationDialogAriaLabel = Tehtävän poistamisen vahvistus
|
|
53
|
+
# Error message when fetching more assignees from server fails
|
|
54
|
+
groupSharedFeatures.activityFeed.taskCard.loadAssigneesError = Vastuuhenkilöiden lataaminen epäonnistui. Yritä uudelleen.
|
|
55
|
+
# Loading state text when fetching more assignees from server
|
|
56
|
+
groupSharedFeatures.activityFeed.taskCard.loadingAssignees = Ladataan…
|
|
57
|
+
# Aria label for more options button in task message
|
|
58
|
+
groupSharedFeatures.activityFeed.taskCard.moreOptionsAriaLabel = Lisää asetuksia -painike
|
|
59
|
+
# Button to hide additional assignees
|
|
60
|
+
groupSharedFeatures.activityFeed.taskCard.showLessAssignees = Näytä vähemmän
|
|
61
|
+
# Button to load more assignees from server when count is unknown
|
|
62
|
+
groupSharedFeatures.activityFeed.taskCard.showMore = Näytä enemmän
|
|
63
|
+
# Button to show more assignees when exact count is known
|
|
64
|
+
groupSharedFeatures.activityFeed.taskCard.showMoreAssignees = Näytä {count} lisää
|
|
65
|
+
# Button to show more assignees when approximate count (at least this many more on server)
|
|
66
|
+
groupSharedFeatures.activityFeed.taskCard.showMoreAssigneesApproximate = Näytä {count}+ lisää
|
|
67
|
+
# Approve action for an approval task
|
|
68
|
+
groupSharedFeatures.activityFeed.taskCard.taskApproveAction = Hyväksy
|
|
69
|
+
# Completion action for a general task
|
|
70
|
+
groupSharedFeatures.activityFeed.taskCard.taskCompleteAction = Merkitse valmiiksi
|
|
71
|
+
# Text to show on menu item to delete task
|
|
72
|
+
groupSharedFeatures.activityFeed.taskCard.taskDeleteMenuItem = Poista tehtävä
|
|
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 = Määräaika {monthDay} {time}
|
|
75
|
+
# Text to show on menu item to edit task
|
|
76
|
+
groupSharedFeatures.activityFeed.taskCard.taskEditMenuItem = Muokkaa tehtävää
|
|
77
|
+
# Label header for task card
|
|
78
|
+
groupSharedFeatures.activityFeed.taskCard.taskLabel = Tehtävä
|
|
79
|
+
# Reject action for an approval task
|
|
80
|
+
groupSharedFeatures.activityFeed.taskCard.taskRejectAction = Hylkää
|
|
81
|
+
# View details action for a multi-file task
|
|
82
|
+
groupSharedFeatures.activityFeed.taskCard.taskViewDetailsAction = Näytä tehtävän tiedot
|
|
83
|
+
# Headline when an approval task is approved
|
|
84
|
+
groupSharedFeatures.activityFeed.taskState.approvedHeadline = Hyväksytty
|
|
85
|
+
# Assignee completion count shown after the Completed headline
|
|
86
|
+
groupSharedFeatures.activityFeed.taskState.completedCountParenthetical = ({completedCount} kohteesta {totalCount})
|
|
87
|
+
# Headline for a task that is fully completed
|
|
88
|
+
groupSharedFeatures.activityFeed.taskState.completedHeadline = Valmis
|
|
89
|
+
# Headline for a task or approval that was rejected
|
|
90
|
+
groupSharedFeatures.activityFeed.taskState.rejectedHeadline = Hylätty
|
|
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} ylennetty: <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} palautettu: <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} ladattu: <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} poisti 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} poisti 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 = Versio ylennetty: <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 = Versio palautettu: <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 = Versio ladattu: <badge>V{versionNumber}</badge>
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.activityFeed.activityItemText": "{appName} : {parsedContent} · {timestamp}",
|
|
3
|
+
"groupSharedFeatures.activityFeed.emptyState.body": "Laissez un commentaire pour commencer la conversation. Utilisez @ pour mentionner des collaborateurs dans ce fichier.",
|
|
4
|
+
"groupSharedFeatures.activityFeed.emptyState.title": "Aucun commentaire pour le moment",
|
|
5
|
+
"groupSharedFeatures.activityFeed.header.closeAriaLabel": "Fermer",
|
|
6
|
+
"groupSharedFeatures.activityFeed.header.filterAriaLabel": "Filtrer",
|
|
7
|
+
"groupSharedFeatures.activityFeed.header.filtersTitle": "Filtres",
|
|
8
|
+
"groupSharedFeatures.activityFeed.header.hideResolvedComments": "Non résolu uniquement",
|
|
9
|
+
"groupSharedFeatures.activityFeed.header.hideResolvedCommentsDescription": "Exclut les commentaires qui ont été marqués résolus",
|
|
10
|
+
"groupSharedFeatures.activityFeed.header.mentionMe": "Me mentionner",
|
|
11
|
+
"groupSharedFeatures.activityFeed.header.mentionMeDescription": "Commentaires où vous êtes @mentionné",
|
|
12
|
+
"groupSharedFeatures.activityFeed.header.mentionMeDescriptionWithTasks": "Commentaires dans lesquels vous êtes @mentionné et tâches qui vous sont attribuées",
|
|
13
|
+
"groupSharedFeatures.activityFeed.header.showResolvedComments": "Afficher les commentaires résolus",
|
|
14
|
+
"groupSharedFeatures.activityFeed.header.showResolvedCommentsDescription": "Commentaires qui ont été marqués comme résolus",
|
|
15
|
+
"groupSharedFeatures.activityFeed.header.taskButton.addTaskLabel": "Ajouter une tâche",
|
|
16
|
+
"groupSharedFeatures.activityFeed.header.taskButton.approvalTaskDescription": "Les destinataires devront approuver ou rejeter les tâches",
|
|
17
|
+
"groupSharedFeatures.activityFeed.header.taskButton.approvalTaskTitle": "Tâche d’approbation",
|
|
18
|
+
"groupSharedFeatures.activityFeed.header.taskButton.generalTaskDescription": "Les destinataires devront marquer les tâches comme terminées",
|
|
19
|
+
"groupSharedFeatures.activityFeed.header.taskButton.generalTaskTitle": "Tâche générale",
|
|
20
|
+
"groupSharedFeatures.activityFeed.taskCard.approvalTaskLabel": "Tâche d’approbation",
|
|
21
|
+
"groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusApproved": "Approuvé",
|
|
22
|
+
"groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusCompleted": "Terminé",
|
|
23
|
+
"groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusRejected": "Rejeté",
|
|
24
|
+
"groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationBody": "Supprimer cette tâche ? Cette action est irréversible.",
|
|
25
|
+
"groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationCancel": "Annuler",
|
|
26
|
+
"groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationConfirm": "Supprimer",
|
|
27
|
+
"groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationDialogAriaLabel": "Confirmation de suppression de la tâche",
|
|
28
|
+
"groupSharedFeatures.activityFeed.taskCard.loadAssigneesError": "Échec du chargement des responsables. Veuillez réessayer.",
|
|
29
|
+
"groupSharedFeatures.activityFeed.taskCard.loadingAssignees": "Chargement en cours…",
|
|
30
|
+
"groupSharedFeatures.activityFeed.taskCard.moreOptionsAriaLabel": "Bouton Plus d’options",
|
|
31
|
+
"groupSharedFeatures.activityFeed.taskCard.showLessAssignees": "Afficher moins",
|
|
32
|
+
"groupSharedFeatures.activityFeed.taskCard.showMore": "Afficher plus d’informations",
|
|
33
|
+
"groupSharedFeatures.activityFeed.taskCard.showMoreAssignees": "Afficher {count} de plus",
|
|
34
|
+
"groupSharedFeatures.activityFeed.taskCard.showMoreAssigneesApproximate": "Afficher {count} de plus",
|
|
35
|
+
"groupSharedFeatures.activityFeed.taskCard.taskApproveAction": "Approuver",
|
|
36
|
+
"groupSharedFeatures.activityFeed.taskCard.taskCompleteAction": "Marquer comme terminée",
|
|
37
|
+
"groupSharedFeatures.activityFeed.taskCard.taskDeleteMenuItem": "Supprimer la tâche",
|
|
38
|
+
"groupSharedFeatures.activityFeed.taskCard.taskDueDateLabel": "Échéance {monthDay} {time}",
|
|
39
|
+
"groupSharedFeatures.activityFeed.taskCard.taskEditMenuItem": "Modifier la tâche",
|
|
40
|
+
"groupSharedFeatures.activityFeed.taskCard.taskLabel": "Tâche",
|
|
41
|
+
"groupSharedFeatures.activityFeed.taskCard.taskRejectAction": "Refuser",
|
|
42
|
+
"groupSharedFeatures.activityFeed.taskCard.taskViewDetailsAction": "Afficher les détails de la tâche",
|
|
43
|
+
"groupSharedFeatures.activityFeed.taskState.approvedHeadline": "Approuvé",
|
|
44
|
+
"groupSharedFeatures.activityFeed.taskState.completedCountParenthetical": "({completedCount} de {totalCount})",
|
|
45
|
+
"groupSharedFeatures.activityFeed.taskState.completedHeadline": "Terminé",
|
|
46
|
+
"groupSharedFeatures.activityFeed.taskState.rejectedHeadline": "Rejeté",
|
|
47
|
+
"groupSharedFeatures.activityFeed.versionItem.appPromoted": "{appName} promu : <badge>V{versionNumber}</badge>",
|
|
48
|
+
"groupSharedFeatures.activityFeed.versionItem.appRestored": "{appName} restauré : <badge>V{versionNumber}</badge>",
|
|
49
|
+
"groupSharedFeatures.activityFeed.versionItem.appUploaded": "{appName} chargé : <badge>V{versionNumber}</badge>",
|
|
50
|
+
"groupSharedFeatures.activityFeed.versionItem.versionDeleted": "{authorName} supprimé V{versionNumber} · {timestamp}",
|
|
51
|
+
"groupSharedFeatures.activityFeed.versionItem.versionDeletedNoTimestamp": "{authorName} supprimé V{versionNumber}",
|
|
52
|
+
"groupSharedFeatures.activityFeed.versionItem.versionPromoted": "Version promue : <badge>V{versionNumber}</badge>",
|
|
53
|
+
"groupSharedFeatures.activityFeed.versionItem.versionRestored": "Version restaurée : <badge>V{versionNumber}</badge>",
|
|
54
|
+
"groupSharedFeatures.activityFeed.versionItem.versionUploaded": "Version chargée : <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 = Laissez un commentaire pour commencer la conversation. Utilisez @ pour mentionner des collaborateurs dans ce fichier.
|
|
5
|
+
# Title shown in the activity feed empty state
|
|
6
|
+
groupSharedFeatures.activityFeed.emptyState.title = Aucun commentaire pour le moment
|
|
7
|
+
# Aria label for the close button in the activity feed header
|
|
8
|
+
groupSharedFeatures.activityFeed.header.closeAriaLabel = Fermer
|
|
9
|
+
# Aria label for the filter toggle button in the activity feed header
|
|
10
|
+
groupSharedFeatures.activityFeed.header.filterAriaLabel = Filtrer
|
|
11
|
+
# Title label for the filters dropdown in the activity feed header
|
|
12
|
+
groupSharedFeatures.activityFeed.header.filtersTitle = Filtres
|
|
13
|
+
# Label for the filter option that hides resolved comments
|
|
14
|
+
groupSharedFeatures.activityFeed.header.hideResolvedComments = Non résolu uniquement
|
|
15
|
+
# Description for the filter option that hides resolved comments
|
|
16
|
+
groupSharedFeatures.activityFeed.header.hideResolvedCommentsDescription = Exclut les commentaires qui ont été marqués résolus
|
|
17
|
+
# Label for the filter option that shows only comments mentioning the current user
|
|
18
|
+
groupSharedFeatures.activityFeed.header.mentionMe = Me mentionner
|
|
19
|
+
# Description for the mention-me filter (comments only)
|
|
20
|
+
groupSharedFeatures.activityFeed.header.mentionMeDescription = Commentaires où vous êtes @mentionné
|
|
21
|
+
# Description for the mention-me filter (comments and tasks)
|
|
22
|
+
groupSharedFeatures.activityFeed.header.mentionMeDescriptionWithTasks = Commentaires dans lesquels vous êtes @mentionné et tâches qui vous sont attribuées
|
|
23
|
+
# Label for the filter option that includes resolved comments
|
|
24
|
+
groupSharedFeatures.activityFeed.header.showResolvedComments = Afficher les commentaires résolus
|
|
25
|
+
# Description for the filter option that includes resolved comments
|
|
26
|
+
groupSharedFeatures.activityFeed.header.showResolvedCommentsDescription = Commentaires qui ont été marqués comme résolus
|
|
27
|
+
# Label for the dropdown trigger button that opens the task type menu
|
|
28
|
+
groupSharedFeatures.activityFeed.header.taskButton.addTaskLabel = Ajouter une tâche
|
|
29
|
+
# Description for the approval task menu item in the add task dropdown
|
|
30
|
+
groupSharedFeatures.activityFeed.header.taskButton.approvalTaskDescription = Les destinataires devront approuver ou rejeter les tâches
|
|
31
|
+
# Title for the approval task menu item in the add task dropdown
|
|
32
|
+
groupSharedFeatures.activityFeed.header.taskButton.approvalTaskTitle = Tâche d’approbation
|
|
33
|
+
# Description for the general task menu item in the add task dropdown
|
|
34
|
+
groupSharedFeatures.activityFeed.header.taskButton.generalTaskDescription = Les destinataires devront marquer les tâches comme terminées
|
|
35
|
+
# Title for the general task menu item in the add task dropdown
|
|
36
|
+
groupSharedFeatures.activityFeed.header.taskButton.generalTaskTitle = Tâche générale
|
|
37
|
+
# Label header for approval task card
|
|
38
|
+
groupSharedFeatures.activityFeed.taskCard.approvalTaskLabel = Tâche d’approbation
|
|
39
|
+
# Per-assignee row suffix when the assignee approved an approval task
|
|
40
|
+
groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusApproved = Approuvé
|
|
41
|
+
# Per-assignee row suffix when the assignee has completed (sentence case, green in UI)
|
|
42
|
+
groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusCompleted = Terminé
|
|
43
|
+
# Per-assignee row suffix when the assignee rejected an approval task
|
|
44
|
+
groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusRejected = Rejeté
|
|
45
|
+
# Confirmation message when deleting a task from the task message options
|
|
46
|
+
groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationBody = Supprimer cette tâche ? Cette action est irréversible.
|
|
47
|
+
# Cancel button on delete task confirmation popover
|
|
48
|
+
groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationCancel = Annuler
|
|
49
|
+
# Confirm delete button on delete task confirmation popover
|
|
50
|
+
groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationConfirm = Supprimer
|
|
51
|
+
# Accessible name for the delete task confirmation popover
|
|
52
|
+
groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationDialogAriaLabel = Confirmation de suppression de la tâche
|
|
53
|
+
# Error message when fetching more assignees from server fails
|
|
54
|
+
groupSharedFeatures.activityFeed.taskCard.loadAssigneesError = Échec du chargement des responsables. Veuillez réessayer.
|
|
55
|
+
# Loading state text when fetching more assignees from server
|
|
56
|
+
groupSharedFeatures.activityFeed.taskCard.loadingAssignees = Chargement en cours…
|
|
57
|
+
# Aria label for more options button in task message
|
|
58
|
+
groupSharedFeatures.activityFeed.taskCard.moreOptionsAriaLabel = Bouton Plus d’options
|
|
59
|
+
# Button to hide additional assignees
|
|
60
|
+
groupSharedFeatures.activityFeed.taskCard.showLessAssignees = Afficher moins
|
|
61
|
+
# Button to load more assignees from server when count is unknown
|
|
62
|
+
groupSharedFeatures.activityFeed.taskCard.showMore = Afficher plus d’informations
|
|
63
|
+
# Button to show more assignees when exact count is known
|
|
64
|
+
groupSharedFeatures.activityFeed.taskCard.showMoreAssignees = Afficher {count} de plus
|
|
65
|
+
# Button to show more assignees when approximate count (at least this many more on server)
|
|
66
|
+
groupSharedFeatures.activityFeed.taskCard.showMoreAssigneesApproximate = Afficher {count} de plus
|
|
67
|
+
# Approve action for an approval task
|
|
68
|
+
groupSharedFeatures.activityFeed.taskCard.taskApproveAction = Approuver
|
|
69
|
+
# Completion action for a general task
|
|
70
|
+
groupSharedFeatures.activityFeed.taskCard.taskCompleteAction = Marquer comme terminée
|
|
71
|
+
# Text to show on menu item to delete task
|
|
72
|
+
groupSharedFeatures.activityFeed.taskCard.taskDeleteMenuItem = Supprimer la tâche
|
|
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 = Échéance {monthDay} {time}
|
|
75
|
+
# Text to show on menu item to edit task
|
|
76
|
+
groupSharedFeatures.activityFeed.taskCard.taskEditMenuItem = Modifier la tâche
|
|
77
|
+
# Label header for task card
|
|
78
|
+
groupSharedFeatures.activityFeed.taskCard.taskLabel = Tâche
|
|
79
|
+
# Reject action for an approval task
|
|
80
|
+
groupSharedFeatures.activityFeed.taskCard.taskRejectAction = Refuser
|
|
81
|
+
# View details action for a multi-file task
|
|
82
|
+
groupSharedFeatures.activityFeed.taskCard.taskViewDetailsAction = Afficher les détails de la tâche
|
|
83
|
+
# Headline when an approval task is approved
|
|
84
|
+
groupSharedFeatures.activityFeed.taskState.approvedHeadline = Approuvé
|
|
85
|
+
# Assignee completion count shown after the Completed headline
|
|
86
|
+
groupSharedFeatures.activityFeed.taskState.completedCountParenthetical = ({completedCount} de {totalCount})
|
|
87
|
+
# Headline for a task that is fully completed
|
|
88
|
+
groupSharedFeatures.activityFeed.taskState.completedHeadline = Terminé
|
|
89
|
+
# Headline for a task or approval that was rejected
|
|
90
|
+
groupSharedFeatures.activityFeed.taskState.rejectedHeadline = Rejeté
|
|
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} promu : <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} restauré : <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} chargé : <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} supprimé 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} supprimé 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 = Version promue : <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 = Version restaurée : <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 = Version chargée : <badge>V{versionNumber}</badge>
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.activityFeed.activityItemText": "{appName} : {parsedContent} · {timestamp}",
|
|
3
|
+
"groupSharedFeatures.activityFeed.emptyState.body": "Laissez un commentaire pour commencer la conversation. Utilisez @ pour mentionner des collaborateurs dans ce fichier.",
|
|
4
|
+
"groupSharedFeatures.activityFeed.emptyState.title": "Aucun commentaire pour le moment",
|
|
5
|
+
"groupSharedFeatures.activityFeed.header.closeAriaLabel": "Fermer",
|
|
6
|
+
"groupSharedFeatures.activityFeed.header.filterAriaLabel": "Filtrer",
|
|
7
|
+
"groupSharedFeatures.activityFeed.header.filtersTitle": "Filtres",
|
|
8
|
+
"groupSharedFeatures.activityFeed.header.hideResolvedComments": "Non résolu uniquement",
|
|
9
|
+
"groupSharedFeatures.activityFeed.header.hideResolvedCommentsDescription": "Exclut les commentaires qui ont été marqués résolus",
|
|
10
|
+
"groupSharedFeatures.activityFeed.header.mentionMe": "Me mentionner",
|
|
11
|
+
"groupSharedFeatures.activityFeed.header.mentionMeDescription": "Commentaires où vous êtes @mentionné",
|
|
12
|
+
"groupSharedFeatures.activityFeed.header.mentionMeDescriptionWithTasks": "Commentaires dans lesquels vous êtes @mentionné et tâches qui vous sont attribuées",
|
|
13
|
+
"groupSharedFeatures.activityFeed.header.showResolvedComments": "Afficher les commentaires résolus",
|
|
14
|
+
"groupSharedFeatures.activityFeed.header.showResolvedCommentsDescription": "Commentaires qui ont été marqués comme résolus",
|
|
15
|
+
"groupSharedFeatures.activityFeed.header.taskButton.addTaskLabel": "Ajouter une tâche",
|
|
16
|
+
"groupSharedFeatures.activityFeed.header.taskButton.approvalTaskDescription": "Les destinataires devront approuver ou rejeter les tâches",
|
|
17
|
+
"groupSharedFeatures.activityFeed.header.taskButton.approvalTaskTitle": "Tâche d’approbation",
|
|
18
|
+
"groupSharedFeatures.activityFeed.header.taskButton.generalTaskDescription": "Les destinataires devront marquer les tâches comme terminées",
|
|
19
|
+
"groupSharedFeatures.activityFeed.header.taskButton.generalTaskTitle": "Tâche générale",
|
|
20
|
+
"groupSharedFeatures.activityFeed.taskCard.approvalTaskLabel": "Tâche d’approbation",
|
|
21
|
+
"groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusApproved": "Approuvé",
|
|
22
|
+
"groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusCompleted": "Terminé",
|
|
23
|
+
"groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusRejected": "Rejeté",
|
|
24
|
+
"groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationBody": "Supprimer cette tâche ? Cette action est irréversible.",
|
|
25
|
+
"groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationCancel": "Annuler",
|
|
26
|
+
"groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationConfirm": "Supprimer",
|
|
27
|
+
"groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationDialogAriaLabel": "Confirmation de suppression de la tâche",
|
|
28
|
+
"groupSharedFeatures.activityFeed.taskCard.loadAssigneesError": "Échec du chargement des responsables. Veuillez réessayer.",
|
|
29
|
+
"groupSharedFeatures.activityFeed.taskCard.loadingAssignees": "Chargement en cours…",
|
|
30
|
+
"groupSharedFeatures.activityFeed.taskCard.moreOptionsAriaLabel": "Bouton Plus d’options",
|
|
31
|
+
"groupSharedFeatures.activityFeed.taskCard.showLessAssignees": "Afficher moins",
|
|
32
|
+
"groupSharedFeatures.activityFeed.taskCard.showMore": "Afficher plus d’informations",
|
|
33
|
+
"groupSharedFeatures.activityFeed.taskCard.showMoreAssignees": "Afficher {count} de plus",
|
|
34
|
+
"groupSharedFeatures.activityFeed.taskCard.showMoreAssigneesApproximate": "Afficher {count} de plus",
|
|
35
|
+
"groupSharedFeatures.activityFeed.taskCard.taskApproveAction": "Approuver",
|
|
36
|
+
"groupSharedFeatures.activityFeed.taskCard.taskCompleteAction": "Marquer comme terminée",
|
|
37
|
+
"groupSharedFeatures.activityFeed.taskCard.taskDeleteMenuItem": "Supprimer la tâche",
|
|
38
|
+
"groupSharedFeatures.activityFeed.taskCard.taskDueDateLabel": "Échéance {monthDay} {time}",
|
|
39
|
+
"groupSharedFeatures.activityFeed.taskCard.taskEditMenuItem": "Modifier la tâche",
|
|
40
|
+
"groupSharedFeatures.activityFeed.taskCard.taskLabel": "Tâche",
|
|
41
|
+
"groupSharedFeatures.activityFeed.taskCard.taskRejectAction": "Refuser",
|
|
42
|
+
"groupSharedFeatures.activityFeed.taskCard.taskViewDetailsAction": "Afficher les détails de la tâche",
|
|
43
|
+
"groupSharedFeatures.activityFeed.taskState.approvedHeadline": "Approuvé",
|
|
44
|
+
"groupSharedFeatures.activityFeed.taskState.completedCountParenthetical": "({completedCount} de {totalCount})",
|
|
45
|
+
"groupSharedFeatures.activityFeed.taskState.completedHeadline": "Terminé",
|
|
46
|
+
"groupSharedFeatures.activityFeed.taskState.rejectedHeadline": "Rejeté",
|
|
47
|
+
"groupSharedFeatures.activityFeed.versionItem.appPromoted": "{appName} promu : <badge>V{versionNumber}</badge>",
|
|
48
|
+
"groupSharedFeatures.activityFeed.versionItem.appRestored": "{appName} restauré : <badge>V{versionNumber}</badge>",
|
|
49
|
+
"groupSharedFeatures.activityFeed.versionItem.appUploaded": "{appName} chargé : <badge>V{versionNumber}</badge>",
|
|
50
|
+
"groupSharedFeatures.activityFeed.versionItem.versionDeleted": "{authorName} supprimé V{versionNumber} · {timestamp}",
|
|
51
|
+
"groupSharedFeatures.activityFeed.versionItem.versionDeletedNoTimestamp": "{authorName} supprimé V{versionNumber}",
|
|
52
|
+
"groupSharedFeatures.activityFeed.versionItem.versionPromoted": "Version promue : <badge>V{versionNumber}</badge>",
|
|
53
|
+
"groupSharedFeatures.activityFeed.versionItem.versionRestored": "Version restaurée : <badge>V{versionNumber}</badge>",
|
|
54
|
+
"groupSharedFeatures.activityFeed.versionItem.versionUploaded": "Version chargée : <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 = Laissez un commentaire pour commencer la conversation. Utilisez @ pour mentionner des collaborateurs dans ce fichier.
|
|
5
|
+
# Title shown in the activity feed empty state
|
|
6
|
+
groupSharedFeatures.activityFeed.emptyState.title = Aucun commentaire pour le moment
|
|
7
|
+
# Aria label for the close button in the activity feed header
|
|
8
|
+
groupSharedFeatures.activityFeed.header.closeAriaLabel = Fermer
|
|
9
|
+
# Aria label for the filter toggle button in the activity feed header
|
|
10
|
+
groupSharedFeatures.activityFeed.header.filterAriaLabel = Filtrer
|
|
11
|
+
# Title label for the filters dropdown in the activity feed header
|
|
12
|
+
groupSharedFeatures.activityFeed.header.filtersTitle = Filtres
|
|
13
|
+
# Label for the filter option that hides resolved comments
|
|
14
|
+
groupSharedFeatures.activityFeed.header.hideResolvedComments = Non résolu uniquement
|
|
15
|
+
# Description for the filter option that hides resolved comments
|
|
16
|
+
groupSharedFeatures.activityFeed.header.hideResolvedCommentsDescription = Exclut les commentaires qui ont été marqués résolus
|
|
17
|
+
# Label for the filter option that shows only comments mentioning the current user
|
|
18
|
+
groupSharedFeatures.activityFeed.header.mentionMe = Me mentionner
|
|
19
|
+
# Description for the mention-me filter (comments only)
|
|
20
|
+
groupSharedFeatures.activityFeed.header.mentionMeDescription = Commentaires où vous êtes @mentionné
|
|
21
|
+
# Description for the mention-me filter (comments and tasks)
|
|
22
|
+
groupSharedFeatures.activityFeed.header.mentionMeDescriptionWithTasks = Commentaires dans lesquels vous êtes @mentionné et tâches qui vous sont attribuées
|
|
23
|
+
# Label for the filter option that includes resolved comments
|
|
24
|
+
groupSharedFeatures.activityFeed.header.showResolvedComments = Afficher les commentaires résolus
|
|
25
|
+
# Description for the filter option that includes resolved comments
|
|
26
|
+
groupSharedFeatures.activityFeed.header.showResolvedCommentsDescription = Commentaires qui ont été marqués comme résolus
|
|
27
|
+
# Label for the dropdown trigger button that opens the task type menu
|
|
28
|
+
groupSharedFeatures.activityFeed.header.taskButton.addTaskLabel = Ajouter une tâche
|
|
29
|
+
# Description for the approval task menu item in the add task dropdown
|
|
30
|
+
groupSharedFeatures.activityFeed.header.taskButton.approvalTaskDescription = Les destinataires devront approuver ou rejeter les tâches
|
|
31
|
+
# Title for the approval task menu item in the add task dropdown
|
|
32
|
+
groupSharedFeatures.activityFeed.header.taskButton.approvalTaskTitle = Tâche d’approbation
|
|
33
|
+
# Description for the general task menu item in the add task dropdown
|
|
34
|
+
groupSharedFeatures.activityFeed.header.taskButton.generalTaskDescription = Les destinataires devront marquer les tâches comme terminées
|
|
35
|
+
# Title for the general task menu item in the add task dropdown
|
|
36
|
+
groupSharedFeatures.activityFeed.header.taskButton.generalTaskTitle = Tâche générale
|
|
37
|
+
# Label header for approval task card
|
|
38
|
+
groupSharedFeatures.activityFeed.taskCard.approvalTaskLabel = Tâche d’approbation
|
|
39
|
+
# Per-assignee row suffix when the assignee approved an approval task
|
|
40
|
+
groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusApproved = Approuvé
|
|
41
|
+
# Per-assignee row suffix when the assignee has completed (sentence case, green in UI)
|
|
42
|
+
groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusCompleted = Terminé
|
|
43
|
+
# Per-assignee row suffix when the assignee rejected an approval task
|
|
44
|
+
groupSharedFeatures.activityFeed.taskCard.assigneeRowStatusRejected = Rejeté
|
|
45
|
+
# Confirmation message when deleting a task from the task message options
|
|
46
|
+
groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationBody = Supprimer cette tâche ? Cette action est irréversible.
|
|
47
|
+
# Cancel button on delete task confirmation popover
|
|
48
|
+
groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationCancel = Annuler
|
|
49
|
+
# Confirm delete button on delete task confirmation popover
|
|
50
|
+
groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationConfirm = Supprimer
|
|
51
|
+
# Accessible name for the delete task confirmation popover
|
|
52
|
+
groupSharedFeatures.activityFeed.taskCard.deleteTaskConfirmationDialogAriaLabel = Confirmation de suppression de la tâche
|
|
53
|
+
# Error message when fetching more assignees from server fails
|
|
54
|
+
groupSharedFeatures.activityFeed.taskCard.loadAssigneesError = Échec du chargement des responsables. Veuillez réessayer.
|
|
55
|
+
# Loading state text when fetching more assignees from server
|
|
56
|
+
groupSharedFeatures.activityFeed.taskCard.loadingAssignees = Chargement en cours…
|
|
57
|
+
# Aria label for more options button in task message
|
|
58
|
+
groupSharedFeatures.activityFeed.taskCard.moreOptionsAriaLabel = Bouton Plus d’options
|
|
59
|
+
# Button to hide additional assignees
|
|
60
|
+
groupSharedFeatures.activityFeed.taskCard.showLessAssignees = Afficher moins
|
|
61
|
+
# Button to load more assignees from server when count is unknown
|
|
62
|
+
groupSharedFeatures.activityFeed.taskCard.showMore = Afficher plus d’informations
|
|
63
|
+
# Button to show more assignees when exact count is known
|
|
64
|
+
groupSharedFeatures.activityFeed.taskCard.showMoreAssignees = Afficher {count} de plus
|
|
65
|
+
# Button to show more assignees when approximate count (at least this many more on server)
|
|
66
|
+
groupSharedFeatures.activityFeed.taskCard.showMoreAssigneesApproximate = Afficher {count} de plus
|
|
67
|
+
# Approve action for an approval task
|
|
68
|
+
groupSharedFeatures.activityFeed.taskCard.taskApproveAction = Approuver
|
|
69
|
+
# Completion action for a general task
|
|
70
|
+
groupSharedFeatures.activityFeed.taskCard.taskCompleteAction = Marquer comme terminée
|
|
71
|
+
# Text to show on menu item to delete task
|
|
72
|
+
groupSharedFeatures.activityFeed.taskCard.taskDeleteMenuItem = Supprimer la tâche
|
|
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 = Échéance {monthDay} {time}
|
|
75
|
+
# Text to show on menu item to edit task
|
|
76
|
+
groupSharedFeatures.activityFeed.taskCard.taskEditMenuItem = Modifier la tâche
|
|
77
|
+
# Label header for task card
|
|
78
|
+
groupSharedFeatures.activityFeed.taskCard.taskLabel = Tâche
|
|
79
|
+
# Reject action for an approval task
|
|
80
|
+
groupSharedFeatures.activityFeed.taskCard.taskRejectAction = Refuser
|
|
81
|
+
# View details action for a multi-file task
|
|
82
|
+
groupSharedFeatures.activityFeed.taskCard.taskViewDetailsAction = Afficher les détails de la tâche
|
|
83
|
+
# Headline when an approval task is approved
|
|
84
|
+
groupSharedFeatures.activityFeed.taskState.approvedHeadline = Approuvé
|
|
85
|
+
# Assignee completion count shown after the Completed headline
|
|
86
|
+
groupSharedFeatures.activityFeed.taskState.completedCountParenthetical = ({completedCount} de {totalCount})
|
|
87
|
+
# Headline for a task that is fully completed
|
|
88
|
+
groupSharedFeatures.activityFeed.taskState.completedHeadline = Terminé
|
|
89
|
+
# Headline for a task or approval that was rejected
|
|
90
|
+
groupSharedFeatures.activityFeed.taskState.rejectedHeadline = Rejeté
|
|
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} promu : <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} restauré : <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} chargé : <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} supprimé 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} supprimé 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 = Version promue : <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 = Version restaurée : <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 = Version chargée : <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>
|