box-ui-elements 16.0.0-beta.24 → 16.0.0-beta.26
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/es/features/content-insights/ContentInsightsSummary.js +23 -8
- package/es/features/content-insights/ContentInsightsSummary.js.map +1 -1
- package/es/src/features/content-insights/ContentInsightsSummary.d.ts +2 -1
- package/i18n/bn-IN.js +10 -10
- package/i18n/bn-IN.properties +10 -10
- package/i18n/da-DK.js +10 -10
- package/i18n/da-DK.properties +10 -10
- package/i18n/de-DE.js +10 -10
- package/i18n/de-DE.properties +10 -10
- package/i18n/en-AU.js +7 -7
- package/i18n/en-AU.properties +7 -7
- package/i18n/en-GB.js +7 -7
- package/i18n/en-GB.properties +7 -7
- package/i18n/es-419.js +10 -10
- package/i18n/es-419.properties +10 -10
- package/i18n/es-ES.js +10 -10
- package/i18n/es-ES.properties +10 -10
- package/i18n/fi-FI.js +10 -10
- package/i18n/fi-FI.properties +10 -10
- package/i18n/fr-CA.js +10 -10
- package/i18n/fr-CA.properties +10 -10
- package/i18n/fr-FR.js +10 -10
- package/i18n/fr-FR.properties +10 -10
- package/i18n/hi-IN.js +10 -10
- package/i18n/hi-IN.properties +10 -10
- package/i18n/it-IT.js +10 -10
- package/i18n/it-IT.properties +10 -10
- package/i18n/ja-JP.js +25 -25
- package/i18n/ja-JP.properties +25 -25
- package/i18n/ko-KR.js +10 -10
- package/i18n/ko-KR.properties +10 -10
- package/i18n/nb-NO.js +10 -10
- package/i18n/nb-NO.properties +10 -10
- package/i18n/nl-NL.js +10 -10
- package/i18n/nl-NL.properties +10 -10
- package/i18n/pl-PL.js +10 -10
- package/i18n/pl-PL.properties +10 -10
- package/i18n/pt-BR.js +10 -10
- package/i18n/pt-BR.properties +10 -10
- package/i18n/ru-RU.js +10 -10
- package/i18n/ru-RU.properties +10 -10
- package/i18n/tr-TR.js +10 -10
- package/i18n/tr-TR.properties +10 -10
- package/i18n/zh-CN.js +10 -10
- package/i18n/zh-CN.properties +10 -10
- package/i18n/zh-TW.js +9 -9
- package/i18n/zh-TW.properties +9 -9
- package/package.json +1 -1
- package/src/features/content-insights/ContentInsightsSummary.tsx +18 -8
- package/src/features/content-insights/__tests__/ContentInsightsSummary.test.tsx +10 -1
|
@@ -1,24 +1,39 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
+
import ContentAnalyticsErrorState from './ContentAnalyticsErrorState';
|
|
2
3
|
import ContentInsightsSummaryGhostState from './ContentInsightsSummaryGhostState';
|
|
3
4
|
import GraphCardPreviewsSummary from './GraphCardPreviewsSummary';
|
|
4
5
|
import OpenContentInsightsButton from './OpenContentInsightsButton';
|
|
5
6
|
import './ContentInsightsSummary.scss';
|
|
6
7
|
|
|
7
8
|
var ContentInsightsSummary = function ContentInsightsSummary(_ref) {
|
|
8
|
-
var
|
|
9
|
+
var error = _ref.error,
|
|
10
|
+
graphData = _ref.graphData,
|
|
9
11
|
isLoading = _ref.isLoading,
|
|
10
12
|
previousPeriodCount = _ref.previousPeriodCount,
|
|
11
13
|
onClick = _ref.onClick,
|
|
12
14
|
totalCount = _ref.totalCount;
|
|
15
|
+
|
|
16
|
+
var renderContentAnalyticsSummary = function renderContentAnalyticsSummary() {
|
|
17
|
+
if (error) {
|
|
18
|
+
return React.createElement(ContentAnalyticsErrorState, null);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
if (isLoading) {
|
|
22
|
+
return React.createElement(ContentInsightsSummaryGhostState, null);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
return React.createElement(React.Fragment, null, React.createElement(GraphCardPreviewsSummary, {
|
|
26
|
+
graphData: graphData,
|
|
27
|
+
previousPeriodCount: previousPeriodCount,
|
|
28
|
+
totalCount: totalCount
|
|
29
|
+
}), React.createElement(OpenContentInsightsButton, {
|
|
30
|
+
onClick: onClick
|
|
31
|
+
}));
|
|
32
|
+
};
|
|
33
|
+
|
|
13
34
|
return React.createElement("div", {
|
|
14
35
|
className: "ContentInsightsSummary"
|
|
15
|
-
},
|
|
16
|
-
graphData: graphData,
|
|
17
|
-
previousPeriodCount: previousPeriodCount,
|
|
18
|
-
totalCount: totalCount
|
|
19
|
-
}), React.createElement(OpenContentInsightsButton, {
|
|
20
|
-
onClick: onClick
|
|
21
|
-
})));
|
|
36
|
+
}, renderContentAnalyticsSummary());
|
|
22
37
|
};
|
|
23
38
|
|
|
24
39
|
export default ContentInsightsSummary;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/features/content-insights/ContentInsightsSummary.tsx"],"names":["React","ContentInsightsSummaryGhostState","GraphCardPreviewsSummary","OpenContentInsightsButton","ContentInsightsSummary","graphData","isLoading","previousPeriodCount","onClick","totalCount"],"mappings":"AAAA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AAEA,OAAOC,gCAAP,MAA6C,oCAA7C;AACA,OAAOC,wBAAP,MAAqC,4BAArC;AACA,OAAOC,yBAAP,MAAsC,6BAAtC;AAGA,OAAO,+BAAP;;
|
|
1
|
+
{"version":3,"sources":["../../../src/features/content-insights/ContentInsightsSummary.tsx"],"names":["React","ContentAnalyticsErrorState","ContentInsightsSummaryGhostState","GraphCardPreviewsSummary","OpenContentInsightsButton","ContentInsightsSummary","error","graphData","isLoading","previousPeriodCount","onClick","totalCount","renderContentAnalyticsSummary"],"mappings":"AAAA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AAEA,OAAOC,0BAAP,MAAuC,8BAAvC;AACA,OAAOC,gCAAP,MAA6C,oCAA7C;AACA,OAAOC,wBAAP,MAAqC,4BAArC;AACA,OAAOC,yBAAP,MAAsC,6BAAtC;AAGA,OAAO,+BAAP;;AAWA,IAAMC,sBAAsB,GAAG,SAAzBA,sBAAyB,OAAsF;AAAA,MAAnFC,KAAmF,QAAnFA,KAAmF;AAAA,MAA5EC,SAA4E,QAA5EA,SAA4E;AAAA,MAAjEC,SAAiE,QAAjEA,SAAiE;AAAA,MAAtDC,mBAAsD,QAAtDA,mBAAsD;AAAA,MAAjCC,OAAiC,QAAjCA,OAAiC;AAAA,MAAxBC,UAAwB,QAAxBA,UAAwB;;AACjH,MAAMC,6BAA6B,GAAG,SAAhCA,6BAAgC,GAAM;AACxC,QAAIN,KAAJ,EAAW;AACP,aAAO,oBAAC,0BAAD,OAAP;AACH;;AAED,QAAIE,SAAJ,EAAe;AACX,aAAO,oBAAC,gCAAD,OAAP;AACH;;AAED,WACI,0CACI,oBAAC,wBAAD;AACI,MAAA,SAAS,EAAED,SADf;AAEI,MAAA,mBAAmB,EAAEE,mBAFzB;AAGI,MAAA,UAAU,EAAEE;AAHhB,MADJ,EAMI,oBAAC,yBAAD;AAA2B,MAAA,OAAO,EAAED;AAApC,MANJ,CADJ;AAUH,GAnBD;;AAqBA,SAAO;AAAK,IAAA,SAAS,EAAC;AAAf,KAAyCE,6BAA6B,EAAtE,CAAP;AACH,CAvBD;;AAyBA,eAAeP,sBAAf","sourcesContent":["import * as React from 'react';\n\nimport ContentAnalyticsErrorState from './ContentAnalyticsErrorState';\nimport ContentInsightsSummaryGhostState from './ContentInsightsSummaryGhostState';\nimport GraphCardPreviewsSummary from './GraphCardPreviewsSummary';\nimport OpenContentInsightsButton from './OpenContentInsightsButton';\nimport { GraphData } from './types';\n\nimport './ContentInsightsSummary.scss';\n\ninterface Props {\n graphData: GraphData;\n error?: Object;\n isLoading: boolean;\n onClick: () => void;\n previousPeriodCount: number;\n totalCount: number;\n}\n\nconst ContentInsightsSummary = ({ error, graphData, isLoading, previousPeriodCount, onClick, totalCount }: Props) => {\n const renderContentAnalyticsSummary = () => {\n if (error) {\n return <ContentAnalyticsErrorState />;\n }\n\n if (isLoading) {\n return <ContentInsightsSummaryGhostState />;\n }\n\n return (\n <>\n <GraphCardPreviewsSummary\n graphData={graphData}\n previousPeriodCount={previousPeriodCount}\n totalCount={totalCount}\n />\n <OpenContentInsightsButton onClick={onClick} />\n </>\n );\n };\n\n return <div className=\"ContentInsightsSummary\">{renderContentAnalyticsSummary()}</div>;\n};\n\nexport default ContentInsightsSummary;\n"],"file":"ContentInsightsSummary.js"}
|
|
@@ -2,10 +2,11 @@ import { GraphData } from './types';
|
|
|
2
2
|
import './ContentInsightsSummary.scss';
|
|
3
3
|
interface Props {
|
|
4
4
|
graphData: GraphData;
|
|
5
|
+
error?: Object;
|
|
5
6
|
isLoading: boolean;
|
|
6
7
|
onClick: () => void;
|
|
7
8
|
previousPeriodCount: number;
|
|
8
9
|
totalCount: number;
|
|
9
10
|
}
|
|
10
|
-
declare const ContentInsightsSummary: ({ graphData, isLoading, previousPeriodCount, onClick, totalCount }: Props) => JSX.Element;
|
|
11
|
+
declare const ContentInsightsSummary: ({ error, graphData, isLoading, previousPeriodCount, onClick, totalCount }: Props) => JSX.Element;
|
|
11
12
|
export default ContentInsightsSummary;
|
package/i18n/bn-IN.js
CHANGED
|
@@ -5,8 +5,8 @@ export default {
|
|
|
5
5
|
"be.activitySidebar.activityFeed.annotationMissingError": "এই মন্তব্যটি আর বিদ্যমান নেই",
|
|
6
6
|
"be.activitySidebar.activityFeed.commentMissingError": "এই মন্তব্যটি আর বিদ্যমান নেই",
|
|
7
7
|
"be.activitySidebar.activityFeed.feedInlineErrorTitle": "ত্রুটি",
|
|
8
|
-
"be.activitySidebar.activityFeed.hideReplies": "
|
|
9
|
-
"be.activitySidebar.activityFeed.showReplies": "
|
|
8
|
+
"be.activitySidebar.activityFeed.hideReplies": "উত্তর লুকান",
|
|
9
|
+
"be.activitySidebar.activityFeed.showReplies": "{repliesToLoadCount, plural, one {# উত্তর} other {# উত্তরগুলি}} দেখুন",
|
|
10
10
|
"be.activitySidebar.activityFeed.taskMissingError": "এই কাজটি আর বিদ্যমান নেই",
|
|
11
11
|
"be.activitySidebarFilter.status.all": "সমস্ত মন্তব্যগুলি",
|
|
12
12
|
"be.activitySidebarFilter.status.open": "অমীমাংসিত মন্তব্যগুলি",
|
|
@@ -778,12 +778,12 @@ export default {
|
|
|
778
778
|
"boxui.unifiedShare.collaboratorListTitle": "'{itemName}'-এর লোকেরা",
|
|
779
779
|
"boxui.unifiedShare.collaborators.expirationTooltipClickableText": "{date}-এ অ্যাক্সেসের মেয়াদ উত্তীর্ণ হয়। বিশদের জন্য ক্লিক করুন।",
|
|
780
780
|
"boxui.unifiedShare.contactEmailsTooltipText": "{emails}, এবং আরও {remainingEmailsCount}",
|
|
781
|
-
"boxui.unifiedShare.contactRestrictionNotice": "
|
|
782
|
-
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrier": "
|
|
781
|
+
"boxui.unifiedShare.contactRestrictionNotice": "{count, plural, one {{count} আমন্ত্রণ} other {{count} আমন্ত্রণ}} পাঠানো যাবে না কারণ প্রয়োগ করা নিরাপত্তা নীতির কারণে বাহ্যিক সহযোগিতা সীমাবদ্ধ।",
|
|
782
|
+
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrier": "{count, plural, one {{count} আমন্ত্রণ} other {{count} আমন্ত্রণ}} একটি নিরাপত্তা নীতির কারণে পাঠানো যাবে না।",
|
|
783
783
|
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular": "নিরাপত্তা নীতির কারণে {email} এ আমন্ত্রণ পাঠানো যাবে না।",
|
|
784
|
-
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup": "
|
|
784
|
+
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup": "নিরাপত্তা নীতির কারণে \"{groupName}\" এ আমন্ত্রণ পাঠানো যাবে না।",
|
|
785
785
|
"boxui.unifiedShare.contactRestrictionNoticeSingular": "প্রযোজ্য সুরক্ষা নীতির দরুণ বাহ্যিক সহযোগিতা সীমাবদ্ধ হওয়ার কারণে আমন্ত্রণগুলি {email}-এ পাঠানো যাবে না।",
|
|
786
|
-
"boxui.unifiedShare.contactRestrictionRemoveButtonLabel": "
|
|
786
|
+
"boxui.unifiedShare.contactRestrictionRemoveButtonLabel": "চালিয়ে যেতে অপসারণ করুন",
|
|
787
787
|
"boxui.unifiedShare.contactsExceedLimitError": "ওহো! একবারে সর্বাধিক যত সংখ্যক সহযোগীদের যোগ করা যাবে তা হল {maxContacts} জন সহযোগী। আপনার আমন্ত্রণ ব্যাচের মধ্যে বিভক্ত করে দিয়ে দয়া করে আবার চেষ্টা করুন।",
|
|
788
788
|
"boxui.unifiedShare.contentSharedWithExternalCollaborators": "এই বিষয়বস্তুটি বাহ্যিক সহযোগীদের সাথে শেয়ার করা হবে।",
|
|
789
789
|
"boxui.unifiedShare.coownerLevelButtonLabel": "সহ মালিক হিসাবে আমন্ত্রণ করুন",
|
|
@@ -810,10 +810,10 @@ export default {
|
|
|
810
810
|
"boxui.unifiedShare.inviteDisabledTooltip": "আপনার কাছে সহযোগীদের আমন্ত্রণ করার পর্যাপ্ত অনুমতি নেই।",
|
|
811
811
|
"boxui.unifiedShare.inviteDisabledWeblinkTooltip": "সহযোগীদের বুকমার্কগুলিতে যোগ করা যাবে না।",
|
|
812
812
|
"boxui.unifiedShare.inviteFieldLabel": "লোকজনদের আমন্ত্রণ করুন",
|
|
813
|
-
"boxui.unifiedShare.justifiableContactRestrictionNotice": "
|
|
813
|
+
"boxui.unifiedShare.justifiableContactRestrictionNotice": "{count, plural, one {{count} আমন্ত্রণ} other {{count} আমন্ত্রণ}} এর জন্য এই বিষয়বস্তুর একটি ব্যবসায়িক যৌক্তিকতার প্রয়োজন৷ অনুগ্রহ করে নিচের একটি ব্যবসায়িক যৌক্তিকতা নির্বাচন করুন।",
|
|
814
814
|
"boxui.unifiedShare.justifiableContactRestrictionNoticeSingular": "এই বিষয়বস্তুর {email}-এ আমন্ত্রণ জানাতে ব্যবসায়িক যৌক্তিকতার প্রয়োজন আবশ্যক। অনুগ্রহ করে নিচে একটি ব্যবসায়িক যৌক্তিকতা নির্বাচন করুন।",
|
|
815
|
-
"boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel": "বিকল্পভাবে,
|
|
816
|
-
"boxui.unifiedShare.justificationRequiredError": "একটি যৌক্তিকতা নির্বাচন করুন বা চালিয়ে যেতে
|
|
815
|
+
"boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel": "বিকল্পভাবে, চালিয়ে যেতে অপসারণ করুন",
|
|
816
|
+
"boxui.unifiedShare.justificationRequiredError": "একটি যৌক্তিকতা নির্বাচন করুন বা চালিয়ে যেতে অপসারণ করুন",
|
|
817
817
|
"boxui.unifiedShare.justificationSelectPlaceholder": "যৌক্তিকতা নির্বাচন করুন",
|
|
818
818
|
"boxui.unifiedShare.linkShareOff": "শেয়ারকৃত লিঙ্ক তৈরী করুন",
|
|
819
819
|
"boxui.unifiedShare.linkShareOn": "শেয়ারকৃত লিঙ্ক তৈরী করা হয়েছে",
|
|
@@ -841,7 +841,7 @@ export default {
|
|
|
841
841
|
"boxui.unifiedShare.removeLinkConfirmationDescription": "এটি শেয়ারকৃত লিঙ্ককে স্থায়ীভাবে সরাবে৷ যদি এই আইটেমটি অন্য সাইটে এম্বেড করা থাকে তাহলে এটি অপ্রাপ্য হয়ে যাবে। কোন কাস্টম বৈশিষ্ট্য, সেটিংস এবং মেয়াদ উত্তীর্ণ হবে। আপনি কি অবিরত করতে চান?",
|
|
842
842
|
"boxui.unifiedShare.removeLinkConfirmationTitle": "শেয়ারকৃত লিঙ্ক অপসারণ করুন",
|
|
843
843
|
"boxui.unifiedShare.removeLinkTooltip": "লিঙ্কটি অপসারণ করার আপনার অনুমতি নেই।",
|
|
844
|
-
"boxui.unifiedShare.restrictedContactsError": "
|
|
844
|
+
"boxui.unifiedShare.restrictedContactsError": "চালিয়ে যেতে অপসারণ করুন",
|
|
845
845
|
"boxui.unifiedShare.sendSharedLink": "শেয়ারকৃত লিঙ্ক পাঠান",
|
|
846
846
|
"boxui.unifiedShare.sendSharedLinkFieldLabel": "ইমেইল শেয়ারকৃত লিঙ্ক",
|
|
847
847
|
"boxui.unifiedShare.settingsButtonLabel": "শেয়ারকৃত লিঙ্কের সেটিংস পপআপ খুলুন",
|
package/i18n/bn-IN.properties
CHANGED
|
@@ -11,9 +11,9 @@ be.activitySidebar.activityFeed.commentMissingError = এই মন্তব্
|
|
|
11
11
|
# Error title
|
|
12
12
|
be.activitySidebar.activityFeed.feedInlineErrorTitle = ত্রুটি
|
|
13
13
|
# Text to show to hide more replies of comment or annotation
|
|
14
|
-
be.activitySidebar.activityFeed.hideReplies =
|
|
14
|
+
be.activitySidebar.activityFeed.hideReplies = উত্তর লুকান
|
|
15
15
|
# Text to show to get more replies of comment or annotation
|
|
16
|
-
be.activitySidebar.activityFeed.showReplies =
|
|
16
|
+
be.activitySidebar.activityFeed.showReplies = {repliesToLoadCount, plural, one {# উত্তর} other {# উত্তরগুলি}} দেখুন
|
|
17
17
|
# Text to show when a task no longer exists
|
|
18
18
|
be.activitySidebar.activityFeed.taskMissingError = এই কাজটি আর বিদ্যমান নেই
|
|
19
19
|
# One of the dropdown options to select in order to filter comments
|
|
@@ -1557,17 +1557,17 @@ boxui.unifiedShare.collaborators.expirationTooltipClickableText = {date}-এ
|
|
|
1557
1557
|
# Text to show when the number of contact email addresses displayed on a tooltip exceeds the maximum amount that can be displayed
|
|
1558
1558
|
boxui.unifiedShare.contactEmailsTooltipText = {emails}, এবং আরও {remainingEmailsCount}
|
|
1559
1559
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1560
|
-
boxui.unifiedShare.contactRestrictionNotice =
|
|
1560
|
+
boxui.unifiedShare.contactRestrictionNotice = {count, plural, one {{count} আমন্ত্রণ} other {{count} আমন্ত্রণ}} পাঠানো যাবে না কারণ প্রয়োগ করা নিরাপত্তা নীতির কারণে বাহ্যিক সহযোগিতা সীমাবদ্ধ।
|
|
1561
1561
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to one or more of the selected contacts
|
|
1562
|
-
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier =
|
|
1562
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = {count, plural, one {{count} আমন্ত্রণ} other {{count} আমন্ত্রণ}} একটি নিরাপত্তা নীতির কারণে পাঠানো যাবে না।
|
|
1563
1563
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts
|
|
1564
1564
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular = নিরাপত্তা নীতির কারণে {email} এ আমন্ত্রণ পাঠানো যাবে না।
|
|
1565
1565
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts, which is a group
|
|
1566
|
-
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup =
|
|
1566
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup = নিরাপত্তা নীতির কারণে "{groupName}" এ আমন্ত্রণ পাঠানো যাবে না।
|
|
1567
1567
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1568
1568
|
boxui.unifiedShare.contactRestrictionNoticeSingular = প্রযোজ্য সুরক্ষা নীতির দরুণ বাহ্যিক সহযোগিতা সীমাবদ্ধ হওয়ার কারণে আমন্ত্রণগুলি {email}-এ পাঠানো যাবে না।
|
|
1569
1569
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
|
1570
|
-
boxui.unifiedShare.contactRestrictionRemoveButtonLabel =
|
|
1570
|
+
boxui.unifiedShare.contactRestrictionRemoveButtonLabel = চালিয়ে যেতে অপসারণ করুন
|
|
1571
1571
|
# Error message when more than the maximum number of contacts is entered
|
|
1572
1572
|
boxui.unifiedShare.contactsExceedLimitError = ওহো! একবারে সর্বাধিক যত সংখ্যক সহযোগীদের যোগ করা যাবে তা হল {maxContacts} জন সহযোগী। আপনার আমন্ত্রণ ব্যাচের মধ্যে বিভক্ত করে দিয়ে দয়া করে আবার চেষ্টা করুন।
|
|
1573
1573
|
# Text shown in share modal when there is at least one external collaborators
|
|
@@ -1621,13 +1621,13 @@ boxui.unifiedShare.inviteDisabledWeblinkTooltip = সহযোগীদের
|
|
|
1621
1621
|
# Label of the field where a user designates who to invite to collaborate on an item
|
|
1622
1622
|
boxui.unifiedShare.inviteFieldLabel = লোকজনদের আমন্ত্রণ করুন
|
|
1623
1623
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts and business justifications are allowed for bypassing restrictions
|
|
1624
|
-
boxui.unifiedShare.justifiableContactRestrictionNotice =
|
|
1624
|
+
boxui.unifiedShare.justifiableContactRestrictionNotice = {count, plural, one {{count} আমন্ত্রণ} other {{count} আমন্ত্রণ}} এর জন্য এই বিষয়বস্তুর একটি ব্যবসায়িক যৌক্তিকতার প্রয়োজন৷ অনুগ্রহ করে নিচের একটি ব্যবসায়িক যৌক্তিকতা নির্বাচন করুন।
|
|
1625
1625
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts and business justifications are allowed for bypassing restrictions
|
|
1626
1626
|
boxui.unifiedShare.justifiableContactRestrictionNoticeSingular = এই বিষয়বস্তুর {email}-এ আমন্ত্রণ জানাতে ব্যবসায়িক যৌক্তিকতার প্রয়োজন আবশ্যক। অনুগ্রহ করে নিচে একটি ব্যবসায়িক যৌক্তিকতা নির্বাচন করুন।
|
|
1627
1627
|
# Label for the button that removes restricted contacts on the contact restriction notice when business justifications are allowed for bypassing restrictions
|
|
1628
|
-
boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel = বিকল্পভাবে,
|
|
1628
|
+
boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel = বিকল্পভাবে, চালিয়ে যেতে অপসারণ করুন
|
|
1629
1629
|
# The error message that is displayed when a user tries to send invitations to external collaborators, but a business justification is required before proceeding
|
|
1630
|
-
boxui.unifiedShare.justificationRequiredError = একটি যৌক্তিকতা নির্বাচন করুন বা চালিয়ে যেতে
|
|
1630
|
+
boxui.unifiedShare.justificationRequiredError = একটি যৌক্তিকতা নির্বাচন করুন বা চালিয়ে যেতে অপসারণ করুন
|
|
1631
1631
|
# The placeholder text of the select field that allows selecting a business justification reason
|
|
1632
1632
|
boxui.unifiedShare.justificationSelectPlaceholder = যৌক্তিকতা নির্বাচন করুন
|
|
1633
1633
|
# Call to action text for allowing the user to create a new shared link
|
|
@@ -1683,7 +1683,7 @@ boxui.unifiedShare.removeLinkConfirmationTitle = শেয়ারকৃত ল
|
|
|
1683
1683
|
# Tooltip description for not having access to remove link
|
|
1684
1684
|
boxui.unifiedShare.removeLinkTooltip = লিঙ্কটি অপসারণ করার আপনার অনুমতি নেই।
|
|
1685
1685
|
# The error message that is displayed when a user tries to send invitations to external collaborators, but restricted contacts need to be removed before proceeding
|
|
1686
|
-
boxui.unifiedShare.restrictedContactsError =
|
|
1686
|
+
boxui.unifiedShare.restrictedContactsError = চালিয়ে যেতে অপসারণ করুন
|
|
1687
1687
|
# Tooltip text for email shared link button (title-case)
|
|
1688
1688
|
boxui.unifiedShare.sendSharedLink = শেয়ারকৃত লিঙ্ক পাঠান
|
|
1689
1689
|
# Field label for shared link recipient list (title-case)
|
package/i18n/da-DK.js
CHANGED
|
@@ -5,8 +5,8 @@ export default {
|
|
|
5
5
|
"be.activitySidebar.activityFeed.annotationMissingError": "Denne kommentar findes ikke længere",
|
|
6
6
|
"be.activitySidebar.activityFeed.commentMissingError": "Denne kommentar findes ikke længere",
|
|
7
7
|
"be.activitySidebar.activityFeed.feedInlineErrorTitle": "Fejl",
|
|
8
|
-
"be.activitySidebar.activityFeed.hideReplies": "
|
|
9
|
-
"be.activitySidebar.activityFeed.showReplies": "
|
|
8
|
+
"be.activitySidebar.activityFeed.hideReplies": "Skjul svar",
|
|
9
|
+
"be.activitySidebar.activityFeed.showReplies": "Se {repliesToLoadCount, plural, one {# svar} other {# svar}}",
|
|
10
10
|
"be.activitySidebar.activityFeed.taskMissingError": "Denne opgave findes ikke længere",
|
|
11
11
|
"be.activitySidebarFilter.status.all": "Alle kommentarer",
|
|
12
12
|
"be.activitySidebarFilter.status.open": "Ubesvarede kommentarer",
|
|
@@ -778,12 +778,12 @@ export default {
|
|
|
778
778
|
"boxui.unifiedShare.collaboratorListTitle": "Personer i '{itemName}'",
|
|
779
779
|
"boxui.unifiedShare.collaborators.expirationTooltipClickableText": "Adgang udløber d. {date}. Klik for at se detaljer.",
|
|
780
780
|
"boxui.unifiedShare.contactEmailsTooltipText": "{emails}, og {remainingEmailsCount} mere",
|
|
781
|
-
"boxui.unifiedShare.contactRestrictionNotice": "
|
|
782
|
-
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrier": "
|
|
781
|
+
"boxui.unifiedShare.contactRestrictionNotice": "{count, plural, one {{count} invitation} other {{count} invitations}} cannot be sent because external collaboration is restricted due to the applied security policy.",
|
|
782
|
+
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrier": "{count, plural, one {{count} invitation} other {{count} invitations}} cannot be sent due to a security policy.",
|
|
783
783
|
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular": "Invitationer kan ikke sendes til {email} på grund af en sikkerhedspolitik.",
|
|
784
|
-
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup": "
|
|
784
|
+
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup": "Invitationer kan ikke sendes til \"{groupName}\" på grund af en sikkerhedspolitik.",
|
|
785
785
|
"boxui.unifiedShare.contactRestrictionNoticeSingular": "Invitationer kan ikke sendes til {email}, fordi eksternt samarbejde er begrænset på grund af den anvendte sikkerhedspolitik.",
|
|
786
|
-
"boxui.unifiedShare.contactRestrictionRemoveButtonLabel": "Fjern
|
|
786
|
+
"boxui.unifiedShare.contactRestrictionRemoveButtonLabel": "Fjern for at fortsætte",
|
|
787
787
|
"boxui.unifiedShare.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.",
|
|
788
788
|
"boxui.unifiedShare.contentSharedWithExternalCollaborators": "Dette indhold bliver delt med eksterne samarbejdspartnere.",
|
|
789
789
|
"boxui.unifiedShare.coownerLevelButtonLabel": "Inviter som medejer",
|
|
@@ -810,10 +810,10 @@ export default {
|
|
|
810
810
|
"boxui.unifiedShare.inviteDisabledTooltip": "Du har ikke det rette adgangsniveau til at invitere samarbejdspartnere.",
|
|
811
811
|
"boxui.unifiedShare.inviteDisabledWeblinkTooltip": "Samarbejdspartnere kan ikke føjes til bogmærker.",
|
|
812
812
|
"boxui.unifiedShare.inviteFieldLabel": "Inviter personer",
|
|
813
|
-
"boxui.unifiedShare.justifiableContactRestrictionNotice": "Dette indhold kræver en
|
|
813
|
+
"boxui.unifiedShare.justifiableContactRestrictionNotice": "Dette indhold kræver en forretningsmæssig begrundelse for {count, plural, one {{count} invitation} other {{count} invitationer}}. Vælg venligst en begrundelse for din virksomhed nedenfor.",
|
|
814
814
|
"boxui.unifiedShare.justifiableContactRestrictionNoticeSingular": "Dette indhold kræver en forretningsbegrundelse for at invitere {email}. Vælg en forretningsbegrundelse nedenfor.",
|
|
815
|
-
"boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel": "
|
|
816
|
-
"boxui.unifiedShare.justificationRequiredError": "Vælg en begrundelse
|
|
815
|
+
"boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel": "Alternativt kan du fjerne for at fortsætte",
|
|
816
|
+
"boxui.unifiedShare.justificationRequiredError": "Vælg en begrundelse eller fjern for at fortsætte",
|
|
817
817
|
"boxui.unifiedShare.justificationSelectPlaceholder": "Vælg begrundelse",
|
|
818
818
|
"boxui.unifiedShare.linkShareOff": "Opret delt link",
|
|
819
819
|
"boxui.unifiedShare.linkShareOn": "Delt link blev oprettet",
|
|
@@ -841,7 +841,7 @@ export default {
|
|
|
841
841
|
"boxui.unifiedShare.removeLinkConfirmationDescription": "Dette fjerner det delte link permanent. Hvis dette element er indlejret på andre websteder, bliver det også utilgængeligt der. Alle brugerdefinerede egenskaber, indstillinger og udløbsdatoer bliver også fjernet. Vil du fortsætte?",
|
|
842
842
|
"boxui.unifiedShare.removeLinkConfirmationTitle": "Fjern delt link",
|
|
843
843
|
"boxui.unifiedShare.removeLinkTooltip": "Du har ikke det nødvendige adgangsniveau til at fjerne linket.",
|
|
844
|
-
"boxui.unifiedShare.restrictedContactsError": "Fjern
|
|
844
|
+
"boxui.unifiedShare.restrictedContactsError": "Fjern for at fortsætte",
|
|
845
845
|
"boxui.unifiedShare.sendSharedLink": "Send delt link",
|
|
846
846
|
"boxui.unifiedShare.sendSharedLinkFieldLabel": "Send delt link i e-mail",
|
|
847
847
|
"boxui.unifiedShare.settingsButtonLabel": "Åbn pop op-indstillinger for delt link",
|
package/i18n/da-DK.properties
CHANGED
|
@@ -11,9 +11,9 @@ be.activitySidebar.activityFeed.commentMissingError = Denne kommentar findes ikk
|
|
|
11
11
|
# Error title
|
|
12
12
|
be.activitySidebar.activityFeed.feedInlineErrorTitle = Fejl
|
|
13
13
|
# Text to show to hide more replies of comment or annotation
|
|
14
|
-
be.activitySidebar.activityFeed.hideReplies =
|
|
14
|
+
be.activitySidebar.activityFeed.hideReplies = Skjul svar
|
|
15
15
|
# Text to show to get more replies of comment or annotation
|
|
16
|
-
be.activitySidebar.activityFeed.showReplies =
|
|
16
|
+
be.activitySidebar.activityFeed.showReplies = Se {repliesToLoadCount, plural, one {# svar} other {# svar}}
|
|
17
17
|
# Text to show when a task no longer exists
|
|
18
18
|
be.activitySidebar.activityFeed.taskMissingError = Denne opgave findes ikke længere
|
|
19
19
|
# One of the dropdown options to select in order to filter comments
|
|
@@ -1557,17 +1557,17 @@ boxui.unifiedShare.collaborators.expirationTooltipClickableText = Adgang udløbe
|
|
|
1557
1557
|
# Text to show when the number of contact email addresses displayed on a tooltip exceeds the maximum amount that can be displayed
|
|
1558
1558
|
boxui.unifiedShare.contactEmailsTooltipText = {emails}, og {remainingEmailsCount} mere
|
|
1559
1559
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1560
|
-
boxui.unifiedShare.contactRestrictionNotice =
|
|
1560
|
+
boxui.unifiedShare.contactRestrictionNotice = {count, plural, one {{count} invitation} other {{count} invitations}} cannot be sent because external collaboration is restricted due to the applied security policy.
|
|
1561
1561
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to one or more of the selected contacts
|
|
1562
|
-
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier =
|
|
1562
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = {count, plural, one {{count} invitation} other {{count} invitations}} cannot be sent due to a security policy.
|
|
1563
1563
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts
|
|
1564
1564
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular = Invitationer kan ikke sendes til {email} på grund af en sikkerhedspolitik.
|
|
1565
1565
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts, which is a group
|
|
1566
|
-
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup =
|
|
1566
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup = Invitationer kan ikke sendes til "{groupName}" på grund af en sikkerhedspolitik.
|
|
1567
1567
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1568
1568
|
boxui.unifiedShare.contactRestrictionNoticeSingular = Invitationer kan ikke sendes til {email}, fordi eksternt samarbejde er begrænset på grund af den anvendte sikkerhedspolitik.
|
|
1569
1569
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
|
1570
|
-
boxui.unifiedShare.contactRestrictionRemoveButtonLabel = Fjern
|
|
1570
|
+
boxui.unifiedShare.contactRestrictionRemoveButtonLabel = Fjern for at fortsætte
|
|
1571
1571
|
# Error message when more than the maximum number of contacts is entered
|
|
1572
1572
|
boxui.unifiedShare.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.
|
|
1573
1573
|
# Text shown in share modal when there is at least one external collaborators
|
|
@@ -1621,13 +1621,13 @@ boxui.unifiedShare.inviteDisabledWeblinkTooltip = Samarbejdspartnere kan ikke f
|
|
|
1621
1621
|
# Label of the field where a user designates who to invite to collaborate on an item
|
|
1622
1622
|
boxui.unifiedShare.inviteFieldLabel = Inviter personer
|
|
1623
1623
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts and business justifications are allowed for bypassing restrictions
|
|
1624
|
-
boxui.unifiedShare.justifiableContactRestrictionNotice = Dette indhold kræver en
|
|
1624
|
+
boxui.unifiedShare.justifiableContactRestrictionNotice = Dette indhold kræver en forretningsmæssig begrundelse for {count, plural, one {{count} invitation} other {{count} invitationer}}. Vælg venligst en begrundelse for din virksomhed nedenfor.
|
|
1625
1625
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts and business justifications are allowed for bypassing restrictions
|
|
1626
1626
|
boxui.unifiedShare.justifiableContactRestrictionNoticeSingular = Dette indhold kræver en forretningsbegrundelse for at invitere {email}. Vælg en forretningsbegrundelse nedenfor.
|
|
1627
1627
|
# Label for the button that removes restricted contacts on the contact restriction notice when business justifications are allowed for bypassing restrictions
|
|
1628
|
-
boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel =
|
|
1628
|
+
boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel = Alternativt kan du fjerne for at fortsætte
|
|
1629
1629
|
# The error message that is displayed when a user tries to send invitations to external collaborators, but a business justification is required before proceeding
|
|
1630
|
-
boxui.unifiedShare.justificationRequiredError = Vælg en begrundelse
|
|
1630
|
+
boxui.unifiedShare.justificationRequiredError = Vælg en begrundelse eller fjern for at fortsætte
|
|
1631
1631
|
# The placeholder text of the select field that allows selecting a business justification reason
|
|
1632
1632
|
boxui.unifiedShare.justificationSelectPlaceholder = Vælg begrundelse
|
|
1633
1633
|
# Call to action text for allowing the user to create a new shared link
|
|
@@ -1683,7 +1683,7 @@ boxui.unifiedShare.removeLinkConfirmationTitle = Fjern delt link
|
|
|
1683
1683
|
# Tooltip description for not having access to remove link
|
|
1684
1684
|
boxui.unifiedShare.removeLinkTooltip = Du har ikke det nødvendige adgangsniveau til at fjerne linket.
|
|
1685
1685
|
# The error message that is displayed when a user tries to send invitations to external collaborators, but restricted contacts need to be removed before proceeding
|
|
1686
|
-
boxui.unifiedShare.restrictedContactsError = Fjern
|
|
1686
|
+
boxui.unifiedShare.restrictedContactsError = Fjern for at fortsætte
|
|
1687
1687
|
# Tooltip text for email shared link button (title-case)
|
|
1688
1688
|
boxui.unifiedShare.sendSharedLink = Send delt link
|
|
1689
1689
|
# Field label for shared link recipient list (title-case)
|
package/i18n/de-DE.js
CHANGED
|
@@ -5,8 +5,8 @@ export default {
|
|
|
5
5
|
"be.activitySidebar.activityFeed.annotationMissingError": "Dieser Kommentar ist nicht mehr vorhanden",
|
|
6
6
|
"be.activitySidebar.activityFeed.commentMissingError": "Dieser Kommentar ist nicht mehr vorhanden",
|
|
7
7
|
"be.activitySidebar.activityFeed.feedInlineErrorTitle": "Fehler",
|
|
8
|
-
"be.activitySidebar.activityFeed.hideReplies": "
|
|
9
|
-
"be.activitySidebar.activityFeed.showReplies": "
|
|
8
|
+
"be.activitySidebar.activityFeed.hideReplies": "Antworten ausblenden",
|
|
9
|
+
"be.activitySidebar.activityFeed.showReplies": "Siehe {repliesToLoadCount, plural, one {# Antworten} other {# Antworten}}",
|
|
10
10
|
"be.activitySidebar.activityFeed.taskMissingError": "Diese Aufgabe ist nicht mehr vorhanden",
|
|
11
11
|
"be.activitySidebarFilter.status.all": "Alle Kommentare",
|
|
12
12
|
"be.activitySidebarFilter.status.open": "Ungelöste Kommentare",
|
|
@@ -778,12 +778,12 @@ export default {
|
|
|
778
778
|
"boxui.unifiedShare.collaboratorListTitle": "Personen in „{itemName}“",
|
|
779
779
|
"boxui.unifiedShare.collaborators.expirationTooltipClickableText": "Zugriff läuft am {date} ab. Klicken Sie, um weitere Einzelheiten zu erhalten.",
|
|
780
780
|
"boxui.unifiedShare.contactEmailsTooltipText": "{emails} und {remainingEmailsCount} weitere",
|
|
781
|
-
"boxui.unifiedShare.contactRestrictionNotice": "
|
|
782
|
-
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrier": "
|
|
781
|
+
"boxui.unifiedShare.contactRestrictionNotice": "{count, plural, one {{count} Einladung} other {{count} Einladungen}} kann/können nicht gesendet werden, da die externe Zusammenarbeit aufgrund der angewandten Sicherheitsrichtlinie eingeschränkt ist.",
|
|
782
|
+
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrier": "{count, plural, one {{count} Einladung} other {{count} Einladungen}} kann/können aufgrund einer Sicherheitsrichtlinie nicht gesendet werden.",
|
|
783
783
|
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular": "Einladungen können aufgrund einer Sicherheitsrichtlinie nicht an {email} gesendet werden.",
|
|
784
|
-
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup": "
|
|
784
|
+
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup": "Einladungen können aufgrund einer Sicherheitsrichtlinie nicht an „{groupName}“ gesendet werden.",
|
|
785
785
|
"boxui.unifiedShare.contactRestrictionNoticeSingular": "Einladungen können nicht an {email} gesendet werden, da die externe Zusammenarbeit aufgrund der angewendeten Sicherheitsrichtlinie eingeschränkt ist.",
|
|
786
|
-
"boxui.unifiedShare.contactRestrictionRemoveButtonLabel": "
|
|
786
|
+
"boxui.unifiedShare.contactRestrictionRemoveButtonLabel": "Zum Fortfahren entfernen",
|
|
787
787
|
"boxui.unifiedShare.contactsExceedLimitError": "Hoppla! Die maximale Anzahl an Mitarbeitern, die gleichzeitig hinzugefügt werden können, beträgt {maxContacts} Mitarbeiter. Versuchen Sie es erneut, indem Sie Ihre Einladungen in Stapel aufteilen.",
|
|
788
788
|
"boxui.unifiedShare.contentSharedWithExternalCollaborators": "Dieser Inhalt wird für externe Mitarbeiter freigegeben.",
|
|
789
789
|
"boxui.unifiedShare.coownerLevelButtonLabel": "Als Miteigentümer einladen",
|
|
@@ -810,10 +810,10 @@ export default {
|
|
|
810
810
|
"boxui.unifiedShare.inviteDisabledTooltip": "Sie sind nicht berechtigt, Mitarbeiter einzuladen.",
|
|
811
811
|
"boxui.unifiedShare.inviteDisabledWeblinkTooltip": "Mitarbeiter können nicht zu den Lesezeichen hinzugefügt werden.",
|
|
812
812
|
"boxui.unifiedShare.inviteFieldLabel": "Personen einladen",
|
|
813
|
-
"boxui.unifiedShare.justifiableContactRestrictionNotice": "
|
|
813
|
+
"boxui.unifiedShare.justifiableContactRestrictionNotice": "Dieser Inhalt erfordert eine Geschäftsbegründung für {count, plural, one {{count} Einladung} other {{count} Einladungen}}. Bitte wählen Sie unten eine Geschäftsbegründung aus.",
|
|
814
814
|
"boxui.unifiedShare.justifiableContactRestrictionNoticeSingular": "Für diesen Inhalt ist eine Geschäftsbegründung erforderlich, wenn Sie {email} einladen möchten. Wählen Sie unten eine Geschäftsbegründung aus.",
|
|
815
|
-
"boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel": "
|
|
816
|
-
"boxui.unifiedShare.justificationRequiredError": "Wählen Sie eine Begründung
|
|
815
|
+
"boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel": "Alternativ können Sie sie zum Fortfahren auch entfernen",
|
|
816
|
+
"boxui.unifiedShare.justificationRequiredError": "Wählen Sie eine Begründung oder entfernen Sie sie, um fortzufahren",
|
|
817
817
|
"boxui.unifiedShare.justificationSelectPlaceholder": "Begründung auswählen",
|
|
818
818
|
"boxui.unifiedShare.linkShareOff": "Freigabe-Link erstellen",
|
|
819
819
|
"boxui.unifiedShare.linkShareOn": "Freigabe-Link wird erstellt",
|
|
@@ -841,7 +841,7 @@ export default {
|
|
|
841
841
|
"boxui.unifiedShare.removeLinkConfirmationDescription": "Diese Aktion wird den Freigabe-Link dauerhaft löschen. Falls dieses Element auch auf anderen Websites eingebettet ist, kann darauf nicht mehr zugegriffen werden. Individuelle Eigenschaften, Einstellungen und Ablaufdaten werden ebenfalls gelöscht. Möchten Sie fortfahren?",
|
|
842
842
|
"boxui.unifiedShare.removeLinkConfirmationTitle": "Freigabe-Link entfernen",
|
|
843
843
|
"boxui.unifiedShare.removeLinkTooltip": "Sie sind nicht berechtigt, den Link zu entfernen.",
|
|
844
|
-
"boxui.unifiedShare.restrictedContactsError": "
|
|
844
|
+
"boxui.unifiedShare.restrictedContactsError": "Zum Fortfahren entfernen",
|
|
845
845
|
"boxui.unifiedShare.sendSharedLink": "Freigabe-Link senden",
|
|
846
846
|
"boxui.unifiedShare.sendSharedLinkFieldLabel": "Freigabe-Link per E-Mail",
|
|
847
847
|
"boxui.unifiedShare.settingsButtonLabel": "Pop-up für Freigabe-Link-Einstellungen öffnen",
|
package/i18n/de-DE.properties
CHANGED
|
@@ -11,9 +11,9 @@ be.activitySidebar.activityFeed.commentMissingError = Dieser Kommentar ist nicht
|
|
|
11
11
|
# Error title
|
|
12
12
|
be.activitySidebar.activityFeed.feedInlineErrorTitle = Fehler
|
|
13
13
|
# Text to show to hide more replies of comment or annotation
|
|
14
|
-
be.activitySidebar.activityFeed.hideReplies =
|
|
14
|
+
be.activitySidebar.activityFeed.hideReplies = Antworten ausblenden
|
|
15
15
|
# Text to show to get more replies of comment or annotation
|
|
16
|
-
be.activitySidebar.activityFeed.showReplies =
|
|
16
|
+
be.activitySidebar.activityFeed.showReplies = Siehe {repliesToLoadCount, plural, one {# Antworten} other {# Antworten}}
|
|
17
17
|
# Text to show when a task no longer exists
|
|
18
18
|
be.activitySidebar.activityFeed.taskMissingError = Diese Aufgabe ist nicht mehr vorhanden
|
|
19
19
|
# One of the dropdown options to select in order to filter comments
|
|
@@ -1557,17 +1557,17 @@ boxui.unifiedShare.collaborators.expirationTooltipClickableText = Zugriff läuft
|
|
|
1557
1557
|
# Text to show when the number of contact email addresses displayed on a tooltip exceeds the maximum amount that can be displayed
|
|
1558
1558
|
boxui.unifiedShare.contactEmailsTooltipText = {emails} und {remainingEmailsCount} weitere
|
|
1559
1559
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1560
|
-
boxui.unifiedShare.contactRestrictionNotice =
|
|
1560
|
+
boxui.unifiedShare.contactRestrictionNotice = {count, plural, one {{count} Einladung} other {{count} Einladungen}} kann/können nicht gesendet werden, da die externe Zusammenarbeit aufgrund der angewandten Sicherheitsrichtlinie eingeschränkt ist.
|
|
1561
1561
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to one or more of the selected contacts
|
|
1562
|
-
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier =
|
|
1562
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = {count, plural, one {{count} Einladung} other {{count} Einladungen}} kann/können aufgrund einer Sicherheitsrichtlinie nicht gesendet werden.
|
|
1563
1563
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts
|
|
1564
1564
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular = Einladungen können aufgrund einer Sicherheitsrichtlinie nicht an {email} gesendet werden.
|
|
1565
1565
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts, which is a group
|
|
1566
|
-
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup =
|
|
1566
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup = Einladungen können aufgrund einer Sicherheitsrichtlinie nicht an „{groupName}“ gesendet werden.
|
|
1567
1567
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1568
1568
|
boxui.unifiedShare.contactRestrictionNoticeSingular = Einladungen können nicht an {email} gesendet werden, da die externe Zusammenarbeit aufgrund der angewendeten Sicherheitsrichtlinie eingeschränkt ist.
|
|
1569
1569
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
|
1570
|
-
boxui.unifiedShare.contactRestrictionRemoveButtonLabel =
|
|
1570
|
+
boxui.unifiedShare.contactRestrictionRemoveButtonLabel = Zum Fortfahren entfernen
|
|
1571
1571
|
# Error message when more than the maximum number of contacts is entered
|
|
1572
1572
|
boxui.unifiedShare.contactsExceedLimitError = Hoppla! Die maximale Anzahl an Mitarbeitern, die gleichzeitig hinzugefügt werden können, beträgt {maxContacts} Mitarbeiter. Versuchen Sie es erneut, indem Sie Ihre Einladungen in Stapel aufteilen.
|
|
1573
1573
|
# Text shown in share modal when there is at least one external collaborators
|
|
@@ -1621,13 +1621,13 @@ boxui.unifiedShare.inviteDisabledWeblinkTooltip = Mitarbeiter können nicht zu d
|
|
|
1621
1621
|
# Label of the field where a user designates who to invite to collaborate on an item
|
|
1622
1622
|
boxui.unifiedShare.inviteFieldLabel = Personen einladen
|
|
1623
1623
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts and business justifications are allowed for bypassing restrictions
|
|
1624
|
-
boxui.unifiedShare.justifiableContactRestrictionNotice =
|
|
1624
|
+
boxui.unifiedShare.justifiableContactRestrictionNotice = Dieser Inhalt erfordert eine Geschäftsbegründung für {count, plural, one {{count} Einladung} other {{count} Einladungen}}. Bitte wählen Sie unten eine Geschäftsbegründung aus.
|
|
1625
1625
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts and business justifications are allowed for bypassing restrictions
|
|
1626
1626
|
boxui.unifiedShare.justifiableContactRestrictionNoticeSingular = Für diesen Inhalt ist eine Geschäftsbegründung erforderlich, wenn Sie {email} einladen möchten. Wählen Sie unten eine Geschäftsbegründung aus.
|
|
1627
1627
|
# Label for the button that removes restricted contacts on the contact restriction notice when business justifications are allowed for bypassing restrictions
|
|
1628
|
-
boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel =
|
|
1628
|
+
boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel = Alternativ können Sie sie zum Fortfahren auch entfernen
|
|
1629
1629
|
# The error message that is displayed when a user tries to send invitations to external collaborators, but a business justification is required before proceeding
|
|
1630
|
-
boxui.unifiedShare.justificationRequiredError = Wählen Sie eine Begründung
|
|
1630
|
+
boxui.unifiedShare.justificationRequiredError = Wählen Sie eine Begründung oder entfernen Sie sie, um fortzufahren
|
|
1631
1631
|
# The placeholder text of the select field that allows selecting a business justification reason
|
|
1632
1632
|
boxui.unifiedShare.justificationSelectPlaceholder = Begründung auswählen
|
|
1633
1633
|
# Call to action text for allowing the user to create a new shared link
|
|
@@ -1683,7 +1683,7 @@ boxui.unifiedShare.removeLinkConfirmationTitle = Freigabe-Link entfernen
|
|
|
1683
1683
|
# Tooltip description for not having access to remove link
|
|
1684
1684
|
boxui.unifiedShare.removeLinkTooltip = Sie sind nicht berechtigt, den Link zu entfernen.
|
|
1685
1685
|
# The error message that is displayed when a user tries to send invitations to external collaborators, but restricted contacts need to be removed before proceeding
|
|
1686
|
-
boxui.unifiedShare.restrictedContactsError =
|
|
1686
|
+
boxui.unifiedShare.restrictedContactsError = Zum Fortfahren entfernen
|
|
1687
1687
|
# Tooltip text for email shared link button (title-case)
|
|
1688
1688
|
boxui.unifiedShare.sendSharedLink = Freigabe-Link senden
|
|
1689
1689
|
# Field label for shared link recipient list (title-case)
|
package/i18n/en-AU.js
CHANGED
|
@@ -778,12 +778,12 @@ export default {
|
|
|
778
778
|
"boxui.unifiedShare.collaboratorListTitle": "People in \"{itemName}\"",
|
|
779
779
|
"boxui.unifiedShare.collaborators.expirationTooltipClickableText": "Access expires on {date}. Click for details.",
|
|
780
780
|
"boxui.unifiedShare.contactEmailsTooltipText": "{emails}, and {remainingEmailsCount} more",
|
|
781
|
-
"boxui.unifiedShare.contactRestrictionNotice": "
|
|
782
|
-
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrier": "
|
|
781
|
+
"boxui.unifiedShare.contactRestrictionNotice": "{count, plural, one {{count} invitation} other {{count} invitations}} cannot be sent because external collaboration is restricted due to the applied security policy.",
|
|
782
|
+
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrier": "{count, plural, one {{count} invitation} other {{count} invitations}} cannot be sent due to a security policy.",
|
|
783
783
|
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular": "Invitations cannot be sent to {email} due to a security policy.",
|
|
784
784
|
"boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup": "Invitations cannot be sent to \"{groupName}\" due to a security policy.",
|
|
785
785
|
"boxui.unifiedShare.contactRestrictionNoticeSingular": "Invitations cannot be sent to {email} because external collaboration is restricted due to the applied security policy.",
|
|
786
|
-
"boxui.unifiedShare.contactRestrictionRemoveButtonLabel": "Remove
|
|
786
|
+
"boxui.unifiedShare.contactRestrictionRemoveButtonLabel": "Remove to continue",
|
|
787
787
|
"boxui.unifiedShare.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.",
|
|
788
788
|
"boxui.unifiedShare.contentSharedWithExternalCollaborators": "This content will be shared with external collaborators.",
|
|
789
789
|
"boxui.unifiedShare.coownerLevelButtonLabel": "Invite as co-owner",
|
|
@@ -810,10 +810,10 @@ export default {
|
|
|
810
810
|
"boxui.unifiedShare.inviteDisabledTooltip": "You do not have permission to invite collaborators.",
|
|
811
811
|
"boxui.unifiedShare.inviteDisabledWeblinkTooltip": "Collaborators cannot be added to bookmarks.",
|
|
812
812
|
"boxui.unifiedShare.inviteFieldLabel": "Invite people",
|
|
813
|
-
"boxui.unifiedShare.justifiableContactRestrictionNotice": "This content requires a business justification
|
|
813
|
+
"boxui.unifiedShare.justifiableContactRestrictionNotice": "This content requires a business justification for {count, plural, one {{count} invitation} other {{count} invitations}}. Please select a business justification below.",
|
|
814
814
|
"boxui.unifiedShare.justifiableContactRestrictionNoticeSingular": "This content requires a business justification to invite {email}. Please select a business justification below.",
|
|
815
|
-
"boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel": "Alternatively, remove
|
|
816
|
-
"boxui.unifiedShare.justificationRequiredError": "Select a justification or remove
|
|
815
|
+
"boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel": "Alternatively, remove to continue",
|
|
816
|
+
"boxui.unifiedShare.justificationRequiredError": "Select a justification or remove to continue",
|
|
817
817
|
"boxui.unifiedShare.justificationSelectPlaceholder": "Select justification",
|
|
818
818
|
"boxui.unifiedShare.linkShareOff": "Create shared link",
|
|
819
819
|
"boxui.unifiedShare.linkShareOn": "Shared link is created",
|
|
@@ -841,7 +841,7 @@ export default {
|
|
|
841
841
|
"boxui.unifiedShare.removeLinkConfirmationDescription": "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 expiries will be removed as well. Do you want to continue?",
|
|
842
842
|
"boxui.unifiedShare.removeLinkConfirmationTitle": "Remove shared link",
|
|
843
843
|
"boxui.unifiedShare.removeLinkTooltip": "You do not have permission to remove the link.",
|
|
844
|
-
"boxui.unifiedShare.restrictedContactsError": "Remove
|
|
844
|
+
"boxui.unifiedShare.restrictedContactsError": "Remove to continue",
|
|
845
845
|
"boxui.unifiedShare.sendSharedLink": "Send shared link",
|
|
846
846
|
"boxui.unifiedShare.sendSharedLinkFieldLabel": "Email shared link",
|
|
847
847
|
"boxui.unifiedShare.settingsButtonLabel": "Open shared link settings pop-up",
|
package/i18n/en-AU.properties
CHANGED
|
@@ -1557,9 +1557,9 @@ boxui.unifiedShare.collaborators.expirationTooltipClickableText = Access expires
|
|
|
1557
1557
|
# Text to show when the number of contact email addresses displayed on a tooltip exceeds the maximum amount that can be displayed
|
|
1558
1558
|
boxui.unifiedShare.contactEmailsTooltipText = {emails}, and {remainingEmailsCount} more
|
|
1559
1559
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1560
|
-
boxui.unifiedShare.contactRestrictionNotice =
|
|
1560
|
+
boxui.unifiedShare.contactRestrictionNotice = {count, plural, one {{count} invitation} other {{count} invitations}} cannot be sent because external collaboration is restricted due to the applied security policy.
|
|
1561
1561
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to one or more of the selected contacts
|
|
1562
|
-
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier =
|
|
1562
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = {count, plural, one {{count} invitation} other {{count} invitations}} cannot be sent due to a security policy.
|
|
1563
1563
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts
|
|
1564
1564
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular = Invitations cannot be sent to {email} due to a security policy.
|
|
1565
1565
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts, which is a group
|
|
@@ -1567,7 +1567,7 @@ boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup = Inv
|
|
|
1567
1567
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1568
1568
|
boxui.unifiedShare.contactRestrictionNoticeSingular = Invitations cannot be sent to {email} because external collaboration is restricted due to the applied security policy.
|
|
1569
1569
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
|
1570
|
-
boxui.unifiedShare.contactRestrictionRemoveButtonLabel = Remove
|
|
1570
|
+
boxui.unifiedShare.contactRestrictionRemoveButtonLabel = Remove to continue
|
|
1571
1571
|
# Error message when more than the maximum number of contacts is entered
|
|
1572
1572
|
boxui.unifiedShare.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.
|
|
1573
1573
|
# Text shown in share modal when there is at least one external collaborators
|
|
@@ -1621,13 +1621,13 @@ boxui.unifiedShare.inviteDisabledWeblinkTooltip = Collaborators cannot be added
|
|
|
1621
1621
|
# Label of the field where a user designates who to invite to collaborate on an item
|
|
1622
1622
|
boxui.unifiedShare.inviteFieldLabel = Invite people
|
|
1623
1623
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts and business justifications are allowed for bypassing restrictions
|
|
1624
|
-
boxui.unifiedShare.justifiableContactRestrictionNotice = This content requires a business justification
|
|
1624
|
+
boxui.unifiedShare.justifiableContactRestrictionNotice = This content requires a business justification for {count, plural, one {{count} invitation} other {{count} invitations}}. Please select a business justification below.
|
|
1625
1625
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts and business justifications are allowed for bypassing restrictions
|
|
1626
1626
|
boxui.unifiedShare.justifiableContactRestrictionNoticeSingular = This content requires a business justification to invite {email}. Please select a business justification below.
|
|
1627
1627
|
# Label for the button that removes restricted contacts on the contact restriction notice when business justifications are allowed for bypassing restrictions
|
|
1628
|
-
boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel = Alternatively, remove
|
|
1628
|
+
boxui.unifiedShare.justifiableContactRestrictionRemoveButtonLabel = Alternatively, remove to continue
|
|
1629
1629
|
# The error message that is displayed when a user tries to send invitations to external collaborators, but a business justification is required before proceeding
|
|
1630
|
-
boxui.unifiedShare.justificationRequiredError = Select a justification or remove
|
|
1630
|
+
boxui.unifiedShare.justificationRequiredError = Select a justification or remove to continue
|
|
1631
1631
|
# The placeholder text of the select field that allows selecting a business justification reason
|
|
1632
1632
|
boxui.unifiedShare.justificationSelectPlaceholder = Select justification
|
|
1633
1633
|
# Call to action text for allowing the user to create a new shared link
|
|
@@ -1683,7 +1683,7 @@ boxui.unifiedShare.removeLinkConfirmationTitle = Remove shared link
|
|
|
1683
1683
|
# Tooltip description for not having access to remove link
|
|
1684
1684
|
boxui.unifiedShare.removeLinkTooltip = You do not have permission to remove the link.
|
|
1685
1685
|
# The error message that is displayed when a user tries to send invitations to external collaborators, but restricted contacts need to be removed before proceeding
|
|
1686
|
-
boxui.unifiedShare.restrictedContactsError = Remove
|
|
1686
|
+
boxui.unifiedShare.restrictedContactsError = Remove to continue
|
|
1687
1687
|
# Tooltip text for email shared link button (title-case)
|
|
1688
1688
|
boxui.unifiedShare.sendSharedLink = Send shared link
|
|
1689
1689
|
# Field label for shared link recipient list (title-case)
|