@box/unified-share-modal 1.22.2 → 1.23.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.
- package/dist/esm/lib/components/index.js +8 -6
- package/dist/esm/lib/components/remove-collaborator-modal/index.js +4 -0
- package/dist/esm/lib/components/remove-collaborator-modal/messages.js +30 -0
- package/dist/esm/lib/components/remove-collaborator-modal/remove-collaborator-modal.js +64 -0
- package/dist/esm/lib/components/remove-shared-link-modal/remove-shared-link-modal.js +27 -31
- package/dist/esm/lib/components/shared-link-settings-modal/download-section.js +5 -5
- package/dist/esm/lib/components/unified-share-form-modal/collaborators-view/collaborator-list-item.js +65 -43
- package/dist/esm/lib/components/unified-share-form-modal/collaborators-view/messages.js +4 -0
- package/dist/esm/lib/components/unified-share-form-modal/shared-link-section/shared-link-section.js +24 -24
- package/dist/esm/lib/constants.js +3 -3
- package/dist/esm/lib/messages.js +10 -2
- package/dist/esm/lib/unified-share-modal.js +48 -42
- package/dist/i18n/bn-IN.js +10 -1
- package/dist/i18n/bn-IN.properties +1 -1
- package/dist/i18n/da-DK.js +10 -1
- package/dist/i18n/da-DK.properties +1 -1
- package/dist/i18n/de-DE.js +10 -1
- package/dist/i18n/de-DE.properties +1 -1
- package/dist/i18n/en-AU.js +10 -1
- package/dist/i18n/en-AU.properties +1 -1
- package/dist/i18n/en-CA.js +9 -0
- package/dist/i18n/en-GB.js +10 -1
- package/dist/i18n/en-GB.properties +1 -1
- package/dist/i18n/en-US.js +9 -0
- package/dist/i18n/en-US.properties +18 -0
- package/dist/i18n/en-x-pseudo.js +9 -0
- package/dist/i18n/es-419.js +10 -1
- package/dist/i18n/es-419.properties +1 -1
- package/dist/i18n/es-ES.js +10 -1
- package/dist/i18n/es-ES.properties +1 -1
- package/dist/i18n/fi-FI.js +10 -1
- package/dist/i18n/fi-FI.properties +1 -1
- package/dist/i18n/fr-CA.js +10 -1
- package/dist/i18n/fr-CA.properties +1 -1
- package/dist/i18n/fr-FR.js +10 -1
- package/dist/i18n/fr-FR.properties +1 -1
- package/dist/i18n/hi-IN.js +10 -1
- package/dist/i18n/hi-IN.properties +1 -1
- package/dist/i18n/it-IT.js +10 -1
- package/dist/i18n/it-IT.properties +1 -1
- package/dist/i18n/ja-JP.js +10 -1
- package/dist/i18n/ja-JP.properties +1 -1
- package/dist/i18n/json/src/lib/components/remove-collaborator-modal/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/unified-share-form-modal/collaborators-view/messages.json +1 -1
- package/dist/i18n/json/src/lib/messages.json +1 -1
- package/dist/i18n/ko-KR.js +14 -5
- package/dist/i18n/ko-KR.properties +5 -5
- package/dist/i18n/nb-NO.js +14 -5
- package/dist/i18n/nb-NO.properties +5 -5
- package/dist/i18n/nl-NL.js +10 -1
- package/dist/i18n/nl-NL.properties +1 -1
- package/dist/i18n/pl-PL.js +10 -1
- package/dist/i18n/pl-PL.properties +1 -1
- package/dist/i18n/pt-BR.js +10 -1
- package/dist/i18n/pt-BR.properties +1 -1
- package/dist/i18n/ru-RU.js +10 -1
- package/dist/i18n/ru-RU.properties +1 -1
- package/dist/i18n/sv-SE.js +10 -1
- package/dist/i18n/sv-SE.properties +1 -1
- package/dist/i18n/tr-TR.js +10 -1
- package/dist/i18n/tr-TR.properties +1 -1
- package/dist/i18n/zh-CN.js +10 -1
- package/dist/i18n/zh-CN.properties +1 -1
- package/dist/i18n/zh-TW.js +10 -1
- package/dist/i18n/zh-TW.properties +1 -1
- package/dist/styles/collaborator-list-item.css +1 -1
- package/dist/types/lib/components/index.d.ts +1 -0
- package/dist/types/lib/components/remove-collaborator-modal/index.d.ts +1 -0
- package/dist/types/lib/components/remove-collaborator-modal/messages.d.ts +33 -0
- package/dist/types/lib/components/remove-collaborator-modal/remove-collaborator-modal.d.ts +5 -0
- package/dist/types/lib/components/remove-collaborator-modal/stories/shared.d.ts +2 -0
- package/dist/types/lib/components/unified-share-form-modal/collaborators-view/messages.d.ts +5 -0
- package/dist/types/lib/contexts/unified-share-modal-context.d.ts +3 -0
- package/dist/types/lib/messages.d.ts +10 -0
- package/dist/types/lib/stories/shared.d.ts +2 -0
- package/dist/types/lib/types.d.ts +17 -2
- package/package.json +9 -9
- package/dist/styles/remove-shared-link-modal.css +0 -1
|
@@ -1,65 +1,71 @@
|
|
|
1
|
-
import { useState as
|
|
2
|
-
import { DEFAULT_CONFIGURATION as
|
|
3
|
-
import { jsxs as T, jsx as
|
|
1
|
+
import { useState as i, useEffect as b, useMemo as L } from "react";
|
|
2
|
+
import { DEFAULT_CONFIGURATION as R } from "./constants.js";
|
|
3
|
+
import { jsxs as T, jsx as s } from "react/jsx-runtime";
|
|
4
4
|
import { UnifiedShareModalContext as j } from "./contexts/unified-share-modal-context.js";
|
|
5
5
|
import { UnifiedShareFormModal as A } from "./components/unified-share-form-modal/unified-share-form-modal.js";
|
|
6
6
|
import { SharedLinkSettingsModal as E } from "./components/shared-link-settings-modal/shared-link-settings-modal.js";
|
|
7
7
|
import { RemoveSharedLinkModal as N } from "./components/remove-shared-link-modal/remove-shared-link-modal.js";
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
8
|
+
import { RemoveCollaboratorModal as y } from "./components/remove-collaborator-modal/remove-collaborator-modal.js";
|
|
9
|
+
function J({
|
|
10
|
+
children: m,
|
|
11
|
+
collaborationRoles: f,
|
|
12
|
+
collaborators: l,
|
|
13
|
+
config: d,
|
|
14
|
+
contactService: h,
|
|
14
15
|
currentUser: p,
|
|
15
16
|
eventService: c,
|
|
16
17
|
isFetching: u,
|
|
17
|
-
isOpen:
|
|
18
|
+
isOpen: o,
|
|
18
19
|
isSubmitting: g,
|
|
19
|
-
item:
|
|
20
|
-
onLoad:
|
|
21
|
-
onOpenChange:
|
|
20
|
+
item: C,
|
|
21
|
+
onLoad: t,
|
|
22
|
+
onOpenChange: M,
|
|
22
23
|
sharedLink: O,
|
|
23
|
-
sharingService:
|
|
24
|
+
sharingService: U
|
|
24
25
|
}) {
|
|
25
|
-
const
|
|
26
|
-
|
|
27
|
-
(async () => (
|
|
26
|
+
const k = !!m, [e, v] = i(o ?? !k), [S, w] = i(!!t), [r, a] = i("unified-share-form"), [x, I] = i();
|
|
27
|
+
b(() => v((n) => o ?? n), [o]), b(() => {
|
|
28
|
+
(async () => (t && await t(), w(!1)))();
|
|
28
29
|
}, []);
|
|
29
|
-
const
|
|
30
|
-
|
|
31
|
-
},
|
|
32
|
-
collaborationRoles:
|
|
33
|
-
|
|
30
|
+
const V = (n) => {
|
|
31
|
+
v(o ?? n), M && M(n);
|
|
32
|
+
}, F = L(() => ({
|
|
33
|
+
collaborationRoles: f ?? [],
|
|
34
|
+
collaborator: x ?? {},
|
|
35
|
+
collaborators: l ?? [],
|
|
34
36
|
config: {
|
|
35
|
-
...
|
|
36
|
-
...
|
|
37
|
+
...R,
|
|
38
|
+
...d
|
|
37
39
|
},
|
|
38
|
-
contactService:
|
|
40
|
+
contactService: h ?? {},
|
|
39
41
|
currentUser: p ?? {},
|
|
40
42
|
eventService: c ?? {},
|
|
41
|
-
isFetching: u ??
|
|
43
|
+
isFetching: u ?? S,
|
|
42
44
|
isSubmitting: g,
|
|
43
|
-
item:
|
|
45
|
+
item: C,
|
|
46
|
+
setCollaborator: I,
|
|
44
47
|
sharedLink: O ?? {},
|
|
45
|
-
sharingService:
|
|
46
|
-
}), [
|
|
48
|
+
sharingService: U ?? {}
|
|
49
|
+
}), [f, x, l, d, h, p, c, u, S, g, C, O, U]);
|
|
47
50
|
return /* @__PURE__ */ T(j.Provider, {
|
|
48
|
-
value:
|
|
49
|
-
children: [/* @__PURE__ */
|
|
50
|
-
isOpen:
|
|
51
|
-
onModalViewChange:
|
|
52
|
-
onOpenChange:
|
|
53
|
-
children:
|
|
54
|
-
}), /* @__PURE__ */
|
|
55
|
-
isOpen:
|
|
56
|
-
onOpenChange: () =>
|
|
57
|
-
}), /* @__PURE__ */
|
|
58
|
-
isOpen:
|
|
59
|
-
onOpenChange: () =>
|
|
51
|
+
value: F,
|
|
52
|
+
children: [/* @__PURE__ */ s(A, {
|
|
53
|
+
isOpen: e && r === "unified-share-form",
|
|
54
|
+
onModalViewChange: a,
|
|
55
|
+
onOpenChange: V,
|
|
56
|
+
children: m
|
|
57
|
+
}), /* @__PURE__ */ s(E, {
|
|
58
|
+
isOpen: e && r === "shared-link-settings",
|
|
59
|
+
onOpenChange: () => a("unified-share-form")
|
|
60
|
+
}), /* @__PURE__ */ s(N, {
|
|
61
|
+
isOpen: e && r === "remove-shared-link",
|
|
62
|
+
onOpenChange: () => a("unified-share-form")
|
|
63
|
+
}), /* @__PURE__ */ s(y, {
|
|
64
|
+
isOpen: e && r === "remove-collaborator",
|
|
65
|
+
onOpenChange: () => a("unified-share-form")
|
|
60
66
|
})]
|
|
61
67
|
});
|
|
62
68
|
}
|
|
63
69
|
export {
|
|
64
|
-
|
|
70
|
+
J as UnifiedShareModal
|
|
65
71
|
};
|
package/dist/i18n/bn-IN.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "একটি শেয়ার করা লিঙ্ক তৈরি করা যায়নি। পরে আবার চেষ্টা করুন।",
|
|
3
|
-
"groupSharedFeatures.usm.contactsExceedLimitError": "
|
|
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": "Cancel",
|
|
22
|
+
"groupSharedFeatures.usm.removeCollaborator.closeButton": "Close",
|
|
23
|
+
"groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Loading",
|
|
24
|
+
"groupSharedFeatures.usm.removeCollaborator.okayButton": "Okay",
|
|
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 =
|
|
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
|
package/dist/i18n/da-DK.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Kunne ikke oprette et delt link. Prøv venligst igen senere.",
|
|
3
|
-
"groupSharedFeatures.usm.contactsExceedLimitError": "
|
|
3
|
+
"groupSharedFeatures.usm.contactsExceedLimitError": "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.",
|
|
4
4
|
"groupSharedFeatures.usm.createSharedLinkErrorNoticeText": "Kunne ikke oprette et delt link. Prøv venligst igen senere.",
|
|
5
5
|
"groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "Delt link blev oprettet.",
|
|
6
6
|
"groupSharedFeatures.usm.defaultErrorNoticeText": "Noget gik galt. Prøv venligst igen senere.",
|
|
@@ -17,6 +17,14 @@ export default {
|
|
|
17
17
|
"groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "Adgangskoden skal indeholde mindst ét stort bogstav, tal eller specialtegn",
|
|
18
18
|
"groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "adgangskode skal indeholde mindst 8 tegn",
|
|
19
19
|
"groupSharedFeatures.usm.passwordRequiredErrorMessage": "Indtast venligst en adgangskode",
|
|
20
|
+
"groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
|
|
21
|
+
"groupSharedFeatures.usm.removeCollaborator.cancelButton": "Cancel",
|
|
22
|
+
"groupSharedFeatures.usm.removeCollaborator.closeButton": "Close",
|
|
23
|
+
"groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Loading",
|
|
24
|
+
"groupSharedFeatures.usm.removeCollaborator.okayButton": "Okay",
|
|
25
|
+
"groupSharedFeatures.usm.removeCollaborator.title": "Remove Collaborator",
|
|
26
|
+
"groupSharedFeatures.usm.removeCollaboratorErrorNoticeText": "Unable to remove the collaborator. Please try again later.",
|
|
27
|
+
"groupSharedFeatures.usm.removeCollaboratorSuccessNoticeText": "The collaborator has been removed successfully.",
|
|
20
28
|
"groupSharedFeatures.usm.removeSharedLinkModal.bodyText": "Dette fjerner det delte link permanent. Hvis elementet er indlejret på andre sider, vil det også blive utilgængeligt. Eventuelle brugerdefinerede egenskaber, indstillinger og udløbstider vil også blive fjernet. Vil du fortsætte?",
|
|
21
29
|
"groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "Annuller",
|
|
22
30
|
"groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "Luk",
|
|
@@ -83,6 +91,7 @@ export default {
|
|
|
83
91
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "Administrer alle",
|
|
84
92
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "Navn",
|
|
85
93
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "Afventer",
|
|
94
|
+
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
|
|
86
95
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "Rolle",
|
|
87
96
|
"groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "Redaktør",
|
|
88
97
|
"groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "Indlæser",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Notification text when the shared link is failed to be created
|
|
2
2
|
groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText = Kunne ikke oprette et delt link. Prøv venligst igen senere.
|
|
3
3
|
# Error message when more than the maximum number of contacts is entered
|
|
4
|
-
groupSharedFeatures.usm.contactsExceedLimitError =
|
|
4
|
+
groupSharedFeatures.usm.contactsExceedLimitError = 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.
|
|
5
5
|
# Notification text when the shared link failed to be created
|
|
6
6
|
groupSharedFeatures.usm.createSharedLinkErrorNoticeText = Kunne ikke oprette et delt link. Prøv venligst igen senere.
|
|
7
7
|
# Notification text when the shared link is successfully created
|
package/dist/i18n/de-DE.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Ein Freigabe-Link kann nicht erzeugt werden. Versuchen Sie es bitte später noch einmal.",
|
|
3
|
-
"groupSharedFeatures.usm.contactsExceedLimitError": "
|
|
3
|
+
"groupSharedFeatures.usm.contactsExceedLimitError": "Hoppla! Die maximale Anzahl an Mitwirkenden, die gleichzeitig hinzugefügt werden können, beträgt {maxContacts} Mitwirkende. Versuchen Sie es erneut, indem Sie Ihre Einladungen in Stapel aufteilen.",
|
|
4
4
|
"groupSharedFeatures.usm.createSharedLinkErrorNoticeText": "Ein Freigabe-Link kann nicht erstellt werden. Versuchen Sie es bitte später noch einmal.",
|
|
5
5
|
"groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "Freigabe-Link generiert.",
|
|
6
6
|
"groupSharedFeatures.usm.defaultErrorNoticeText": "Es ist ein Fehler aufgetreten. Versuchen Sie es bitte später noch einmal.",
|
|
@@ -17,6 +17,14 @@ export default {
|
|
|
17
17
|
"groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "Das Kennwort muss mindestens einen Großbuchstaben, eine Zahl oder ein Sonderzeichen enthalten",
|
|
18
18
|
"groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "Das Kennwort muss mindestens 8 Zeichen enthalten",
|
|
19
19
|
"groupSharedFeatures.usm.passwordRequiredErrorMessage": "Bitte geben Sie ein Kennwort ein",
|
|
20
|
+
"groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
|
|
21
|
+
"groupSharedFeatures.usm.removeCollaborator.cancelButton": "Cancel",
|
|
22
|
+
"groupSharedFeatures.usm.removeCollaborator.closeButton": "Close",
|
|
23
|
+
"groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Loading",
|
|
24
|
+
"groupSharedFeatures.usm.removeCollaborator.okayButton": "Okay",
|
|
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": "Dadurch wird der freigegebene Link endgültig entfernt. Wenn dieses Element auf anderen Websites eingebettet ist, wird es ebenfalls unzugänglich. Alle benutzerdefinierten Eigenschaften, Einstellungen und Ablaufzeiten werden ebenfalls entfernt. Möchten Sie fortfahren?",
|
|
21
29
|
"groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "Abbrechen",
|
|
22
30
|
"groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "Schließen",
|
|
@@ -83,6 +91,7 @@ export default {
|
|
|
83
91
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "Alle verwalten",
|
|
84
92
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "Name",
|
|
85
93
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "Ausstehend",
|
|
94
|
+
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
|
|
86
95
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "Rolle",
|
|
87
96
|
"groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "Bearbeiter",
|
|
88
97
|
"groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "Laden",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Notification text when the shared link is failed to be created
|
|
2
2
|
groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText = Ein Freigabe-Link kann nicht erzeugt werden. Versuchen Sie es bitte später noch einmal.
|
|
3
3
|
# Error message when more than the maximum number of contacts is entered
|
|
4
|
-
groupSharedFeatures.usm.contactsExceedLimitError =
|
|
4
|
+
groupSharedFeatures.usm.contactsExceedLimitError = Hoppla! Die maximale Anzahl an Mitwirkenden, die gleichzeitig hinzugefügt werden können, beträgt {maxContacts} Mitwirkende. Versuchen Sie es erneut, indem Sie Ihre Einladungen in Stapel aufteilen.
|
|
5
5
|
# Notification text when the shared link failed to be created
|
|
6
6
|
groupSharedFeatures.usm.createSharedLinkErrorNoticeText = Ein Freigabe-Link kann nicht erstellt werden. Versuchen Sie es bitte später noch einmal.
|
|
7
7
|
# Notification text when the shared link is successfully created
|
package/dist/i18n/en-AU.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Unable to create a shared link. Please try again later.",
|
|
3
|
-
"groupSharedFeatures.usm.contactsExceedLimitError": "Oops
|
|
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.",
|
|
4
4
|
"groupSharedFeatures.usm.createSharedLinkErrorNoticeText": "Unable to create a shared link. Please try again later.",
|
|
5
5
|
"groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "Shared link created.",
|
|
6
6
|
"groupSharedFeatures.usm.defaultErrorNoticeText": "Something went wrong. Please try again later.",
|
|
@@ -17,6 +17,14 @@ export default {
|
|
|
17
17
|
"groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "Password must contain at least one upper case letter, number, or special character",
|
|
18
18
|
"groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "Password must contain at least 8 characters",
|
|
19
19
|
"groupSharedFeatures.usm.passwordRequiredErrorMessage": "Please enter a password",
|
|
20
|
+
"groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
|
|
21
|
+
"groupSharedFeatures.usm.removeCollaborator.cancelButton": "Cancel",
|
|
22
|
+
"groupSharedFeatures.usm.removeCollaborator.closeButton": "Close",
|
|
23
|
+
"groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Loading",
|
|
24
|
+
"groupSharedFeatures.usm.removeCollaborator.okayButton": "Okay",
|
|
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": "This will permanently remove the shared link. If this item is embedded on other sites, it will also become inaccessible. Any custom properties, settings and expirations will be removed as well. Do you want to continue?",
|
|
21
29
|
"groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "Cancel",
|
|
22
30
|
"groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "Close",
|
|
@@ -83,6 +91,7 @@ export default {
|
|
|
83
91
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "Manage all",
|
|
84
92
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "Name",
|
|
85
93
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "Pending",
|
|
94
|
+
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
|
|
86
95
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "Role",
|
|
87
96
|
"groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "Editor",
|
|
88
97
|
"groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "Loading",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Notification text when the shared link is failed to be created
|
|
2
2
|
groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText = Unable to create a shared link. Please try again later.
|
|
3
3
|
# Error message when more than the maximum number of contacts is entered
|
|
4
|
-
groupSharedFeatures.usm.contactsExceedLimitError = Oops
|
|
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.
|
|
5
5
|
# Notification text when the shared link failed to be created
|
|
6
6
|
groupSharedFeatures.usm.createSharedLinkErrorNoticeText = Unable to create a shared link. Please try again later.
|
|
7
7
|
# Notification text when the shared link is successfully created
|
package/dist/i18n/en-CA.js
CHANGED
|
@@ -17,6 +17,14 @@ export default {
|
|
|
17
17
|
"groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "Password must contain at least one upper case letter, number, or special character",
|
|
18
18
|
"groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "Password must contain at least 8 characters",
|
|
19
19
|
"groupSharedFeatures.usm.passwordRequiredErrorMessage": "Please enter a password",
|
|
20
|
+
"groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
|
|
21
|
+
"groupSharedFeatures.usm.removeCollaborator.cancelButton": "Cancel",
|
|
22
|
+
"groupSharedFeatures.usm.removeCollaborator.closeButton": "Close",
|
|
23
|
+
"groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Loading",
|
|
24
|
+
"groupSharedFeatures.usm.removeCollaborator.okayButton": "Okay",
|
|
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": "This will permanently remove the shared link. If this item is embedded on other sites it will also become inaccessible. Any custom properties, settings and expirations will be removed as well. Do you want to continue?",
|
|
21
29
|
"groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "Cancel",
|
|
22
30
|
"groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "Close",
|
|
@@ -83,6 +91,7 @@ export default {
|
|
|
83
91
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "Manage All",
|
|
84
92
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "Name",
|
|
85
93
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "Pending",
|
|
94
|
+
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
|
|
86
95
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "Role",
|
|
87
96
|
"groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "Editor",
|
|
88
97
|
"groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "Loading",
|
package/dist/i18n/en-GB.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "Unable to create a shared link. Please try again later.",
|
|
3
|
-
"groupSharedFeatures.usm.contactsExceedLimitError": "Oops
|
|
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.",
|
|
4
4
|
"groupSharedFeatures.usm.createSharedLinkErrorNoticeText": "Unable to create a shared link. Please try again later.",
|
|
5
5
|
"groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "Shared link created.",
|
|
6
6
|
"groupSharedFeatures.usm.defaultErrorNoticeText": "Something went wrong. Please try again later.",
|
|
@@ -17,6 +17,14 @@ export default {
|
|
|
17
17
|
"groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "Password must contain at least one upper case letter, number, or special character",
|
|
18
18
|
"groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "Password must contain at least 8 characters",
|
|
19
19
|
"groupSharedFeatures.usm.passwordRequiredErrorMessage": "Please enter a password",
|
|
20
|
+
"groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
|
|
21
|
+
"groupSharedFeatures.usm.removeCollaborator.cancelButton": "Cancel",
|
|
22
|
+
"groupSharedFeatures.usm.removeCollaborator.closeButton": "Close",
|
|
23
|
+
"groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Loading",
|
|
24
|
+
"groupSharedFeatures.usm.removeCollaborator.okayButton": "Okay",
|
|
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": "This will permanently remove the shared link. If this item is embedded on other sites, it will also become inaccessible. Any custom properties, settings and expirations will be removed as well. Do you want to continue?",
|
|
21
29
|
"groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "Cancel",
|
|
22
30
|
"groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "Close",
|
|
@@ -83,6 +91,7 @@ export default {
|
|
|
83
91
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "Manage all",
|
|
84
92
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "Name",
|
|
85
93
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "Pending",
|
|
94
|
+
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
|
|
86
95
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "Role",
|
|
87
96
|
"groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "Editor",
|
|
88
97
|
"groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "Loading",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Notification text when the shared link is failed to be created
|
|
2
2
|
groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText = Unable to create a shared link. Please try again later.
|
|
3
3
|
# Error message when more than the maximum number of contacts is entered
|
|
4
|
-
groupSharedFeatures.usm.contactsExceedLimitError = Oops
|
|
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.
|
|
5
5
|
# Notification text when the shared link failed to be created
|
|
6
6
|
groupSharedFeatures.usm.createSharedLinkErrorNoticeText = Unable to create a shared link. Please try again later.
|
|
7
7
|
# Notification text when the shared link is successfully created
|
package/dist/i18n/en-US.js
CHANGED
|
@@ -17,6 +17,14 @@ export default {
|
|
|
17
17
|
"groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "Password must contain at least one upper case letter, number, or special character",
|
|
18
18
|
"groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "Password must contain at least 8 characters",
|
|
19
19
|
"groupSharedFeatures.usm.passwordRequiredErrorMessage": "Please enter a password",
|
|
20
|
+
"groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
|
|
21
|
+
"groupSharedFeatures.usm.removeCollaborator.cancelButton": "Cancel",
|
|
22
|
+
"groupSharedFeatures.usm.removeCollaborator.closeButton": "Close",
|
|
23
|
+
"groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Loading",
|
|
24
|
+
"groupSharedFeatures.usm.removeCollaborator.okayButton": "Okay",
|
|
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": "This will permanently remove the shared link. If this item is embedded on other sites it will also become inaccessible. Any custom properties, settings and expirations will be removed as well. Do you want to continue?",
|
|
21
29
|
"groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "Cancel",
|
|
22
30
|
"groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "Close",
|
|
@@ -83,6 +91,7 @@ export default {
|
|
|
83
91
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "Manage All",
|
|
84
92
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "Name",
|
|
85
93
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "Pending",
|
|
94
|
+
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
|
|
86
95
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "Role",
|
|
87
96
|
"groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "Editor",
|
|
88
97
|
"groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "Loading",
|
|
@@ -34,6 +34,22 @@ groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage = Passwo
|
|
|
34
34
|
groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage = Password must contain at least 8 characters
|
|
35
35
|
# Error message for the password field when password is not provided
|
|
36
36
|
groupSharedFeatures.usm.passwordRequiredErrorMessage = Please enter a 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 = Cancel
|
|
41
|
+
# Aria label for the button to close the Remove Collaborator modal
|
|
42
|
+
groupSharedFeatures.usm.removeCollaborator.closeButton = Close
|
|
43
|
+
# Button aria label when the collaborator is being removed
|
|
44
|
+
groupSharedFeatures.usm.removeCollaborator.loadingLabel = Loading
|
|
45
|
+
# Button text to confirm removing a collaborator
|
|
46
|
+
groupSharedFeatures.usm.removeCollaborator.okayButton = Okay
|
|
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 = This will permanently remove the shared link. If this item is embedded on other sites it will also become inaccessible. Any custom properties, settings and expirations will be removed as well. Do you want to continue?
|
|
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 = Name
|
|
167
183
|
# Label for the role of a collaborator who has a pending collaboration invitation
|
|
168
184
|
groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole = Pending
|
|
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 = Role
|
|
171
189
|
# Label for the role of a collaborator who can edit and delete the item
|
package/dist/i18n/en-x-pseudo.js
CHANGED
|
@@ -17,6 +17,14 @@ export default {
|
|
|
17
17
|
"groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Pαşѕẁôяď múѕŧ ĉσпτǻĭи ατ ľєǻѕť òлє ùΡΡęŗ ċåѕé ľëţţĕř, ņùmьëŕ, óř śΡĕćіãĺ ĉнãгά¢ŧëŕ 國國國國國國國國國國國國國國國國國國國國國國國國⟧",
|
|
18
18
|
"groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Pāşśωøґď mųŝŧ ¢ōπτåīň âŧ ĺéâśτ 8 ćнàŗâĉťĕŕş 國國國國國國國國國國國國⟧",
|
|
19
19
|
"groupSharedFeatures.usm.passwordRequiredErrorMessage": "⟦萬萬萬萬萬萬 Pĺєαşĕ êηŧéг ά Ρáśşωôŗď 國國國國國國⟧",
|
|
20
|
+
"groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
|
|
21
|
+
"groupSharedFeatures.usm.removeCollaborator.cancelButton": "Cancel",
|
|
22
|
+
"groupSharedFeatures.usm.removeCollaborator.closeButton": "Close",
|
|
23
|
+
"groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Loading",
|
|
24
|
+
"groupSharedFeatures.usm.removeCollaborator.okayButton": "Okay",
|
|
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": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ţĥîś ωϊľľ ΡėгmăйêʼnţľУ řеmονë τнє ŝнǻгέď ľīňκ. Ĭƒ ţħĩѕ îţém ϊś ĕmвεďďèď ôл öτĥєř ŝîτėŝ ĩτ ωιļľ āļśό ьėçömė įήâĉçеѕśïьľέ. Āņỳ ćųśŧóm ΡгöΡėŗţієѕ, şеŧŧìηğŝ αňď ē×Ρίŕăŧіöπѕ ωїľļ ьė ŕěmоνéď άś ωèļļ. Ðø ÿŏú ẁąŋţ ŧõ čòήτïηúě? 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
|
|
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": "⟦萬 Νâmё 國⟧",
|
|
85
93
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "⟦萬萬 Pёηďíňğ 國國⟧",
|
|
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": "⟦萬萬 Ĺòâďĩňğ 國國⟧",
|
package/dist/i18n/es-419.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "No se puede crear un enlace compartido. Inténtelo más tarde.",
|
|
3
|
-
"groupSharedFeatures.usm.contactsExceedLimitError": "
|
|
3
|
+
"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.",
|
|
4
4
|
"groupSharedFeatures.usm.createSharedLinkErrorNoticeText": "No se puede crear un enlace compartido. Inténtelo más tarde.",
|
|
5
5
|
"groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "Se ha creado el enlace compartido.",
|
|
6
6
|
"groupSharedFeatures.usm.defaultErrorNoticeText": "Se ha producido un error. Inténtelo más tarde.",
|
|
@@ -17,6 +17,14 @@ export default {
|
|
|
17
17
|
"groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "La contraseña debe contener al menos una letra mayúscula, un número o un carácter especial",
|
|
18
18
|
"groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "La contraseña debe contener al menos 8 caracteres",
|
|
19
19
|
"groupSharedFeatures.usm.passwordRequiredErrorMessage": "Introduzca una contraseña",
|
|
20
|
+
"groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
|
|
21
|
+
"groupSharedFeatures.usm.removeCollaborator.cancelButton": "Cancel",
|
|
22
|
+
"groupSharedFeatures.usm.removeCollaborator.closeButton": "Close",
|
|
23
|
+
"groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Loading",
|
|
24
|
+
"groupSharedFeatures.usm.removeCollaborator.okayButton": "Okay",
|
|
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": "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?",
|
|
21
29
|
"groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "Anular",
|
|
22
30
|
"groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "Cerrar",
|
|
@@ -83,6 +91,7 @@ export default {
|
|
|
83
91
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "Gestionar todo",
|
|
84
92
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "Nombre",
|
|
85
93
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "Pendiente",
|
|
94
|
+
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
|
|
86
95
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "Rol",
|
|
87
96
|
"groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "Edición",
|
|
88
97
|
"groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "Cargando",
|
|
@@ -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 =
|
|
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
|
package/dist/i18n/es-ES.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"groupSharedFeatures.usm.autoCopySharedLinkErrorNoticeText": "No se puede crear un enlace compartido. Inténtelo más tarde.",
|
|
3
|
-
"groupSharedFeatures.usm.contactsExceedLimitError": "
|
|
3
|
+
"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.",
|
|
4
4
|
"groupSharedFeatures.usm.createSharedLinkErrorNoticeText": "No se puede crear un enlace compartido. Inténtelo más tarde.",
|
|
5
5
|
"groupSharedFeatures.usm.createSharedLinkSuccessNoticeText": "Se ha creado el enlace compartido.",
|
|
6
6
|
"groupSharedFeatures.usm.defaultErrorNoticeText": "Se ha producido un error. Inténtelo más tarde.",
|
|
@@ -17,6 +17,14 @@ export default {
|
|
|
17
17
|
"groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "La contraseña debe contener al menos una letra mayúscula, un número o un carácter especial",
|
|
18
18
|
"groupSharedFeatures.usm.passwordContainMinCharactersErrorMessage": "La contraseña debe contener al menos 8 caracteres",
|
|
19
19
|
"groupSharedFeatures.usm.passwordRequiredErrorMessage": "Introduzca una contraseña",
|
|
20
|
+
"groupSharedFeatures.usm.removeCollaborator.bodyText": "Are you sure you want to remove {name} as a collaborator?",
|
|
21
|
+
"groupSharedFeatures.usm.removeCollaborator.cancelButton": "Cancel",
|
|
22
|
+
"groupSharedFeatures.usm.removeCollaborator.closeButton": "Close",
|
|
23
|
+
"groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Loading",
|
|
24
|
+
"groupSharedFeatures.usm.removeCollaborator.okayButton": "Okay",
|
|
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": "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?",
|
|
21
29
|
"groupSharedFeatures.usm.removeSharedLinkModal.cancelButton": "Anular",
|
|
22
30
|
"groupSharedFeatures.usm.removeSharedLinkModal.closeButton": "Cerrar",
|
|
@@ -83,6 +91,7 @@ export default {
|
|
|
83
91
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.manageAllLink": "Gestionar todo",
|
|
84
92
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.nameColumn": "Nombre",
|
|
85
93
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.pendingRole": "Pendiente",
|
|
94
|
+
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.removeButton": "Remove",
|
|
86
95
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaboratorsView.roleColumn": "Rol",
|
|
87
96
|
"groupSharedFeatures.usm.unifiedShareFormModal.editorRole": "Edición",
|
|
88
97
|
"groupSharedFeatures.usm.unifiedShareFormModal.loadingLabel": "Cargando",
|
|
@@ -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 =
|
|
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
|
package/dist/i18n/fi-FI.js
CHANGED
|
@@ -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": "
|
|
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": "Cancel",
|
|
22
|
+
"groupSharedFeatures.usm.removeCollaborator.closeButton": "Close",
|
|
23
|
+
"groupSharedFeatures.usm.removeCollaborator.loadingLabel": "Loading",
|
|
24
|
+
"groupSharedFeatures.usm.removeCollaborator.okayButton": "Okay",
|
|
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 =
|
|
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
|