@box/unified-share-modal 0.45.1

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 (175) hide show
  1. package/LICENSE +379 -0
  2. package/README.md +57 -0
  3. package/dist/esm/index.js +4 -0
  4. package/dist/esm/lib/components/index.js +8 -0
  5. package/dist/esm/lib/components/remove-shared-link-modal/index.js +4 -0
  6. package/dist/esm/lib/components/remove-shared-link-modal/messages.js +30 -0
  7. package/dist/esm/lib/components/remove-shared-link-modal/remove-shared-link-modal.js +59 -0
  8. package/dist/esm/lib/components/shared-link-settings-modal/index.js +4 -0
  9. package/dist/esm/lib/components/shared-link-settings-modal/messages.js +106 -0
  10. package/dist/esm/lib/components/shared-link-settings-modal/shared-link-settings-modal.js +181 -0
  11. package/dist/esm/lib/components/unified-share-form-modal/collaboration-section/collaboration-role.js +89 -0
  12. package/dist/esm/lib/components/unified-share-form-modal/collaboration-section/collaboration-section.js +108 -0
  13. package/dist/esm/lib/components/unified-share-form-modal/collaboration-section/index.js +4 -0
  14. package/dist/esm/lib/components/unified-share-form-modal/collaboration-section/messages.js +90 -0
  15. package/dist/esm/lib/components/unified-share-form-modal/collaboration-section/shared-with-avatars.js +58 -0
  16. package/dist/esm/lib/components/unified-share-form-modal/collaboration-section/text-area-container.js +58 -0
  17. package/dist/esm/lib/components/unified-share-form-modal/collaborators-view/collaborator-avatar.js +65 -0
  18. package/dist/esm/lib/components/unified-share-form-modal/collaborators-view/collaborator-list-item.js +64 -0
  19. package/dist/esm/lib/components/unified-share-form-modal/collaborators-view/collaborators-view.js +85 -0
  20. package/dist/esm/lib/components/unified-share-form-modal/collaborators-view/index.js +4 -0
  21. package/dist/esm/lib/components/unified-share-form-modal/collaborators-view/messages.js +38 -0
  22. package/dist/esm/lib/components/unified-share-form-modal/index.js +4 -0
  23. package/dist/esm/lib/components/unified-share-form-modal/messages.js +50 -0
  24. package/dist/esm/lib/components/unified-share-form-modal/shared-link-section/index.js +4 -0
  25. package/dist/esm/lib/components/unified-share-form-modal/shared-link-section/messages.js +98 -0
  26. package/dist/esm/lib/components/unified-share-form-modal/shared-link-section/shared-link-access.js +86 -0
  27. package/dist/esm/lib/components/unified-share-form-modal/shared-link-section/shared-link-permission.js +19 -0
  28. package/dist/esm/lib/components/unified-share-form-modal/shared-link-section/shared-link-section.js +144 -0
  29. package/dist/esm/lib/components/unified-share-form-modal/unified-share-form-modal.js +72 -0
  30. package/dist/esm/lib/components/unified-share-form-modal/unified-share-form.js +29 -0
  31. package/dist/esm/lib/constants.js +25 -0
  32. package/dist/esm/lib/contexts/index.js +9 -0
  33. package/dist/esm/lib/contexts/unified-share-form-context.js +40 -0
  34. package/dist/esm/lib/contexts/unified-share-modal-context.js +11 -0
  35. package/dist/esm/lib/hooks/index.js +12 -0
  36. package/dist/esm/lib/hooks/use-access-levels.js +51 -0
  37. package/dist/esm/lib/hooks/use-collaboration-form.js +70 -0
  38. package/dist/esm/lib/hooks/use-form-validation.js +31 -0
  39. package/dist/esm/lib/hooks/use-link-settings-form.js +60 -0
  40. package/dist/esm/lib/hooks/use-sharing-action.js +71 -0
  41. package/dist/esm/lib/messages.js +70 -0
  42. package/dist/esm/lib/store.js +30 -0
  43. package/dist/esm/lib/unified-share-modal.js +65 -0
  44. package/dist/esm/lib/utils/collaborator.js +26 -0
  45. package/dist/esm/lib/utils/date.js +14 -0
  46. package/dist/esm/lib/utils/event.js +14 -0
  47. package/dist/esm/lib/utils/index.js +19 -0
  48. package/dist/esm/lib/utils/permission.js +14 -0
  49. package/dist/esm/lib/utils/validation.js +5 -0
  50. package/dist/i18n/bn-IN.js +157 -0
  51. package/dist/i18n/bn-IN.properties +290 -0
  52. package/dist/i18n/da-DK.js +157 -0
  53. package/dist/i18n/da-DK.properties +290 -0
  54. package/dist/i18n/de-DE.js +157 -0
  55. package/dist/i18n/de-DE.properties +290 -0
  56. package/dist/i18n/en-AU.js +157 -0
  57. package/dist/i18n/en-AU.properties +290 -0
  58. package/dist/i18n/en-CA.js +157 -0
  59. package/dist/i18n/en-CA.properties +290 -0
  60. package/dist/i18n/en-GB.js +157 -0
  61. package/dist/i18n/en-GB.properties +290 -0
  62. package/dist/i18n/en-US.js +111 -0
  63. package/dist/i18n/en-US.properties +218 -0
  64. package/dist/i18n/en-x-pseudo.js +157 -0
  65. package/dist/i18n/en-x-pseudo.properties +290 -0
  66. package/dist/i18n/es-419.js +157 -0
  67. package/dist/i18n/es-419.properties +290 -0
  68. package/dist/i18n/es-ES.js +157 -0
  69. package/dist/i18n/es-ES.properties +290 -0
  70. package/dist/i18n/fi-FI.js +157 -0
  71. package/dist/i18n/fi-FI.properties +290 -0
  72. package/dist/i18n/fr-CA.js +157 -0
  73. package/dist/i18n/fr-CA.properties +290 -0
  74. package/dist/i18n/fr-FR.js +157 -0
  75. package/dist/i18n/fr-FR.properties +290 -0
  76. package/dist/i18n/hi-IN.js +157 -0
  77. package/dist/i18n/hi-IN.properties +290 -0
  78. package/dist/i18n/it-IT.js +157 -0
  79. package/dist/i18n/it-IT.properties +290 -0
  80. package/dist/i18n/ja-JP.js +157 -0
  81. package/dist/i18n/ja-JP.properties +290 -0
  82. package/dist/i18n/json/src/lib/components/remove-shared-link-modal/messages.json +1 -0
  83. package/dist/i18n/json/src/lib/components/shared-link-settings-modal/messages.json +1 -0
  84. package/dist/i18n/json/src/lib/components/unified-share-form-modal/collaboration-section/messages.json +1 -0
  85. package/dist/i18n/json/src/lib/components/unified-share-form-modal/collaborators-view/messages.json +1 -0
  86. package/dist/i18n/json/src/lib/components/unified-share-form-modal/messages.json +1 -0
  87. package/dist/i18n/json/src/lib/components/unified-share-form-modal/shared-link-section/messages.json +1 -0
  88. package/dist/i18n/json/src/lib/messages.json +1 -0
  89. package/dist/i18n/ko-KR.js +157 -0
  90. package/dist/i18n/ko-KR.properties +290 -0
  91. package/dist/i18n/nb-NO.js +157 -0
  92. package/dist/i18n/nb-NO.properties +290 -0
  93. package/dist/i18n/nl-NL.js +157 -0
  94. package/dist/i18n/nl-NL.properties +290 -0
  95. package/dist/i18n/pl-PL.js +157 -0
  96. package/dist/i18n/pl-PL.properties +290 -0
  97. package/dist/i18n/pt-BR.js +157 -0
  98. package/dist/i18n/pt-BR.properties +290 -0
  99. package/dist/i18n/ru-RU.js +157 -0
  100. package/dist/i18n/ru-RU.properties +290 -0
  101. package/dist/i18n/sv-SE.js +157 -0
  102. package/dist/i18n/sv-SE.properties +290 -0
  103. package/dist/i18n/tr-TR.js +157 -0
  104. package/dist/i18n/tr-TR.properties +290 -0
  105. package/dist/i18n/zh-CN.js +157 -0
  106. package/dist/i18n/zh-CN.properties +290 -0
  107. package/dist/i18n/zh-TW.js +157 -0
  108. package/dist/i18n/zh-TW.properties +290 -0
  109. package/dist/styles/collaboration-role.css +1 -0
  110. package/dist/styles/collaboration-section.css +1 -0
  111. package/dist/styles/collaborator-avatar.css +1 -0
  112. package/dist/styles/collaborator-list-item.css +1 -0
  113. package/dist/styles/collaborators-view.css +1 -0
  114. package/dist/styles/remove-shared-link-modal.css +1 -0
  115. package/dist/styles/shared-link-access.css +1 -0
  116. package/dist/styles/shared-link-permission.css +1 -0
  117. package/dist/styles/shared-link-section.css +1 -0
  118. package/dist/styles/shared-link-settings-modal.css +1 -0
  119. package/dist/styles/shared-with-avatars.css +1 -0
  120. package/dist/styles/text-area-container.css +1 -0
  121. package/dist/styles/unified-share-form-modal.css +1 -0
  122. package/dist/styles/unified-share-form.css +1 -0
  123. package/dist/types/index.d.ts +1 -0
  124. package/dist/types/lib/components/index.d.ts +3 -0
  125. package/dist/types/lib/components/remove-shared-link-modal/index.d.ts +1 -0
  126. package/dist/types/lib/components/remove-shared-link-modal/messages.d.ts +33 -0
  127. package/dist/types/lib/components/remove-shared-link-modal/remove-shared-link-modal.d.ts +5 -0
  128. package/dist/types/lib/components/remove-shared-link-modal/stories/shared.d.ts +3 -0
  129. package/dist/types/lib/components/shared-link-settings-modal/index.d.ts +1 -0
  130. package/dist/types/lib/components/shared-link-settings-modal/messages.d.ts +123 -0
  131. package/dist/types/lib/components/shared-link-settings-modal/shared-link-settings-modal.d.ts +5 -0
  132. package/dist/types/lib/components/shared-link-settings-modal/stories/shared.d.ts +36 -0
  133. package/dist/types/lib/components/unified-share-form-modal/collaboration-section/collaboration-role.d.ts +1 -0
  134. package/dist/types/lib/components/unified-share-form-modal/collaboration-section/collaboration-section.d.ts +1 -0
  135. package/dist/types/lib/components/unified-share-form-modal/collaboration-section/index.d.ts +1 -0
  136. package/dist/types/lib/components/unified-share-form-modal/collaboration-section/messages.d.ts +108 -0
  137. package/dist/types/lib/components/unified-share-form-modal/collaboration-section/shared-with-avatars.d.ts +1 -0
  138. package/dist/types/lib/components/unified-share-form-modal/collaboration-section/text-area-container.d.ts +3 -0
  139. package/dist/types/lib/components/unified-share-form-modal/collaborators-view/collaborator-avatar.d.ts +8 -0
  140. package/dist/types/lib/components/unified-share-form-modal/collaborators-view/collaborator-list-item.d.ts +5 -0
  141. package/dist/types/lib/components/unified-share-form-modal/collaborators-view/collaborators-view.d.ts +1 -0
  142. package/dist/types/lib/components/unified-share-form-modal/collaborators-view/index.d.ts +1 -0
  143. package/dist/types/lib/components/unified-share-form-modal/collaborators-view/messages.d.ts +43 -0
  144. package/dist/types/lib/components/unified-share-form-modal/index.d.ts +1 -0
  145. package/dist/types/lib/components/unified-share-form-modal/messages.d.ts +58 -0
  146. package/dist/types/lib/components/unified-share-form-modal/shared-link-section/index.d.ts +1 -0
  147. package/dist/types/lib/components/unified-share-form-modal/shared-link-section/messages.d.ts +118 -0
  148. package/dist/types/lib/components/unified-share-form-modal/shared-link-section/shared-link-access.d.ts +1 -0
  149. package/dist/types/lib/components/unified-share-form-modal/shared-link-section/shared-link-permission.d.ts +1 -0
  150. package/dist/types/lib/components/unified-share-form-modal/shared-link-section/shared-link-section.d.ts +1 -0
  151. package/dist/types/lib/components/unified-share-form-modal/stories/shared.d.ts +15 -0
  152. package/dist/types/lib/components/unified-share-form-modal/unified-share-form-modal.d.ts +9 -0
  153. package/dist/types/lib/components/unified-share-form-modal/unified-share-form.d.ts +1 -0
  154. package/dist/types/lib/constants.d.ts +7 -0
  155. package/dist/types/lib/contexts/index.d.ts +2 -0
  156. package/dist/types/lib/contexts/unified-share-form-context.d.ts +25 -0
  157. package/dist/types/lib/contexts/unified-share-modal-context.d.ts +16 -0
  158. package/dist/types/lib/hooks/index.d.ts +5 -0
  159. package/dist/types/lib/hooks/use-access-levels.d.ts +6 -0
  160. package/dist/types/lib/hooks/use-collaboration-form.d.ts +10 -0
  161. package/dist/types/lib/hooks/use-form-validation.d.ts +18 -0
  162. package/dist/types/lib/hooks/use-link-settings-form.d.ts +10 -0
  163. package/dist/types/lib/hooks/use-sharing-action.d.ts +7 -0
  164. package/dist/types/lib/messages.d.ts +83 -0
  165. package/dist/types/lib/store.d.ts +21 -0
  166. package/dist/types/lib/stories/shared.d.ts +22 -0
  167. package/dist/types/lib/types.d.ts +387 -0
  168. package/dist/types/lib/unified-share-modal.d.ts +20 -0
  169. package/dist/types/lib/utils/collaborator.d.ts +8 -0
  170. package/dist/types/lib/utils/date.d.ts +3 -0
  171. package/dist/types/lib/utils/event.d.ts +13 -0
  172. package/dist/types/lib/utils/index.d.ts +5 -0
  173. package/dist/types/lib/utils/permission.d.ts +3 -0
  174. package/dist/types/lib/utils/validation.d.ts +2 -0
  175. package/package.json +54 -0
