@box/unified-share-modal 2.6.7 → 2.6.8

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 (47) hide show
  1. package/dist/esm/lib/components/remove-collaborator-modal/remove-collaborator-modal.js +3 -2
  2. package/dist/esm/lib/components/remove-shared-link-modal/remove-shared-link-modal.js +3 -2
  3. package/dist/esm/lib/components/shared-link-settings-modal/shared-link-settings-modal.js +3 -2
  4. package/dist/esm/lib/components/unified-share-form-modal/collaboration-section/collaboration-section.js +3 -2
  5. package/dist/esm/lib/components/unified-share-form-modal/collaborator-list/collaborator-list.js +7 -6
  6. package/dist/esm/lib/components/unified-share-form-modal/shared-link-section/shared-link-section.js +105 -112
  7. package/dist/esm/lib/components/unified-share-form-modal/unified-share-form-modal.js +3 -2
  8. package/dist/esm/lib/constants.js +1 -1
  9. package/dist/esm/lib/contexts/unified-share-form-context.js +27 -25
  10. package/dist/esm/lib/hooks/use-sharing-action.js +45 -56
  11. package/dist/esm/lib/messages.js +0 -4
  12. package/dist/esm/lib/utils/index.js +25 -22
  13. package/dist/esm/lib/utils/notification.js +17 -0
  14. package/dist/i18n/bn-IN.js +2 -2
  15. package/dist/i18n/da-DK.js +2 -2
  16. package/dist/i18n/de-DE.js +2 -2
  17. package/dist/i18n/en-AU.js +2 -2
  18. package/dist/i18n/en-CA.js +2 -2
  19. package/dist/i18n/en-GB.js +2 -2
  20. package/dist/i18n/en-US.js +0 -1
  21. package/dist/i18n/en-US.properties +0 -2
  22. package/dist/i18n/en-x-pseudo.js +2 -2
  23. package/dist/i18n/es-419.js +2 -2
  24. package/dist/i18n/es-ES.js +2 -2
  25. package/dist/i18n/fi-FI.js +2 -2
  26. package/dist/i18n/fr-CA.js +2 -2
  27. package/dist/i18n/fr-FR.js +2 -2
  28. package/dist/i18n/hi-IN.js +2 -2
  29. package/dist/i18n/it-IT.js +2 -2
  30. package/dist/i18n/ja-JP.js +2 -2
  31. package/dist/i18n/json/src/lib/messages.json +1 -1
  32. package/dist/i18n/ko-KR.js +2 -2
  33. package/dist/i18n/nb-NO.js +2 -2
  34. package/dist/i18n/nl-NL.js +2 -2
  35. package/dist/i18n/pl-PL.js +2 -2
  36. package/dist/i18n/pt-BR.js +2 -2
  37. package/dist/i18n/ru-RU.js +2 -2
  38. package/dist/i18n/sv-SE.js +2 -2
  39. package/dist/i18n/tr-TR.js +2 -2
  40. package/dist/i18n/zh-CN.js +2 -2
  41. package/dist/i18n/zh-TW.js +2 -2
  42. package/dist/types/lib/contexts/unified-share-form-context.d.ts +2 -0
  43. package/dist/types/lib/messages.d.ts +0 -5
  44. package/dist/types/lib/types.d.ts +1 -1
  45. package/dist/types/lib/utils/index.d.ts +1 -0
  46. package/dist/types/lib/utils/notification.d.ts +9 -0
  47. package/package.json +1 -1
