@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,7 +1,7 @@
1
1
  # Notification text when the shared link is failed to be created
2
2
  groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText = No se puede crear un enlace compartido. Inténtelo más 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 = Vaya, solo se pueden agregar {maxContacts} colaboradores como máximo de una vez. Divida las invitaciones en lotes e inténtelo de nuevo.
5
5
  # Notification text when the shared link failed to be created
6
6
  groupSharedFeatures.usm.createSharedLinkErrorNoticeText = No se puede crear un enlace compartido. Inténtelo más tarde.
7
7
  # Notification text when the shared link is successfully created
@@ -34,6 +34,22 @@ groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage = La con
34
34
  groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage = La contraseña debe contener al menos 8 caracteres
35
35
  # Error message for the password field when password is not provided
36
36
  groupSharedFeatures.usm.passwordRequiredErrorMessage = Introduzca una contraseña
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 = Anular
41
+ # Aria label for the button to close the Remove Collaborator modal
42
+ groupSharedFeatures.usm.removeCollaborator.closeButton = Cerrar
43
+ # Button aria label when the collaborator is being removed
44
+ groupSharedFeatures.usm.removeCollaborator.loadingLabel = Cargando
45
+ # Button text to confirm removing a collaborator
46
+ groupSharedFeatures.usm.removeCollaborator.okayButton = Aceptar
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 = Esto eliminará permanentemente el enlace compartido. Si este elemento está incrustado en otros sitios, también se volverá inaccesible. Cualquier propiedad personalizada, configuración y caducidad también se eliminará. ¿Desea 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 = Nombre
167
183
  # Label for the role of a collaborator who has a pending collaboration invitation
168
184
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole = Pendiente
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": "Jaettua linkkiä ei voi luoda. Yritä myöhemmin uudelleen.",
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": "Virhe! Voit kerrallaan lisätä enintään {maxContacts} yhteistyökumppania. Yritä uudelleen lähettämällä kutsut erissä.",
4
4
  "groupSharedFeatures.usm.createSharedLinkErrorNoticeText": "Jaettua linkkiä ei voi luoda. Yritä myöhemmin uudelleen.",
5
5
  "groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "Jaettu linkki luotu.",
6
6
  "groupSharedFeatures.usm.defaultErrorNoticeText": "Jokin meni vikaan. Yritä myöhemmin uudelleen.",
