@box/unified-share-modal 1.22.3 → 1.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. package/dist/esm/lib/components/index.js +8 -6
  2. package/dist/esm/lib/components/remove-collaborator-modal/index.js +4 -0
  3. package/dist/esm/lib/components/remove-collaborator-modal/messages.js +30 -0
  4. package/dist/esm/lib/components/remove-collaborator-modal/remove-collaborator-modal.js +64 -0
  5. package/dist/esm/lib/components/remove-shared-link-modal/remove-shared-link-modal.js +27 -31
  6. package/dist/esm/lib/components/shared-link-settings-modal/download-section.js +5 -5
  7. package/dist/esm/lib/components/unified-share-form-modal/collaborators-view/collaborator-list-item.js +65 -43
  8. package/dist/esm/lib/components/unified-share-form-modal/collaborators-view/messages.js +4 -0
  9. package/dist/esm/lib/components/unified-share-form-modal/shared-link-section/shared-link-section.js +24 -24
  10. package/dist/esm/lib/constants.js +3 -3
  11. package/dist/esm/lib/messages.js +10 -2
  12. package/dist/esm/lib/unified-share-modal.js +48 -42
  13. package/dist/i18n/bn-IN.js +10 -1
  14. package/dist/i18n/bn-IN.properties +19 -1
  15. package/dist/i18n/da-DK.js +10 -1
  16. package/dist/i18n/da-DK.properties +19 -1
  17. package/dist/i18n/de-DE.js +10 -1
  18. package/dist/i18n/de-DE.properties +19 -1
  19. package/dist/i18n/en-AU.js +10 -1
  20. package/dist/i18n/en-AU.properties +19 -1
  21. package/dist/i18n/en-CA.js +9 -0
  22. package/dist/i18n/en-CA.properties +18 -0
  23. package/dist/i18n/en-GB.js +10 -1
  24. package/dist/i18n/en-GB.properties +19 -1
  25. package/dist/i18n/en-US.js +9 -0
  26. package/dist/i18n/en-US.properties +18 -0
  27. package/dist/i18n/en-x-pseudo.js +136 -127
  28. package/dist/i18n/en-x-pseudo.properties +145 -127
  29. package/dist/i18n/es-419.js +10 -1
  30. package/dist/i18n/es-419.properties +19 -1
  31. package/dist/i18n/es-ES.js +10 -1
  32. package/dist/i18n/es-ES.properties +19 -1
  33. package/dist/i18n/fi-FI.js +10 -1
  34. package/dist/i18n/fi-FI.properties +19 -1
  35. package/dist/i18n/fr-CA.js +10 -1
  36. package/dist/i18n/fr-CA.properties +19 -1
  37. package/dist/i18n/fr-FR.js +10 -1
  38. package/dist/i18n/fr-FR.properties +19 -1
  39. package/dist/i18n/hi-IN.js +10 -1
  40. package/dist/i18n/hi-IN.properties +19 -1
  41. package/dist/i18n/it-IT.js +10 -1
  42. package/dist/i18n/it-IT.properties +19 -1
  43. package/dist/i18n/ja-JP.js +10 -1
  44. package/dist/i18n/ja-JP.properties +19 -1
  45. package/dist/i18n/json/src/lib/components/remove-collaborator-modal/messages.json +1 -0
  46. package/dist/i18n/json/src/lib/components/unified-share-form-modal/collaborators-view/messages.json +1 -1
  47. package/dist/i18n/json/src/lib/messages.json +1 -1
  48. package/dist/i18n/ko-KR.js +14 -5
  49. package/dist/i18n/ko-KR.properties +23 -5
  50. package/dist/i18n/nb-NO.js +14 -5
  51. package/dist/i18n/nb-NO.properties +23 -5
  52. package/dist/i18n/nl-NL.js +10 -1
  53. package/dist/i18n/nl-NL.properties +19 -1
  54. package/dist/i18n/pl-PL.js +10 -1
  55. package/dist/i18n/pl-PL.properties +19 -1
  56. package/dist/i18n/pt-BR.js +10 -1
  57. package/dist/i18n/pt-BR.properties +19 -1
  58. package/dist/i18n/ru-RU.js +10 -1
  59. package/dist/i18n/ru-RU.properties +19 -1
  60. package/dist/i18n/sv-SE.js +10 -1
  61. package/dist/i18n/sv-SE.properties +19 -1
  62. package/dist/i18n/tr-TR.js +10 -1
  63. package/dist/i18n/tr-TR.properties +19 -1
  64. package/dist/i18n/zh-CN.js +10 -1
  65. package/dist/i18n/zh-CN.properties +19 -1
  66. package/dist/i18n/zh-TW.js +10 -1
  67. package/dist/i18n/zh-TW.properties +19 -1
  68. package/dist/styles/collaborator-list-item.css +1 -1
  69. package/dist/types/lib/components/index.d.ts +1 -0
  70. package/dist/types/lib/components/remove-collaborator-modal/index.d.ts +1 -0
  71. package/dist/types/lib/components/remove-collaborator-modal/messages.d.ts +33 -0
  72. package/dist/types/lib/components/remove-collaborator-modal/remove-collaborator-modal.d.ts +5 -0
  73. package/dist/types/lib/components/remove-collaborator-modal/stories/shared.d.ts +2 -0
  74. package/dist/types/lib/components/unified-share-form-modal/collaborators-view/messages.d.ts +5 -0
  75. package/dist/types/lib/contexts/unified-share-modal-context.d.ts +3 -0
  76. package/dist/types/lib/messages.d.ts +10 -0
  77. package/dist/types/lib/stories/shared.d.ts +2 -0
  78. package/dist/types/lib/types.d.ts +17 -2
  79. package/package.json +9 -9
  80. package/dist/styles/remove-shared-link-modal.css +0 -1
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "공유 링크를 생성할 수 없습니다. 잠시 후 다시 시도해 주세요.",
3
- "groupSharedFeatures.usm.contactsExceedLimitError": "Oops! The maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches.",
3
+ "groupSharedFeatures.usm.contactsExceedLimitError": " 번에 추가할 있는 최대 공동 작업자 수는 {maxContacts}명입니다. 초대장을 여러 개의 일괄 파일로 분할하여 다시 시도하십시오.",
4
4
  "groupSharedFeatures.usm.createSharedLinkErrorNoticeText": "공유 링크를 생성할 수 없습니다. 잠시 후 다시 시도해 주세요.",