@@ -1,31 +1,34 @@
1
- import { getAvatarBadgeSize as a, getDefaultCollaborationRole as t, getFirstInitial as r, isCollaboratorRestricted as s, isCollaboratorRoleSupported as i, isInvitationRoleSupported as d } from "./collaborator.js";
2
- import { formatDateFromTimestampToCalendarDate as n, formatDateFromTimestampToDateString as m, formatTomorrowDateToCalendarDate as p } from "./date.js";
3
- import { parseEmails as f } from "./email.js";
1
+ import { getAvatarBadgeSize as t, getDefaultCollaborationRole as a, getFirstInitial as r, isCollaboratorRestricted as s, isCollaboratorRoleSupported as i, isInvitationRoleSupported as n } from "./collaborator.js";
2
+ import { formatDateFromTimestampToCalendarDate as l, formatDateFromTimestampToDateString as m, formatTomorrowDateToCalendarDate as p } from "./date.js";
3
+ import { parseEmails as C } from "./email.js";
4
4
  import { callOnKeyboardEvent as w } from "./event.js";
5
- import { getUpdatedLinkSettingsFormData as D } from "./form.js";
6
- import { getAllowedAccessLevels as b, getAllowedPermissionLevels as c } from "./permission.js";
7
- import { doesPasswordContainInvalidCharacter as S, doesPasswordContainLetter as T, doesPasswordContainMinCharacters as u, doesPasswordContainMixedCase as A, doesPasswordContainNumber as F, doesPasswordContainSymbol as L, isEmailValid as R, isVanityNameValid as y } from "./validation.js";
5
+ import { getUpdatedLinkSettingsFormData as c } from "./form.js";
6
+ import { getNotificationArgs as P, getNotificationMessage as b } from "./notification.js";
7
+ import { getAllowedAccessLevels as S, getAllowedPermissionLevels as T } from "./permission.js";
8
+ import { doesPasswordContainInvalidCharacter as u, doesPasswordContainLetter as F, doesPasswordContainMinCharacters as L, doesPasswordContainMixedCase as N, doesPasswordContainNumber as R, doesPasswordContainSymbol as y, isEmailValid as E, isVanityNameValid as I } from "./validation.js";
8
9
  export {
9
10
  w as callOnKeyboardEvent,
10
- S as doesPasswordContainInvalidCharacter,
11
- T as doesPasswordContainLetter,
12
- u as doesPasswordContainMinCharacters,
13
- A as doesPasswordContainMixedCase,
14
- F as doesPasswordContainNumber,
15
- L as doesPasswordContainSymbol,
16
- n as formatDateFromTimestampToCalendarDate,
11
+ u as doesPasswordContainInvalidCharacter,
12
+ F as doesPasswordContainLetter,
13
+ L as doesPasswordContainMinCharacters,
14
+ N as doesPasswordContainMixedCase,
15
+ R as doesPasswordContainNumber,
16
+ y as doesPasswordContainSymbol,
17
+ l as formatDateFromTimestampToCalendarDate,
17
18
  m as formatDateFromTimestampToDateString,
18
19
  p as formatTomorrowDateToCalendarDate,
19
- b as getAllowedAccessLevels,
20
- c as getAllowedPermissionLevels,
21
- a as getAvatarBadgeSize,
22
- t as getDefaultCollaborationRole,
20
+ S as getAllowedAccessLevels,
21
+ T as getAllowedPermissionLevels,
22
+ t as getAvatarBadgeSize,
23
+ a as getDefaultCollaborationRole,
23
24
  r as getFirstInitial,
24
- D as getUpdatedLinkSettingsFormData,
25
+ P as getNotificationArgs,
26
+ b as getNotificationMessage,
27
+ c as getUpdatedLinkSettingsFormData,
25
28
  s as isCollaboratorRestricted,
26
29
  i as isCollaboratorRoleSupported,
27
- R as isEmailValid,
28
- d as isInvitationRoleSupported,
29
- y as isVanityNameValid,
30
- f as parseEmails
30
+ E as isEmailValid,
31
+ n as isInvitationRoleSupported,
32
+ I as isVanityNameValid,
33
+ C as parseEmails
31
34
  };