@@ -17,6 +17,14 @@ export default {
17
17
  "groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "Salasanassa on oltava vähintään yksi iso kirjain, numero tai erikoismerkki",
18
18
  "groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "Salasanassa on oltava vähintään 8 merkkiä",
19
19
  "groupSharedFeatures.usm.passwordRequiredErrorMessage": "Anna salasana",
20
+ "groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
21
+ "groupSharedFeatures.usm.removeCollaborator.cancelButton": "Peruuta",
22
+ "groupSharedFeatures.usm.removeCollaborator.closeButton": "Sulje",
23
+ "groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Ladataan",
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": "Tämä poistaa jaetun linkin pysyvästi. Jos tämä kohde on upotettu muihin sivustoihin, siitä tulee myös käyttökelvoton. Myös kaikki mukautetut ominaisuudet, asetukset ja vanhentumisajat poistetaan. Haluatko jatkaa?",
21
29
  "groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "Peruuta",
22
30
  "groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "Sulje",
@@ -83,6 +91,7 @@ export default {
83
91
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "Hallitse kaikkia",
84
92
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "Nimi",
85
93
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "Odottaa",
94
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
86
95
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "Rooli",
87
96
  "groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "Muokkaaja",
88
97
  "groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "Ladataan",
@@ -1,7 +1,7 @@
1
1
  # Notification text when the shared link is failed to be created
2
2
  groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText = Jaettua linkkiä ei voi luoda. Yritä myöhemmin uudelleen.
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 = Virhe! Voit kerrallaan lisätä enintään {maxContacts} yhteistyökumppania. Yritä uudelleen lähettämällä kutsut erissä.
5
5
  # Notification text when the shared link failed to be created
6
6
  groupSharedFeatures.usm.createSharedLinkErrorNoticeText = Jaettua linkkiä ei voi luoda. Yritä myöhemmin uudelleen.
7
7
  # Notification text when the shared link is successfully created
@@ -34,6 +34,22 @@ groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage = Salasa
34
34
  groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage = Salasanassa on oltava vähintään 8 merkkiä
35
35
  # Error message for the password field when password is not provided
36
36
  groupSharedFeatures.usm.passwordRequiredErrorMessage = Anna salasana
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 = Peruuta
41
+ # Aria label for the button to close the Remove Collaborator modal
42
+ groupSharedFeatures.usm.removeCollaborator.closeButton = Sulje
43
+ # Button aria label when the collaborator is being removed
44
+ groupSharedFeatures.usm.removeCollaborator.loadingLabel = Ladataan
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 = Tämä poistaa jaetun linkin pysyvästi. Jos tämä kohde on upotettu muihin sivustoihin, siitä tulee myös käyttökelvoton. Myös kaikki mukautetut ominaisuudet, asetukset ja vanhentumisajat poistetaan. Haluatko jatkaa?
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 = Nimi
167
183
  # Label for the role of a collaborator who has a pending collaboration invitation
168
184
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole = Odottaa
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 = Rooli
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": "Impossible de créer un lien partagé. Veuillez réessayer ultérieurement.",
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": "Oups ! Le nombre maximal de collaborateurs pouvant être ajoutés en même temps est de {maxContacts} collaborateurs. Veuillez réessayer en divisant vos invitations en plusieurs lots.",
4
4
  "groupSharedFeatures.usm.createSharedLinkErrorNoticeText": "Impossible de créer un lien partagé. Veuillez réessayer ultérieurement.",
5
5
  "groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "Lien partagé créé.",
6
6
  "groupSharedFeatures.usm.defaultErrorNoticeText": "Une erreur est survenue. Veuillez réessayer ultérieurement .",
@@ -17,6 +17,14 @@ export default {
17
17
  "groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "Le mot de passe doit contenir au moins une lettre majuscule, un chiffre ou un caractère spécial",
18
18
  "groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "Le mot de passe doit contenir au moins huit caractères",
19
19
  "groupSharedFeatures.usm.passwordRequiredErrorMessage": "Veuillez saisir un mot de passe",
20
+ "groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
21
+ "groupSharedFeatures.usm.removeCollaborator.cancelButton": "Annuler",
22
+ "groupSharedFeatures.usm.removeCollaborator.closeButton": "Fermer",
23
+ "groupSharedFeatures.usm.removeCollaborator.loadingLabel": "En cours de chargement",
24
+ "groupSharedFeatures.usm.removeCollaborator.okayButton": "D'accord",
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": "Cela supprimera définitivement le lien partagé. Si cet élément est intégré sur d'autres sites, il deviendra également inaccessible. Toutes les propriétés personnalisées, paramètres et expirations seront également supprimés. Souhaitez-vous continuer ?",
21
29
  "groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "Annuler",
22
30
  "groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "Fermer",
@@ -83,6 +91,7 @@ export default {
83
91
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "Gérer tous les collaborateurs",
84
92
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "Nom",
85
93
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "En attente",
94
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
86
95
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "Rôle",
87
96
  "groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "Éditeur",
88
97
  "groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "En cours de chargement",
@@ -1,7 +1,7 @@
1
1
  # Notification text when the shared link is failed to be created
2
2
  groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText = Impossible de créer un lien partagé. Veuillez réessayer ultérieurement.
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 = Oups ! Le nombre maximal de collaborateurs pouvant être ajoutés en même temps est de {maxContacts} collaborateurs. Veuillez réessayer en divisant vos invitations en plusieurs lots.
5
5
  # Notification text when the shared link failed to be created
6
6
  groupSharedFeatures.usm.createSharedLinkErrorNoticeText = Impossible de créer un lien partagé. Veuillez réessayer ultérieurement.
7
7
  # Notification text when the shared link is successfully created
@@ -34,6 +34,22 @@ groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage = Le mot
34
34
  groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage = Le mot de passe doit contenir au moins huit caractères
35
35
  # Error message for the password field when password is not provided
36
36
  groupSharedFeatures.usm.passwordRequiredErrorMessage = Veuillez saisir un mot de passe
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 = Annuler
41
+ # Aria label for the button to close the Remove Collaborator modal
42
+ groupSharedFeatures.usm.removeCollaborator.closeButton = Fermer
43
+ # Button aria label when the collaborator is being removed
44
+ groupSharedFeatures.usm.removeCollaborator.loadingLabel = En cours de chargement
45
+ # Button text to confirm removing a collaborator
46
+ groupSharedFeatures.usm.removeCollaborator.okayButton = D'accord
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 = Cela supprimera définitivement le lien partagé. Si cet élément est intégré sur d'autres sites, il deviendra également inaccessible. Toutes les propriétés personnalisées, paramètres et expirations seront également supprimés. Souhaitez-vous continuer ?
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 = Nom
167
183
  # Label for the role of a collaborator who has a pending collaboration invitation
168
184
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole = En attente
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 = Rôle
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": "Impossible de créer un lien partagé. Veuillez réessayer ultérieurement.",
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": "Oups ! Le nombre maximal de collaborateurs pouvant être ajoutés en même temps est de {maxContacts} collaborateurs. Veuillez réessayer en divisant vos invitations en plusieurs lots.",
4
4
  "groupSharedFeatures.usm.createSharedLinkErrorNoticeText": "Impossible de créer un lien partagé. Veuillez réessayer ultérieurement.",
5
5
  "groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "Lien partagé créé.",
6
6
  "groupSharedFeatures.usm.defaultErrorNoticeText": "Une erreur est survenue. Veuillez réessayer ultérieurement .",
@@ -17,6 +17,14 @@ export default {
17
17
  "groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "Le mot de passe doit contenir au moins une lettre majuscule, un chiffre ou un caractère spécial",
18
18
  "groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "Le mot de passe doit contenir au moins huit caractères",
19
19
  "groupSharedFeatures.usm.passwordRequiredErrorMessage": "Veuillez saisir un mot de passe",
20
+ "groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
21
+ "groupSharedFeatures.usm.removeCollaborator.cancelButton": "Annuler",
22
+ "groupSharedFeatures.usm.removeCollaborator.closeButton": "Fermer",
23
+ "groupSharedFeatures.usm.removeCollaborator.loadingLabel": "En cours de chargement",
24
+ "groupSharedFeatures.usm.removeCollaborator.okayButton": "D'accord",
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": "Cela supprimera définitivement le lien partagé. Si cet élément est intégré sur d'autres sites, il deviendra également inaccessible. Toutes les propriétés personnalisées, paramètres et expirations seront également supprimés. Souhaitez-vous continuer ?",
21
29
  "groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "Annuler",
22
30
  "groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "Fermer",
@@ -83,6 +91,7 @@ export default {
83
91
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "Gérer tous les collaborateurs",
84
92
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "Nom",
85
93
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "En attente",
94
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
86
95
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "Rôle",
87
96
  "groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "Éditeur",
88
97
  "groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "En cours de chargement",
@@ -1,7 +1,7 @@
1
1
  # Notification text when the shared link is failed to be created
2
2
  groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText = Impossible de créer un lien partagé. Veuillez réessayer ultérieurement.
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 = Oups ! Le nombre maximal de collaborateurs pouvant être ajoutés en même temps est de {maxContacts} collaborateurs. Veuillez réessayer en divisant vos invitations en plusieurs lots.
5
5
  # Notification text when the shared link failed to be created
6
6
  groupSharedFeatures.usm.createSharedLinkErrorNoticeText = Impossible de créer un lien partagé. Veuillez réessayer ultérieurement.
7
7
  # Notification text when the shared link is successfully created
@@ -34,6 +34,22 @@ groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage = Le mot
34
34
  groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage = Le mot de passe doit contenir au moins huit caractères
35
35
  # Error message for the password field when password is not provided
36
36
  groupSharedFeatures.usm.passwordRequiredErrorMessage = Veuillez saisir un mot de passe
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 = Annuler
41
+ # Aria label for the button to close the Remove Collaborator modal
42
+ groupSharedFeatures.usm.removeCollaborator.closeButton = Fermer
43
+ # Button aria label when the collaborator is being removed
44
+ groupSharedFeatures.usm.removeCollaborator.loadingLabel = En cours de chargement
45
+ # Button text to confirm removing a collaborator
46
+ groupSharedFeatures.usm.removeCollaborator.okayButton = D'accord
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 = Cela supprimera définitivement le lien partagé. Si cet élément est intégré sur d'autres sites, il deviendra également inaccessible. Toutes les propriétés personnalisées, paramètres et expirations seront également supprimés. Souhaitez-vous continuer ?
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 = Nom
167
183
  # Label for the role of a collaborator who has a pending collaboration invitation
168
184
  groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole = En attente
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 = Rôle
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": "Impossibile creare un collegamento condiviso. Riprova più tardi.",
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": "Errore. È possibile aggiungere al massimo {maxContacts} collaboratori contemporaneamente. Riprova dividendo gli inviti in gruppi.",
4
4
  "groupSharedFeatures.usm.createSharedLinkErrorNoticeText": "Impossibile creare un collegamento condiviso. Riprova più tardi.",
5
5
  "groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "Collegamento condiviso creato.",
6
6
  "groupSharedFeatures.usm.defaultErrorNoticeText": "Si è verificato un errore. Riprova più tardi.",
@@ -17,6 +17,14 @@ export default {
17
17
  "groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "La password deve contenere almeno una lettera maiuscola, un numero o un carattere speciale",
18
18
  "groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "La password deve contenere almeno 8 caratteri",
19
19
  "groupSharedFeatures.usm.passwordRequiredErrorMessage": "Inserisci una password",
20
+ "groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
21
+ "groupSharedFeatures.usm.removeCollaborator.cancelButton": "Annulla",
22
+ "groupSharedFeatures.usm.removeCollaborator.closeButton": "Chiudi",
23
+ "groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Caricamento in corso",
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": "Questo rimuoverà in modo permanente il collegamento condiviso. Se questo elemento è incorporato su altri siti, diventerà anche inaccessibile. Anche tutte le proprietà personalizzate, le impostazioni e le scadenze verranno rimosse. Vuoi continuare?",
21
29
  "groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "Annulla",
22
30
  "groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "Chiudi",
@@ -83,6 +91,7 @@ export default {
83
91
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "Gestisci tutti",
84
92
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "Nome",
85
93
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "In sospeso",
94
+ "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
86
95
  "groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "Ruolo",
87
96
  "groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "Editor",
88
97
  "groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "Caricamento in corso",
@@ -1,7 +1,7 @@
1
1
  # Notification text when the shared link is failed to be created
2
2
  groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText = Impossibile creare un collegamento condiviso. Riprova più tardi.
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 = Errore. È possibile aggiungere al massimo {maxContacts} collaboratori contemporaneamente. Riprova dividendo gli inviti in gruppi.
5
5
  # Notification text when the shared link failed to be created
6
6
  groupSharedFeatures.usm.createSharedLinkErrorNoticeText = Impossibile creare un collegamento condiviso. Riprova più tardi.
7
7
  # Notification text when the shared link is successfully created
@@ -34,6 +34,22 @@ groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage = La pas
34
34
  groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage = La password deve contenere almeno 8 caratteri
35
35
  # Error message for the password field when password is not provided
36
36
  groupSharedFeatures.usm.passwordRequiredErrorMessage = Inserisci una password
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 = Annulla
41
+ # Aria label for the button to close the Remove Collaborator modal
42
+ groupSharedFeatures.usm.removeCollaborator.closeButton = Chiudi
43
+ # Button aria label when the collaborator is being removed
44
+ groupSharedFeatures.usm.removeCollaborator.loadingLabel = Caricamento in corso
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 = Questo rimuoverà in modo permanente il collegamento condiviso. Se questo elemento è incorporato su altri siti, diventerà anche inaccessibile. Anche tutte le proprietà personalizzate, le impostazioni e le scadenze verranno rimosse. Vuoi continuare?
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 = In sospeso
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 = Ruolo
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": "パスワードには大文字、数字、または特殊文字を1つ以上使用する必要があります",
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": "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": "これにより、共有リンクが完全に削除されます。この項目が他のサイトに埋め込まれている場合は、そのサイトでもアクセスできなくなります。カスタムプロパティ、設定、有効期限も削除されます。続行しますか?",
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 = 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 = これにより、共有リンクが完全に削除されます。この項目が他のサイトに埋め込まれている場合は、そのサイトでもアクセスできなくなります。カスタムプロパティ、設定、有効期限も削除されます。続行しますか?
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
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.usm.removeCollaborator.title","description":"Title of the Remove Collaborator modal","defaultMessage":"Remove Collaborator"},{"id":"groupSharedFeatures.usm.removeCollaborator.bodyText","description":"Body text of the Remove Collaborator modal","defaultMessage":"Are you sure you want to remove {name} as a collaborator?"},{"id":"groupSharedFeatures.usm.removeCollaborator.cancelButton","description":"Button text to cancel removing a collaborator","defaultMessage":"Cancel"},{"id":"groupSharedFeatures.usm.removeCollaborator.closeButton","description":"Aria label for the button to close the Remove Collaborator modal","defaultMessage":"Close"},{"id":"groupSharedFeatures.usm.removeCollaborator.loadingLabel","description":"Button aria label when the collaborator is being removed","defaultMessage":"Loading"},{"id":"groupSharedFeatures.usm.removeCollaborator.okayButton","description":"Button text to confirm removing a collaborator","defaultMessage":"Okay"}]
@@ -1 +1 @@
1
- [{"id":"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.closeButton","description":"Aria label for the button to close the Unified Share Modal","defaultMessage":"Close"},{"id":"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.doneButton","description":"Button text to exit the view of collaborators shared with on the item","defaultMessage":"Done"},{"id":"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink","description":"Link text to open the page to view and manage the full list of collaborators","defaultMessage":"Manage All"},{"id":"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.listLabel","description":"Aria label for the list of collaborators shared with on the item","defaultMessage":"Collaborators"},{"id":"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn","description":"Label for the column in the collaborators list for the name of the collaborator","defaultMessage":"Name"},{"id":"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn","description":"Label for the column in the collaborators list for the role of the collaborator","defaultMessage":"Role"},{"id":"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.expiresBadge","description":"Label for the badge on the avatar of a collaborator who will lose access to the item","defaultMessage":"Access expires on {date}"},{"id":"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole","description":"Label for the role of a collaborator who has a pending collaboration invitation","defaultMessage":"Pending"}]
1
+ [{"id":"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.closeButton","description":"Aria label for the button to close the Unified Share Modal","defaultMessage":"Close"},{"id":"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.doneButton","description":"Button text to exit the view of collaborators shared with on the item","defaultMessage":"Done"},{"id":"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink","description":"Link text to open the page to view and manage the full list of collaborators","defaultMessage":"Manage All"},{"id":"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.listLabel","description":"Aria label for the list of collaborators shared with on the item","defaultMessage":"Collaborators"},{"id":"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn","description":"Label for the column in the collaborators list for the name of the collaborator","defaultMessage":"Name"},{"id":"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn","description":"Label for the column in the collaborators list for the role of the collaborator","defaultMessage":"Role"},{"id":"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.expiresBadge","description":"Label for the badge on the avatar of a collaborator who will lose access to the item","defaultMessage":"Access expires on {date}"},{"id":"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole","description":"Label for the role of a collaborator who has a pending collaboration invitation","defaultMessage":"Pending"},{"id":"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton","description":"Aria label for the button to remove a collaborator on the item","defaultMessage":"Remove"}]
@@ -1 +1 @@
1
- [{"id":"groupSharedFeatures.usm.contactsExceedLimitError","description":"Error message when more than the maximum number of contacts is entered","defaultMessage":"Oops! The maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches."},{"id":"groupSharedFeatures.usm.noticeCloseLabel","description":"Close button aria label for the notifications","defaultMessage":"Close"},{"id":"groupSharedFeatures.usm.successNoticeIcon","description":"Icon label for the success notifications","defaultMessage":"Success"},{"id":"groupSharedFeatures.usm.errorNoticeIcon","description":"Icon label for the error notifications","defaultMessage":"Error"},{"id":"groupSharedFeatures.usm.defaultErrorNoticeText","description":"Default error notification text rendered when API fails","defaultMessage":"Something went wrong. Please try again later."},{"id":"groupSharedFeatures.usm.deleteSharedLinkSuccessNoticeText","description":"Notification text when the shared link is successfully removed","defaultMessage":"The shared link for “{itemName}” has been removed successfully."},{"id":"groupSharedFeatures.usm.deleteSharedLinkErrorNoticeText","description":"Notification text when the shared link failed to be removed","defaultMessage":"Unable to remove the shared link. Please try again later."},{"id":"groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText","description":"Notification text when the shared link settings are successfully saved","defaultMessage":"The shared link settings were saved successfully."},{"id":"groupSharedFeatures.usm.createSharedLinkSuccessNoticeText","description":"Notification text when the shared link is successfully created","defaultMessage":"Shared link created."},{"id":"groupSharedFeatures.usm.createSharedLinkErrorNoticeText","description":"Notification text when the shared link failed to be created","defaultMessage":"Unable to create a shared link. Please try again later."},{"id":"groupSharedFeatures.usm.emailSharedLinkSuccessNoticeText","description":"Notification text when the shared link was sent successfully","defaultMessage":"The shared link for “{itemName}” was sent successfully."},{"id":"groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText","description":"Notification text when the shared link is failed to be created","defaultMessage":"Unable to create a shared link. Please try again later."},{"id":"groupSharedFeatures.usm.vanityNameInvalidErrorMessage","description":"Text for the vanity name invalid error","defaultMessage":"Custom URLs must be between 12-30 characters, and can include letters, numbers, and hyphens"},{"id":"groupSharedFeatures.usm.vanityNameRequiredErrorMessage","description":"Error message for the vanity name field when custom URL is not provided","defaultMessage":"Please enter a custom URL"},{"id":"groupSharedFeatures.usm.expirationRequiredErrorMessage","description":"Error message for the expiration date field when expiration date is not provided","defaultMessage":"Please select an expiration date"},{"id":"groupSharedFeatures.usm.expirationFutureDateErrorMessage","description":"Error message for the expiration date field when expiration date is in the past","defaultMessage":"Expiration date must be in the future"},{"id":"groupSharedFeatures.usm.invalidEmailErrorMessage","description":"Error message for the email field when email is invalid","defaultMessage":"Invalid email address"},{"id":"groupSharedFeatures.usm.emailRequiredErrorMessage","description":"Error message for the email field when email is not provided","defaultMessage":"Enter at least one valid email"},{"id":"groupSharedFeatures.usm.passwordRequiredErrorMessage","description":"Error message for the password field when password is not provided","defaultMessage":"Please enter a password"},{"id":"groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage","description":"Error message for the password field when password does not contain at least 8 characters.","defaultMessage":"Password must contain at least 8 characters"},{"id":"groupSharedFeatures.usm.passwordContainInvalidCharacterErrorMessage","description":"Error message for the password field when password contains forbidden characters.","defaultMessage":"Password cannot contain a space, \"<\" or \">\""},{"id":"groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage","description":"Error message for the password field when password does not contain at least one letter, number, or symbol","defaultMessage":"Password must contain at least one upper case letter, number, or special character"}]
1
+ [{"id":"groupSharedFeatures.usm.contactsExceedLimitError","description":"Error message when more than the maximum number of contacts is entered","defaultMessage":"Oops! The maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches."},{"id":"groupSharedFeatures.usm.noticeCloseLabel","description":"Close button aria label for the notifications","defaultMessage":"Close"},{"id":"groupSharedFeatures.usm.successNoticeIcon","description":"Icon label for the success notifications","defaultMessage":"Success"},{"id":"groupSharedFeatures.usm.errorNoticeIcon","description":"Icon label for the error notifications","defaultMessage":"Error"},{"id":"groupSharedFeatures.usm.defaultErrorNoticeText","description":"Default error notification text rendered when API fails","defaultMessage":"Something went wrong. Please try again later."},{"id":"groupSharedFeatures.usm.removeCollaboratorSuccessNoticeText","description":"Notification text when a collaborator is successfully removed","defaultMessage":"The collaborator has been removed successfully."},{"id":"groupSharedFeatures.usm.removeCollaboratorErrorNoticeText","description":"Notification text when a collaborator failed to be removed","defaultMessage":"Unable to remove the collaborator. Please try again later."},{"id":"groupSharedFeatures.usm.deleteSharedLinkSuccessNoticeText","description":"Notification text when the shared link is successfully removed","defaultMessage":"The shared link for “{itemName}” has been removed successfully."},{"id":"groupSharedFeatures.usm.deleteSharedLinkErrorNoticeText","description":"Notification text when the shared link failed to be removed","defaultMessage":"Unable to remove the shared link. Please try again later."},{"id":"groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText","description":"Notification text when the shared link settings are successfully saved","defaultMessage":"The shared link settings were saved successfully."},{"id":"groupSharedFeatures.usm.createSharedLinkSuccessNoticeText","description":"Notification text when the shared link is successfully created","defaultMessage":"Shared link created."},{"id":"groupSharedFeatures.usm.createSharedLinkErrorNoticeText","description":"Notification text when the shared link failed to be created","defaultMessage":"Unable to create a shared link. Please try again later."},{"id":"groupSharedFeatures.usm.emailSharedLinkSuccessNoticeText","description":"Notification text when the shared link was sent successfully","defaultMessage":"The shared link for “{itemName}” was sent successfully."},{"id":"groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText","description":"Notification text when the shared link is failed to be created","defaultMessage":"Unable to create a shared link. Please try again later."},{"id":"groupSharedFeatures.usm.vanityNameInvalidErrorMessage","description":"Text for the vanity name invalid error","defaultMessage":"Custom URLs must be between 12-30 characters, and can include letters, numbers, and hyphens"},{"id":"groupSharedFeatures.usm.vanityNameRequiredErrorMessage","description":"Error message for the vanity name field when custom URL is not provided","defaultMessage":"Please enter a custom URL"},{"id":"groupSharedFeatures.usm.expirationRequiredErrorMessage","description":"Error message for the expiration date field when expiration date is not provided","defaultMessage":"Please select an expiration date"},{"id":"groupSharedFeatures.usm.expirationFutureDateErrorMessage","description":"Error message for the expiration date field when expiration date is in the past","defaultMessage":"Expiration date must be in the future"},{"id":"groupSharedFeatures.usm.invalidEmailErrorMessage","description":"Error message for the email field when email is invalid","defaultMessage":"Invalid email address"},{"id":"groupSharedFeatures.usm.emailRequiredErrorMessage","description":"Error message for the email field when email is not provided","defaultMessage":"Enter at least one valid email"},{"id":"groupSharedFeatures.usm.passwordRequiredErrorMessage","description":"Error message for the password field when password is not provided","defaultMessage":"Please enter a password"},{"id":"groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage","description":"Error message for the password field when password does not contain at least 8 characters.","defaultMessage":"Password must contain at least 8 characters"},{"id":"groupSharedFeatures.usm.passwordContainInvalidCharacterErrorMessage","description":"Error message for the password field when password contains forbidden characters.","defaultMessage":"Password cannot contain a space, \"<\" or \">\""},{"id":"groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage","description":"Error message for the password field when password does not contain at least one letter, number, or symbol","defaultMessage":"Password must contain at least one upper case letter, number, or special character"}]