5
5
  "groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "공유 링크가 생성되었습니다.",
6
6
  "groupSharedFeatures.usm.defaultErrorNoticeText": "문제가 발생했습니다. 잠시 후 다시 시도해 주세요.",
@@ -17,6 +17,14 @@ export default {
17
17
  "groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "암호는 대문자, 숫자 또는 특수 문자가 하나 이상 포함되어야 합니다",
18
18
  "groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "암호는 8자 이상이어야 합니다",
19
19
  "groupSharedFeatures.usm.passwordRequiredErrorMessage": "암호를 입력하세요",
20
+ "groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
21
+ "groupSharedFeatures.usm.removeCollaborator.cancelButton": "취소",
22
+ "groupSharedFeatures.usm.removeCollaborator.closeButton": "닫기",
23
+ "groupSharedFeatures.usm.removeCollaborator.loadingLabel": "로드 중",
24
+ "groupSharedFeatures.usm.removeCollaborator.okayButton": "확인",
25
+ "groupSharedFeatures.usm.removeCollaborator.title": "Remove Collaborator",
26
+ "groupSharedFeatures.usm.removeCollaboratorErrorNoticeText": "Unable to remove the collaborator. Please try again later.",
27
+ "groupSharedFeatures.usm.removeCollaboratorSuccessNoticeText": "The collaborator has been removed successfully.",
20
28
  "groupSharedFeatures.usm.removeSharedLinkModal.bodyText": "공유 링크가 영구적으로 제거됩니다. 이 항목이 다른 사이트에 포함되어 있으면 이어지지 않습니다. 지정 속성, 설정 및 만료 등이 제거됩니다. 계속하시겠습니까?",
21
29
  "groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "취소",
22
30
  "groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "닫기",
@@ -25,10 +33,10 @@ export default {
25
33
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "공유 링크 제거",
26
34
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "취소",
27
35
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "닫기",
28
- "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
29
- "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
30
- "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
31
- "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
36
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "분류로 인해 콘텐츠에 대한 다운로드가 비활성화되었습니다.",
37
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "분류 없는 콘텐츠에 대한 다운로드가 비활성화되었습니다.",
38
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "보안 정책으로 인해 콘텐츠에 대한 다운로드가 비활성화되었습니다.",
39
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "직접 링크",
32
40
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "공유 링크를 가진 사용자가 이 항목을 다운로드할 수 있도록 허용",
33
41
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "공유 링크 설정에 대해 자세히 알아보세요.",
34
42
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "만료 날짜 선택",
@@ -83,6 +91,7 @@ export default {
83
91
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "모두 관리",
84
92
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "이름",
85
93
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "대기 중",
94
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
86
95
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "역할",
87
96
  "groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "편집자",
88
97
  "groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "로드 중",
@@ -1,7 +1,7 @@
1
1
  # Notification text when the shared link is failed to be created
2
2
  groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText = 공유 링크를 생성할 수 없습니다. 잠시 후 다시 시도해 주세요.
3
3
  # Error message when more than the maximum number of contacts is entered
4
- groupSharedFeatures.usm.contactsExceedLimitError = Oops! The maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches.
4
+ groupSharedFeatures.usm.contactsExceedLimitError = 번에 추가할 있는 최대 공동 작업자 수는 {maxContacts}명입니다. 초대장을 여러 개의 일괄 파일로 분할하여 다시 시도하십시오.
5
5
  # Notification text when the shared link failed to be created
6
6
  groupSharedFeatures.usm.createSharedLinkErrorNoticeText = 공유 링크를 생성할 수 없습니다. 잠시 후 다시 시도해 주세요.
7
7
  # Notification text when the shared link is successfully created
@@ -34,6 +34,22 @@ groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage = 암호
34
34
  groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage = 암호는 8자 이상이어야 합니다
35
35
  # Error message for the password field when password is not provided
36
36
  groupSharedFeatures.usm.passwordRequiredErrorMessage = 암호를 입력하세요
37
+ # Body text of the Remove Collaborator modal
38
+ groupSharedFeatures.usm.removeCollaborator.bodyText = Are you sure you want to remove {name} as a collaborator?
39
+ # Button text to cancel removing a collaborator
40
+ groupSharedFeatures.usm.removeCollaborator.cancelButton = 취소
41
+ # Aria label for the button to close the Remove Collaborator modal
42
+ groupSharedFeatures.usm.removeCollaborator.closeButton = 닫기
43
+ # Button aria label when the collaborator is being removed
44
+ groupSharedFeatures.usm.removeCollaborator.loadingLabel = 로드 중
45
+ # Button text to confirm removing a collaborator
46
+ groupSharedFeatures.usm.removeCollaborator.okayButton = 확인
47
+ # Title of the Remove Collaborator modal
48
+ groupSharedFeatures.usm.removeCollaborator.title = Remove Collaborator
49
+ # Notification text when a collaborator failed to be removed
50
+ groupSharedFeatures.usm.removeCollaboratorErrorNoticeText = Unable to remove the collaborator. Please try again later.
51
+ # Notification text when a collaborator is successfully removed
52
+ groupSharedFeatures.usm.removeCollaboratorSuccessNoticeText = The collaborator has been removed successfully.
37
53
  # Body text of the Remove Shared Link modal
38
54
  groupSharedFeatures.usm.removeSharedLinkModal.bodyText = 공유 링크가 영구적으로 제거됩니다. 이 항목이 다른 사이트에 포함되어 있으면 이어지지 않습니다. 지정 속성, 설정 및 만료 등이 제거됩니다. 계속하시겠습니까?
39
55
  # Button text to cancel removing a shared link
@@ -51,13 +67,13 @@ groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton = 취소
51
67
  # Aria label for the button to close the Shared Link Settings modal
52
68
  groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton = 닫기
53
69
  # Tooltip message when the direct link is blocked due to access policy with classification
54
- groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification = Download has been disabled for content due to the classification.
70
+ groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification = 분류로 인해 콘텐츠에 대한 다운로드가 비활성화되었습니다.
55
71
  # Tooltip message when the direct link is blocked due to access policy without classification
56
- groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification = Download has been disabled for content without classification.
72
+ groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification = 분류 없는 콘텐츠에 대한 다운로드가 비활성화되었습니다.
57
73
  # Tooltip message when the direct link is blocked due to malicious content
58
- groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent = Download for this content has been disabled due to a security policy.
74
+ groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent = 보안 정책으로 인해 콘텐츠에 대한 다운로드가 비활성화되었습니다.
59
75
  # Label for the direct link to download the shared item
60
- groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel = Direct link
76
+ groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel = 직접 링크
61
77
  # Label for the download settings toggle
62
78
  groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText = 공유 링크를 가진 사용자가 이 항목을 다운로드할 수 있도록 허용
63
79
  # Link to learn more about shared link settings
@@ -166,6 +182,8 @@ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink =
166
182
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn = 이름
167
183
  # Label for the role of a collaborator who has a pending collaboration invitation
168
184
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole = 대기 중
185
+ # Aria label for the button to remove a collaborator on the item
186
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton = Remove
169
187
  # Label for the column in the collaborators list for the role of the collaborator
170
188
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn = 역할
171
189
  # Label for the role of a collaborator who can edit and delete the item
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Kan ikke opprette en delt kobling. Prøv igjen senere.",
3
- "groupSharedFeatures.usm.contactsExceedLimitError": "Oops! The maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches.",
3
+ "groupSharedFeatures.usm.contactsExceedLimitError": "Det maksimale antallet samarbeidspartnere som kan legges til samtidig, er {maxContacts} samarbeidspartnere. Prøv nytt ved å dele invitasjonene inn i grupper.",
4
4
  "groupSharedFeatures.usm.createSharedLinkErrorNoticeText": "Kan ikke opprette en delt kobling. Prøv igjen senere.",
5
5
  "groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "Delt kobling er opprettet.",
6
6
  "groupSharedFeatures.usm.defaultErrorNoticeText": "Noe gikk galt. Prøv igjen senere.",
@@ -17,6 +17,14 @@ export default {
17
17
  "groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "Passord må inneholde minst en stor bokstav, tall eller spesialtegn",
18
18
  "groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "Passord bør inneholde minst åtte tegn",
19
19
  "groupSharedFeatures.usm.passwordRequiredErrorMessage": "Skriv inn passord",
20
+ "groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
21
+ "groupSharedFeatures.usm.removeCollaborator.cancelButton": "Avbryt",
22
+ "groupSharedFeatures.usm.removeCollaborator.closeButton": "Lukk",
23
+ "groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Laster inn",
24
+ "groupSharedFeatures.usm.removeCollaborator.okayButton": "Ok",
25
+ "groupSharedFeatures.usm.removeCollaborator.title": "Remove Collaborator",
26
+ "groupSharedFeatures.usm.removeCollaboratorErrorNoticeText": "Unable to remove the collaborator. Please try again later.",
27
+ "groupSharedFeatures.usm.removeCollaboratorSuccessNoticeText": "The collaborator has been removed successfully.",
20
28
  "groupSharedFeatures.usm.removeSharedLinkModal.bodyText": "Dette vil fjerne den delte koblingen for godt. Hvis dette elementet er innebygd på andre nettsteder, vil det også bli utilgjengelig. Alle egendefinerte egenskaper, innstillinger og utløpsdatoer vil også bli fjernet. Vil du fortsette?",
21
29
  "groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "Avbryt",
22
30
  "groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "Lukk",
@@ -25,10 +33,10 @@ export default {
25
33
  "groupSharedFeatures.usm.removeSharedLinkModal.title": "Fjern delt kobling",
26
34
  "groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "Avbryt",
27
35
  "groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "Lukk",
28
- "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Download has been disabled for content due to the classification.",
29
- "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Download has been disabled for content without classification.",
30
- "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Download for this content has been disabled due to a security policy.",
31
- "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direct link",
36
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "Nedlasting er deaktivert for innholdet grunn av klassifiseringen.",
37
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification": "Nedlasting er deaktivert for innhold uten klassifisering.",
38
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "Nedlasting av dette innholdet er deaktivert grunn av en retningslinje for sikkerhet.",
39
+ "groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "Direktekobling",
32
40
  "groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "Tillat brukere med den delte koblingen til å laste ned dette elementet",
33
41
  "groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "Lær mer om innstillinger for delte koblinger.",
34
42
  "groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "Velge en utløpsdato",
@@ -83,6 +91,7 @@ export default {
83
91
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "Administrer alle",
84
92
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "Navn",
85
93
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "Ventende",
94
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
86
95
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "Rolle",
87
96
  "groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "Redaktør",
88
97
  "groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "Laster inn",
@@ -1,7 +1,7 @@
1
1
  # Notification text when the shared link is failed to be created
2
2
  groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText = Kan ikke opprette en delt kobling. Prøv igjen senere.
3
3
  # Error message when more than the maximum number of contacts is entered
4
- groupSharedFeatures.usm.contactsExceedLimitError = Oops! The maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches.
4
+ groupSharedFeatures.usm.contactsExceedLimitError = Det maksimale antallet samarbeidspartnere som kan legges til samtidig, er {maxContacts} samarbeidspartnere. Prøv nytt ved å dele invitasjonene inn i grupper.
5
5
  # Notification text when the shared link failed to be created
6
6
  groupSharedFeatures.usm.createSharedLinkErrorNoticeText = Kan ikke opprette en delt kobling. Prøv igjen senere.
7
7
  # Notification text when the shared link is successfully created
@@ -34,6 +34,22 @@ groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage = Passor
34
34
  groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage = Passord bør inneholde minst åtte tegn
35
35
  # Error message for the password field when password is not provided
36
36
  groupSharedFeatures.usm.passwordRequiredErrorMessage = Skriv inn passord
37
+ # Body text of the Remove Collaborator modal
38
+ groupSharedFeatures.usm.removeCollaborator.bodyText = Are you sure you want to remove {name} as a collaborator?
39
+ # Button text to cancel removing a collaborator
40
+ groupSharedFeatures.usm.removeCollaborator.cancelButton = Avbryt
41
+ # Aria label for the button to close the Remove Collaborator modal
42
+ groupSharedFeatures.usm.removeCollaborator.closeButton = Lukk
43
+ # Button aria label when the collaborator is being removed
44
+ groupSharedFeatures.usm.removeCollaborator.loadingLabel = Laster inn
45
+ # Button text to confirm removing a collaborator
46
+ groupSharedFeatures.usm.removeCollaborator.okayButton = Ok
47
+ # Title of the Remove Collaborator modal
48
+ groupSharedFeatures.usm.removeCollaborator.title = Remove Collaborator
49
+ # Notification text when a collaborator failed to be removed
50
+ groupSharedFeatures.usm.removeCollaboratorErrorNoticeText = Unable to remove the collaborator. Please try again later.
51
+ # Notification text when a collaborator is successfully removed
52
+ groupSharedFeatures.usm.removeCollaboratorSuccessNoticeText = The collaborator has been removed successfully.
37
53
  # Body text of the Remove Shared Link modal
38
54
  groupSharedFeatures.usm.removeSharedLinkModal.bodyText = Dette vil fjerne den delte koblingen for godt. Hvis dette elementet er innebygd på andre nettsteder, vil det også bli utilgjengelig. Alle egendefinerte egenskaper, innstillinger og utløpsdatoer vil også bli fjernet. Vil du fortsette?
39
55
  # Button text to cancel removing a shared link
@@ -51,13 +67,13 @@ groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton = Avbryt
51
67
  # Aria label for the button to close the Shared Link Settings modal
52
68
  groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton = Lukk
53
69
  # Tooltip message when the direct link is blocked due to access policy with classification
54
- groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification = Download has been disabled for content due to the classification.
70
+ groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification = Nedlasting er deaktivert for innholdet grunn av klassifiseringen.
55
71
  # Tooltip message when the direct link is blocked due to access policy without classification
56
- groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification = Download has been disabled for content without classification.
72
+ groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithoutClassification = Nedlasting er deaktivert for innhold uten klassifisering.
57
73
  # Tooltip message when the direct link is blocked due to malicious content
58
- groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent = Download for this content has been disabled due to a security policy.
74
+ groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent = Nedlasting av dette innholdet er deaktivert grunn av en retningslinje for sikkerhet.
59
75
  # Label for the direct link to download the shared item
60
- groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel = Direct link
76
+ groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel = Direktekobling
61
77
  # Label for the download settings toggle
62
78
  groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText = Tillat brukere med den delte koblingen til å laste ned dette elementet
63
79
  # Link to learn more about shared link settings
@@ -166,6 +182,8 @@ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink =
166
182
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn = Navn
167
183
  # Label for the role of a collaborator who has a pending collaboration invitation
168
184
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole = Ventende
185
+ # Aria label for the button to remove a collaborator on the item
186
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton = Remove
169
187
  # Label for the column in the collaborators list for the role of the collaborator
170
188
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn = Rolle
171
189
  # Label for the role of a collaborator who can edit and delete the item
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Kan geen gedeelde link maken. Probeer het later opnieuw.",
3
- "groupSharedFeatures.usm.contactsExceedLimitError": "Oops! The maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches.",
3
+ "groupSharedFeatures.usm.contactsExceedLimitError": "Oeps! Het maximumaantal medebewerkers dat tegelijkertijd kan worden toegevoegd is {maxContacts}. Probeer het opnieuw door uw uitnodigingen in batches te splitsen.",
4
4
  "groupSharedFeatures.usm.createSharedLinkErrorNoticeText": "Kan geen gedeelde link maken. Probeer het later opnieuw.",
5
5
  "groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "Gedeelde link gemaakt.",
6
6
  "groupSharedFeatures.usm.defaultErrorNoticeText": "Er is iets misgegaan. Probeer het later opnieuw.",
@@ -17,6 +17,14 @@ export default {
17
17
  "groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "Wachtwoord moet ten minste één hoofdletter, cijfer of speciaal teken bevatten",
18
18
  "groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "Wachtwoord moet ten minste 8 tekens bevatten",
19
19
  "groupSharedFeatures.usm.passwordRequiredErrorMessage": "Voer een wachtwoord in",
20
+ "groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
21
+ "groupSharedFeatures.usm.removeCollaborator.cancelButton": "Annuleren",
22
+ "groupSharedFeatures.usm.removeCollaborator.closeButton": "Sluiten",
23
+ "groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Laden",
24
+ "groupSharedFeatures.usm.removeCollaborator.okayButton": "OK",
25
+ "groupSharedFeatures.usm.removeCollaborator.title": "Remove Collaborator",
26
+ "groupSharedFeatures.usm.removeCollaboratorErrorNoticeText": "Unable to remove the collaborator. Please try again later.",
27
+ "groupSharedFeatures.usm.removeCollaboratorSuccessNoticeText": "The collaborator has been removed successfully.",
20
28
  "groupSharedFeatures.usm.removeSharedLinkModal.bodyText": "Hiermee wordt de gedeelde link permanent verwijderd. Als dit item is ingesloten op andere sites, zal het daar ook niet meer toegankelijk zijn. Aangepaste eigenschappen, instellingen en vervaldatums worden ook verwijderd. Wilt u doorgaan?",
21
29
  "groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "Annuleren",
22
30
  "groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "Sluiten",
@@ -83,6 +91,7 @@ export default {
83
91
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "Alles beheren",
84
92
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "Naam",
85
93
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "In behandeling",
94
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
86
95
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "Rol",
87
96
  "groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "Editor",
88
97
  "groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "Laden",
@@ -1,7 +1,7 @@
1
1
  # Notification text when the shared link is failed to be created
2
2
  groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText = Kan geen gedeelde link maken. Probeer het later opnieuw.
3
3
  # Error message when more than the maximum number of contacts is entered
4
- groupSharedFeatures.usm.contactsExceedLimitError = Oops! The maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches.
4
+ groupSharedFeatures.usm.contactsExceedLimitError = Oeps! Het maximumaantal medebewerkers dat tegelijkertijd kan worden toegevoegd is {maxContacts}. Probeer het opnieuw door uw uitnodigingen in batches te splitsen.
5
5
  # Notification text when the shared link failed to be created
6
6
  groupSharedFeatures.usm.createSharedLinkErrorNoticeText = Kan geen gedeelde link maken. Probeer het later opnieuw.
7
7
  # Notification text when the shared link is successfully created
@@ -34,6 +34,22 @@ groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage = Wachtw
34
34
  groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage = Wachtwoord moet ten minste 8 tekens bevatten
35
35
  # Error message for the password field when password is not provided
36
36
  groupSharedFeatures.usm.passwordRequiredErrorMessage = Voer een wachtwoord in
37
+ # Body text of the Remove Collaborator modal
38
+ groupSharedFeatures.usm.removeCollaborator.bodyText = Are you sure you want to remove {name} as a collaborator?
39
+ # Button text to cancel removing a collaborator
40
+ groupSharedFeatures.usm.removeCollaborator.cancelButton = Annuleren
41
+ # Aria label for the button to close the Remove Collaborator modal
42
+ groupSharedFeatures.usm.removeCollaborator.closeButton = Sluiten
43
+ # Button aria label when the collaborator is being removed
44
+ groupSharedFeatures.usm.removeCollaborator.loadingLabel = Laden
45
+ # Button text to confirm removing a collaborator
46
+ groupSharedFeatures.usm.removeCollaborator.okayButton = OK
47
+ # Title of the Remove Collaborator modal
48
+ groupSharedFeatures.usm.removeCollaborator.title = Remove Collaborator
49
+ # Notification text when a collaborator failed to be removed
50
+ groupSharedFeatures.usm.removeCollaboratorErrorNoticeText = Unable to remove the collaborator. Please try again later.
51
+ # Notification text when a collaborator is successfully removed
52
+ groupSharedFeatures.usm.removeCollaboratorSuccessNoticeText = The collaborator has been removed successfully.
37
53
  # Body text of the Remove Shared Link modal
38
54
  groupSharedFeatures.usm.removeSharedLinkModal.bodyText = Hiermee wordt de gedeelde link permanent verwijderd. Als dit item is ingesloten op andere sites, zal het daar ook niet meer toegankelijk zijn. Aangepaste eigenschappen, instellingen en vervaldatums worden ook verwijderd. Wilt u doorgaan?
39
55
  # Button text to cancel removing a shared link
@@ -166,6 +182,8 @@ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink =
166
182
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn = Naam
167
183
  # Label for the role of a collaborator who has a pending collaboration invitation
168
184
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole = In behandeling
185
+ # Aria label for the button to remove a collaborator on the item
186
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton = Remove
169
187
  # Label for the column in the collaborators list for the role of the collaborator
170
188
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn = Rol
171
189
  # Label for the role of a collaborator who can edit and delete the item
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Nie można utworzyć łącza udostępnionego. Spróbuj ponownie później.",
3
- "groupSharedFeatures.usm.contactsExceedLimitError": "Oops! The maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches.",
3
+ "groupSharedFeatures.usm.contactsExceedLimitError": "Maksymalna liczba współpracowników, których można dodać jednocześnie, wynosi {maxContacts}. Spróbuj ponownie, dzieląc zaproszenia na pakiety.",
4
4
  "groupSharedFeatures.usm.createSharedLinkErrorNoticeText": "Nie można utworzyć łącza udostępnionego. Spróbuj ponownie później.",
5
5
  "groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "Utworzono łącze udostępnione.",
6
6
  "groupSharedFeatures.usm.defaultErrorNoticeText": "Wystąpił błąd. Spróbuj ponownie później.",
@@ -17,6 +17,14 @@ export default {
17
17
  "groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "Hasło musi zawierać co najmniej jedną wielką literę, cyfrę lub znak specjalny",
18
18
  "groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "Hasło musi zawierać co najmniej 8 znaków",
19
19
  "groupSharedFeatures.usm.passwordRequiredErrorMessage": "Wprowadź hasło",
20
+ "groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
21
+ "groupSharedFeatures.usm.removeCollaborator.cancelButton": "Anuluj",
22
+ "groupSharedFeatures.usm.removeCollaborator.closeButton": "Zamknij",
23
+ "groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Wczytywanie",
24
+ "groupSharedFeatures.usm.removeCollaborator.okayButton": "OK",
25
+ "groupSharedFeatures.usm.removeCollaborator.title": "Remove Collaborator",
26
+ "groupSharedFeatures.usm.removeCollaboratorErrorNoticeText": "Unable to remove the collaborator. Please try again later.",
27
+ "groupSharedFeatures.usm.removeCollaboratorSuccessNoticeText": "The collaborator has been removed successfully.",
20
28
  "groupSharedFeatures.usm.removeSharedLinkModal.bodyText": "Spowoduje to trwałe usunięcie udostępnionego łącza. Jeśli ten element jest osadzony na innych stronach, również stanie się niedostępny. Wszelkie niestandardowe właściwości, ustawienia i wygasania również zostaną usunięte. Czy chcesz kontynuować?",
21
29
  "groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "Anuluj",
22
30
  "groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "Zamknij",
@@ -83,6 +91,7 @@ export default {
83
91
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "Zarządzaj wszystkimi",
84
92
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "Nazwa",
85
93
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "Oczekujący",
94
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
86
95
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "Rola",
87
96
  "groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "Redaktor",
88
97
  "groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "Wczytywanie",
@@ -1,7 +1,7 @@
1
1
  # Notification text when the shared link is failed to be created
2
2
  groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText = Nie można utworzyć łącza udostępnionego. Spróbuj ponownie później.
3
3
  # Error message when more than the maximum number of contacts is entered
4
- groupSharedFeatures.usm.contactsExceedLimitError = Oops! The maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches.
4
+ groupSharedFeatures.usm.contactsExceedLimitError = Maksymalna liczba współpracowników, których można dodać jednocześnie, wynosi {maxContacts}. Spróbuj ponownie, dzieląc zaproszenia na pakiety.
5
5
  # Notification text when the shared link failed to be created
6
6
  groupSharedFeatures.usm.createSharedLinkErrorNoticeText = Nie można utworzyć łącza udostępnionego. Spróbuj ponownie później.
7
7
  # Notification text when the shared link is successfully created
@@ -34,6 +34,22 @@ groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage = Hasło
34
34
  groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage = Hasło musi zawierać co najmniej 8 znaków
35
35
  # Error message for the password field when password is not provided
36
36
  groupSharedFeatures.usm.passwordRequiredErrorMessage = Wprowadź hasło
37
+ # Body text of the Remove Collaborator modal
38
+ groupSharedFeatures.usm.removeCollaborator.bodyText = Are you sure you want to remove {name} as a collaborator?
39
+ # Button text to cancel removing a collaborator
40
+ groupSharedFeatures.usm.removeCollaborator.cancelButton = Anuluj
41
+ # Aria label for the button to close the Remove Collaborator modal
42
+ groupSharedFeatures.usm.removeCollaborator.closeButton = Zamknij
43
+ # Button aria label when the collaborator is being removed
44
+ groupSharedFeatures.usm.removeCollaborator.loadingLabel = Wczytywanie
45
+ # Button text to confirm removing a collaborator
46
+ groupSharedFeatures.usm.removeCollaborator.okayButton = OK
47
+ # Title of the Remove Collaborator modal
48
+ groupSharedFeatures.usm.removeCollaborator.title = Remove Collaborator
49
+ # Notification text when a collaborator failed to be removed
50
+ groupSharedFeatures.usm.removeCollaboratorErrorNoticeText = Unable to remove the collaborator. Please try again later.
51
+ # Notification text when a collaborator is successfully removed
52
+ groupSharedFeatures.usm.removeCollaboratorSuccessNoticeText = The collaborator has been removed successfully.
37
53
  # Body text of the Remove Shared Link modal
38
54
  groupSharedFeatures.usm.removeSharedLinkModal.bodyText = Spowoduje to trwałe usunięcie udostępnionego łącza. Jeśli ten element jest osadzony na innych stronach, również stanie się niedostępny. Wszelkie niestandardowe właściwości, ustawienia i wygasania również zostaną usunięte. Czy chcesz kontynuować?
39
55
  # Button text to cancel removing a shared link
@@ -166,6 +182,8 @@ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink =
166
182
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn = Nazwa
167
183
  # Label for the role of a collaborator who has a pending collaboration invitation
168
184
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole = Oczekujący
185
+ # Aria label for the button to remove a collaborator on the item
186
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton = Remove
169
187
  # Label for the column in the collaborators list for the role of the collaborator
170
188
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn = Rola
171
189
  # Label for the role of a collaborator who can edit and delete the item
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Não é possível criar um link compartilhado. Tente novamente mais tarde.",
3
- "groupSharedFeatures.usm.contactsExceedLimitError": "Oops! The maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches.",
3
+ "groupSharedFeatures.usm.contactsExceedLimitError": "Opa! O número máximo de colaboradores que podem ser adicionados de uma vez é {maxContacts}. Tente novamente dividindo seus convites em lotes.",
4
4
  "groupSharedFeatures.usm.createSharedLinkErrorNoticeText": "Não é possível criar um link compartilhado. Tente novamente mais tarde.",
5
5
  "groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "Link compartilhado criado.",
6
6
  "groupSharedFeatures.usm.defaultErrorNoticeText": "Algo saiu errado. Tente novamente mais tarde.",
@@ -17,6 +17,14 @@ export default {
17
17
  "groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "A senha deve conter pelo menos uma letra maiúscula, um número ou um caractere especial",
18
18
  "groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "A senha deve conter pelo menos oito caracteres",
19
19
  "groupSharedFeatures.usm.passwordRequiredErrorMessage": "Insira uma senha",
20
+ "groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
21
+ "groupSharedFeatures.usm.removeCollaborator.cancelButton": "Cancelar",
22
+ "groupSharedFeatures.usm.removeCollaborator.closeButton": "Fechar",
23
+ "groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Carregando",
24
+ "groupSharedFeatures.usm.removeCollaborator.okayButton": "Ok",
25
+ "groupSharedFeatures.usm.removeCollaborator.title": "Remove Collaborator",
26
+ "groupSharedFeatures.usm.removeCollaboratorErrorNoticeText": "Unable to remove the collaborator. Please try again later.",
27
+ "groupSharedFeatures.usm.removeCollaboratorSuccessNoticeText": "The collaborator has been removed successfully.",
20
28
  "groupSharedFeatures.usm.removeSharedLinkModal.bodyText": "Isso removerá permanentemente o link compartilhado. Se esse item estiver incorporado em outros sites, ele também se tornará inacessível. Quaisquer propriedades, configurações e expirações personalizadas também serão removidas. Você deseja continuar?",
21
29
  "groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "Cancelar",
22
30
  "groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "Fechar",
@@ -83,6 +91,7 @@ export default {
83
91
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "Gerenciar tudo",
84
92
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "Nome",
85
93
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "Pendente",
94
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
86
95
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "Função",
87
96
  "groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "Editor",
88
97
  "groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "Carregando",
@@ -1,7 +1,7 @@
1
1
  # Notification text when the shared link is failed to be created
2
2
  groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText = Não é possível criar um link compartilhado. Tente novamente mais tarde.
3
3
  # Error message when more than the maximum number of contacts is entered
4
- groupSharedFeatures.usm.contactsExceedLimitError = Oops! The maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches.
4
+ groupSharedFeatures.usm.contactsExceedLimitError = Opa! O número máximo de colaboradores que podem ser adicionados de uma vez é {maxContacts}. Tente novamente dividindo seus convites em lotes.
5
5
  # Notification text when the shared link failed to be created
6
6
  groupSharedFeatures.usm.createSharedLinkErrorNoticeText = Não é possível criar um link compartilhado. Tente novamente mais tarde.
7
7
  # Notification text when the shared link is successfully created
@@ -34,6 +34,22 @@ groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage = A senh
34
34
  groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage = A senha deve conter pelo menos oito caracteres
35
35
  # Error message for the password field when password is not provided
36
36
  groupSharedFeatures.usm.passwordRequiredErrorMessage = Insira uma senha
37
+ # Body text of the Remove Collaborator modal
38
+ groupSharedFeatures.usm.removeCollaborator.bodyText = Are you sure you want to remove {name} as a collaborator?
39
+ # Button text to cancel removing a collaborator
40
+ groupSharedFeatures.usm.removeCollaborator.cancelButton = Cancelar
41
+ # Aria label for the button to close the Remove Collaborator modal
42
+ groupSharedFeatures.usm.removeCollaborator.closeButton = Fechar
43
+ # Button aria label when the collaborator is being removed
44
+ groupSharedFeatures.usm.removeCollaborator.loadingLabel = Carregando
45
+ # Button text to confirm removing a collaborator
46
+ groupSharedFeatures.usm.removeCollaborator.okayButton = Ok
47
+ # Title of the Remove Collaborator modal
48
+ groupSharedFeatures.usm.removeCollaborator.title = Remove Collaborator
49
+ # Notification text when a collaborator failed to be removed
50
+ groupSharedFeatures.usm.removeCollaboratorErrorNoticeText = Unable to remove the collaborator. Please try again later.
51
+ # Notification text when a collaborator is successfully removed
52
+ groupSharedFeatures.usm.removeCollaboratorSuccessNoticeText = The collaborator has been removed successfully.
37
53
  # Body text of the Remove Shared Link modal
38
54
  groupSharedFeatures.usm.removeSharedLinkModal.bodyText = Isso removerá permanentemente o link compartilhado. Se esse item estiver incorporado em outros sites, ele também se tornará inacessível. Quaisquer propriedades, configurações e expirações personalizadas também serão removidas. Você deseja continuar?
39
55
  # Button text to cancel removing a shared link
@@ -166,6 +182,8 @@ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink =
166
182
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn = Nome
167
183
  # Label for the role of a collaborator who has a pending collaboration invitation
168
184
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole = Pendente
185
+ # Aria label for the button to remove a collaborator on the item
186
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton = Remove
169
187
  # Label for the column in the collaborators list for the role of the collaborator
170
188
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn = Função
171
189
  # Label for the role of a collaborator who can edit and delete the item
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Не удается создать общую ссылку. Повторите попытку позже.",
3
- "groupSharedFeatures.usm.contactsExceedLimitError": "Oops! The maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches.",
3
+ "groupSharedFeatures.usm.contactsExceedLimitError": "Ошибка. Максимальное количество соавторов, которое можно добавить за один раз: {maxContacts}. Повторите попытку, разделив приглашения на несколько пакетов.",
4
4
  "groupSharedFeatures.usm.createSharedLinkErrorNoticeText": "Не удается создать общую ссылку. Повторите попытку позже.",
5
5
  "groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "Общая ссылка создана.",
6
6
  "groupSharedFeatures.usm.defaultErrorNoticeText": "Что-то пошло не так. Повторите попытку позже.",
@@ -17,6 +17,14 @@ export default {
17
17
  "groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "Пароль должен содержать не менее одной заглавной буквы, цифры или специального символа",
18
18
  "groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "Пароль должен содержать не менее 8 символов",
19
19
  "groupSharedFeatures.usm.passwordRequiredErrorMessage": "Введите пароль",
20
+ "groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
21
+ "groupSharedFeatures.usm.removeCollaborator.cancelButton": "Отмена",
22
+ "groupSharedFeatures.usm.removeCollaborator.closeButton": "Закрыть",
23
+ "groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Загрузка",
24
+ "groupSharedFeatures.usm.removeCollaborator.okayButton": "ОК",
25
+ "groupSharedFeatures.usm.removeCollaborator.title": "Remove Collaborator",
26
+ "groupSharedFeatures.usm.removeCollaboratorErrorNoticeText": "Unable to remove the collaborator. Please try again later.",
27
+ "groupSharedFeatures.usm.removeCollaboratorSuccessNoticeText": "The collaborator has been removed successfully.",
20
28
  "groupSharedFeatures.usm.removeSharedLinkModal.bodyText": "Это приведет к окончательному удалению общей ссылки. Если этот элемент встроен в другие веб-сайты, он также станет недоступным. Любые пользовательские свойства, настройки и сроки действия также будут удалены. Продолжить?",
21
29
  "groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "Отмена",
22
30
  "groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "Закрыть",
@@ -83,6 +91,7 @@ export default {
83
91
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "Управление всеми",
84
92
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "Название",
85
93
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "Ожидает",
94
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
86
95
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "Роль",
87
96
  "groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "Редактор",
88
97
  "groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "Загрузка",
@@ -1,7 +1,7 @@
1
1
  # Notification text when the shared link is failed to be created
2
2
  groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText = Не удается создать общую ссылку. Повторите попытку позже.
3
3
  # Error message when more than the maximum number of contacts is entered
4
- groupSharedFeatures.usm.contactsExceedLimitError = Oops! The maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches.
4
+ groupSharedFeatures.usm.contactsExceedLimitError = Ошибка. Максимальное количество соавторов, которое можно добавить за один раз: {maxContacts}. Повторите попытку, разделив приглашения на несколько пакетов.
5
5
  # Notification text when the shared link failed to be created
6
6
  groupSharedFeatures.usm.createSharedLinkErrorNoticeText = Не удается создать общую ссылку. Повторите попытку позже.
7
7
  # Notification text when the shared link is successfully created
@@ -34,6 +34,22 @@ groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage = Пар
34
34
  groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage = Пароль должен содержать не менее 8 символов
35
35
  # Error message for the password field when password is not provided
36
36
  groupSharedFeatures.usm.passwordRequiredErrorMessage = Введите пароль
37
+ # Body text of the Remove Collaborator modal
38
+ groupSharedFeatures.usm.removeCollaborator.bodyText = Are you sure you want to remove {name} as a collaborator?
39
+ # Button text to cancel removing a collaborator
40
+ groupSharedFeatures.usm.removeCollaborator.cancelButton = Отмена
41
+ # Aria label for the button to close the Remove Collaborator modal
42
+ groupSharedFeatures.usm.removeCollaborator.closeButton = Закрыть
43
+ # Button aria label when the collaborator is being removed
44
+ groupSharedFeatures.usm.removeCollaborator.loadingLabel = Загрузка
45
+ # Button text to confirm removing a collaborator
46
+ groupSharedFeatures.usm.removeCollaborator.okayButton = ОК
47
+ # Title of the Remove Collaborator modal
48
+ groupSharedFeatures.usm.removeCollaborator.title = Remove Collaborator
49
+ # Notification text when a collaborator failed to be removed
50
+ groupSharedFeatures.usm.removeCollaboratorErrorNoticeText = Unable to remove the collaborator. Please try again later.
51
+ # Notification text when a collaborator is successfully removed
52
+ groupSharedFeatures.usm.removeCollaboratorSuccessNoticeText = The collaborator has been removed successfully.
37
53
  # Body text of the Remove Shared Link modal
38
54
  groupSharedFeatures.usm.removeSharedLinkModal.bodyText = Это приведет к окончательному удалению общей ссылки. Если этот элемент встроен в другие веб-сайты, он также станет недоступным. Любые пользовательские свойства, настройки и сроки действия также будут удалены. Продолжить?
39
55
  # Button text to cancel removing a shared link
@@ -166,6 +182,8 @@ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink =
166
182
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn = Название
167
183
  # Label for the role of a collaborator who has a pending collaboration invitation
168
184
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole = Ожидает
185
+ # Aria label for the button to remove a collaborator on the item
186
+ groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton = Remove
169
187
  # Label for the column in the collaborators list for the role of the collaborator
170
188
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn = Роль
171
189
  # Label for the role of a collaborator who can edit and delete the item
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Kunde inte skapa en delad länk. Försök igen senare.",
3
- "groupSharedFeatures.usm.contactsExceedLimitError": "Oops! The maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches.",
3
+ "groupSharedFeatures.usm.contactsExceedLimitError": "Hoppsan! Det högsta antalet medarbetare som kan läggas till en gång är {maxContacts} medarbetare. Försök igen genom att dela upp dina inbjudningar i batcher.",
4
4
  "groupSharedFeatures.usm.createSharedLinkErrorNoticeText": "Kunde inte skapa en delad länk. Försök igen senare.",
5
5
  "groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "Delad länk skapad.",
6
6
  "groupSharedFeatures.usm.defaultErrorNoticeText": "Något gick fel. Försök igen senare.",
@@ -17,6 +17,14 @@ export default {
17
17
  "groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "Lösenordet måste innehålla minst en stor bokstav, en siffra eller ett specialtecken",
18
18
  "groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "Lösenordet måste innehålla minst 8 tecken",
19
19
  "groupSharedFeatures.usm.passwordRequiredErrorMessage": "Ange ett lösenord",
20
+ "groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
21
+ "groupSharedFeatures.usm.removeCollaborator.cancelButton": "Avbryt",
22
+ "groupSharedFeatures.usm.removeCollaborator.closeButton": "Stäng",
23
+ "groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Läser in",
24
+ "groupSharedFeatures.usm.removeCollaborator.okayButton": "Okej",
25
+ "groupSharedFeatures.usm.removeCollaborator.title": "Remove Collaborator",
26
+ "groupSharedFeatures.usm.removeCollaboratorErrorNoticeText": "Unable to remove the collaborator. Please try again later.",
27
+ "groupSharedFeatures.usm.removeCollaboratorSuccessNoticeText": "The collaborator has been removed successfully.",
20
28
  "groupSharedFeatures.usm.removeSharedLinkModal.bodyText": "Detta kommer att ta bort den delade länken permanent. Om det här objektet är inbäddat på andra webbplatser kommer det också att bli otillgängligt. Eventuella anpassade egenskaper, inställningar och utgångsdatum kommer också att tas bort. Vill du fortsätta?",
21
29
  "groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "Avbryt",
22
30
  "groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "Stäng",
@@ -83,6 +91,7 @@ export default {
83
91
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "Hantera alla",
84
92
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "Namn",
85
93
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "Väntande",
94
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
86
95
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "Roll",
87
96
  "groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "Redigerare",
88
97
  "groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "Läser in",