@@ -0,0 +1,17 @@
1
+ import n from "lodash/camelCase";
2
+ import r from "../messages.js";
3
+ const g = (e, s) => ({
4
+ closeButtonAriaLabel: e(r.noticeCloseLabel),
5
+ sensitivity: "foreground",
6
+ typeIconAriaLabel: e(s === "success" ? r.successNoticeIcon : r.errorNoticeIcon),
7
+ variant: s
8
+ }), l = (e, s, o, c) => {
9
+ if (!o)
10
+ return "";
11
+ const i = n(o), t = r[`${i}${s === "success" ? "Success" : "Error"}NoticeText`];
12
+ return t ? e(t, c) : s === "error" ? e(r.defaultErrorNoticeText) : "";
13
+ };
14
+ export {
15
+ g as getNotificationArgs,
16
+ l as getNotificationMessage
17
+ };
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "একটি শেয়ার করা লিঙ্ক তৈরি করা যায়নি। পরে আবার চেষ্টা করুন।",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "সংজ্ঞা",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "সীমাবদ্ধতাসমূহ",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "ওহো! একবারে সর্বাধিক যত সংখ্যক সহযোগীদের যোগ করা যাবে তা হল {maxContacts} জন সহযোগী। আপনার আমন্ত্রণ ব্যাচের মধ্যে বিভক্ত করে দিয়ে দয়া করে আবার চেষ্টা করুন।",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "ভিউয়ার আপলোডার",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "শেয়ারকৃত লিঙ্ক সেটিংস সফলভাবে সেভ করা হয়েছে।",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "কাস্টম URL অবশ্যই 12-30 অক্ষরের মধ্যে হতে হবে এবং অক্ষর, সংখ্যা এবং হাইফেন অন্তর্ভুক্ত করতে পারে",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "অনুগ্রহ করে একটি কাস্টম URL লিখুন"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "অনুগ্রহ করে একটি কাস্টম URL লিখুন",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "একটি শেয়ার করা লিঙ্ক তৈরি করা যায়নি। পরে আবার চেষ্টা করুন।"
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Kunne ikke oprette et delt link. Prøv venligst igen senere.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Definition",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Begrænsninger",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "Hovsa! Det maksimale antal samarbejdspartnere, der kan tilføjes på én gang, er {maxContacts} samarbejdspartnere. Prøv igen ved at opdele dine invitationer i grupper.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "Læser og uploader",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "Indstillingerne for det delte link blev gemt med succes.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "Brugerdefinerede URL'er skal være mellem 12-30 tegn og kan indeholde bogstaver, tal og bindestreger",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Indtast venligst en tilpasset URL"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Indtast venligst en tilpasset URL",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Kunne ikke oprette et delt link. Prøv venligst igen senere."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Ein Freigabe-Link kann nicht erzeugt werden. Versuchen Sie es bitte später noch einmal.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Definition",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Einschränkungen",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "Hoppla! Die maximale Anzahl an Mitwirkenden, die gleichzeitig hinzugefügt werden kann, beträgt {maxContacts} Mitwirkende. Versuchen Sie es erneut, indem Sie Ihre Einladungen in Stapel aufteilen.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "Betrachter/Upload-Berechtigter",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "Die Einstellungen des Freigabe-Links wurden erfolgreich gespeichert.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "Benutzerdefinierte URLs müssen zwischen 12 und 30 Zeichen lang sein und können Buchstaben, Ziffern und Bindestriche enthalten",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Bitte geben Sie eine benutzerdefinierte URL ein"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Bitte geben Sie eine benutzerdefinierte URL ein",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Ein Freigabe-Link kann nicht erzeugt werden. Versuchen Sie es bitte später noch einmal."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Unable to create a shared link. Please try again later.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Definition",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Restrictions",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "Oops, the maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "Viewer Uploader",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "The shared link settings were saved successfully.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "Custom URLs must be between 12-30 characters, and can include letters, numbers, and hyphens",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Please enter a custom URL"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Please enter a custom URL",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Unable to create a shared link. Please try again later."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Unable to create a shared link. Please try again later.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Definition",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Restrictions",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "Oops! The maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "Viewer Uploader",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "The shared link settings were saved successfully.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "Custom URLs must be between 12-30 characters, and can include letters, numbers, and hyphens",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Please enter a custom URL"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Please enter a custom URL",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Unable to create a shared link. Please try again later."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Unable to create a shared link. Please try again later.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Definition",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Restrictions",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "Oops, the maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "Viewer Uploader",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "The shared link settings were saved successfully.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "Custom URLs must be between 12-30 characters, and can include letters, numbers, and hyphens",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Please enter a custom URL"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Please enter a custom URL",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Unable to create a shared link. Please try again later."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Unable to create a shared link. Please try again later.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Definition",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Restrictions",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "Oops! The maximum number of collaborators that can be added at once is {maxContacts} collaborators. Please try again by splitting your invitations into batches.",
@@ -1,5 +1,3 @@
1
- # Notification text when the shared link is failed to be created
2
- groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText = Unable to create a shared link. Please try again later.
3
1
  # Label for the section to show the definition of the classification label