@@ -0,0 +1,218 @@
1
+ # Notification text when the shared link is failed to be created
2
+ groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText = Unable to create a shared link. Please try again later.
3
+ # Notification text when the shared link failed to be created
4
+ groupSharedFeatures.usm.createSharedLinkErrorNoticeText = Unable to create a shared link. Please try again later.
5
+ # Notification text when the shared link is successfully created
6
+ groupSharedFeatures.usm.createSharedLinkSuccessNoticeText = Shared link created.
7
+ # Default error notification text rendered when API fails
8
+ groupSharedFeatures.usm.defaultErrorNoticeText = Something went wrong. Please try again later.
9
+ # Notification text when the shared link failed to be removed
10
+ groupSharedFeatures.usm.deleteSharedLinkErrorNoticeText = Unable to remove the shared link. Please try again later.
11
+ # Notification text when the shared link is successfully removed
12
+ groupSharedFeatures.usm.deleteSharedLinkSuccessNoticeText = The shared link for “{itemName}” has been removed successfully.
13
+ # Error message for the email field when email is not provided
14
+ groupSharedFeatures.usm.emailRequiredErrorMessage = Enter at least one valid email
15
+ # Icon label for the error notifications
16
+ groupSharedFeatures.usm.errorNoticeIcon = Error
17
+ # Error message for the expiration date field when expiration date is in the past
18
+ groupSharedFeatures.usm.expirationFutureDateRequiredErrorMessage = The expiration date must be in the future
19
+ # Error message for the expiration date field when expiration date is not provided
20
+ groupSharedFeatures.usm.expirationRequiredErrorMessage = Please select a date
21
+ # Error message for the email field when email is invalid
22
+ groupSharedFeatures.usm.invalidEmailErrorMessage = Invalid email address
23
+ # Close button aria label for the notifications
24
+ groupSharedFeatures.usm.noticeCloseLabel = Close
25
+ # Body text of the Remove Shared Link modal
26
+ groupSharedFeatures.usm.removeSharedLinkModal.bodyText = This will permanently remove the shared link. If this item is embedded on other sites it will also become inaccessible. Any custom properties, settings and expirations will be removed as well. Do you want to continue?
27
+ # Button text to cancel removing a shared link
28
+ groupSharedFeatures.usm.removeSharedLinkModal.cancelButton = Cancel
29
+ # Aria label for the button to close the Remove Shared Link modal
30
+ groupSharedFeatures.usm.removeSharedLinkModal.closeButton = Close
31
+ # Button aria label when the shared link is being removed
32
+ groupSharedFeatures.usm.removeSharedLinkModal.loadingLabel = Loading
33
+ # Button text to confirm removing a shared link
34
+ groupSharedFeatures.usm.removeSharedLinkModal.okayButton = Okay
35
+ # Title of the Remove Shared Link modal
36
+ groupSharedFeatures.usm.removeSharedLinkModal.title = Remove Shared Link
37
+ # Button text to cancel updating the shared link settings
38
+ groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton = Cancel
39
+ # Aria label for the button to close the Shared Link Settings modal
40
+ groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton = Close
41
+ # Label for the download settings toggle
42
+ groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText = Allow users with the shared link to download this item
43
+ # Link to learn more about shared link settings
44
+ groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink = Learn more about shared link settings.
45
+ # Aria label for the calendar in the link expiration settings
46
+ groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel = Select your shared link expiration date
47
+ # Aria label for the clear date picker button in the link expiration settings
48
+ groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationClearDatePickerAriaLabel = Clear date picker
49
+ # Label for the date picker in the link expiration settings
50
+ groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationDatePickerLabel = Expiration date
51
+ # Aria label for the next month button in the link expiration settings
52
+ groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationNextMonthAriaLabel = Switch to next month
53
+ # Aria label for the open calendar dropdown button in the link expiration settings
54
+ groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationOpenCalendarDropdownAriaLabel = Open calendar
55
+ # Aria label for the previous month button in the link expiration settings
56
+ groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationPreviousMonthAriaLabel = Switch to previous month
57
+ # Label for the link expiration toggle
58
+ groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationToggleText = Link expiration
59
+ # Button aria label when the shared link settings are being updated
60
+ groupSharedFeatures.usm.sharedLinkSettingsModal.loadingLabel = Loading
61
+ # Placeholder text for the password input
62
+ groupSharedFeatures.usm.sharedLinkSettingsModal.passwordInputPlaceholder = Enter a password
63
+ # Label for the password protection toggle
64
+ groupSharedFeatures.usm.sharedLinkSettingsModal.passwordToggleText = Password protection
65
+ # Text for the password settings warning
66
+ groupSharedFeatures.usm.sharedLinkSettingsModal.passwordWarningText = Your password should include at least 8 characters, and should contain at least one upper case letter, number, or special character.
67
+ # Button text to confirm saving the shared link settings
68
+ groupSharedFeatures.usm.sharedLinkSettingsModal.saveButton = Save
69
+ # subtitle of the Shared Link settings modal
70
+ groupSharedFeatures.usm.sharedLinkSettingsModal.subtitle = This content is available to anyone within your company with the link, and can be viewed or downloaded. {learnSharedLinkSettingsLink}
71
+ # Title of the Shared Link Settings modal
72
+ groupSharedFeatures.usm.sharedLinkSettingsModal.title = Shared Link Settings
73
+ # Text for the vanity domain settings warning
74
+ groupSharedFeatures.usm.sharedLinkSettingsModal.vanityDomainSettingsWarningText = Custom URLs should not be used when sharing sensitive content.
75
+ # Label for the vanity name input
76
+ groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameInputLabel = Custom path
77
+ # Placeholder text for the vanity name input
78
+ groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameInputPlaceholder = Enter a custom path (12 or more characters)
79
+ # Text for the vanity name invalid error
80
+ groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameInvalidError = Custom URLs should be between 12-30 characters, and can include letters, numbers, and hyphens.
81
+ # Label for the vanity name toggle
82
+ groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameToggleText = Publish content broadly with a custom, non-private URL
83
+ # Label for the warning notification icon
84
+ groupSharedFeatures.usm.sharedLinkSettingsModal.warningNoticeIconAriaLabel = Warning
85
+ # Icon label for the success notifications
86
+ groupSharedFeatures.usm.successNoticeIcon = Success
87
+ # Aria label for the button to close the Unified Share Modal
88
+ groupSharedFeatures.usm.unifiedShareFormModal.closeButton = Close
89
+ # Label for the role of a collaborator who co-owns the item
90
+ groupSharedFeatures.usm.unifiedShareFormModal.coOwnerRole = Co-owner
91
+ # Button text to cancel inviting collaborators to the file / folder
92
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.cancelButton = Cancel
93
+ # Aria label for the button to clear the input field for selecting users
94
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.clearButton = Clear
95
+ # Aria label for the button to close the Unified Share Modal
96
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.closeButton = Close
97
+ # Description for the collaboration role with "Co-owner" permissions to the item
98
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.coOwnerDescription = Manage security, upload, download, preview, share, edit, and delete
99
+ # Description for the collaboration role with "Editor" permissions to the item
100
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.editorDescription = Upload, download, preview, share, and edit
101
+ # Description for the collaboration role with "Editor" permissions to the folder
102
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.editorFolderDescription = Upload, download, preview, share, edit, and delete
103
+ # Label for the field to select users to email the shared link of the item
104
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.emailSharedLinkLabel = Email Shared Link
105
+ # Label for the button to select the collaboration role of the new collaborator
106
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.inviteAsRoleLabel = Invite as {role}
107
+ # Label for the field to select users to collaborate with on an item
108
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.invitePeopleLabel = Invite People
109
+ # Placeholder for the field to select users to collaborate with on an item
110
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.invitePeoplePlaceholder = Add names or email addresses
111
+ # Aria label for the loading indicator of the Unified Share Modal
112
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.loadingLabel = Loading
113
+ # Description for the collaboration role with "Previewer" permissions to the item
114
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.previewerDescription = Preview-only
115
+ # Description for the collaboration role with "Previewer Uploader" permissions to the item
116
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.previewerUploaderDescription = Upload and preview
117
+ # Button text to invite collaborators to the file / folder
118
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.sendButton = Send
119
+ # Aria label for the text field to include a message when sharing an item
120
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.shareMessageCharacterCountAriaLabel = {count} characters remaining
121
+ # Label for the text field to include a message when sharing an item
122
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.shareMessageLabel = Message (optional)
123
+ # Placeholder for the text field to include a message when sharing an item
124
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.shareMessagePlaceholder = Add a message
125
+ # Label for the button to view the list of collaborators shared with on the item
126
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.sharedWithLabel = Shared with
127
+ # Description for the collaboration role with "Uploader" permissions to the item
128
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.uploaderDescription = Upload-only
129
+ # Description for the collaboration role with "Viewer" permissions to the item
130
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.viewerDescription = Download, preview, and share
131
+ # Description for the collaboration role with "Viewer Uploader" permissions to the item
132
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.viewerUploaderDescription = Upload, download, preview, share, and edit
133
+ # Aria label for the button to close the Unified Share Modal
134
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.closeButton = Close
135
+ # Button text to exit the view of collaborators shared with on the item
136
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.doneButton = Done
137
+ # Label for the badge on the avatar of a collaborator who will lose access to the item
138
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.expiresBadge = Access expires on {date}
139
+ # Aria label for the list of collaborators shared with on the item
140
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.listLabel = Collaborators
141
+ # Link text to open the page to view and manage the full list of collaborators
142
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink = Manage All
143
+ # Label for the column in the collaborators list for the name of the collaborator
144
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn = Name
145
+ # Label for the role of a collaborator who has a pending collaboration invitation
146
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole = Pending
147
+ # Label for the column in the collaborators list for the role of the collaborator
148
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn = Role
149
+ # Label for the role of a collaborator who can edit and delete the item
150
+ groupSharedFeatures.usm.unifiedShareFormModal.editorRole = Editor
151
+ # Aria label for the loading indicator of the Unified Share Modal
152
+ groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel = Loading
153
+ # Label for the role of a collaborator who owns the item
154
+ groupSharedFeatures.usm.unifiedShareFormModal.ownerRole = Owner
155
+ # Label for the role of a collaborator who can preview the item
156
+ groupSharedFeatures.usm.unifiedShareFormModal.previewerRole = Previewer
157
+ # Label for the role of a collaborator who can preview and upload to the item
158
+ groupSharedFeatures.usm.unifiedShareFormModal.previewerUploaderRole = Previewer Uploader
159
+ # Notification text when the shared link is successfully copied to clipboard
160
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.autoCopySuccessNoticeText = Shared link copied to clipboard.
161
+ # Text for the create and copy shared link notification when copy failed but creation succeeded.
162
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.autoCreateCopyErrorNoticeText = Shared link created. Click Copy to share.
163
+ # Notification text when the shared link is successfully copied to clipboard after link is created
164
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.autoCreateCopySuccessNoticeText = Shared link created and copied to clipboard.
165
+ # Description for the access level where only invited users can access the item
166
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.collaboratorsAccessLevelDescription = Only invited people can access this {item}
167
+ # Label for the access level where only invited users can access the item
168
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.collaboratorsAccessLevelLabel = Invited people only
169
+ # Description for the access level where users in the company can access the item
170
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.companyAccessLevelDescription = Anyone in your company with the link or people invited to this {item} can access
171
+ # Label for the access level where users in the company can access the item
172
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.companyAccessLevelLabel = People in your company
173
+ # Tooltip on an access level that has been disabled due to a security policy in the enterprise
174
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.disabledAccessLevelTooltip = This option is not available due to a security policy
175
+ # Description for the access level where users in the enterprise can access the item
176
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.enterpriseAccessLevelDescription = Anyone at {enterprise} with the link or people invited to this {item} can access
177
+ # Label for the access level where users in the enterprise can access the item
178
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.enterpriseAccessLevelLabel = People in {enterprise}
179
+ # Label for the icon button to indicate the shared link has an expiration date
180
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.expirationIconLabel = Expires
181
+ # Tooltip for the icon button to indicate the shared link has an expiration date
182
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.expirationIconTooltip = This link will expire and be inaccessible on {expirationDate}
183
+ # Text inserted in the access level descriptions when the type of the item is a file
184
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.fileAccessLevelItem = file
185
+ # Text inserted in the access level descriptions when the type of the item is a folder
186
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.folderAccessLevelItem = folder
187
+ # Text inserted in the access level descriptions when the type of the item is a hub
188
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.hubsAccessLevelItem = hub
189
+ # Description for the access level where anyone with the URL can access the item
190
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.openAccessLevelDescription = Publicly accessible and no sign-in required
191
+ # Label for the access level where anyone with the URL can access the item
192
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.openAccessLevelLabel = People with the link
193
+ # Label for the section to manage the shared link of the file / folder
194
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.shareLinkLabel = Share Link
195
+ # Aria label and tooltip for the icon button to email the shared link
196
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkEmailLabel = Send Shared Link
197
+ # Label for the button link to open the Shared Link Settings modal
198
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkSettingsLabel = Link Settings
199
+ # Label for the toggle to create and delete the shared link
200
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkToggleLabel = Shared link
201
+ # Tooltip on the disabled toggle to create a new shared link
202
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkToggleTooltip = Create and copy link
203
+ # Label for the text field of the URL for sharing the file / folder
204
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkUrlLabel = Shared link URL
205
+ # Title of the Unified Share Modal. {itemName} is the name of the file / folder being shared
206
+ groupSharedFeatures.usm.unifiedShareFormModal.title = Share ‘{itemName}’
207
+ # Label for the role of a collaborator who can upload to the item
208
+ groupSharedFeatures.usm.unifiedShareFormModal.uploaderRole = Uploader
209
+ # Label for the role of a collaborator who can view the item
210
+ groupSharedFeatures.usm.unifiedShareFormModal.viewerRole = Viewer
211
+ # Label for the role of a collaborator who can view and upload to the item
212
+ groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole = Viewer Uploader
213
+ # Notification text when the shared link settings are successfully saved
214
+ groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText = Your settings were saved successfully.
215
+ # Text for the vanity name invalid error
216
+ groupSharedFeatures.usm.vanityNameInvalidErrorMessage = Custom URLs should be between 12-30 characters, and can include letters, numbers, and hyphens.
217
+ # Error message for the vanity name field when custom URL is not provided
218
+ groupSharedFeatures.usm.vanityNameRequiredErrorMessage = Please enter a custom URL
@@ -0,0 +1,157 @@
1
+ export default {
2
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Unable to create a shared link. Please try again later.",
3
+ "groupSharedFeatures.usm.createSharedLinkErrorNoticeText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Űňåвľĕ ťσ ¢геàťė ä ѕĥáŕĕď ĺíпк. Pļëąşė ŧŕỳ ąğäіņ ľãťєя. 國國國國國國國國國國國國國國國國⟧",
4
+ "groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "⟦萬萬萬萬萬 Şĥāяëď ľĩņк ¢ŗêãťėď. 國國國國國⟧",
5
+ "groupSharedFeatures.usm.defaultErrorNoticeText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Ŝömêťħιŋĝ щėиţ ώѓόиğ. Pĺêαşė ŧгỳ åĝâіň ĺãτěг. 國國國國國國國國國國國國國⟧",
6
+ "groupSharedFeatures.usm.deleteSharedLinkErrorNoticeText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ūňåьĺě ţó ŗεmονĕ ŧнę śħãяėď ĺĩŋκ. Pĺęάŝę ŧґý äğαīņ ľâτĕŕ. 國國國國國國國國國國國國國國國國國⟧",
7
+ "groupSharedFeatures.usm.deleteSharedLinkSuccessNoticeText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ţнέ śĥąяéď ļĭʼnĸ ƒōŕ “{itemName}” нáŝ ьέέй гëmόνεď şŭčсēśśƒũĺĺý. 國國國國國國國國國國國國國國國國國⟧",
8
+ "groupSharedFeatures.usm.emailRequiredErrorMessage": "⟦萬萬萬萬萬萬萬萬 Ëńŧēґ άţ ľèãŝτ őле νάĺíď ěmāϊļ 國國國國國國國國⟧",
9
+ "groupSharedFeatures.usm.errorNoticeIcon": "⟦萬 Σяŕòя 國⟧",
10
+ "groupSharedFeatures.usm.expirationFutureDateRequiredErrorMessage": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Τħė ê×Ρîѓáţїŏи ďάţê mũşŧ вë ĭŋ ţĥε ƒùτűяё 國國國國國國國國國國國國⟧",
11
+ "groupSharedFeatures.usm.expirationRequiredErrorMessage": "⟦萬萬萬萬萬 Pļěâѕė şéľé¢ť ą ďåŧё 國國國國國⟧",
12
+ "groupSharedFeatures.usm.invalidEmailErrorMessage": "⟦萬萬萬萬萬萬 İήνâļîď ėmăįľ άďďяėѕѕ 國國國國國國⟧",
13
+ "groupSharedFeatures.usm.noticeCloseLabel": "⟦萬 Čĺòѕē 國⟧",
14
+ "groupSharedFeatures.usm.removeSharedLinkModal.bodyText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ťĥīŝ щίĺĺ Ρéґmαηëлťĺγ ŕēmøνє ŧħέ şнäřěď ĺĭʼnκ. Ϊƒ ŧĥїś ĭţĕm ίѕ εmвєďďεď оή στħéя ŝīťèş ïτ щіļļ ąľŝо ьĕ¢ômë іπäсćêѕśівĺě. Åʼnў ċµśţöm ΡґöΡёŗťìєѕ, śêţťįлġş åŋď ėхΡĩŗăτįοπş щĩĺľ вє гêmόνεď àŝ ŵëľļ. Ðο ýôц ẁāʼnŧ τò ĉôлŧĩήůë? 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
15
+ "groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "⟦萬 Čåйсëļ 國⟧",
16
+ "groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "⟦萬 Çĺōѕě 國⟧",
17
+ "groupSharedFeatures.usm.removeSharedLinkModal.loadingLabel": "⟦萬萬 Ĺōάďïńġ 國國⟧",
18
+ "groupSharedFeatures.usm.removeSharedLinkModal.okayButton": "⟦萬 Őкǻŷ 國⟧",
19
+ "groupSharedFeatures.usm.removeSharedLinkModal.title": "⟦萬萬萬萬萬 Ŕèmòνē Şнāгεď Ļιņĸ 國國國國國⟧",
20
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "⟦萬 Çąйĉĕĺ 國⟧",
21
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "⟦萬 Çļőѕє 國⟧",
22
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Âļļöẃ ũşеŕś ŵīţĥ τнė śħăѓêď ĺïńκ ţσ ďσшлľōàď ŧħіś ìŧém 國國國國國國國國國國國國國國國國⟧",
23
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "⟦萬萬萬萬萬萬萬萬萬萬萬 Ļèáŕň mοŗε αьöūŧ ŝĥářеď ļιʼnк ѕëťťіηĝŝ. 國國國國國國國國國國國⟧",
24
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "⟦萬萬萬萬萬萬萬萬萬萬萬 Śėļê¢ŧ ýőůг śĥāяëď ľιňк è×Ρίґαťīои ďāτě 國國國國國國國國國國國⟧",
25
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationClearDatePickerAriaLabel": "⟦萬萬萬萬萬 Ċľĕãг ďāťё Ρίċкέя 國國國國國⟧",
26
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationDatePickerLabel": "⟦萬萬萬 Ѕєļęĉť à ďαťê 國國國⟧",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationNextMonthAriaLabel": "⟦萬萬萬萬萬 Ŝώїŧċĥ ťó пεхţ mõлŧн 國國國國國⟧",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationOpenCalendarDropdownAriaLabel": "⟦萬萬萬 ØΡĕʼn ĉąļęʼnďάѓ 國國國⟧",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationPreviousMonthAriaLabel": "⟦萬萬萬萬萬萬萬 Ѕẁϊţćн ţō Ρгęνîôūş mőņťĥ 國國國國國國國⟧",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationToggleText": "⟦萬萬萬萬 Ŀϊпκ εхΡîгāτīóʼn 國國國國⟧",
31
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.loadingLabel": "⟦萬萬 Ľŏàďīʼnġ 國國⟧",
32
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.passwordInputPlaceholder": "Enter a password",
33
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.passwordToggleText": "Password protection",
34
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.passwordWarningText": "Your password should include at least 8 characters, and should contain at least one upper case letter, number, or special character.",
35
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.saveButton": "⟦萬 Ŝāνé 國⟧",
36
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.subtitle": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ťĥϊś ¢оηţēʼnţ īѕ āνāіľąвľĕ τō άʼnýσйė шіŧнîń ỳσμř ċømΡąńў щϊτн ţĥє ĺϊήĸ, ăŋď ćǻπ ве νïęŵèď оŗ ďôщņļòáďěď. {learnSharedLinkSettingsLink} 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
37
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.title": "⟦萬萬萬萬萬 Şĥâґèď Ŀïпĸ Ŝėŧτìйğś 國國國國國⟧",
38
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.vanityDomainSettingsWarningText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ćŭŝŧōm ÚŔĿŝ ѕĥóůľď ηøţ вё ûѕĕď ẃĥêŋ ѕнäřîπğ ѕěʼnśìţινё ćõŋτèňť. 國國國國國國國國國國國國國國國國國國⟧",
39
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameInputLabel": "⟦萬萬萬 Čŭѕťőm Ρáτħ 國國國⟧",
40
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameInputPlaceholder": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Σŋţęŗ ă çüѕťоm Ρăţħ (12 σŕ mόяë сħàяαčťęŗѕ) 國國國國國國國國國國國國⟧",
41
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameInvalidError": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ĉűѕτöm ŬЃĽŝ ѕĥóûľď вέ вëťωëéп 12-30 ¢ħāѓăçŧěяś, ăπď ćáņ īʼnċľúďé ĺеťŧėяŝ, ʼnümвèŗş, απď ĥỳΡħëйŝ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
42
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameToggleText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Pµьļĩŝн čοňťěʼnτ вŗōαďĺỳ ώïŧħ ä ¢űśţôm, ʼnόņ-Ρяïνàţè ŰŔĹ 國國國國國國國國國國國國國國國國⟧",
43
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.warningNoticeIconAriaLabel": "⟦萬萬 Ŵāŕиïйġ 國國⟧",
44
+ "groupSharedFeatures.usm.successNoticeIcon": "⟦萬萬 Śūĉćёѕѕ 國國⟧",
45
+ "groupSharedFeatures.usm.unifiedShareFormModal.closeButton": "⟦萬 Çľοśē 國⟧",
46
+ "groupSharedFeatures.usm.unifiedShareFormModal.coOwnerRole": "⟦萬萬 Çõ-ōŵηėя 國國⟧",
47
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.cancelButton": "⟦萬 Ĉàлċеľ 國⟧",
48
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.clearButton": "⟦萬 Ĉĺеâя 國⟧",
49
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.closeButton": "⟦萬 Ċĺóѕέ 國⟧",
50
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.coOwnerDescription": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Μáňáğë ŝєċцяίţỳ, ůΡľôăď, ďōщηľōáď, Ρяēνίëώ, ѕĥåґë, εďїţ, ąʼnď ďèĺęŧé 國國國國國國國國國國國國國國國國國國國國⟧",
51
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.editorDescription": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 ÜΡļóâď, ďõшňľōâď, Ρяëνĭёŵ, ŝĥǻřё, άńď ěďíť 國國國國國國國國國國國國⟧",
52
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.editorFolderDescription": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ÚΡľóάď, ďòẁйļσąď, Ρґęνíěώ, ŝĥáѓė, ęďïŧ, äńď ďėļēτė 國國國國國國國國國國國國國國⟧",
53
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.emailSharedLinkLabel": "⟦萬萬萬萬萬 Ëmàϊļ Şħåѓеď Ļίлκ 國國國國國⟧",
54
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.inviteAsRoleLabel": "⟦萬萬萬萬 Īлνìťε àş {role} 國國國國⟧",
55
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.invitePeopleLabel": "⟦萬萬萬 Įπνïτè PëöΡļє 國國國⟧",
56
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.invitePeoplePlaceholder": "⟦萬萬萬萬萬萬萬萬 Αďď ηāmёŝ όґ εmάîĺ ăďďяèśѕėŝ 國國國國國國國國⟧",
57
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.loadingLabel": "⟦萬萬 Ĺôαďîйğ 國國⟧",
58
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.previewerDescription": "⟦萬萬萬 Pгένīеш-όπĺỳ 國國國⟧",
59
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.previewerUploaderDescription": "⟦萬萬萬萬萬 ŬΡĺôãď ǻήď Ρґēνϊеώ 國國國國國⟧",
60
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.sendButton": "⟦萬 Śēπď 國⟧",
61
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.shareMessageCharacterCountAriaLabel": "⟦萬萬萬萬萬萬萬 {count} ćĥäѓāčťëřŝ ѓèmåιπіήġ 國國國國國國國⟧",
62
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.shareMessageLabel": "⟦萬萬萬萬萬 Μёśѕǻġє (òΡτϊŏпάľ) 國國國國國⟧",
63
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.shareMessagePlaceholder": "⟦萬萬萬 Àďď ά mєŝѕăġē 國國國⟧",
64
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.sharedWithLabel": "⟦萬萬萬 Şнάřёď щįťĥ 國國國⟧",
65
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.uploaderDescription": "⟦萬萬萬 ЏΡĺóáď-ŏйľγ 國國國⟧",
66
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.viewerDescription": "⟦萬萬萬萬萬萬萬萬 Ðοẃиĺöăď, Ρŗéνīëẁ, åηď şнàяε 國國國國國國國國⟧",
67
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.viewerUploaderDescription": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 ŰΡĺοåď, ďōẃņľόâď, Ρґєνίëω, ŝĥǻřę, äňď èďĩŧ 國國國國國國國國國國國國⟧",
68
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.closeButton": "⟦萬 Ĉļőѕē 國⟧",
69
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.doneButton": "⟦萬 Ðσŋē 國⟧",
70
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.expiresBadge": "⟦萬萬萬萬萬萬 Άçċéŝŝ є×Ρîґèŝ øʼn {date} 國國國國國國⟧",
71
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.listLabel": "⟦萬萬萬 Čōļĺăвσѓåτōřѕ 國國國⟧",
72
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "⟦萬萬 Мāиãğé Âľĺ 國國⟧",
73
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "⟦萬 Ņámе 國⟧",
74
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "⟦萬萬 Pĕпďîŋğ 國國⟧",
75
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "⟦萬 Γóļé 國⟧",
76
+ "groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "⟦萬 Ёďіţőŕ 國⟧",
77
+ "groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "⟦萬萬 Ľöãďìйğ 國國⟧",
78
+ "groupSharedFeatures.usm.unifiedShareFormModal.ownerRole": "⟦萬 Øẁηêѓ 國⟧",
79
+ "groupSharedFeatures.usm.unifiedShareFormModal.previewerRole": "⟦萬萬 Pŗéνíèщęг 國國⟧",
80
+ "groupSharedFeatures.usm.unifiedShareFormModal.previewerUploaderRole": "⟦萬萬萬萬萬 Pŕēνĩėщëя ŨΡľõāďεŕ 國國國國國⟧",
81
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.autoCopySuccessNoticeText": "Shared link copied to clipboard.",
82
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.autoCreateCopyErrorNoticeText": "Shared link created. Click Copy to share.",
83
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.autoCreateCopySuccessNoticeText": "Shared link created and copied to clipboard.",
84
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.collaboratorsAccessLevelDescription": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ôηĺý ïńνĭŧèď ΡєŏΡĺę ćåй āсçĕşś ťĥîѕ {item} 國國國國國國國國國國國國⟧",
85
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.collaboratorsAccessLevelLabel": "⟦萬萬萬萬萬 Ĭňνíŧéď ΡēоΡļě őňĺУ 國國國國國⟧",
86
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.companyAccessLevelDescription": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Àпγõńě ϊп γōůя čómΡåņγ ώìťħ ťнē ļϊņĸ őѓ ΡέόΡľë íňνĩţěď ţо τħіś {item} çάņ αс¢εşş 國國國國國國國國國國國國國國國國國國國國國國國⟧",
87
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.companyAccessLevelLabel": "⟦萬萬萬萬萬萬 PěōΡĺę ιη ŷŏùґ çòmΡαηý 國國國國國國⟧",
88
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.disabledAccessLevelTooltip": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ťĥïś οΡŧιôп ιş ποţ âνàìĺăьĺě ďüέ ŧô à ѕėćμгіŧý Ρōĺίčў 國國國國國國國國國國國國國國國⟧",
89
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.enterpriseAccessLevelDescription": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Àʼnŷσпě áτ {enterprise} ώīŧħ τĥë ĺìπķ ŏґ ΡèŏΡĺè íлνϊŧеď ŧō τĥíѕ {item} ¢åη áĉċéşŝ 國國國國國國國國國國國國國國國國國國國國國⟧",
90
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.enterpriseAccessLevelLabel": "⟦萬萬萬萬 PēоΡľé îη {enterprise} 國國國國⟧",
91
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.expirationIconLabel": "⟦萬萬 ΕхΡίґėś 國國⟧",
92
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.expirationIconTooltip": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ŧħϊś ĺìńĸ ωіľľ ё×Ρігé âňď вè іńǻс¢еѕѕіьĺе őή {expirationDate} 國國國國國國國國國國國國國國⟧",
93
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.fileAccessLevelItem": "file",
94
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.folderAccessLevelItem": "folder",
95
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.hubsAccessLevelItem": "hub",
96
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.openAccessLevelDescription": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Pųьļϊĉĺŷ ă¢ćěśşïьľè àпď лσ ŝĩġй-іŋ řęqųїřèď 國國國國國國國國國國國國⟧",
97
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.openAccessLevelLabel": "⟦萬萬萬萬萬 PєôΡĺę ωīţħ ŧнė ľîńĸ 國國國國國⟧",
98
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.shareLinkLabel": "⟦萬萬 Ŝнàгě Ļϊпκ 國國⟧",
99
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkEmailLabel": "⟦萬萬萬萬 Şέиď Śнãřėď Ŀĭйķ 國國國國⟧",
100
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkSettingsLabel": "⟦萬萬萬 Ŀîňķ Śĕŧŧілğś 國國國⟧",
101
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkToggleLabel": "⟦萬萬萬 Śħάŕěď ľîйк 國國國⟧",
102
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkToggleTooltip": "⟦萬萬萬萬萬 Ċґéαţе ǻňď čòΡў ľįπк 國國國國國⟧",
103
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkUrlLabel": "⟦萬萬萬萬 Şĥáяєď ĺĩņк ŨҐĹ 國國國國⟧",
104
+ "groupSharedFeatures.usm.unifiedShareFormModal.title": "⟦萬萬萬 Şħǻŗε ‘{itemName}’ 國國國⟧",
105
+ "groupSharedFeatures.usm.unifiedShareFormModal.uploaderRole": "⟦萬萬 ÜΡĺøǻďęř 國國⟧",
106
+ "groupSharedFeatures.usm.unifiedShareFormModal.viewerRole": "⟦萬 Vїėẃęя 國⟧",
107
+ "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "⟦萬萬萬萬 Vįêώέř ЏΡĺøάďёŗ 國國國國⟧",
108
+ "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "⟦萬萬萬萬萬萬萬萬萬萬萬 Ýöцŗ śĕţτίńġѕ ẁёґę śǻνëď şüсċéѕѕƒúĺļў. 國國國國國國國國國國國⟧",
109
+ "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ĉůѕŧöm ÛŘĹѕ şĥôüĺď ьë вęτŵęεʼn 12-30 čħåгàćţέřŝ, άńď сáи îпćľůďє ľĕţťєŕş, пŭmвěѓŝ, äņď ĥÿΡĥєиş. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
110
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "⟦萬萬萬萬萬萬萬 Pļεåşĕ еʼnţέґ â çūѕţõm ŬŖĻ 國國國國國國國⟧",
111
+ "groupSharedFeatures.usm.autoCopyErrorNoticeText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Şнâгĕď ļіňĸ čяèăτęď. Çľîсκ ÇόΡŷ ťο ѕħăŕė. 國國國國國國國國國國國國⟧",
112
+ "groupSharedFeatures.usm.autoCopySuccessNoticeText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Śħàгėď ľíήκ čгêάţėď ãńď çοΡιĕď τô ċĺĩΡьοářď. 國國國國國國國國國國國國國⟧",
113
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.accessLevelFileItem": "⟦萬 ƒίļĕ 國⟧",
114
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.accessLevelFolderItem": "⟦萬 ƒóĺďėŗ 國⟧",
115
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.accessLevelHubsItem": "⟦ нùв ⟧",
116
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkCopiedSuccessNoticeText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Ѕĥǻѓëď ľіńĸ ċґĕàţĕď ąлď ćôΡíёď ţô čľїΡьøãѓď. 國國國國國國國國國國國國國⟧",
117
+ "groupSharedFeatures.usmV1.atLeastOneEmailRequired": "⟦萬萬萬萬萬萬萬萬 Êʼnτèя âŧ ľёάśţ óηέ νǻľĩď ęmåïĺ 國國國國國國國國⟧",
118
+ "groupSharedFeatures.usmV1.cancel": "⟦萬 Čâп¢ĕľ 國⟧",
119
+ "groupSharedFeatures.usmV1.close": "⟦萬 Ċľōŝé 國⟧",
120
+ "groupSharedFeatures.usmV1.downloadSettingsToggleText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ǻļľŏẁ ųѕеяѕ ẃіτĥ ťħē ŝнăѓěď ľїņк ţó ďσωńĺоãď ťнíş ïťέm 國國國國國國國國國國國國國國國國⟧",
121
+ "groupSharedFeatures.usmV1.emailSharedLinkButtonAriaLabel": "⟦萬萬萬萬萬 Еmãιļ ѕħăŗèď ĺίńķ 國國國國國⟧",
122
+ "groupSharedFeatures.usmV1.errorNoticeAriaLabel": "⟦萬 єŕѓöŕ 國⟧",
123
+ "groupSharedFeatures.usmV1.invalidEmail": "⟦萬萬萬萬萬萬 Īʼnνåĺїď êmãìļ äďďяєѕś 國國國國國國⟧",
124
+ "groupSharedFeatures.usmV1.inviteFieldLabel": "⟦萬萬萬 Īйνίťë PèôΡĺė 國國國⟧",
125
+ "groupSharedFeatures.usmV1.invitePeoplePlaceholder": "⟦萬萬萬萬萬萬萬萬 Ąďď ņàmεѕ ôѓ ěmåϊļ ǻďďґėŝśèѕ 國國國國國國國國⟧",
126
+ "groupSharedFeatures.usmV1.learnSharedLinkSettingsLink": "⟦萬萬萬萬萬萬萬萬萬萬萬 Ĺéąřи móґĕ αвόŭţ śħãŗεď ľϊʼnķ ѕёťťιŋĝŝ. 國國國國國國國國國國國⟧",
127
+ "groupSharedFeatures.usmV1.linkExpirationToggleText": "⟦萬萬萬萬 Ļįйκ ē×Ρířàτϊøη 國國國國⟧",
128
+ "groupSharedFeatures.usmV1.linkSettingsButtonText": "⟦萬萬萬 Ļĭʼnĸ ŝëţŧĭńĝѕ 國國國⟧",
129
+ "groupSharedFeatures.usmV1.loadingAriaLabel": "⟦萬萬 ľŏáďιŋğ 國國⟧",
130
+ "groupSharedFeatures.usmV1.message": "⟦萬萬萬萬萬 Μéśśāĝе (σΡţįσпâĺ) 國國國國國⟧",
131
+ "groupSharedFeatures.usmV1.messageSelectorPlaceholder": "⟦萬萬萬 Αďď ã męŝşáĝе 國國國⟧",
132
+ "groupSharedFeatures.usmV1.modalTitle": "⟦萬萬萬 Ѕĥáґε ‘{itemName}’ 國國國⟧",
133
+ "groupSharedFeatures.usmV1.noticeCloseAriaLabel": "⟦萬 ċļòŝё 國⟧",
134
+ "groupSharedFeatures.usmV1.okay": "⟦萬 Øķáў 國⟧",
135
+ "groupSharedFeatures.usmV1.removeSharedLinkFailedNoticeText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ųηåьľё ŧò гєmôνę τĥĕ śнáяéď ĺîпк. Pĺёãѕè τřý ąğάĩň ľǻťèѓ. 國國國國國國國國國國國國國國國國國⟧",
136
+ "groupSharedFeatures.usmV1.removeSharedLinkModalBodyText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ŧĥϊѕ ẁĭĺļ Ρéřmãňέиτľў ŗέmονē τĥе ŝĥαгęď ľīиĸ. Īƒ ţнίş įŧëm įś êmвêďďèď óη оτħέг ѕĭţёŝ ϊŧ шĭļļ ăĺŝø ьĕċõmę іиàćċëśşíвĺė. ĀʼnУ ¢µѕťôm ΡѓōΡĕŗτιèŝ, śėţτìиğś αŋď ē×Ρįяāťϊоπś ŵϊĺļ ьє яеmŏνęď ăş ωєĺļ. Ðο ŷōü щάиť ťō ċõʼnţĭпűè? 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
137
+ "groupSharedFeatures.usmV1.removeSharedLinkModalTitle": "⟦萬萬萬萬萬 Яëmóνė Śнäгєď Ŀīņк 國國國國國⟧",
138
+ "groupSharedFeatures.usmV1.removeSharedLinkSuccessNoticeText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ťнε ŝħǻяêď ļїʼnκ ƒоѓ \"{ itemName }\" нåş вєĕņ гĕmõνëď ŝúććêśśƒŭľľγ. 國國國國國國國國國國國國國國國國國⟧",
139
+ "groupSharedFeatures.usmV1.send": "⟦萬 Şěņď 國⟧",
140
+ "groupSharedFeatures.usmV1.sendingInvites": "⟦萬萬萬萬 Ѕεиďìηġ ïπνíŧέŝ 國國國國⟧",
141
+ "groupSharedFeatures.usmV1.shareLinkSettingsModalSubTitleText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ŧħϊŝ čόйτêπţ îѕ âνăїľåьĺė ŧø āŋγōŋè ẃìŧħιп ŷòμŕ ćõmΡäπỳ шіţħ ţĥè ļįʼnк, άπď ćǻŋ ьê νίêώęď όř ďοẃπĺøäď. {learnSharedLinkSettingsLink} 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
142
+ "groupSharedFeatures.usmV1.shareLinkSettingsModalTitle": "⟦萬萬萬萬萬 Śнäяёď Ŀïʼnĸ Śéţŧíňġş 國國國國國⟧",
143
+ "groupSharedFeatures.usmV1.sharedLinkCopiedSuccessNoticeText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Śħǻѓêď ĺĩпĸ ċгêάŧеď âπď çòΡίëď ŧσ ċĺìΡьóąŗď. 國國國國國國國國國國國國國⟧",
144
+ "groupSharedFeatures.usmV1.sharedLinkCopyInputLabel": "⟦萬萬萬萬萬萬萬萬 ÇοΡÿ ѕħäяé ľĩŋĸ τŏ ċĺιΡьοåŗď 國國國國國國國國⟧",
145
+ "groupSharedFeatures.usmV1.sharedLinkCreatedSuccessNoticeText": "⟦萬萬萬萬萬 Şħàґęď ľϊпк ¢гĕåτëď 國國國國國⟧",
146
+ "groupSharedFeatures.usmV1.sharedLinkCreationFailedNoticeText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ũиăвĺé ţò ćґёāţë â ѕĥâѓĕď ĺίʼnĸ. Pľéαşέ ŧяỳ άĝàϊή ļάťěř. 國國國國國國國國國國國國國國國國⟧",
147
+ "groupSharedFeatures.usmV1.sharedLinkDisabledTooltip": "⟦萬萬萬萬萬 Ċřěάťέ âйď сσΡγ ĺιπκ 國國國國國⟧",
148
+ "groupSharedFeatures.usmV1.sharedLinkToggleLabel": "⟦萬萬 Ŝħářё Ŀĩйķ 國國⟧",
149
+ "groupSharedFeatures.usmV1.sharedLinkToggleText": "⟦萬萬萬 Şнãřêď ļιήк 國國國⟧",
150
+ "groupSharedFeatures.usmV1.successNoticeAriaLabel": "⟦萬萬 şúĉċêŝѕ 國國⟧",
151
+ "groupSharedFeatures.usmV1.vanityDomainSettingsWarningText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ćúşţоm ЏΓĻŝ ŝĥōµļď ńøτ вë ŭŝëď шĥêŋ ѕĥäѓіиġ ѕěŋŝíτїνέ ĉοйŧёиţ. 國國國國國國國國國國國國國國國國國國⟧",
152
+ "groupSharedFeatures.usmV1.vanityNameInputLabel": "⟦萬萬萬 Vάŋįŧÿ îпΡũţ 國國國⟧",
153
+ "groupSharedFeatures.usmV1.vanityNameInputPlaceholder": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Èńţéř ă ċūşţöm Ρâţĥ (12 øг mõѓé çĥąŕåçŧěŕѕ) 國國國國國國國國國國國國⟧",
154
+ "groupSharedFeatures.usmV1.vanityNameInvalidError": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ćùşţοm ŨΓĽѕ şнŏŭĺď вέ ьėτщєéл 12-30 ĉнǻѓå¢ťĕŗś, áʼnď čäή їиčļùďε ĺêťŧеѓş, ʼnūmвèŗѕ, άņď нўΡħéňѕ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
155
+ "groupSharedFeatures.usmV1.vanityNameToggleText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Pµьĺιşн ċôпţёήŧ вґőåďĺỳ ώïτн ã ċűѕŧõm, йσи-Ρřĩνãťέ ÜŘĽ 國國國國國國國國國國國國國國國國⟧",
156
+ "groupSharedFeatures.usmV1.warningNoticeIconAriaLabel": "⟦萬萬萬萬萬 ωàřиĩпğ ï¢ой ĺăьєľ 國國國國國⟧"
157
+ }