@box/unified-share-modal 1.32.1 → 1.34.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/unified-share-form-modal/collaboration-section/collaboration-role.js +39 -39
- package/dist/esm/lib/components/unified-share-form-modal/collaboration-section/collaboration-section.js +107 -102
- package/dist/esm/lib/components/unified-share-form-modal/shared-link-section/shared-link-section.js +66 -66
- package/dist/esm/lib/unified-share-modal.js +56 -54
- package/dist/i18n/bn-IN.js +13 -13
- package/dist/i18n/bn-IN.properties +34 -0
- package/dist/i18n/da-DK.js +13 -13
- package/dist/i18n/da-DK.properties +34 -0
- package/dist/i18n/de-DE.js +13 -13
- package/dist/i18n/de-DE.properties +34 -0
- package/dist/i18n/en-AU.js +6 -6
- package/dist/i18n/en-AU.properties +34 -0
- package/dist/i18n/en-CA.properties +34 -0
- package/dist/i18n/en-GB.js +6 -6
- package/dist/i18n/en-GB.properties +34 -0
- package/dist/i18n/en-x-pseudo.js +153 -153
- package/dist/i18n/en-x-pseudo.properties +170 -136
- package/dist/i18n/es-419.js +12 -12
- package/dist/i18n/es-419.properties +34 -0
- package/dist/i18n/es-ES.js +12 -12
- package/dist/i18n/es-ES.properties +34 -0
- package/dist/i18n/fi-FI.js +13 -13
- package/dist/i18n/fi-FI.properties +34 -0
- package/dist/i18n/fr-CA.js +13 -13
- package/dist/i18n/fr-CA.properties +34 -0
- package/dist/i18n/fr-FR.js +13 -13
- package/dist/i18n/fr-FR.properties +34 -0
- package/dist/i18n/hi-IN.js +13 -13
- package/dist/i18n/hi-IN.properties +34 -0
- package/dist/i18n/it-IT.js +13 -13
- package/dist/i18n/it-IT.properties +34 -0
- package/dist/i18n/ja-JP.js +13 -13
- package/dist/i18n/ja-JP.properties +34 -0
- package/dist/i18n/ko-KR.js +13 -13
- package/dist/i18n/ko-KR.properties +34 -0
- package/dist/i18n/nb-NO.js +13 -13
- package/dist/i18n/nb-NO.properties +34 -0
- package/dist/i18n/nl-NL.js +13 -13
- package/dist/i18n/nl-NL.properties +34 -0
- package/dist/i18n/pl-PL.js +13 -13
- package/dist/i18n/pl-PL.properties +34 -0
- package/dist/i18n/pt-BR.js +13 -13
- package/dist/i18n/pt-BR.properties +34 -0
- package/dist/i18n/ru-RU.js +13 -13
- package/dist/i18n/ru-RU.properties +34 -0
- package/dist/i18n/sv-SE.js +13 -13
- package/dist/i18n/sv-SE.properties +34 -0
- package/dist/i18n/tr-TR.js +13 -13
- package/dist/i18n/tr-TR.properties +34 -0
- package/dist/i18n/zh-CN.js +13 -13
- package/dist/i18n/zh-CN.properties +34 -0
- package/dist/i18n/zh-TW.js +13 -13
- package/dist/i18n/zh-TW.properties +34 -0
- package/dist/styles/collaboration-role.css +1 -1
- package/dist/styles/collaboration-section.css +1 -1
- package/dist/styles/shared-link-section.css +1 -1
- package/dist/types/lib/contexts/unified-share-modal-context.d.ts +1 -0
- package/dist/types/lib/unified-share-modal.d.ts +2 -1
- package/package.json +4 -4
package/dist/esm/lib/components/unified-share-form-modal/shared-link-section/shared-link-section.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { useRef as S, useState as
|
|
2
|
-
import { useIntl as
|
|
3
|
-
import { Text as x, Tooltip as _, Focusable as
|
|
1
|
+
import { useRef as S, useState as V, useCallback as v, useEffect as N } from "react";
|
|
2
|
+
import { useIntl as z } from "react-intl";
|
|
3
|
+
import { Text as x, Tooltip as _, Focusable as G, Switch as H, Status as J, Link as Q, Button as W } from "@box/blueprint-web";
|
|
4
4
|
import { ClockBadge as X } from "@box/blueprint-web-assets/icons/Line";
|
|
5
|
-
import { Mail as Y, Globe as
|
|
5
|
+
import { Mail as Y, Globe as P } from "@box/blueprint-web-assets/icons/Medium";
|
|
6
6
|
import { SurfaceStatusSurfaceRed as Z } from "@box/blueprint-web-assets/tokens/tokens";
|
|
7
7
|
import { CopyInput as $ } from "@box/copy-input";
|
|
8
8
|
import { SharedLinkAccess as ee } from "./shared-link-access.js";
|
|
9
|
-
import { SharedLinkPermission as
|
|
10
|
-
import
|
|
11
|
-
import { jsxs as l, jsx as
|
|
12
|
-
import { useUnifiedShareFormContext as
|
|
9
|
+
import { SharedLinkPermission as te } from "./shared-link-permission.js";
|
|
10
|
+
import t from "./messages.js";
|
|
11
|
+
import { jsxs as l, jsx as i } from "react/jsx-runtime";
|
|
12
|
+
import { useUnifiedShareFormContext as ie } from "../../../contexts/unified-share-form-context.js";
|
|
13
13
|
import { useUnifiedShareModalContext as ae } from "../../../contexts/unified-share-modal-context.js";
|
|
14
|
-
import { useSharingAction as
|
|
14
|
+
import { useSharingAction as D } from "../../../hooks/use-sharing-action.js";
|
|
15
15
|
import { formatDateFromTimestampToDateString as ne } from "../../../utils/date.js";
|
|
16
16
|
import { callOnKeyboardEvent as oe } from "../../../utils/event.js";
|
|
17
|
-
import '../../../../../styles/shared-link-section.css';const se = "
|
|
17
|
+
import '../../../../../styles/shared-link-section.css';const se = "_container_1b8qy_1", re = "_toggle_1b8qy_7", ce = "_settings_1b8qy_13", le = "_copy_1b8qy_22", de = "_access_1b8qy_30", he = "_securityIndicator_1b8qy_36", s = {
|
|
18
18
|
container: se,
|
|
19
19
|
toggle: re,
|
|
20
20
|
settings: ce,
|
|
@@ -22,149 +22,149 @@ import '../../../../../styles/shared-link-section.css';const se = "_container_1w
|
|
|
22
22
|
access: de,
|
|
23
23
|
securityIndicator: he
|
|
24
24
|
};
|
|
25
|
-
function
|
|
25
|
+
function Ie() {
|
|
26
26
|
const {
|
|
27
27
|
formatMessage: e
|
|
28
|
-
} =
|
|
29
|
-
onModalViewChange:
|
|
30
|
-
onShareViewChange:
|
|
31
|
-
} =
|
|
28
|
+
} = z(), g = S(!0), k = S(null), m = S(null), {
|
|
29
|
+
onModalViewChange: y,
|
|
30
|
+
onShareViewChange: w
|
|
31
|
+
} = ie(), {
|
|
32
32
|
config: o,
|
|
33
33
|
isFetching: A,
|
|
34
34
|
isSubmitting: F,
|
|
35
|
-
item:
|
|
35
|
+
item: q,
|
|
36
36
|
sharedLink: n,
|
|
37
|
-
sharingService:
|
|
37
|
+
sharingService: R
|
|
38
38
|
} = ae(), {
|
|
39
39
|
permissions: T = {}
|
|
40
|
+
} = q, {
|
|
41
|
+
createSharedLink: M
|
|
40
42
|
} = R, {
|
|
41
|
-
createSharedLink: B
|
|
42
|
-
} = M, {
|
|
43
43
|
sharedLinkAutoCopy: d,
|
|
44
|
-
sharedLinkAutoCreate:
|
|
44
|
+
sharedLinkAutoCreate: L
|
|
45
45
|
} = o;
|
|
46
|
-
let
|
|
47
|
-
d && (
|
|
46
|
+
let I = "create-shared-link";
|
|
47
|
+
d && (I = "auto-copy-shared-link");
|
|
48
48
|
const {
|
|
49
|
-
isLoading:
|
|
49
|
+
isLoading: B,
|
|
50
50
|
onAction: b
|
|
51
|
-
} =
|
|
52
|
-
a || (await b(),
|
|
53
|
-
}, [a, b]),
|
|
51
|
+
} = D(M, I), a = !!n.url, r = F ?? B, [C, O] = V(!1), p = v(async () => {
|
|
52
|
+
a || (await b(), O(!0));
|
|
53
|
+
}, [a, b]), U = v(async () => (p(), new Promise((c) => {
|
|
54
54
|
m.current = {
|
|
55
55
|
resolve: c
|
|
56
56
|
};
|
|
57
57
|
})), [p]), {
|
|
58
|
-
onAction:
|
|
59
|
-
} =
|
|
60
|
-
|
|
61
|
-
!g.current || A || (d ?
|
|
62
|
-
}, [A, g, d,
|
|
58
|
+
onAction: E
|
|
59
|
+
} = D(U, "auto-copy-shared-link");
|
|
60
|
+
N(() => {
|
|
61
|
+
!g.current || A || (d ? E() : L && p(), g.current = !1);
|
|
62
|
+
}, [A, g, d, L, p, E]), N(() => {
|
|
63
63
|
a && d && k.current && k.current.click();
|
|
64
64
|
}, [a, d]);
|
|
65
|
-
const
|
|
65
|
+
const j = v((u) => {
|
|
66
66
|
if (!m.current)
|
|
67
67
|
return;
|
|
68
68
|
let c;
|
|
69
|
-
u instanceof Error ? c = C ? e(
|
|
69
|
+
u instanceof Error ? c = C ? e(t.autoCreateCopyErrorNoticeText) : null : c = e(C ? t.autoCreateCopySuccessNoticeText : t.autoCopySuccessNoticeText), c && m.current.resolve({
|
|
70
70
|
messages: [{
|
|
71
71
|
text: c,
|
|
72
72
|
type: "success"
|
|
73
73
|
}]
|
|
74
74
|
}), m.current = null;
|
|
75
|
-
}, [e, C]),
|
|
76
|
-
u ||
|
|
75
|
+
}, [e, C]), K = async (u) => {
|
|
76
|
+
u || y("remove-shared-link"), u && await b();
|
|
77
77
|
};
|
|
78
78
|
let h, f = !1;
|
|
79
|
-
return !a && !r && (h = e(
|
|
79
|
+
return !a && !r && (h = e(t.sharedLinkToggleTooltip)), !a && !T.canShare && (h = e(t.createLinkDisabledTooltip), f = !0), a && !T.canSetShareAccess && (h = e(t.removeLinkDisabledTooltip), f = !0), /* @__PURE__ */ l("div", {
|
|
80
80
|
className: s.container,
|
|
81
|
-
children: [/* @__PURE__ */
|
|
81
|
+
children: [/* @__PURE__ */ i(x, {
|
|
82
82
|
as: "label",
|
|
83
83
|
variant: "bodyDefaultBold",
|
|
84
|
-
children: e(
|
|
84
|
+
children: e(t.shareLinkLabel)
|
|
85
85
|
}), /* @__PURE__ */ l("div", {
|
|
86
86
|
className: s.toggle,
|
|
87
|
-
children: [/* @__PURE__ */
|
|
87
|
+
children: [/* @__PURE__ */ i(_, {
|
|
88
88
|
align: "start",
|
|
89
89
|
content: h,
|
|
90
90
|
"data-testid": "shared-link-tooltip",
|
|
91
91
|
open: h ? void 0 : !1,
|
|
92
|
-
children: /* @__PURE__ */
|
|
92
|
+
children: /* @__PURE__ */ i(G, {
|
|
93
93
|
focusable: f,
|
|
94
|
-
children: /* @__PURE__ */
|
|
94
|
+
children: /* @__PURE__ */ i(H.Item, {
|
|
95
95
|
checked: a,
|
|
96
96
|
disabled: f || r,
|
|
97
|
-
label: e(
|
|
98
|
-
onCheckedChange:
|
|
97
|
+
label: e(t.sharedLinkToggleLabel),
|
|
98
|
+
onCheckedChange: K,
|
|
99
99
|
value: "shared-link"
|
|
100
100
|
})
|
|
101
101
|
})
|
|
102
|
-
}), a && !!n.expiresAt && /* @__PURE__ */
|
|
103
|
-
content: e(
|
|
102
|
+
}), a && !!n.expiresAt && /* @__PURE__ */ i(_, {
|
|
103
|
+
content: e(t.expirationIconTooltip, {
|
|
104
104
|
expirationDate: ne(n.expiresAt)
|
|
105
105
|
}),
|
|
106
106
|
"data-testid": "expiration-date-tooltip",
|
|
107
|
-
children: /* @__PURE__ */
|
|
107
|
+
children: /* @__PURE__ */ i(J, {
|
|
108
108
|
color: Z,
|
|
109
109
|
hideText: !0,
|
|
110
110
|
icon: X,
|
|
111
|
-
text: e(
|
|
111
|
+
text: e(t.expirationIconLabel)
|
|
112
112
|
})
|
|
113
|
-
}), a && o.sharedLinkSettings && /* @__PURE__ */
|
|
113
|
+
}), a && o.sharedLinkSettings && /* @__PURE__ */ i(Q, {
|
|
114
114
|
"aria-disabled": r,
|
|
115
115
|
"aria-haspopup": "dialog",
|
|
116
116
|
className: s.settings,
|
|
117
|
-
onClick: () =>
|
|
118
|
-
onKeyDown: oe(() =>
|
|
117
|
+
onClick: () => y("shared-link-settings"),
|
|
118
|
+
onKeyDown: oe(() => y("shared-link-settings"), {
|
|
119
119
|
canPreventDefault: !0
|
|
120
120
|
}),
|
|
121
121
|
role: "button",
|
|
122
122
|
tabIndex: r ? -1 : 0,
|
|
123
123
|
variant: "standalone",
|
|
124
|
-
children: e(
|
|
124
|
+
children: e(t.sharedLinkSettingsLabel)
|
|
125
125
|
})]
|
|
126
126
|
}), a && /* @__PURE__ */ l("div", {
|
|
127
127
|
className: s.copy,
|
|
128
|
-
children: [/* @__PURE__ */
|
|
128
|
+
children: [/* @__PURE__ */ i($, {
|
|
129
129
|
ref: k,
|
|
130
|
-
autoFocus:
|
|
130
|
+
autoFocus: L && a,
|
|
131
131
|
disabled: r,
|
|
132
132
|
hideLabel: !0,
|
|
133
|
-
label: e(
|
|
134
|
-
onCopy:
|
|
133
|
+
label: e(t.sharedLinkUrlLabel),
|
|
134
|
+
onCopy: j,
|
|
135
135
|
value: n.url
|
|
136
|
-
}), o.sharedLinkEmail && /* @__PURE__ */
|
|
136
|
+
}), o.sharedLinkEmail && /* @__PURE__ */ i(_, {
|
|
137
137
|
align: "end",
|
|
138
|
-
content: e(
|
|
139
|
-
children: /* @__PURE__ */
|
|
140
|
-
"aria-label": e(
|
|
138
|
+
content: e(t.sharedLinkEmailLabel),
|
|
139
|
+
children: /* @__PURE__ */ i(W, {
|
|
140
|
+
"aria-label": e(t.sharedLinkEmailLabel),
|
|
141
141
|
disabled: r,
|
|
142
142
|
icon: Y,
|
|
143
|
-
onClick: () =>
|
|
143
|
+
onClick: () => w("email"),
|
|
144
144
|
size: "large",
|
|
145
145
|
variant: "secondary"
|
|
146
146
|
})
|
|
147
147
|
})]
|
|
148
148
|
}), a && (o.sharedLinkAccess || o.sharedLinkPermission) && /* @__PURE__ */ l("div", {
|
|
149
149
|
className: s.access,
|
|
150
|
-
children: [o.sharedLinkAccess && /* @__PURE__ */
|
|
150
|
+
children: [o.sharedLinkAccess && /* @__PURE__ */ i(ee, {}), o.sharedLinkPermission && /* @__PURE__ */ i(te, {})]
|
|
151
151
|
}), a && n.access === "open" && /* @__PURE__ */ l("div", {
|
|
152
152
|
className: s.securityIndicator,
|
|
153
|
-
children: [/* @__PURE__ */
|
|
153
|
+
children: [/* @__PURE__ */ i(P, {}), /* @__PURE__ */ i(x, {
|
|
154
154
|
as: "span",
|
|
155
155
|
color: "textOnLightSecondary",
|
|
156
|
-
children: n.permission === "can_edit" ? e(
|
|
156
|
+
children: n.permission === "can_edit" ? e(t.sharedLinkEditablePubliclyAvailable) : e(t.sharedLinkPubliclyAvailable)
|
|
157
157
|
})]
|
|
158
158
|
}), a && n.access === "company" && n.permission === "can_edit" && /* @__PURE__ */ l("div", {
|
|
159
159
|
className: s.securityIndicator,
|
|
160
|
-
children: [/* @__PURE__ */
|
|
160
|
+
children: [/* @__PURE__ */ i(P, {}), /* @__PURE__ */ i(x, {
|
|
161
161
|
as: "span",
|
|
162
162
|
color: "textOnLightSecondary",
|
|
163
|
-
children: e(
|
|
163
|
+
children: e(t.sharedLinkElevatedEditableCompanyAvailable)
|
|
164
164
|
})]
|
|
165
165
|
})]
|
|
166
166
|
});
|
|
167
167
|
}
|
|
168
168
|
export {
|
|
169
|
-
|
|
169
|
+
Ie as SharedLinkSection
|
|
170
170
|
};
|
|
@@ -1,75 +1,77 @@
|
|
|
1
|
-
import { useState as i, useEffect as
|
|
2
|
-
import { DEFAULT_CONFIGURATION as
|
|
3
|
-
import { jsxs as
|
|
4
|
-
import { UnifiedShareModalContext as
|
|
5
|
-
import { UnifiedShareFormModal as
|
|
6
|
-
import { SharedLinkSettingsModal as
|
|
7
|
-
import { RemoveSharedLinkModal as
|
|
8
|
-
import { RemoveCollaboratorModal as
|
|
9
|
-
function
|
|
1
|
+
import { useState as i, useEffect as V, useMemo as j } from "react";
|
|
2
|
+
import { DEFAULT_CONFIGURATION as E } from "./constants.js";
|
|
3
|
+
import { jsxs as y, jsx as s } from "react/jsx-runtime";
|
|
4
|
+
import { UnifiedShareModalContext as A } from "./contexts/unified-share-modal-context.js";
|
|
5
|
+
import { UnifiedShareFormModal as D } from "./components/unified-share-form-modal/unified-share-form-modal.js";
|
|
6
|
+
import { SharedLinkSettingsModal as G } from "./components/shared-link-settings-modal/shared-link-settings-modal.js";
|
|
7
|
+
import { RemoveSharedLinkModal as N } from "./components/remove-shared-link-modal/remove-shared-link-modal.js";
|
|
8
|
+
import { RemoveCollaboratorModal as P } from "./components/remove-collaborator-modal/remove-collaborator-modal.js";
|
|
9
|
+
function W({
|
|
10
10
|
children: m,
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
11
|
+
collaborationAccess: f,
|
|
12
|
+
collaborationNotices: d,
|
|
13
|
+
collaborationRoles: l,
|
|
14
|
+
collaborators: h,
|
|
15
|
+
config: p,
|
|
16
|
+
contactService: u,
|
|
17
|
+
currentUser: g,
|
|
18
|
+
eventService: c,
|
|
19
|
+
initialContacts: C,
|
|
20
|
+
isFetching: M,
|
|
20
21
|
isOpen: e,
|
|
21
|
-
isSubmitting:
|
|
22
|
-
item:
|
|
22
|
+
isSubmitting: O,
|
|
23
|
+
item: U,
|
|
23
24
|
onLoad: t,
|
|
24
|
-
onOpenChange:
|
|
25
|
-
sharedLink:
|
|
26
|
-
sharingService:
|
|
25
|
+
onOpenChange: v,
|
|
26
|
+
sharedLink: S,
|
|
27
|
+
sharingService: x
|
|
27
28
|
}) {
|
|
28
|
-
const
|
|
29
|
-
|
|
30
|
-
(async () => (t && await t(),
|
|
29
|
+
const F = !!m, [o, k] = i(e ?? !F), [w, L] = i(!!t), [r, a] = i("unified-share-form"), [I, R] = i();
|
|
30
|
+
V(() => k((n) => e ?? n), [e]), V(() => {
|
|
31
|
+
(async () => (t && await t(), L(!1)))();
|
|
31
32
|
}, []);
|
|
32
|
-
const
|
|
33
|
-
|
|
34
|
-
},
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
33
|
+
const T = (n) => {
|
|
34
|
+
k(e ?? n), v && v(n);
|
|
35
|
+
}, b = j(() => ({
|
|
36
|
+
collaborationAccess: f,
|
|
37
|
+
collaborationNotices: d,
|
|
38
|
+
collaborationRoles: l ?? [],
|
|
39
|
+
collaborator: I ?? {},
|
|
40
|
+
collaborators: h ?? [],
|
|
39
41
|
config: {
|
|
40
|
-
...
|
|
41
|
-
...
|
|
42
|
+
...E,
|
|
43
|
+
...p
|
|
42
44
|
},
|
|
43
|
-
contactService:
|
|
44
|
-
currentUser:
|
|
45
|
-
eventService:
|
|
46
|
-
initialContacts:
|
|
47
|
-
isFetching:
|
|
48
|
-
isSubmitting:
|
|
49
|
-
item:
|
|
50
|
-
setCollaborator:
|
|
51
|
-
sharedLink:
|
|
52
|
-
sharingService:
|
|
53
|
-
}), [f, d,
|
|
54
|
-
return /* @__PURE__ */ A
|
|
55
|
-
value:
|
|
56
|
-
children: [/* @__PURE__ */ s(
|
|
45
|
+
contactService: u ?? {},
|
|
46
|
+
currentUser: g ?? {},
|
|
47
|
+
eventService: c ?? {},
|
|
48
|
+
initialContacts: C ?? [],
|
|
49
|
+
isFetching: M ?? w,
|
|
50
|
+
isSubmitting: O,
|
|
51
|
+
item: U,
|
|
52
|
+
setCollaborator: R,
|
|
53
|
+
sharedLink: S ?? {},
|
|
54
|
+
sharingService: x ?? {}
|
|
55
|
+
}), [f, d, l, I, h, p, u, g, c, C, M, w, O, U, S, x]);
|
|
56
|
+
return /* @__PURE__ */ y(A.Provider, {
|
|
57
|
+
value: b,
|
|
58
|
+
children: [/* @__PURE__ */ s(D, {
|
|
57
59
|
isOpen: o && r === "unified-share-form",
|
|
58
60
|
onModalViewChange: a,
|
|
59
|
-
onOpenChange:
|
|
61
|
+
onOpenChange: T,
|
|
60
62
|
children: m
|
|
61
|
-
}), /* @__PURE__ */ s(
|
|
63
|
+
}), /* @__PURE__ */ s(G, {
|
|
62
64
|
isOpen: o && r === "shared-link-settings",
|
|
63
65
|
onOpenChange: () => a("unified-share-form")
|
|
64
|
-
}), /* @__PURE__ */ s(
|
|
66
|
+
}), /* @__PURE__ */ s(N, {
|
|
65
67
|
isOpen: o && r === "remove-shared-link",
|
|
66
68
|
onOpenChange: () => a("unified-share-form")
|
|
67
|
-
}), /* @__PURE__ */ s(
|
|
69
|
+
}), /* @__PURE__ */ s(P, {
|
|
68
70
|
isOpen: o && r === "remove-collaborator",
|
|
69
71
|
onOpenChange: () => a("unified-share-form")
|
|
70
72
|
})]
|
|
71
73
|
});
|
|
72
74
|
}
|
|
73
75
|
export {
|
|
74
|
-
|
|
76
|
+
W as UnifiedShareModal
|
|
75
77
|
};
|
package/dist/i18n/bn-IN.js
CHANGED
|
@@ -12,7 +12,7 @@ export default {
|
|
|
12
12
|
"groupSharedFeatures.usm.expirationFutureDateErrorMessage": "মেয়াদউত্তীর্ণের তারিখ অবশ্যই ভবিষ্যতে হতে হবে",
|
|
13
13
|
"groupSharedFeatures.usm.expirationRequiredErrorMessage": "অনুগ্রহ করে একটি মেয়াদউত্তীর্ণের তারিখ নির্বাচন করুন",
|
|
14
14
|
"groupSharedFeatures.usm.invalidEmailErrorMessage": "ভুল ইমেইল অ্যাড্রেস",
|
|
15
|
-
"groupSharedFeatures.usm.justificationRequiredError": "
|
|
15
|
+
"groupSharedFeatures.usm.justificationRequiredError": "অনুগ্রহ করে একটি যুক্তি নির্বাচন করুন বা অবিরত রাখতে {count,plural,one{{count} জন বিধিনিষেধযুক্ত ব্যবহারকারী} other{{count} জন বিধিনিষেধযুক্ত ব্যবহারকারী}} পরিষ্কার করুন।",
|
|
16
16
|
"groupSharedFeatures.usm.noticeCloseLabel": "বন্ধ করুন",
|
|
17
17
|
"groupSharedFeatures.usm.passwordContainInvalidCharacterErrorMessage": "পাসওয়ার্ডে স্পেস, \"<\" বা \">\" থাকা যাবে না",
|
|
18
18
|
"groupSharedFeatures.usm.passwordContainLetterNumberOrSymbolErrorMessage": "পাসওয়ার্ডে কমপক্ষে একটি বড় হাতের অক্ষর, সংখ্যা বা বিশেষ অক্ষর থাকতে হবে",
|
|
@@ -32,7 +32,7 @@ export default {
|
|
|
32
32
|
"groupSharedFeatures.usm.removeSharedLinkModal.loadingLabel": "লোড হচ্ছে",
|
|
33
33
|
"groupSharedFeatures.usm.removeSharedLinkModal.okayButton": "ঠিক আছে",
|
|
34
34
|
"groupSharedFeatures.usm.removeSharedLinkModal.title": "শেয়ারকৃত লিঙ্ক অপসারণ করুন",
|
|
35
|
-
"groupSharedFeatures.usm.restrictedContactsError": "
|
|
35
|
+
"groupSharedFeatures.usm.restrictedContactsError": "অবিরত রাখতে অনুগ্রহ করে {count,plural,one{{count} জন বিধিনিষেধযুক্ত ব্যবহারকারী} other{{count} জন বিধিনিষেধযুক্ত ব্যবহারকারী}} মুছে ফেলুন।",
|
|
36
36
|
"groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton": "বাতিল করুন",
|
|
37
37
|
"groupSharedFeatures.usm.sharedLinkSettingsModal.closeButton": "বন্ধ করুন",
|
|
38
38
|
"groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByAccessPolicyWithClassification": "শ্রেণিবদ্ধকরণের কারণে বিষয়বস্তুর জন্য ডাউনলোড অক্ষম করা হয়েছে।",
|
|
@@ -40,7 +40,7 @@ export default {
|
|
|
40
40
|
"groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousContent": "একটি নিরাপত্তা নীতির কারণে এই বিষয়বস্তু ডাউনলোড করা অক্ষম করা হয়েছে।",
|
|
41
41
|
"groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel": "সরাসরি লিঙ্ক",
|
|
42
42
|
"groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText": "শেয়ার করা লিঙ্ক সহ ব্যবহারকারীদের এই আইটেমটি ডাউনলোড করার অনুমতি দিন",
|
|
43
|
-
"groupSharedFeatures.usm.sharedLinkSettingsModal.hidePasswordAriaLabel": "
|
|
43
|
+
"groupSharedFeatures.usm.sharedLinkSettingsModal.hidePasswordAriaLabel": "পাসওয়ার্ড লুকান",
|
|
44
44
|
"groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink": "শেয়ার করা লিঙ্ক সেটিংস সম্পর্কে আরও জানুন।",
|
|
45
45
|
"groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationCalendarAriaLabel": "একটি মেয়াদউত্তীর্ণ হওয়ার তারিখ নির্বাচন করুন",
|
|
46
46
|
"groupSharedFeatures.usm.sharedLinkSettingsModal.linkExpirationClearDatePickerAriaLabel": "তারিখ বেছে নেওয়া পরিষ্কার করুন",
|
|
@@ -54,7 +54,7 @@ export default {
|
|
|
54
54
|
"groupSharedFeatures.usm.sharedLinkSettingsModal.passwordToggleText": "পাসওয়ার্ড সুরক্ষা",
|
|
55
55
|
"groupSharedFeatures.usm.sharedLinkSettingsModal.passwordWarningText": "পাসওয়ার্ডে কমপক্ষে 8টি অক্ষর থাকতে হবে এবং কমপক্ষে একটি বড় হাতের অক্ষর, সংখ্যা বা বিশেষ অক্ষর থাকতে হবে।",
|
|
56
56
|
"groupSharedFeatures.usm.sharedLinkSettingsModal.saveButton": "সেভ করুন",
|
|
57
|
-
"groupSharedFeatures.usm.sharedLinkSettingsModal.showPasswordAriaLabel": "
|
|
57
|
+
"groupSharedFeatures.usm.sharedLinkSettingsModal.showPasswordAriaLabel": "পাসওয়ার্ড দেখান",
|
|
58
58
|
"groupSharedFeatures.usm.sharedLinkSettingsModal.subtitle": "এই বিষয়বস্তুটি লিঙ্ক সহ আপনার সংস্থার যে কারোর কাছে উপলভ্য এবং দেখা বা ডাউনলোড করা যেতে পারে। {learnSharedLinkSettingsLink}",
|
|
59
59
|
"groupSharedFeatures.usm.sharedLinkSettingsModal.title": "শেয়ার করা লিঙ্ক সেটিংস",
|
|
60
60
|
"groupSharedFeatures.usm.sharedLinkSettingsModal.vanityDomainSettingsWarningText": "সংবেদনশীল বিষয়বস্তু শেয়ার করার সময় কাস্টম URL ব্যবহার করা উচিত নয়।",
|
|
@@ -65,28 +65,28 @@ export default {
|
|
|
65
65
|
"groupSharedFeatures.usm.successNoticeIcon": "সফল!",
|
|
66
66
|
"groupSharedFeatures.usm.unifiedShareFormModal.closeButton": "বন্ধ করুন",
|
|
67
67
|
"groupSharedFeatures.usm.unifiedShareFormModal.coOwnerRole": "Co-owner",
|
|
68
|
-
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.businessJustification": "
|
|
68
|
+
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.businessJustification": "ব্যবসায়িক যৌক্তিকতা",
|
|
69
69
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.cancelButton": "বাতিল করুন",
|
|
70
70
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.clearButton": "পরিষ্কার করুন",
|
|
71
71
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.closeButton": "বন্ধ করুন",
|
|
72
72
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.coOwnerDescription": "নিরাপত্তা পরিচালনা, আপলোড, ডাউনলোড করুন, প্রিভিউ দেখুন, শেয়ার, সম্পাদনা করুন এবং মুছুন",
|
|
73
|
-
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.contactRestrictionInformationBarrierNotice": "{count,
|
|
74
|
-
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.contactRestrictionNotice": "{count,
|
|
75
|
-
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.contactRestrictionRemoveButtonLabel": "
|
|
73
|
+
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.contactRestrictionInformationBarrierNotice": "একটি নিরাপত্তা নীতির কারণে {count,plural,one{{count} invitation} other{{count} invitations}} পাঠানো যাবে না। {removeLink}",
|
|
74
|
+
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.contactRestrictionNotice": "প্রয়োগ নিরাপত্তা নীতির কারণে বাহ্যিক সহযোগিতা সীমাবদ্ধ থাকার কারণে {count,plural,one{{count}টি আমন্ত্রণ} other{{count}টি আমন্ত্রণ}} পাঠানো যাবে না। {removeLink}",
|
|
75
|
+
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.contactRestrictionRemoveButtonLabel": "চালিয়ে যেতে অপসারণ করুন",
|
|
76
76
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.contentSharedWithExternalCollaborators": "This content will be shared with external collaborators.",
|
|
77
77
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.editorDescription": "আপলোড, ডাউনলোড করুন, প্রিভিউ দেখুন, শেয়ার ও সম্পাদনা করুন",
|
|
78
78
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.editorFolderDescription": "আপলোড, ডাউনলোড করুন, প্রিভিউ দেখুন, শেয়ার, সম্পাদনা করুন এবং মুছুন",
|
|
79
79
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.emailSharedLinkLabel": "শেয়ারকৃত লিঙ্ক ইমেইল করুন",
|
|
80
|
-
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.errorNoticeIconAriaLabel": "
|
|
80
|
+
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.errorNoticeIconAriaLabel": "ত্রুটি",
|
|
81
81
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.inviteAsRoleLabel": "{role} হিসাবে আমন্ত্রণ করুন",
|
|
82
82
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.inviteDisabledTooltip": "সহযোগীদের আমন্ত্রণ জানানোর অনুমতি নেই",
|
|
83
83
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.invitePeopleLabel": "ব্যক্তিদের আমন্ত্রণ করুন",
|
|
84
84
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.invitePeoplePlaceholder": "নাম ও ইমেইল অ্যাড্রেসগুলি যোগ করুন",
|
|
85
85
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.inviteWebLinkDisabledTooltip": "বুকমার্কগুলিতে সহযোগীদের যোগ করা যাবে না",
|
|
86
|
-
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.justifiableContactRestrictionNotice": "
|
|
87
|
-
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.justifiableContactRestrictionRemoveButtonLabel": "
|
|
88
|
-
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.justificationSelectPlaceholder": "
|
|
89
|
-
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.loadingJustificationReasonsLabel": "
|
|
86
|
+
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.justifiableContactRestrictionNotice": "এই বিষয়বস্তু জন্য একটি ব্যবসায়িক যৌক্তিকতা {count,plural,one{{count}টি আমন্ত্রণ} other{{count}টি আমন্ত্রণ}} প্রয়োজন। অনুগ্রহ করে নীচে ব্যবসায়িক যৌক্তিকতা নির্বাচন করুন। {justificationSelect} {removeLink}",
|
|
87
|
+
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.justifiableContactRestrictionRemoveButtonLabel": "বিকল্পভাবে, চালিয়ে যেতে অপসারণ করুন",
|
|
88
|
+
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.justificationSelectPlaceholder": "যৌক্তিকতা নির্বাচন করুন",
|
|
89
|
+
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.loadingJustificationReasonsLabel": "ন্যায়সঙ্গত কারণ লোড করা হচ্ছে",
|
|
90
90
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.loadingLabel": "লোড হচ্ছে",
|
|
91
91
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.previewerDescription": "Preview-only",
|
|
92
92
|
"groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.previewerUploaderDescription": "আপলোড করুন ও প্রিভিউ দেখুন",
|
|
@@ -24,6 +24,8 @@ groupSharedFeatures.usm.expirationFutureDateErrorMessage = মেয়াদউ
|
|
|
24
24
|
groupSharedFeatures.usm.expirationRequiredErrorMessage = অনুগ্রহ করে একটি মেয়াদউত্তীর্ণের তারিখ নির্বাচন করুন
|
|
25
25
|
# Error message for the email field when email is invalid
|
|
26
26
|
groupSharedFeatures.usm.invalidEmailErrorMessage = ভুল ইমেইল অ্যাড্রেস
|
|
27
|
+
# Error message when a user tries to send invitations but a business justification is required before proceeding
|
|
28
|
+
groupSharedFeatures.usm.justificationRequiredError = অনুগ্রহ করে একটি যুক্তি নির্বাচন করুন বা অবিরত রাখতে {count,plural,one{{count} জন বিধিনিষেধযুক্ত ব্যবহারকারী} other{{count} জন বিধিনিষেধযুক্ত ব্যবহারকারী}} পরিষ্কার করুন।
|
|
27
29
|
# Close button aria label for the notifications
|
|
28
30
|
groupSharedFeatures.usm.noticeCloseLabel = বন্ধ করুন
|
|
29
31
|
# Error message for the password field when password contains forbidden characters.
|
|
@@ -62,6 +64,8 @@ groupSharedFeatures.usm.removeSharedLinkModal.loadingLabel = লোড হচ্
|
|
|
62
64
|
groupSharedFeatures.usm.removeSharedLinkModal.okayButton = ঠিক আছে
|
|
63
65
|
# Title of the Remove Shared Link modal
|
|
64
66
|
groupSharedFeatures.usm.removeSharedLinkModal.title = শেয়ারকৃত লিঙ্ক অপসারণ করুন
|
|
67
|
+
# Error notification when a user tries to send invitations to restricted users
|
|
68
|
+
groupSharedFeatures.usm.restrictedContactsError = অবিরত রাখতে অনুগ্রহ করে {count,plural,one{{count} জন বিধিনিষেধযুক্ত ব্যবহারকারী} other{{count} জন বিধিনিষেধযুক্ত ব্যবহারকারী}} মুছে ফেলুন।
|
|
65
69
|
# Button text to cancel updating the shared link settings
|
|
66
70
|
groupSharedFeatures.usm.sharedLinkSettingsModal.cancelButton = বাতিল করুন
|
|
67
71
|
# Aria label for the button to close the Shared Link Settings modal
|
|
@@ -76,6 +80,8 @@ groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkBlockedByMaliciousCont
|
|
|
76
80
|
groupSharedFeatures.usm.sharedLinkSettingsModal.directLinkLabel = সরাসরি লিঙ্ক
|
|
77
81
|
# Label for the download settings toggle
|
|
78
82
|
groupSharedFeatures.usm.sharedLinkSettingsModal.downloadSettingsToggleText = শেয়ার করা লিঙ্ক সহ ব্যবহারকারীদের এই আইটেমটি ডাউনলোড করার অনুমতি দিন
|
|
83
|
+
# Aria label for button to hide password
|
|
84
|
+
groupSharedFeatures.usm.sharedLinkSettingsModal.hidePasswordAriaLabel = পাসওয়ার্ড লুকান
|
|
79
85
|
# Link to learn more about shared link settings
|
|
80
86
|
groupSharedFeatures.usm.sharedLinkSettingsModal.learnSharedLinkSettingsLink = শেয়ার করা লিঙ্ক সেটিংস সম্পর্কে আরও জানুন।
|
|
81
87
|
# Aria label for the calendar in the link expiration settings
|
|
@@ -102,6 +108,8 @@ groupSharedFeatures.usm.sharedLinkSettingsModal.passwordToggleText = পাস
|
|
|
102
108
|
groupSharedFeatures.usm.sharedLinkSettingsModal.passwordWarningText = পাসওয়ার্ডে কমপক্ষে 8টি অক্ষর থাকতে হবে এবং কমপক্ষে একটি বড় হাতের অক্ষর, সংখ্যা বা বিশেষ অক্ষর থাকতে হবে।
|
|
103
109
|
# Button text to confirm saving the shared link settings
|
|
104
110
|
groupSharedFeatures.usm.sharedLinkSettingsModal.saveButton = সেভ করুন
|
|
111
|
+
# Aria label for button to reveal password
|
|
112
|
+
groupSharedFeatures.usm.sharedLinkSettingsModal.showPasswordAriaLabel = পাসওয়ার্ড দেখান
|
|
105
113
|
# subtitle of the Shared Link settings modal
|
|
106
114
|
groupSharedFeatures.usm.sharedLinkSettingsModal.subtitle = এই বিষয়বস্তুটি লিঙ্ক সহ আপনার সংস্থার যে কারোর কাছে উপলভ্য এবং দেখা বা ডাউনলোড করা যেতে পারে। {learnSharedLinkSettingsLink}
|
|
107
115
|
# Title of the Shared Link Settings modal
|
|
@@ -122,6 +130,8 @@ groupSharedFeatures.usm.successNoticeIcon = সফল!
|
|
|
122
130
|
groupSharedFeatures.usm.unifiedShareFormModal.closeButton = বন্ধ করুন
|
|
123
131
|
# Label for the role of a collaborator who co-owns the item
|
|
124
132
|
groupSharedFeatures.usm.unifiedShareFormModal.coOwnerRole = Co-owner
|
|
133
|
+
# Title for the dropdown to select a business justification reason
|
|
134
|
+
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.businessJustification = ব্যবসায়িক যৌক্তিকতা
|
|
125
135
|
# Button text to cancel inviting collaborators to the file / folder
|
|
126
136
|
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.cancelButton = বাতিল করুন
|
|
127
137
|
# Aria label for the button to clear the input field for selecting users
|
|
@@ -130,12 +140,22 @@ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.clearButton =
|
|
|
130
140
|
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.closeButton = বন্ধ করুন
|
|
131
141
|
# Description for the collaboration role with "Co-owner" permissions to the item
|
|
132
142
|
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.coOwnerDescription = নিরাপত্তা পরিচালনা, আপলোড, ডাউনলোড করুন, প্রিভিউ দেখুন, শেয়ার, সম্পাদনা করুন এবং মুছুন
|
|
143
|
+
# Text for the notice when there are Information Barrier collaboration restrictions
|
|
144
|
+
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.contactRestrictionInformationBarrierNotice = একটি নিরাপত্তা নীতির কারণে {count,plural,one{{count} invitation} other{{count} invitations}} পাঠানো যাবে না। {removeLink}
|
|
145
|
+
# Text for the notice when there are collaboration restrictions
|
|
146
|
+
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.contactRestrictionNotice = প্রয়োগ নিরাপত্তা নীতির কারণে বাহ্যিক সহযোগিতা সীমাবদ্ধ থাকার কারণে {count,plural,one{{count}টি আমন্ত্রণ} other{{count}টি আমন্ত্রণ}} পাঠানো যাবে না। {removeLink}
|
|
147
|
+
# Label for the button that removes restricted contacts
|
|
148
|
+
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.contactRestrictionRemoveButtonLabel = চালিয়ে যেতে অপসারণ করুন
|
|
149
|
+
# Text shown in share modal when there is at least one external collaborator
|
|
150
|
+
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.contentSharedWithExternalCollaborators = This content will be shared with external collaborators.
|
|
133
151
|
# Description for the collaboration role with "Editor" permissions to the item
|
|
134
152
|
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.editorDescription = আপলোড, ডাউনলোড করুন, প্রিভিউ দেখুন, শেয়ার ও সম্পাদনা করুন
|
|
135
153
|
# Description for the collaboration role with "Editor" permissions to the folder
|
|
136
154
|
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.editorFolderDescription = আপলোড, ডাউনলোড করুন, প্রিভিউ দেখুন, শেয়ার, সম্পাদনা করুন এবং মুছুন
|
|
137
155
|
# Label for the field to select users to email the shared link of the item
|
|
138
156
|
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.emailSharedLinkLabel = শেয়ারকৃত লিঙ্ক ইমেইল করুন
|
|
157
|
+
# Aria label for the error icon in the inline notice
|
|
158
|
+
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.errorNoticeIconAriaLabel = ত্রুটি
|
|
139
159
|
# Label for the button to select the collaboration role of the new collaborator
|
|
140
160
|
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.inviteAsRoleLabel = {role} হিসাবে আমন্ত্রণ করুন
|
|
141
161
|
# Tooltip on the collaboration form when the user does not have permission to invite collaborators
|
|
@@ -146,6 +166,14 @@ groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.invitePeopleL
|
|
|
146
166
|
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.invitePeoplePlaceholder = নাম ও ইমেইল অ্যাড্রেসগুলি যোগ করুন
|
|
147
167
|
# Tooltip on the collaboration form when the item is a bookmark
|
|
148
168
|
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.inviteWebLinkDisabledTooltip = বুকমার্কগুলিতে সহযোগীদের যোগ করা যাবে না
|
|
169
|
+
# Text for the notice when there are collaboration restrictions and business justifications are allowed
|
|
170
|
+
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.justifiableContactRestrictionNotice = এই বিষয়বস্তু জন্য একটি ব্যবসায়িক যৌক্তিকতা {count,plural,one{{count}টি আমন্ত্রণ} other{{count}টি আমন্ত্রণ}} প্রয়োজন। অনুগ্রহ করে নীচে ব্যবসায়িক যৌক্তিকতা নির্বাচন করুন। {justificationSelect} {removeLink}
|
|
171
|
+
# Label for the button that removes restricted contacts when justifications are allowed
|
|
172
|
+
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.justifiableContactRestrictionRemoveButtonLabel = বিকল্পভাবে, চালিয়ে যেতে অপসারণ করুন
|
|
173
|
+
# Placeholder text for the dropdown to select a business justification reason
|
|
174
|
+
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.justificationSelectPlaceholder = যৌক্তিকতা নির্বাচন করুন
|
|
175
|
+
# Aria label for the loading indicator when fetching justification reasons
|
|
176
|
+
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.loadingJustificationReasonsLabel = ন্যায়সঙ্গত কারণ লোড করা হচ্ছে
|
|
149
177
|
# Aria label for the loading indicator of the Unified Share Modal
|
|
150
178
|
groupSharedFeatures.usm.unifiedShareFormModal.collaborationSection.loadingLabel = লোড হচ্ছে
|
|
151
179
|
# Description for the collaboration role with "Previewer" permissions to the item
|
|
@@ -244,8 +272,14 @@ groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.openAccessLevelL
|
|
|
244
272
|
groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.removeLinkDisabledTooltip = লিঙ্কটি অপসারণ করতে আপনার অনুমতি নেই
|
|
245
273
|
# Label for the section to manage the shared link of the file / folder
|
|
246
274
|
groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.shareLinkLabel = লিঙ্ক শেয়ার করুন
|
|
275
|
+
# Text shown in share modal when shared link is editable and is open to public access
|
|
276
|
+
groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkEditablePubliclyAvailable = Publicly available for anyone to view and download. Any logged in users with the link can edit.
|
|
277
|
+
# Text shown in share modal when shared link is editable and is open to company access
|
|
278
|
+
groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkElevatedEditableCompanyAvailable = People who have access to this link can edit.
|
|
247
279
|
# Aria label and tooltip for the icon button to email the shared link
|
|
248
280
|
groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkEmailLabel = শেয়ার করা লিঙ্ক পাঠান
|
|
281
|
+
# Text shown in share modal when shared link is open to public access
|
|
282
|
+
groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkPubliclyAvailable = This content is publicly available to anyone with the link.
|
|
249
283
|
# Label for the button link to open the Shared Link Settings modal
|
|
250
284
|
groupSharedFeatures.usm.unifiedShareFormModal.sharedLinkSection.sharedLinkSettingsLabel = লিঙ্ক সেটিংস
|
|
251
285
|
# Label for the toggle to create and delete the shared link
|