@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,290 @@
1
+ # Notification text when copying the shared link fails
2
+ groupSharedFeatures.usm.autoCopyErrorNoticeText = Shared link created. Click Copy to share.
3
+ # Notification text when the shared link is successfully copied to clipboard when link is created
4
+ groupSharedFeatures.usm.autoCopySuccessNoticeText = Paylaşılmış bağlantı oluşturuldu ve panoya kopyalandı.
5
+ # Notification text when the shared link failed to be created
6
+ groupSharedFeatures.usm.createSharedLinkErrorNoticeText = Paylaşılan bir bağlantı oluşturulamadı. Lütfen daha sonra tekrar deneyin.
7
+ # Notification text when the shared link is successfully created
8
+ groupSharedFeatures.usm.createSharedLinkSuccessNoticeText = Paylaşılmış bağlantı oluşturuldu
9
+ # Default error notification text rendered when API fails
10
+ groupSharedFeatures.usm.defaultErrorNoticeText = Something went wrong. Please try again later.
11
+ # Notification text when the shared link failed to be removed
12
+ groupSharedFeatures.usm.deleteSharedLinkErrorNoticeText = Paylaşılan bağlantı kaldırılamadı. Lütfen daha sonra tekrar deneyin.
13
+ # Notification text when the shared link is successfully removed
14
+ groupSharedFeatures.usm.deleteSharedLinkSuccessNoticeText = “{itemName}” için paylaşılan bağlantı başarıyla kaldırıldı.
15
+ # Error message for the email field when email is not provided
16
+ groupSharedFeatures.usm.emailRequiredErrorMessage = En az bir geçerli e-posta adresi girin
17
+ # Icon label for the error notifications
18
+ groupSharedFeatures.usm.errorNoticeIcon = Hata
19
+ # Error message for the expiration date field when expiration date is in the past
20
+ groupSharedFeatures.usm.expirationFutureDateRequiredErrorMessage = The expiration date must be in the future
21
+ # Error message for the expiration date field when expiration date is not provided
22
+ groupSharedFeatures.usm.expirationRequiredErrorMessage = Lütfen bir tarih seçin
23
+ # Error message for the email field when email is invalid
24
+ groupSharedFeatures.usm.invalidEmailErrorMessage = Geçersiz e-posta adresi
25
+ # Close button aria label for the notifications
26
+ groupSharedFeatures.usm.noticeCloseLabel = Kapat
27
+ # Body text of the Remove Shared Link modal
28
+ groupSharedFeatures.usm.removeSharedLinkModal.bodyText = Bu, paylaşılan bağlantıyı kalıcı olarak kaldıracaktır. Bu öğe diğer sitelere gömülü ise bu öğe de erişilemez hale gelir. Tüm özel özellikler, ayarlar ve son kullanma tarihleri de kaldırılacaktır. Devam etmek istiyor musunuz?
29
+ # Button text to cancel removing a shared link
30
+ groupSharedFeatures.usm.removeSharedLinkModal.cancelButton = İptal Et
31
+ # Aria label for the button to close the Remove Shared Link modal
32
+ groupSharedFeatures.usm.removeSharedLinkModal.closeButton = Kapat
33
+ # Button aria label when the shared link is being removed
34
+ groupSharedFeatures.usm.removeSharedLinkModal.loadingLabel = Yükleniyor
35
+ # Button text to confirm removing a shared link
36
+ groupSharedFeatures.usm.removeSharedLinkModal.okayButton = Tamam
37
+ # Title of the Remove Shared Link modal
38
+ groupSharedFeatures.usm.removeSharedLinkModal.title = Paylaşılmış Bağlantıyı Kaldır
39
+ # Button text to cancel updating the shared link settings
40
+ groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton = İptal Et
41
+ # Aria label for the button to close the Shared Link Settings modal
42
+ groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton = Kapat
43
+ # Label for the download settings toggle
44
+ groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText = Paylaşılmış bağlantıya sahip kullanıcıların bu öğeyi indirmesine izin ver
45
+ # Link to learn more about shared link settings
46
+ groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink = Paylaşılmış bağlantı ayarları hakkında daha fazla bilgi alın.
47
+ # Aria label for the calendar in the link expiration settings
48
+ groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel = Paylaşılan bağlantınızın sona erme tarihini seçin
49
+ # Aria label for the clear date picker button in the link expiration settings
50
+ groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationClearDatePickerAriaLabel = Tarih seçiciyi temizle
51
+ # Label for the date picker in the link expiration settings
52
+ groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationDatePickerLabel = Bir tarih seçin
53
+ # Aria label for the next month button in the link expiration settings
54
+ groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationNextMonthAriaLabel = Bir sonraki aya geçin
55
+ # Aria label for the open calendar dropdown button in the link expiration settings
56
+ groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationOpenCalendarDropdownAriaLabel = Takvimi aç
57
+ # Aria label for the previous month button in the link expiration settings
58
+ groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationPreviousMonthAriaLabel = Bir önceki aya geçin
59
+ # Label for the link expiration toggle
60
+ groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationToggleText = Bağlantının sona erme süresi
61
+ # Button aria label when the shared link settings are being updated
62
+ groupSharedFeatures.usm.sharedLinkSettingsModal.loadingLabel = Yükleniyor
63
+ # Button text to confirm saving the shared link settings
64
+ groupSharedFeatures.usm.sharedLinkSettingsModal.saveButton = Kaydet
65
+ # subtitle of the Shared Link settings modal
66
+ groupSharedFeatures.usm.sharedLinkSettingsModal.subtitle = Bu içeriğe şirketinizdeki bağlantıya sahip herkes erişebilir ve içerik görüntülenebilir veya indirilebilir. {learnSharedLinkSettingsLink}
67
+ # Title of the Shared Link Settings modal
68
+ groupSharedFeatures.usm.sharedLinkSettingsModal.title = Paylaşılmış Bağlantı Ayarları
69
+ # Text for the vanity domain settings warning
70
+ groupSharedFeatures.usm.sharedLinkSettingsModal.vanityDomainSettingsWarningText = Hassas içerikler paylaşılırken Özel URL'ler kullanılmamalıdır.
71
+ # Label for the vanity name input
72
+ groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameInputLabel = Özel yol
73
+ # Placeholder text for the vanity name input
74
+ groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameInputPlaceholder = Özel bir yol girin (12 veya daha fazla karakter)
75
+ # Text for the vanity name invalid error
76
+ groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameInvalidError = Özel URL'ler 12 ila 30 karakter uzunluğunda olmalıdır ve harf, sayı ve tire içerebilir.
77
+ # Label for the vanity name toggle
78
+ groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameToggleText = Gizli olmayan, özel bir URL ile geniş kapsamlı olarak içerik yayınlayın
79
+ # Label for the warning notification icon
80
+ groupSharedFeatures.usm.sharedLinkSettingsModal.warningNoticeIconAriaLabel = Uyarı
81
+ # Icon label for the success notifications
82
+ groupSharedFeatures.usm.successNoticeIcon = Başarılı
83
+ # Aria label for the button to close the Unified Share Modal
84
+ groupSharedFeatures.usm.unifiedShareFormModal.closeButton = Kapat
85
+ # Label for the role of a collaborator who co-owns the item
86
+ groupSharedFeatures.usm.unifiedShareFormModal.coOwnerRole = Co-owner
87
+ # Button text to cancel inviting collaborators to the file / folder
88
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.cancelButton = İptal Et
89
+ # Aria label for the button to clear the input field for selecting users
90
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.clearButton = Temizle
91
+ # Aria label for the button to close the Unified Share Modal
92
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.closeButton = Kapat
93
+ # Description for the collaboration role with "Co-owner" permissions to the item
94
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.coOwnerDescription = Güvenliği yönetme, yükleme, indirme, önizleme, paylaşma, düzenleme ve silme
95
+ # Description for the collaboration role with "Editor" permissions to the item
96
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.editorDescription = Yükleme, indirme, önizleme, paylaşma ve düzenleme
97
+ # Description for the collaboration role with "Editor" permissions to the folder
98
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.editorFolderDescription = Yükleme, indirme, önizleme, paylaşma, düzenleme ve silme
99
+ # Label for the field to select users to email the shared link of the item
100
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.emailSharedLinkLabel = Paylaşılan Bağlantıyı E-posta ile Gönder
101
+ # Label for the button to select the collaboration role of the new collaborator
102
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.inviteAsRoleLabel = {role} olarak davet et
103
+ # Label for the field to select users to collaborate with on an item
104
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.invitePeopleLabel = Kişileri Davet Et
105
+ # Placeholder for the field to select users to collaborate with on an item
106
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.invitePeoplePlaceholder = Adlar veya e-posta adresleri ekleyin
107
+ # Aria label for the loading indicator of the Unified Share Modal
108
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.loadingLabel = Yükleniyor
109
+ # Description for the collaboration role with "Previewer" permissions to the item
110
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.previewerDescription = Preview-only
111
+ # Description for the collaboration role with "Previewer Uploader" permissions to the item
112
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.previewerUploaderDescription = Karşıya yükle ve önizle
113
+ # Button text to invite collaborators to the file / folder
114
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.sendButton = Gönder
115
+ # Aria label for the text field to include a message when sharing an item
116
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.shareMessageCharacterCountAriaLabel = {count} karakter kaldı
117
+ # Label for the text field to include a message when sharing an item
118
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.shareMessageLabel = Mesaj (isteğe bağlı)
119
+ # Placeholder for the text field to include a message when sharing an item
120
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.shareMessagePlaceholder = Bir mesaj ekleyin
121
+ # Label for the button to view the list of collaborators shared with on the item
122
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.sharedWithLabel = ile paylaşıldı
123
+ # Description for the collaboration role with "Uploader" permissions to the item
124
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.uploaderDescription = Upload-only
125
+ # Description for the collaboration role with "Viewer" permissions to the item
126
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.viewerDescription = İndirme, önizleme ve paylaşma
127
+ # Description for the collaboration role with "Viewer Uploader" permissions to the item
128
+ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.viewerUploaderDescription = Yükleme, indirme, önizleme, paylaşma ve düzenleme
129
+ # Aria label for the button to close the Unified Share Modal
130
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.closeButton = Kapat
131
+ # Button text to exit the view of collaborators shared with on the item
132
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.doneButton = Bitti
133
+ # Label for the badge on the avatar of a collaborator who will lose access to the item
134
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.expiresBadge = Erişim {date} tarihinde sona eriyor
135
+ # Aria label for the list of collaborators shared with on the item
136
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.listLabel = İşbirlikçiler
137
+ # Link text to open the page to view and manage the full list of collaborators
138
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink = Tümünü Yönet
139
+ # Label for the column in the collaborators list for the name of the collaborator
140
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn = Ad
141
+ # Label for the role of a collaborator who has a pending collaboration invitation
142
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole = Bekliyor
143
+ # Label for the column in the collaborators list for the role of the collaborator
144
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn = Rol
145
+ # Label for the role of a collaborator who can edit and delete the item
146
+ groupSharedFeatures.usm.unifiedShareFormModal.editorRole = Düzenleyici
147
+ # Aria label for the loading indicator of the Unified Share Modal
148
+ groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel = Yükleniyor
149
+ # Label for the role of a collaborator who owns the item
150
+ groupSharedFeatures.usm.unifiedShareFormModal.ownerRole = Sahip
151
+ # Label for the role of a collaborator who can preview the item
152
+ groupSharedFeatures.usm.unifiedShareFormModal.previewerRole = Önizleyici
153
+ # Label for the role of a collaborator who can preview and upload to the item
154
+ groupSharedFeatures.usm.unifiedShareFormModal.previewerUploaderRole = Önizleyici Yükleyici
155
+ # Text inserted in the access level descriptions when the type of the item is a file
156
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.accessLevelFileItem = dosya
157
+ # Text inserted in the access level descriptions when the type of the item is a folder
158
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.accessLevelFolderItem = klasör
159
+ # Text inserted in the access level descriptions when the type of the item is a hub
160
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.accessLevelHubsItem = hub
161
+ # Description for the access level where only invited users can access the item
162
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.collaboratorsAccessLevelDescription = Yalnızca davet edilen kişiler bu {item} öğesine erişebilir
163
+ # Label for the access level where only invited users can access the item
164
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.collaboratorsAccessLevelLabel = Yalnızca davetli kişiler
165
+ # Description for the access level where users in the company can access the item
166
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.companyAccessLevelDescription = Şirketinizde bağlantıya sahip herkes veya bu {item} öğesine davet edilen kişiler erişebilir
167
+ # Label for the access level where users in the company can access the item
168
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.companyAccessLevelLabel = Şirketinizdeki kişiler
169
+ # Tooltip on an access level that has been disabled due to a security policy in the enterprise
170
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.disabledAccessLevelTooltip = Bu seçenek bir güvenlik politikası nedeniyle kullanılamıyor
171
+ # Description for the access level where users in the enterprise can access the item
172
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.enterpriseAccessLevelDescription = {enterprise} kuruluşunda bağlantıya sahip herkes veya bu {item} öğesine davet edilen kişiler erişebilir
173
+ # Label for the access level where users in the enterprise can access the item
174
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.enterpriseAccessLevelLabel = {enterprise} kuruluşundaki kişiler
175
+ # Label for the icon button to indicate the shared link has an expiration date
176
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.expirationIconLabel = Sona Erme Tarihi
177
+ # Tooltip for the icon button to indicate the shared link has an expiration date
178
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.expirationIconTooltip = Bu bağlantının süresi dolacak ve {expirationDate} tarihinde erişilemeyecek
179
+ # Description for the access level where anyone with the URL can access the item
180
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.openAccessLevelDescription = Herkes erişebilir ve oturum açmak gerekmez
181
+ # Label for the access level where anyone with the URL can access the item
182
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.openAccessLevelLabel = Bağlantıya sahip herkes
183
+ # Label for the section to manage the shared link of the file / folder
184
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.shareLinkLabel = Paylaşım Bağlantısı
185
+ # Success notification displayed when shared link is created and copied to clipboard
186
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkCopiedSuccessNoticeText = Paylaşılmış bağlantı oluşturuldu ve panoya kopyalandı.
187
+ # Aria label and tooltip for the icon button to email the shared link
188
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkEmailLabel = Paylaşılmış Bağlantıyı Gönder
189
+ # Label for the button link to open the Shared Link Settings modal
190
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkSettingsLabel = Bağlantı Ayarları
191
+ # Label for the toggle to create and delete the shared link
192
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkToggleLabel = Paylaşılan bağlantı
193
+ # Tooltip on the disabled toggle to create a new shared link
194
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkToggleTooltip = Bağlantı oluşturun ve kopyalayın
195
+ # Label for the text field of the URL for sharing the file / folder
196
+ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkUrlLabel = Paylaşılmış Bağlantı URL'si
197
+ # Title of the Unified Share Modal. {itemName} is the name of the file / folder being shared
198
+ groupSharedFeatures.usm.unifiedShareFormModal.title = ‘{itemName}’ Öğesini Paylaşın
199
+ # Label for the role of a collaborator who can upload to the item
200
+ groupSharedFeatures.usm.unifiedShareFormModal.uploaderRole = Yükleyici
201
+ # Label for the role of a collaborator who can view the item
202
+ groupSharedFeatures.usm.unifiedShareFormModal.viewerRole = Görüntüleyici
203
+ # Label for the role of a collaborator who can view and upload to the item
204
+ groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole = Görüntüleyici - Yükleyici
205
+ # Notification text when the shared link settings are successfully saved
206
+ groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText = Ayarlarınız başarıyla kaydedildi.
207
+ # Text for the vanity name invalid error
208
+ groupSharedFeatures.usm.vanityNameInvalidErrorMessage = Özel URL'ler 12 ila 30 karakter uzunluğunda olmalıdır ve harf, sayı ve tire içerebilir.
209
+ # Error message for the vanity name field when custom URL is not provided
210
+ groupSharedFeatures.usm.vanityNameRequiredErrorMessage = Lütfen özel bir URL girin
211
+ # Text displayed when email input is empty
212
+ groupSharedFeatures.usmV1.atLeastOneEmailRequired = En az bir geçerli e-posta adresi girin
213
+ # Cancel button text
214
+ groupSharedFeatures.usmV1.cancel = İptal Et
215
+ # Close button text to close the modal
216
+ groupSharedFeatures.usmV1.close = Kapat
217
+ # Label for the download settings toggle
218
+ groupSharedFeatures.usmV1.downloadSettingsToggleText = Paylaşılmış bağlantıya sahip kullanıcıların bu öğeyi indirmesine izin ver
219
+ # Aria label for the email shared link button
220
+ groupSharedFeatures.usmV1.emailSharedLinkButtonAriaLabel = Paylaşılan bağlantıyı e-postayla gönder
221
+ # Label for the error notification type
222
+ groupSharedFeatures.usmV1.errorNoticeAriaLabel = hata
223
+ # Text displayed when email input is invalid
224
+ groupSharedFeatures.usmV1.invalidEmail = Geçersiz e-posta adresi
225
+ # Label of the field where a user designates who to invite to collaborate on an item
226
+ groupSharedFeatures.usmV1.inviteFieldLabel = Kişileri Davet Et
227
+ # Placeholder text for the invite people combobox
228
+ groupSharedFeatures.usmV1.invitePeoplePlaceholder = Adlar veya e-posta adresleri ekleyin
229
+ # Link to the learn more about shared link settings
230
+ groupSharedFeatures.usmV1.learnSharedLinkSettingsLink = Paylaşılmış bağlantı ayarları hakkında daha fazla bilgi alın.
231
+ # Label for the link expiration toggle
232
+ groupSharedFeatures.usmV1.linkExpirationToggleText = Bağlantının sona erme süresi
233
+ # Text for the link settings button
234
+ groupSharedFeatures.usmV1.linkSettingsButtonText = Bağlantı Ayarları
235
+ # Aria label for loading state
236
+ groupSharedFeatures.usmV1.loadingAriaLabel = yükleniyor
237
+ # Label for "Message" text box to email the shared Link
238
+ groupSharedFeatures.usmV1.message = Mesaj (isteğe bağlı)
239
+ # Placeholder text for message section
240
+ groupSharedFeatures.usmV1.messageSelectorPlaceholder = Bir mesaj ekleyin
241
+ # Title of the Unified Share Modal. {itemName} is the name of the file / folder being shared
242
+ groupSharedFeatures.usmV1.modalTitle = ‘{itemName}’ Öğesini Paylaşın
243
+ # Label for the close button in the notification
244
+ groupSharedFeatures.usmV1.noticeCloseAriaLabel = kapat
245
+ # Okay button text
246
+ groupSharedFeatures.usmV1.okay = Tamam
247
+ # Text for the notification when shared link removal fails
248
+ groupSharedFeatures.usmV1.removeSharedLinkFailedNoticeText = Paylaşılan bağlantı kaldırılamadı. Lütfen daha sonra tekrar deneyin.
249
+ # Body text of the Remove Shared Link modal
250
+ groupSharedFeatures.usmV1.removeSharedLinkModalBodyText = Bu, paylaşılan bağlantıyı kalıcı olarak kaldıracaktır. Bu öğe diğer sitelere gömülü ise bu öğe de erişilemez hale gelir. Tüm özel özellikler, ayarlar ve son kullanma tarihleri de kaldırılacaktır. Devam etmek istiyor musunuz?
251
+ # Title of the Remove Shared Link modal
252
+ groupSharedFeatures.usmV1.removeSharedLinkModalTitle = Paylaşılmış Bağlantıyı Kaldır
253
+ # Text for the notification when shared link is removed
254
+ groupSharedFeatures.usmV1.removeSharedLinkSuccessNoticeText = "{itemName}" için paylaşılan bağlantı başarıyla kaldırıldı.
255
+ # Send button text
256
+ groupSharedFeatures.usmV1.send = Gönder
257
+ # Aria label for send button when sending invites
258
+ groupSharedFeatures.usmV1.sendingInvites = Davetler gönder
259
+ # Subtitle of the Shared Link settings modal
260
+ groupSharedFeatures.usmV1.shareLinkSettingsModalSubTitleText = Bu içeriğe şirketinizdeki bağlantıya sahip herkes erişebilir ve içerik görüntülenebilir veya indirilebilir. {learnSharedLinkSettingsLink}
261
+ # Title of the Shared Link settings modal
262
+ groupSharedFeatures.usmV1.shareLinkSettingsModalTitle = Paylaşılmış Bağlantı Ayarları
263
+ # Success notification displayed when shared link is created and copied to clipboard
264
+ groupSharedFeatures.usmV1.sharedLinkCopiedSuccessNoticeText = Paylaşılmış bağlantı oluşturuldu ve panoya kopyalandı.
265
+ # Label for the copy input field
266
+ groupSharedFeatures.usmV1.sharedLinkCopyInputLabel = Paylaşım bağlantısını panoya kopyalayın
267
+ # Text for the notification when shared link is created
268
+ groupSharedFeatures.usmV1.sharedLinkCreatedSuccessNoticeText = Paylaşılmış bağlantı oluşturuldu
269
+ # Text for the notification when shared link creation fails
270
+ groupSharedFeatures.usmV1.sharedLinkCreationFailedNoticeText = Paylaşılan bir bağlantı oluşturulamadı. Lütfen daha sonra tekrar deneyin.
271
+ # This tooltip appears over the shared link toggle, explaining what happens when it is clicked
272
+ groupSharedFeatures.usmV1.sharedLinkDisabledTooltip = Bağlantı oluşturun ve kopyalayın
273
+ # Label for share link toggle
274
+ groupSharedFeatures.usmV1.sharedLinkToggleLabel = Paylaşım Bağlantısı
275
+ # Label for share link toggle
276
+ groupSharedFeatures.usmV1.sharedLinkToggleText = Paylaşılan bağlantı
277
+ # Label for the success notification type
278
+ groupSharedFeatures.usmV1.successNoticeAriaLabel = başarılı
279
+ # Text for the vanity domain settings warning
280
+ groupSharedFeatures.usmV1.vanityDomainSettingsWarningText = Hassas içerikler paylaşılırken Özel URL'ler kullanılmamalıdır.
281
+ # Label for the vanity name input
282
+ groupSharedFeatures.usmV1.vanityNameInputLabel = Özel giriş
283
+ # Placeholder text for the vanity name input
284
+ groupSharedFeatures.usmV1.vanityNameInputPlaceholder = Özel bir yol girin (12 veya daha fazla karakter)
285
+ # Text for the vanity name invalid error
286
+ groupSharedFeatures.usmV1.vanityNameInvalidError = Özel URL'ler 12 ila 30 karakter uzunluğunda olmalıdır ve harf, sayı ve tire içerebilir.
287
+ # Label for the vanity name toggle
288
+ groupSharedFeatures.usmV1.vanityNameToggleText = Gizli olmayan, özel bir URL ile geniş kapsamlı olarak içerik yayınlayın
289
+ # Label for the warning notification icon
290
+ groupSharedFeatures.usmV1.warningNoticeIconAriaLabel = uyarı simgei etiketi
@@ -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": "无法创建共享链接。请稍后重试。",
4
+ "groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "已创建共享链接",
5
+ "groupSharedFeatures.usm.defaultErrorNoticeText": "Something went wrong. Please try again later.",
6
+ "groupSharedFeatures.usm.deleteSharedLinkErrorNoticeText": "无法删除共享链接。请稍后重试。",
7
+ "groupSharedFeatures.usm.deleteSharedLinkSuccessNoticeText": "已成功删除“{itemName}”的共享链接。",
8
+ "groupSharedFeatures.usm.emailRequiredErrorMessage": "输入至少一个有效的电子邮件",
9
+ "groupSharedFeatures.usm.errorNoticeIcon": "错误",
10
+ "groupSharedFeatures.usm.expirationFutureDateRequiredErrorMessage": "The expiration date must be in the future",
11
+ "groupSharedFeatures.usm.expirationRequiredErrorMessage": "请选择日期",
12
+ "groupSharedFeatures.usm.invalidEmailErrorMessage": "无效电邮地址",
13
+ "groupSharedFeatures.usm.noticeCloseLabel": "关闭",
14
+ "groupSharedFeatures.usm.removeSharedLinkModal.bodyText": "这会永久移除共享链接。如果此项目嵌入在其他站点上,它也将变得不可访问。还会移除任何自定义属性、设置和到期时间。是否要继续?",
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": "移除共享链接",
20
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "取消",
21
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "关闭",
22
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "允许拥有共享链接的用户下载该项目",
23
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "了解有关共享链接设置的更多信息。",
24
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "选择共享链接过期日期",
25
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationClearDatePickerAriaLabel": "清除日期选择器",
26
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationDatePickerLabel": "选择日期",
27
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationNextMonthAriaLabel": "切换到下个月",
28
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationOpenCalendarDropdownAriaLabel": "打开日历",
29
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationPreviousMonthAriaLabel": "切换到上个月",
30
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationToggleText": "链接过期",
31
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.loadingLabel": "正在加载",
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": "您公司的任何人均可通过该链接查看或下载此内容。{learnSharedLinkSettingsLink}",
37
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.title": "共享链接设置",
38
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.vanityDomainSettingsWarningText": "共享敏感内容时不应使用自定义 URL。",
39
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameInputLabel": "自定义路径",
40
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameInputPlaceholder": "输入自定义路径(12 个或更多字符)",
41
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameInvalidError": "自定义 URL 应介于 12-30 个字符之间,并可包括字母、数字和连字符。",
42
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.vanityNameToggleText": "使用自定义非私有 URL 广泛发布内容",
43
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.warningNoticeIconAriaLabel": "警告",
44
+ "groupSharedFeatures.usm.successNoticeIcon": "成功",
45
+ "groupSharedFeatures.usm.unifiedShareFormModal.closeButton": "关闭",
46
+ "groupSharedFeatures.usm.unifiedShareFormModal.coOwnerRole": "Co-owner",
47
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.cancelButton": "取消",
48
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.clearButton": "清除",
49
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.closeButton": "关闭",
50
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.coOwnerDescription": "管理安全性、上传、下载、预览、共享、编辑和删除",
51
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.editorDescription": "上传、下载、预览、共享和编辑",
52
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.editorFolderDescription": "上传、下载、预览、共享、编辑和删除",
53
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.emailSharedLinkLabel": "以电子邮件形式发送共享链接",
54
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.inviteAsRoleLabel": "邀请为{role}",
55
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.invitePeopleLabel": "邀请人员",
56
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.invitePeoplePlaceholder": "添加姓名或电子邮件地址",
57
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.loadingLabel": "正在加载",
58
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.previewerDescription": "Preview-only",
59
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.previewerUploaderDescription": "上传并预览",
60
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.sendButton": "发送",
61
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.shareMessageCharacterCountAriaLabel": "剩余 {count} 个字符",
62
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.shareMessageLabel": "消息(可选)",
63
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.shareMessagePlaceholder": "添加消息",
64
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.sharedWithLabel": "共享",
65
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.uploaderDescription": "Upload-only",
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": "访问权限将于 {date} 过期",
71
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.listLabel": "协作者",
72
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "管理所有",
73
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "名称",
74
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "未决",
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": "预览者",
80
+ "groupSharedFeatures.usm.unifiedShareFormModal.previewerUploaderRole": "上传者(预览者",
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": "贵公司中拥有链接的任何人员或受邀人员均可访问此 {item}",
87
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.companyAccessLevelLabel": "公司人员",
88
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.disabledAccessLevelTooltip": "由于安全策略,此选项不可用",
89
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.enterpriseAccessLevelDescription": "{enterprise} 中拥有链接的任何人员或受邀人员均可访问此 {item}",
90
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.enterpriseAccessLevelLabel": "{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": "可公开访问;无需登录",
97
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.openAccessLevelLabel": "拥有链接的人员",
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": "共享链接 URL",
104
+ "groupSharedFeatures.usm.unifiedShareFormModal.title": "共享‘{itemName}’",
105
+ "groupSharedFeatures.usm.unifiedShareFormModal.uploaderRole": "上传者",
106
+ "groupSharedFeatures.usm.unifiedShareFormModal.viewerRole": "查看者",
107
+ "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "上传者(查看者",
108
+ "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "已成功保存您的设置。",
109
+ "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "自定义 URL 应介于 12-30 个字符之间,并可包括字母、数字和连字符。",
110
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "请输入自定义 URL",
111
+ "groupSharedFeatures.usm.autoCopyErrorNoticeText": "Shared link created. Click Copy to share.",
112
+ "groupSharedFeatures.usm.autoCopySuccessNoticeText": "共享链接已创建并复制到剪贴板。",
113
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.accessLevelFileItem": "文件",
114
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.accessLevelFolderItem": "文件夹",
115
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.accessLevelHubsItem": "Hub",
116
+ "groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkCopiedSuccessNoticeText": "共享链接已创建并复制到剪贴板。",
117
+ "groupSharedFeatures.usmV1.atLeastOneEmailRequired": "输入至少一个有效的电子邮件",
118
+ "groupSharedFeatures.usmV1.cancel": "取消",
119
+ "groupSharedFeatures.usmV1.close": "关闭",
120
+ "groupSharedFeatures.usmV1.downloadSettingsToggleText": "允许拥有共享链接的用户下载该项目",
121
+ "groupSharedFeatures.usmV1.emailSharedLinkButtonAriaLabel": "通过电子邮件发送共享链接",
122
+ "groupSharedFeatures.usmV1.errorNoticeAriaLabel": "错误",
123
+ "groupSharedFeatures.usmV1.invalidEmail": "无效电邮地址",
124
+ "groupSharedFeatures.usmV1.inviteFieldLabel": "邀请人员",
125
+ "groupSharedFeatures.usmV1.invitePeoplePlaceholder": "添加姓名或电子邮件地址",
126
+ "groupSharedFeatures.usmV1.learnSharedLinkSettingsLink": "了解有关共享链接设置的更多信息。",
127
+ "groupSharedFeatures.usmV1.linkExpirationToggleText": "链接过期",
128
+ "groupSharedFeatures.usmV1.linkSettingsButtonText": "链接设置",
129
+ "groupSharedFeatures.usmV1.loadingAriaLabel": "正在加载",
130
+ "groupSharedFeatures.usmV1.message": "消息(可选)",
131
+ "groupSharedFeatures.usmV1.messageSelectorPlaceholder": "添加消息",
132
+ "groupSharedFeatures.usmV1.modalTitle": "共享‘{itemName}’",
133
+ "groupSharedFeatures.usmV1.noticeCloseAriaLabel": "关闭",
134
+ "groupSharedFeatures.usmV1.okay": "确定",
135
+ "groupSharedFeatures.usmV1.removeSharedLinkFailedNoticeText": "无法删除共享链接。请稍后重试。",
136
+ "groupSharedFeatures.usmV1.removeSharedLinkModalBodyText": "这会永久移除共享链接。如果此项目嵌入在其他站点上,它也将变得不可访问。还会移除任何自定义属性、设置和到期时间。是否要继续?",
137
+ "groupSharedFeatures.usmV1.removeSharedLinkModalTitle": "移除共享链接",
138
+ "groupSharedFeatures.usmV1.removeSharedLinkSuccessNoticeText": "已成功移除“{itemName}”的共享链接。",
139
+ "groupSharedFeatures.usmV1.send": "发送",
140
+ "groupSharedFeatures.usmV1.sendingInvites": "正在发送邀请",
141
+ "groupSharedFeatures.usmV1.shareLinkSettingsModalSubTitleText": "您公司的任何人均可通过该链接查看或下载此内容。{learnSharedLinkSettingsLink}",
142
+ "groupSharedFeatures.usmV1.shareLinkSettingsModalTitle": "共享链接设置",
143
+ "groupSharedFeatures.usmV1.sharedLinkCopiedSuccessNoticeText": "共享链接已创建并复制到剪贴板。",
144
+ "groupSharedFeatures.usmV1.sharedLinkCopyInputLabel": "将共享链接复制到剪贴板",
145
+ "groupSharedFeatures.usmV1.sharedLinkCreatedSuccessNoticeText": "已创建共享链接",
146
+ "groupSharedFeatures.usmV1.sharedLinkCreationFailedNoticeText": "无法创建共享链接。请稍后重试。",
147
+ "groupSharedFeatures.usmV1.sharedLinkDisabledTooltip": "创建并复制链接",
148
+ "groupSharedFeatures.usmV1.sharedLinkToggleLabel": "分享链接",
149
+ "groupSharedFeatures.usmV1.sharedLinkToggleText": "共享链接",
150
+ "groupSharedFeatures.usmV1.successNoticeAriaLabel": "成功",
151
+ "groupSharedFeatures.usmV1.vanityDomainSettingsWarningText": "共享敏感内容时不应使用自定义 URL。",
152
+ "groupSharedFeatures.usmV1.vanityNameInputLabel": "虚拟输入",
153
+ "groupSharedFeatures.usmV1.vanityNameInputPlaceholder": "输入自定义路径(12 个或更多字符)",
154
+ "groupSharedFeatures.usmV1.vanityNameInvalidError": "自定义 URL 应介于 12-30 个字符之间,并可包括字母、数字和连字符。",
155
+ "groupSharedFeatures.usmV1.vanityNameToggleText": "使用自定义非私有 URL 广泛发布内容",
156
+ "groupSharedFeatures.usmV1.warningNoticeIconAriaLabel": "警告图标标签"
157
+ }