4
2
  groupSharedFeatures.usm.classificationStatus.definitionLabel = Definition
5
3
  # Label for the section to show the restrictions of the classification label
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Úηąьľê ţσ ćґёäţĕ à ѕħáѓëď ľιηκ. Pľèάѕέ ťгỳ âġāįη ľáτėг. 國國國國國國國國國國國國國國國國⟧",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "⟦萬萬 Ďεƒĩʼníτíõл 國國⟧",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "⟦萬萬萬 Ґęśŧяіĉτιøπś 國國國⟧",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ÔöΡŝ! Τĥē mą×ĩmµm ņμmьěѓ σƒ ¢όĺļåьŏŗãťôяş ŧħáτ ĉåη ьē āďďēď åţ őňčę іѕ {maxContacts} ćοĺľåвòяάŧσřѕ. Pĺёάşė τŕỳ ãğǻïπ вý ѕΡľіŧţĭпĝ γοµř ĭήνίţάτіōпś ίʼnτό вàţċнеś. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "⟦萬萬萬萬 Vĩеώęř ÙΡľõāďёř 國國國國⟧",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ţĥé şĥâŗėď ļīйк ѕĕťţïиğś ẃęяé ѕąνěď ѕùčĉεѕśƒúľľŷ. 國國國國國國國國國國國國國國⟧",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Čūѕţόm ŮΓĿŝ můѕŧ ьę вëŧώέèл 12-30 ¢ĥąгǻĉτέŗѕ, ǻňď čáπ ϊʼnĉľũďέ ĺĕτŧєґŝ, πũmвéřś, āлď ħУΡĥėʼnŝ 國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "⟦萬萬萬萬萬萬萬 Pļèåѕε εŋťєѓ å 浺ŧõm ŪҐĽ 國國國國國國國⟧"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "⟦萬萬萬萬萬萬萬 Pļèåѕε εŋťєѓ å 浺ŧõm ŪҐĽ 國國國國國國國⟧",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Úηąьľê ţσ ćґёäţĕ à ѕħáѓëď ľιηκ. Pľèάѕέ ťгỳ âġāįη ľáτėг. 國國國國國國國國國國國國國國國國⟧"
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "No se puede crear un enlace compartido. Inténtelo más tarde.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Definición",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Restricciones",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "Vaya, solo se pueden agregar {maxContacts} colaboradores como máximo de una vez. Divida las invitaciones en lotes e inténtelo de nuevo.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "Visualización y carga",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "La configuración del enlace compartido se ha guardado correctamente.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "Las URL personalizadas deben tener entre 12 y 30 caracteres, y pueden incluir letras, números y guiones",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Introduzca una URL personalizada"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Introduzca una URL personalizada",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "No se puede crear un enlace compartido. Inténtelo más tarde."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "No se puede crear un enlace compartido. Inténtelo más tarde.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Definición",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Restricciones",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "Vaya, solo se pueden agregar {maxContacts} colaboradores como máximo de una vez. Divida las invitaciones en lotes e inténtelo de nuevo.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "Visualización y carga",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "La configuración del enlace compartido se ha guardado correctamente.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "Las URL personalizadas deben tener entre 12 y 30 caracteres, y pueden incluir letras, números y guiones",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Introduzca una URL personalizada"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Introduzca una URL personalizada",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "No se puede crear un enlace compartido. Inténtelo más tarde."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Jaettua linkkiä ei voi luoda. Yritä myöhemmin uudelleen.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Määritelmä",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Rajoitukset",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "Virhe! Voit kerrallaan lisätä enintään {maxContacts} yhteistyökumppania. Yritä uudelleen lähettämällä kutsut erissä.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "Katselija ja lataaja",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "Jaetun linkin asetukset tallennettiin onnistuneesti.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "Mukautettujen URL-osoitteiden tulisi olla välillä 12–30 merkkiä, ja ne voivat sisältää kirjaimia, numeroita ja yhdysmerkkejä",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Anna mukautettu URL-osoite"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Anna mukautettu URL-osoite",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Jaettua linkkiä ei voi luoda. Yritä myöhemmin uudelleen."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Impossible de créer un lien partagé. Veuillez réessayer ultérieurement.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Définition",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Restrictions",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "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.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "Chargeur visualiseur",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "Les paramètres du lien partagé ont été enregistrés avec succès.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "Les URL personnalisées doivent contenir entre 12 et 30 caractères et peuvent inclure des lettres, des chiffres et des traits d'union",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Veuillez saisir une URL personnalisée"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Veuillez saisir une URL personnalisée",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Impossible de créer un lien partagé. Veuillez réessayer ultérieurement."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Impossible de créer un lien partagé. Veuillez réessayer ultérieurement.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Définition",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Restrictions",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "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.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "Chargeur visualiseur",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "Les paramètres du lien partagé ont été enregistrés avec succès.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "Les URL personnalisées doivent contenir entre 12 et 30 caractères et peuvent inclure des lettres, des chiffres et des traits d'union",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Veuillez saisir une URL personnalisée"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Veuillez saisir une URL personnalisée",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Impossible de créer un lien partagé. Veuillez réessayer ultérieurement."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "शेयर्ड लिंक बनाने में असमर्थ। कृपया बाद में दोबारा कोशिश करें।",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "परिभाषा",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "प्रतिबंध",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "ओह! एक बार में जोड़े जा सकने वाले सहयोगियों की अधिकतम संख्या {maxContacts} है. अपने आमंत्रणों को बैच में विभाजित करके फिर से प्रयास करें।",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "व्यूअर अपलोडर",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "शेयर्ड लिंक सेटिंग को सफलतापूर्वक सहेजा गया।",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "कस्टम URLs, 12-30 वर्णों के बीच होने चाहिए, जिसमें अक्षर, संख्या और हाइफ़न हो सकते हैं",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "कृपया एक कस्टम URL दर्ज करें"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "कृपया एक कस्टम URL दर्ज करें",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "शेयर्ड लिंक बनाने में असमर्थ। कृपया बाद में दोबारा कोशिश करें।"
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Impossibile creare un collegamento condiviso. Riprova più tardi.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Definizione",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Limitazioni",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "Errore. È possibile aggiungere al massimo {maxContacts} collaboratori contemporaneamente. Riprova dividendo gli inviti in gruppi.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "Upload visualizzazione",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "Le impostazioni del collegamento condiviso sono state salvate correttamente.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "Gli URL personalizzati devono essere compresi tra 12 e 30 caratteri e possono includere lettere, numeri e trattini",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Inserisci un URL personalizzato"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Inserisci un URL personalizzato",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Impossibile creare un collegamento condiviso. Riprova più tardi."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "共有リンクを作成できません。後でもう一度やり直してください。",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "定義",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "制約事項",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "一度に追加できるコラボレータは最大{maxContacts}人までです。招待を何回かに分けて、もう一度やり直してください。",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "ビューアー/アップローダー",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "共有リンクの設定を保存しました。",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "カスタムURLは12~30文字で、文字、数字、ハイフンを含めることができます",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "カスタムURLを入力してください"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "カスタムURLを入力してください",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "共有リンクを作成できません。後でもう一度やり直してください。"
164
164
  }
@@ -1 +1 @@
1
- [{"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.contactsLimitErrorMessage","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.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"},{"id":"groupSharedFeatures.usm.justificationRequiredErrorNotice","description":"Error message when a user tries to send invitations but a business justification is required before proceeding","defaultMessage":"Please select a justification or remove the {count, plural, one {{count} restricted user} other {{count} restricted users}} to continue."},{"id":"groupSharedFeatures.usm.restrictedContactsErrorNotice","description":"Error notification when a user tries to send invitations to restricted users","defaultMessage":"Please remove the {count, plural, one {{count} restricted user} other {{count} restricted users}} to continue."}]
1
+ [{"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.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.contactsLimitErrorMessage","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.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"},{"id":"groupSharedFeatures.usm.justificationRequiredErrorNotice","description":"Error message when a user tries to send invitations but a business justification is required before proceeding","defaultMessage":"Please select a justification or remove the {count, plural, one {{count} restricted user} other {{count} restricted users}} to continue."},{"id":"groupSharedFeatures.usm.restrictedContactsErrorNotice","description":"Error notification when a user tries to send invitations to restricted users","defaultMessage":"Please remove the {count, plural, one {{count} restricted user} other {{count} restricted users}} to continue."}]
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "공유 링크를 생성할 수 없습니다. 잠시 후 다시 시도해 주세요.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "정의",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "제한 사항",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "한 번에 추가할 수 있는 최대 공동 작업자 수는 {maxContacts}명입니다. 초대장을 여러 개의 일괄 파일로 분할하여 다시 시도하십시오.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "뷰어 업로더",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "공유 링크 설정이 성공적으로 저장되었습니다.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "사용자 정의 URL은 12~30자여야 하며, 문자, 숫자, 하이픈을 포함할 수 있습니다",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "사용자 지정 URL을 입력하세요"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "사용자 지정 URL을 입력하세요",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "공유 링크를 생성할 수 없습니다. 잠시 후 다시 시도해 주세요."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Kan ikke opprette en delt kobling. Prøv igjen senere.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Definisjon",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Begrensninger",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "Det maksimale antallet samarbeidspartnere som kan legges til samtidig, er {maxContacts} samarbeidspartnere. Prøv på nytt ved å dele invitasjonene inn i grupper.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "Visningsprogram/opplastingsprogram",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "Innstillingene for delte koblinger ble lagret.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "Egendefinerte nettadresser bør være mellom 12 og 30 tegn og kan inneholde bokstaver, tall og bindestreker",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Skriv inn en egendefinert nettadresse"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Skriv inn en egendefinert nettadresse",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Kan ikke opprette en delt kobling. Prøv igjen senere."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Kan geen gedeelde link maken. Probeer het later opnieuw.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Definitie",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Beperkingen",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "Sorry! Er kunnen maximaal {maxContacts} medebewerkers tegelijkertijd worden toegevoegd. Probeer het opnieuw door uw uitnodigingen in batches te splitsen.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "Viewer Uploader",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "De instellingen voor de gedeelde link zijn met succes opgeslagen.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "Aangepaste URL's moeten tussen de 12 en 30 tekens lang zijn en kunnen letters, cijfers en koppeltekens bevatten",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Voer een aangepaste URL in"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Voer een aangepaste URL in",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Kan geen gedeelde link maken. Probeer het later opnieuw."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Nie można utworzyć łącza udostępnionego. Spróbuj ponownie później.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Definicja",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Ograniczenia",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "Maksymalna liczba współpracowników, których można dodać jednocześnie, wynosi {maxContacts}. Spróbuj ponownie, dzieląc zaproszenia na pakiety.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "Przeglądający/przekazujący",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "Ustawienia łącza udostępnionego zostały pomyślnie zapisane.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "Niestandardowe adresy URL muszą mieć długość od 12 do 30 znaków i mogą zawierać litery, cyfry oraz myślniki",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Wprowadź niestandardowy adres URL"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Wprowadź niestandardowy adres URL",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Nie można utworzyć łącza udostępnionego. Spróbuj ponownie później."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Não é possível criar um link compartilhado. Tente novamente mais tarde.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Definição",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Restrições",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "Opa! O número máximo de colaboradores que podem ser adicionados de uma vez é {maxContacts}. Tente novamente dividindo seus convites em lotes.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "Carregador visualizador",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "As configurações do link compartilhado foram salvas com sucesso.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "As URLs personalizadas devem ter entre 12 e 30 caracteres e podem incluir letras, números e hifens",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Insira uma URL personalizada"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Insira uma URL personalizada",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Não é possível criar um link compartilhado. Tente novamente mais tarde."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Не удается создать общую ссылку. Повторите попытку позже.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Определение",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Ограничения",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "Ошибка. Максимальное количество соавторов, которое можно добавить за один раз: {maxContacts}. Повторите попытку, разделив приглашения на несколько пакетов.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "С правом просмотра и загрузки",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "Настройки общей ссылки сохранены.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "Настраиваемые URL-адреса должны содержать от 12 до 30 символов и могут включать буквы, цифры и дефисы",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Введите настраиваемый URL-адрес"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Введите настраиваемый URL-адрес",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Не удается создать общую ссылку. Повторите попытку позже."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Kunde inte skapa en delad länk. Försök igen senare.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Definition",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Begränsningar",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "Hoppsan! Det högsta antalet medarbetare som kan läggas till på en gång är {maxContacts} medarbetare. Försök igen genom att dela upp dina inbjudningar i batcher.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "Läsare/Uppladdare",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "Inställningarna för delad länk har sparats.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "Anpassade URL:er måste vara 12–30 tecken och kan innehålla bokstäver, siffror och bindestreck",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Ange en anpassad URL"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Ange en anpassad URL",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Kunde inte skapa en delad länk. Försök igen senare."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Paylaşılan bir bağlantı oluşturulamadı. Lütfen daha sonra tekrar deneyin.",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "Tanım",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "Kısıtlamalar",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "Üzgünüz! Aynı anda en fazla {maxContacts} ortak çalışan eklenebilir. Lütfen davetlerinizi gruplara ayırın ve tekrar deneyin.",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "Görüntüleyici - Yükleyici",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "Paylaşılan bağlantı ayarları başarıyla kaydedildi.",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "Özel URL'ler 12 ila 30 karakter uzunluğunda olmalıdır ve harf, sayı ve tire içerebilir",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Lütfen özel bir URL girin"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "Lütfen özel bir URL girin",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Paylaşılan bir bağlantı oluşturulamadı. Lütfen daha sonra tekrar deneyin."
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "无法创建共享链接。请稍后重试。",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "定义",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "限制",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "糟糕!可以一次添加的最大协作者数量是 {maxContacts} 个协作者。请将您的邀请拆分成多个批次,然后重试。",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "上传者(查看者",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "已成功保存共享链接设置。",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "自定义 URL 必须介于 12-30 个字符之间,并可包括字母、数字和连字符",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "请输入自定义 URL"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "请输入自定义 URL",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "无法创建共享链接。请稍后重试。"
164
164
  }
@@ -1,5 +1,4 @@
1
1
  export default {
2
- "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "無法建立共用連結。 請稍後再試一次。",
3
2
  "groupSharedFeatures.usm.classificationStatus.definitionLabel": "定義",
4
3
  "groupSharedFeatures.usm.classificationStatus.restrictionsLabel": "限制",
5
4
  "groupSharedFeatures.usm.contactsLimitErrorMessage": "糟糕!一次最多只能新增 {maxContacts} 個共同作業者。請分批邀請並再試一次。",
@@ -160,5 +159,6 @@ export default {
160
159
  "groupSharedFeatures.usm.unifiedShareFormModal.viewerUploaderRole": "具檢視權限的上傳者",
161
160
  "groupSharedFeatures.usm.updateSharedLinkSuccessNoticeText": "已成功儲存共用的連結設定。",
162
161
  "groupSharedFeatures.usm.vanityNameInvalidErrorMessage": "自訂 URL 必須在 12-30 個字元之間,且可包含字母、數字和連字號",
163
- "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "請輸入自訂 URL"
162
+ "groupSharedFeatures.usm.vanityNameRequiredErrorMessage": "請輸入自訂 URL",
163
+ "groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "無法建立共用連結。 請稍後再試一次。"
164
164
  }
@@ -6,6 +6,8 @@ export interface UnifiedShareFormContextValue {
6
6
  contactValue: string;
7
7
  containerRef: HTMLDivElement | null;
8
8
  form: FormType;
9
+ isSharedLinkAutoCopied: React.MutableRefObject<boolean>;
10
+ isSharedLinkAutoCreated: React.MutableRefObject<boolean>;
9
11
  messageValue: string;
10
12
  previousForm: FormType;
11
13
  setCollaborationRole: Dispatch<SetStateAction<CollaborationRole | undefined>>;
@@ -59,11 +59,6 @@ declare const messages: {
59
59
  description: string;
60
60
  id: string;
61
61
  };
62
- autoCopySharedLinkErrorNoticeText: {
63
- defaultMessage: string;
64
- description: string;
65
- id: string;
66
- };
67
62
  vanityNameInvalidErrorMessage: {
68
63
  defaultMessage: string;
69
64
  description: string;
@@ -29,7 +29,7 @@ export type FormType = 'default' | 'invite' | 'email' | 'collaborators';
29
29
  /**
30
30
  * Supported success and error notifications when the user performs sharing actions.
31
31
  */
32
- export type NotificationType = 'invite-collaborators' | 'remove-collaborator' | 'create-shared-link' | 'delete-shared-link' | 'update-shared-link' | 'email-shared-link' | 'auto-copy-shared-link';
32
+ export type NotificationType = 'invite-collaborators' | 'remove-collaborator' | 'create-shared-link' | 'delete-shared-link' | 'update-shared-link' | 'email-shared-link';
33
33
  /**
34
34
  * Supported roles for inviting a new collaborator. The available roles are dependent on the Enterprise settings.
35
35
  *
@@ -3,5 +3,6 @@ export * from './date';
3
3
  export * from './email';
4
4
  export * from './event';
5
5
  export * from './form';
6
+ export * from './notification';
6
7
  export * from './permission';
7
8
  export * from './validation';
@@ -0,0 +1,9 @@
1
+ import { NotificationType } from '../types';
2
+ declare const getNotificationArgs: (formatMessage: any, type: "success" | "error") => {
3
+ closeButtonAriaLabel: any;
4
+ sensitivity: "foreground";
5
+ typeIconAriaLabel: any;
6
+ variant: "success" | "error";
7
+ };
8
+ declare const getNotificationMessage: (formatMessage: any, type: "success" | "error", notification?: NotificationType, values?: any) => any;
9
+ export { getNotificationArgs, getNotificationMessage };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@box/unified-share-modal",
3
- "version": "2.6.7",
3
+ "version": "2.6.8",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "peerDependencies": {
6
6
  "@box/blueprint-web": "^13.5.1",