box-ui-elements 16.0.0-beta.21 → 16.0.0-beta.23
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/explorer.css +1 -1
- package/dist/explorer.js +14 -14
- package/dist/openwith.js +5 -5
- package/dist/picker.js +7 -7
- package/dist/preview.css +1 -1
- package/dist/preview.js +14 -14
- package/dist/sharing.js +11 -11
- package/dist/sidebar.css +1 -1
- package/dist/sidebar.js +13 -13
- package/dist/uploader.js +5 -5
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActiveState.js +22 -2
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActiveState.js.flow +28 -2
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActiveState.js.map +1 -1
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThread.js +82 -6
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThread.js.flow +92 -4
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThread.js.map +1 -1
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThread.scss +17 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplies.js +68 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplies.js.flow +87 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplies.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplies.scss +16 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/fixtures.js +55 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/fixtures.js.map +1 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/messages.js +8 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/messages.js.flow +10 -0
- package/es/elements/content-sidebar/activity-feed/activity-feed/messages.js.map +1 -1
- package/es/src/elements/content-sidebar/activity-feed/activity-feed/fixtures.d.ts +55 -0
- package/i18n/bn-IN.js +17 -15
- package/i18n/bn-IN.properties +17 -15
- package/i18n/da-DK.js +17 -15
- package/i18n/da-DK.properties +17 -15
- package/i18n/de-DE.js +17 -15
- package/i18n/de-DE.properties +17 -15
- package/i18n/en-AU.js +4 -2
- package/i18n/en-AU.properties +4 -2
- package/i18n/en-CA.js +9 -7
- package/i18n/en-CA.properties +9 -7
- package/i18n/en-GB.js +4 -2
- package/i18n/en-GB.properties +4 -2
- package/i18n/en-US.js +2 -0
- package/i18n/en-US.properties +4 -0
- package/i18n/en-x-pseudo.js +876 -874
- package/i18n/en-x-pseudo.properties +875 -873
- package/i18n/es-419.js +17 -15
- package/i18n/es-419.properties +17 -15
- package/i18n/es-ES.js +17 -15
- package/i18n/es-ES.properties +17 -15
- package/i18n/fi-FI.js +17 -15
- package/i18n/fi-FI.properties +17 -15
- package/i18n/fr-CA.js +17 -15
- package/i18n/fr-CA.properties +17 -15
- package/i18n/fr-FR.js +17 -15
- package/i18n/fr-FR.properties +17 -15
- package/i18n/hi-IN.js +17 -15
- package/i18n/hi-IN.properties +17 -15
- package/i18n/it-IT.js +17 -15
- package/i18n/it-IT.properties +17 -15
- package/i18n/ja-JP.js +2 -0
- package/i18n/ja-JP.properties +2 -0
- package/i18n/ko-KR.js +17 -15
- package/i18n/ko-KR.properties +17 -15
- package/i18n/nb-NO.js +17 -15
- package/i18n/nb-NO.properties +17 -15
- package/i18n/nl-NL.js +17 -15
- package/i18n/nl-NL.properties +17 -15
- package/i18n/pl-PL.js +17 -15
- package/i18n/pl-PL.properties +17 -15
- package/i18n/pt-BR.js +17 -15
- package/i18n/pt-BR.properties +17 -15
- package/i18n/ru-RU.js +17 -15
- package/i18n/ru-RU.properties +17 -15
- package/i18n/sv-SE.js +17 -15
- package/i18n/sv-SE.properties +17 -15
- package/i18n/tr-TR.js +17 -15
- package/i18n/tr-TR.properties +17 -15
- package/i18n/zh-CN.js +17 -15
- package/i18n/zh-CN.properties +17 -15
- package/i18n/zh-TW.js +17 -15
- package/i18n/zh-TW.properties +17 -15
- package/package.json +1 -1
- package/src/elements/content-sidebar/activity-feed/activity-feed/ActiveState.js +28 -2
- package/src/elements/content-sidebar/activity-feed/activity-feed/ActivityThread.js +92 -4
- package/src/elements/content-sidebar/activity-feed/activity-feed/ActivityThread.scss +17 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplies.js +87 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/ActivityThreadReplies.scss +16 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/__tests__/ActivityThread.test.js +57 -11
- package/src/elements/content-sidebar/activity-feed/activity-feed/__tests__/ActivityThreadReplies.test.js +24 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/__tests__/__snapshots__/ActiveState.test.js.snap +12 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/fixtures.ts +56 -0
- package/src/elements/content-sidebar/activity-feed/activity-feed/messages.js +10 -0
package/i18n/hi-IN.js
CHANGED
|
@@ -5,6 +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": "Hide replies",
|
|
9
|
+
"be.activitySidebar.activityFeed.showReplies": "See {repliesToLoadCount, plural, one {# reply} other {# replies}}",
|
|
8
10
|
"be.activitySidebar.activityFeed.taskMissingError": "यह कार्य अब मौजूद नहीं है",
|
|
9
11
|
"be.activitySidebarFilter.status.all": "सभी टिप्पणियाँ",
|
|
10
12
|
"be.activitySidebarFilter.status.open": "हल नहीं की गईं टिप्पणियाँ",
|
|
@@ -34,21 +36,21 @@ export default {
|
|
|
34
36
|
"be.choose": "चुनें",
|
|
35
37
|
"be.close": "बंद करें",
|
|
36
38
|
"be.collapse": "संकुचित करें",
|
|
37
|
-
"be.contentInsights.contentAnalyticsErrorText": "
|
|
38
|
-
"be.contentInsights.contentInsightsTitle": "
|
|
39
|
-
"be.contentInsights.downloadGraphLabel": "
|
|
40
|
-
"be.contentInsights.downloadGraphType": "
|
|
41
|
-
"be.contentInsights.openContentInsightsButton": "
|
|
42
|
-
"be.contentInsights.peopleGraphLabel": "
|
|
43
|
-
"be.contentInsights.peopleTitle": "
|
|
44
|
-
"be.contentInsights.previewGraphLabel": "
|
|
45
|
-
"be.contentInsights.previewGraphType": "
|
|
46
|
-
"be.contentInsights.trendDown": "
|
|
47
|
-
"be.contentInsights.trendMonth": "
|
|
48
|
-
"be.contentInsights.trendThreeMonths": "
|
|
49
|
-
"be.contentInsights.trendUp": "
|
|
50
|
-
"be.contentInsights.trendWeek": "
|
|
51
|
-
"be.contentInsights.trendYear": "
|
|
39
|
+
"be.contentInsights.contentAnalyticsErrorText": "सामग्री इनसाइट को लोड करने में एक समस्या का सामना करना पड़ा था. कृपया फिर से कोशिश करें.",
|
|
40
|
+
"be.contentInsights.contentInsightsTitle": "सामग्री इनसाइट",
|
|
41
|
+
"be.contentInsights.downloadGraphLabel": "चयनित समय अवधि पर डाउनलोड की संख्या को प्रदर्शित करने वाला चार्ट",
|
|
42
|
+
"be.contentInsights.downloadGraphType": "डाउनलोड्स",
|
|
43
|
+
"be.contentInsights.openContentInsightsButton": "विवरण देखें",
|
|
44
|
+
"be.contentInsights.peopleGraphLabel": "चयनित समय अवधि पर उपयोगकर्ताओं की संख्या को प्रदर्शित करने वाला चार्ट",
|
|
45
|
+
"be.contentInsights.peopleTitle": "लोग",
|
|
46
|
+
"be.contentInsights.previewGraphLabel": "चयनित समय अवधि पर पूर्वावलोकन की संख्या को प्रदर्शित करने वाला चार्ट",
|
|
47
|
+
"be.contentInsights.previewGraphType": "पूर्वावलोकन",
|
|
48
|
+
"be.contentInsights.trendDown": "ट्रेंडिंग डाउन",
|
|
49
|
+
"be.contentInsights.trendMonth": "पिछला महीना",
|
|
50
|
+
"be.contentInsights.trendThreeMonths": "पिछले 3 महीने",
|
|
51
|
+
"be.contentInsights.trendUp": "ट्रेंडिंग अप",
|
|
52
|
+
"be.contentInsights.trendWeek": "पिछला सप्ताह",
|
|
53
|
+
"be.contentInsights.trendYear": "पिछला साल",
|
|
52
54
|
"be.contentSharing.badRequestError": "इस आइटम के लिए अनुरोध दोषपूर्ण था.",
|
|
53
55
|
"be.contentSharing.collaboratorsLoadingError": "इस आइटम के लिए सहयोगियों को फिर से प्राप्त नहीं किया जा सका.",
|
|
54
56
|
"be.contentSharing.getContactsError": "संपर्क फिर से प्राप्त नहीं किए जा सके.",
|
package/i18n/hi-IN.properties
CHANGED
|
@@ -69,35 +69,35 @@ be.close = बंद करें
|
|
|
69
69
|
# Message to the user to collapse the Transcript entries
|
|
70
70
|
be.collapse = संकुचित करें
|
|
71
71
|
# Text shown to users when opening the content insights flyout and there is an error
|
|
72
|
-
be.contentInsights.contentAnalyticsErrorText =
|
|
72
|
+
be.contentInsights.contentAnalyticsErrorText = सामग्री इनसाइट को लोड करने में एक समस्या का सामना करना पड़ा था. कृपया फिर से कोशिश करें.
|
|
73
73
|
# Title for Content Insights section in file sidebar
|
|
74
|
-
be.contentInsights.contentInsightsTitle =
|
|
74
|
+
be.contentInsights.contentInsightsTitle = सामग्री इनसाइट
|
|
75
75
|
# Label for the chart displaying the number of downloads over the selected time period
|
|
76
|
-
be.contentInsights.downloadGraphLabel =
|
|
76
|
+
be.contentInsights.downloadGraphLabel = चयनित समय अवधि पर डाउनलोड की संख्या को प्रदर्शित करने वाला चार्ट
|
|
77
77
|
# Title for the content insights graph card regarding number of Previews
|
|
78
|
-
be.contentInsights.downloadGraphType =
|
|
78
|
+
be.contentInsights.downloadGraphType = डाउनलोड्स
|
|
79
79
|
# Open Content Insights button which opens the Content Insights Modal
|
|
80
|
-
be.contentInsights.openContentInsightsButton =
|
|
80
|
+
be.contentInsights.openContentInsightsButton = विवरण देखें
|
|
81
81
|
# Label for the chart displaying the number of users over the selected time period
|
|
82
|
-
be.contentInsights.peopleGraphLabel =
|
|
82
|
+
be.contentInsights.peopleGraphLabel = चयनित समय अवधि पर उपयोगकर्ताओं की संख्या को प्रदर्शित करने वाला चार्ट
|
|
83
83
|
# Title used to represent how many users have interacted with the file
|
|
84
|
-
be.contentInsights.peopleTitle =
|
|
84
|
+
be.contentInsights.peopleTitle = लोग
|
|
85
85
|
# Label for the chart displaying the number of previews over the selected time period
|
|
86
|
-
be.contentInsights.previewGraphLabel =
|
|
86
|
+
be.contentInsights.previewGraphLabel = चयनित समय अवधि पर पूर्वावलोकन की संख्या को प्रदर्शित करने वाला चार्ट
|
|
87
87
|
# Title for the content insights graph card regarding number of Previews
|
|
88
|
-
be.contentInsights.previewGraphType =
|
|
88
|
+
be.contentInsights.previewGraphType = पूर्वावलोकन
|
|
89
89
|
# Label for the arrow indicator in the trend pill
|
|
90
|
-
be.contentInsights.trendDown =
|
|
90
|
+
be.contentInsights.trendDown = ट्रेंडिंग डाउन
|
|
91
91
|
# Trend description for the content insights graph card regarding the count of events from the past month
|
|
92
|
-
be.contentInsights.trendMonth =
|
|
92
|
+
be.contentInsights.trendMonth = पिछला महीना
|
|
93
93
|
# Trend description for the content insights graph card regarding the count of events from the past three months
|
|
94
|
-
be.contentInsights.trendThreeMonths =
|
|
94
|
+
be.contentInsights.trendThreeMonths = पिछले 3 महीने
|
|
95
95
|
# Label for the arrow indicator in the trend pill
|
|
96
|
-
be.contentInsights.trendUp =
|
|
96
|
+
be.contentInsights.trendUp = ट्रेंडिंग अप
|
|
97
97
|
# Trend description for the content insights graph card regarding the count of events from the past week
|
|
98
|
-
be.contentInsights.trendWeek =
|
|
98
|
+
be.contentInsights.trendWeek = पिछला सप्ताह
|
|
99
99
|
# Trend description for the content insights graph card regarding the count of events from the past year
|
|
100
|
-
be.contentInsights.trendYear =
|
|
100
|
+
be.contentInsights.trendYear = पिछला साल
|
|
101
101
|
# Message that appears when the request for the ContentSharing Element is malformed.
|
|
102
102
|
be.contentSharing.badRequestError = इस आइटम के लिए अनुरोध दोषपूर्ण था.
|
|
103
103
|
# Message that appears when collaborators cannot be retrieved in the ContentSharing Element.
|
|
@@ -1558,6 +1558,8 @@ boxui.unifiedShare.contactRestrictionNotice = {count, plural, one {{count} व
|
|
|
1558
1558
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = एक सुरक्षा नीति के कारण {count, plural, one {{count} व्यक्ति} other ({count} लोग}} को निमंत्रण नहीं भेजा जा सकता है.
|
|
1559
1559
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts
|
|
1560
1560
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular = एक सुरक्षा नीति के कारण {email} को ईमेल नहीं भेजा जा सकता है.
|
|
1561
|
+
# 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
|
|
1562
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup = Invitations cannot be sent to "{groupName}" due to a security policy.
|
|
1561
1563
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1562
1564
|
boxui.unifiedShare.contactRestrictionNoticeSingular = {email} पर आमंत्रण नहीं भेजे जा सकते क्योंकि लागू सुरक्षा नीति के कारण बाहरी सहयोग प्रतिबंधित है.
|
|
1563
1565
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
package/i18n/it-IT.js
CHANGED
|
@@ -5,6 +5,8 @@ export default {
|
|
|
5
5
|
"be.activitySidebar.activityFeed.annotationMissingError": "Questo commento non esiste più",
|
|
6
6
|
"be.activitySidebar.activityFeed.commentMissingError": "Questo commento non esiste più",
|
|
7
7
|
"be.activitySidebar.activityFeed.feedInlineErrorTitle": "Errore",
|
|
8
|
+
"be.activitySidebar.activityFeed.hideReplies": "Hide replies",
|
|
9
|
+
"be.activitySidebar.activityFeed.showReplies": "See {repliesToLoadCount, plural, one {# reply} other {# replies}}",
|
|
8
10
|
"be.activitySidebar.activityFeed.taskMissingError": "Questa attività non esiste più",
|
|
9
11
|
"be.activitySidebarFilter.status.all": "Tutti i commenti",
|
|
10
12
|
"be.activitySidebarFilter.status.open": "Commenti non risolti",
|
|
@@ -34,21 +36,21 @@ export default {
|
|
|
34
36
|
"be.choose": "Scegli",
|
|
35
37
|
"be.close": "Chiudi",
|
|
36
38
|
"be.collapse": "Comprimi",
|
|
37
|
-
"be.contentInsights.contentAnalyticsErrorText": "
|
|
38
|
-
"be.contentInsights.contentInsightsTitle": "
|
|
39
|
-
"be.contentInsights.downloadGraphLabel": "
|
|
40
|
-
"be.contentInsights.downloadGraphType": "
|
|
41
|
-
"be.contentInsights.openContentInsightsButton": "
|
|
42
|
-
"be.contentInsights.peopleGraphLabel": "
|
|
43
|
-
"be.contentInsights.peopleTitle": "
|
|
44
|
-
"be.contentInsights.previewGraphLabel": "
|
|
45
|
-
"be.contentInsights.previewGraphType": "
|
|
46
|
-
"be.contentInsights.trendDown": "
|
|
47
|
-
"be.contentInsights.trendMonth": "
|
|
48
|
-
"be.contentInsights.trendThreeMonths": "
|
|
49
|
-
"be.contentInsights.trendUp": "
|
|
50
|
-
"be.contentInsights.trendWeek": "
|
|
51
|
-
"be.contentInsights.trendYear": "
|
|
39
|
+
"be.contentInsights.contentAnalyticsErrorText": "Si è verificato un problema durante il caricamento degli approfondimenti sui contenuti. Riprova.",
|
|
40
|
+
"be.contentInsights.contentInsightsTitle": "Approfondimenti sui contenuti",
|
|
41
|
+
"be.contentInsights.downloadGraphLabel": "Grafico che visualizza il numero di download durante il periodo di tempo selezionato",
|
|
42
|
+
"be.contentInsights.downloadGraphType": "Download",
|
|
43
|
+
"be.contentInsights.openContentInsightsButton": "Vedi dettagli",
|
|
44
|
+
"be.contentInsights.peopleGraphLabel": "Grafico che visualizza il numero di utenti durante il periodo di tempo selezionato",
|
|
45
|
+
"be.contentInsights.peopleTitle": "PERSONE",
|
|
46
|
+
"be.contentInsights.previewGraphLabel": "Grafico che visualizza il numero di anteprime durante il periodo di tempo selezionato.",
|
|
47
|
+
"be.contentInsights.previewGraphType": "Anteprime",
|
|
48
|
+
"be.contentInsights.trendDown": "In diminuzione",
|
|
49
|
+
"be.contentInsights.trendMonth": "Mese scorso",
|
|
50
|
+
"be.contentInsights.trendThreeMonths": "ULTIMI 3 MESI",
|
|
51
|
+
"be.contentInsights.trendUp": "In aumento",
|
|
52
|
+
"be.contentInsights.trendWeek": "Settimana scorsa",
|
|
53
|
+
"be.contentInsights.trendYear": "Anno scorso",
|
|
52
54
|
"be.contentSharing.badRequestError": "La richiesta per questo elemento non è valida.",
|
|
53
55
|
"be.contentSharing.collaboratorsLoadingError": "Impossibile recuperare i collaboratori per questo elemento.",
|
|
54
56
|
"be.contentSharing.getContactsError": "Impossibile recuperare i contatti.",
|
package/i18n/it-IT.properties
CHANGED
|
@@ -69,35 +69,35 @@ be.close = Chiudi
|
|
|
69
69
|
# Message to the user to collapse the Transcript entries
|
|
70
70
|
be.collapse = Comprimi
|
|
71
71
|
# Text shown to users when opening the content insights flyout and there is an error
|
|
72
|
-
be.contentInsights.contentAnalyticsErrorText =
|
|
72
|
+
be.contentInsights.contentAnalyticsErrorText = Si è verificato un problema durante il caricamento degli approfondimenti sui contenuti. Riprova.
|
|
73
73
|
# Title for Content Insights section in file sidebar
|
|
74
|
-
be.contentInsights.contentInsightsTitle =
|
|
74
|
+
be.contentInsights.contentInsightsTitle = Approfondimenti sui contenuti
|
|
75
75
|
# Label for the chart displaying the number of downloads over the selected time period
|
|
76
|
-
be.contentInsights.downloadGraphLabel =
|
|
76
|
+
be.contentInsights.downloadGraphLabel = Grafico che visualizza il numero di download durante il periodo di tempo selezionato
|
|
77
77
|
# Title for the content insights graph card regarding number of Previews
|
|
78
|
-
be.contentInsights.downloadGraphType =
|
|
78
|
+
be.contentInsights.downloadGraphType = Download
|
|
79
79
|
# Open Content Insights button which opens the Content Insights Modal
|
|
80
|
-
be.contentInsights.openContentInsightsButton =
|
|
80
|
+
be.contentInsights.openContentInsightsButton = Vedi dettagli
|
|
81
81
|
# Label for the chart displaying the number of users over the selected time period
|
|
82
|
-
be.contentInsights.peopleGraphLabel =
|
|
82
|
+
be.contentInsights.peopleGraphLabel = Grafico che visualizza il numero di utenti durante il periodo di tempo selezionato
|
|
83
83
|
# Title used to represent how many users have interacted with the file
|
|
84
|
-
be.contentInsights.peopleTitle =
|
|
84
|
+
be.contentInsights.peopleTitle = PERSONE
|
|
85
85
|
# Label for the chart displaying the number of previews over the selected time period
|
|
86
|
-
be.contentInsights.previewGraphLabel =
|
|
86
|
+
be.contentInsights.previewGraphLabel = Grafico che visualizza il numero di anteprime durante il periodo di tempo selezionato.
|
|
87
87
|
# Title for the content insights graph card regarding number of Previews
|
|
88
|
-
be.contentInsights.previewGraphType =
|
|
88
|
+
be.contentInsights.previewGraphType = Anteprime
|
|
89
89
|
# Label for the arrow indicator in the trend pill
|
|
90
|
-
be.contentInsights.trendDown =
|
|
90
|
+
be.contentInsights.trendDown = In diminuzione
|
|
91
91
|
# Trend description for the content insights graph card regarding the count of events from the past month
|
|
92
|
-
be.contentInsights.trendMonth =
|
|
92
|
+
be.contentInsights.trendMonth = Mese scorso
|
|
93
93
|
# Trend description for the content insights graph card regarding the count of events from the past three months
|
|
94
|
-
be.contentInsights.trendThreeMonths =
|
|
94
|
+
be.contentInsights.trendThreeMonths = ULTIMI 3 MESI
|
|
95
95
|
# Label for the arrow indicator in the trend pill
|
|
96
|
-
be.contentInsights.trendUp =
|
|
96
|
+
be.contentInsights.trendUp = In aumento
|
|
97
97
|
# Trend description for the content insights graph card regarding the count of events from the past week
|
|
98
|
-
be.contentInsights.trendWeek =
|
|
98
|
+
be.contentInsights.trendWeek = Settimana scorsa
|
|
99
99
|
# Trend description for the content insights graph card regarding the count of events from the past year
|
|
100
|
-
be.contentInsights.trendYear =
|
|
100
|
+
be.contentInsights.trendYear = Anno scorso
|
|
101
101
|
# Message that appears when the request for the ContentSharing Element is malformed.
|
|
102
102
|
be.contentSharing.badRequestError = La richiesta per questo elemento non è valida.
|
|
103
103
|
# Message that appears when collaborators cannot be retrieved in the ContentSharing Element.
|
|
@@ -1558,6 +1558,8 @@ boxui.unifiedShare.contactRestrictionNotice = Impossibile inviare gli inviti a {
|
|
|
1558
1558
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = Non è possibile inviare gli inviti a {count, plural, one {{count} persona} other {{count} persone}} per motivi di sicurezza.
|
|
1559
1559
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts
|
|
1560
1560
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular = Non è possibile inviare gli inviti a {email} per motivi di sicurezza.
|
|
1561
|
+
# 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
|
|
1562
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup = Invitations cannot be sent to "{groupName}" due to a security policy.
|
|
1561
1563
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1562
1564
|
boxui.unifiedShare.contactRestrictionNoticeSingular = Impossibile inviare gli inviti a {email} perché la collaborazione esterna è limitata a causa del criterio di sicurezza applicato.
|
|
1563
1565
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
package/i18n/ja-JP.js
CHANGED
|
@@ -5,6 +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": "Hide replies",
|
|
9
|
+
"be.activitySidebar.activityFeed.showReplies": "See {repliesToLoadCount, plural, one {# reply} other {# replies}}",
|
|
8
10
|
"be.activitySidebar.activityFeed.taskMissingError": "このタスクは存在しません",
|
|
9
11
|
"be.activitySidebarFilter.status.all": "すべてのコメント",
|
|
10
12
|
"be.activitySidebarFilter.status.open": "未解決のコメント",
|
package/i18n/ja-JP.properties
CHANGED
|
@@ -1558,6 +1558,8 @@ boxui.unifiedShare.contactRestrictionNotice = 適用されているセキュリ
|
|
|
1558
1558
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = セキュリティポリシーのため、{count, plural,{{count}名のユーザー}}に招待を送信できません。
|
|
1559
1559
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts
|
|
1560
1560
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular = セキュリティポリシーにより、{email}に招待を送信できません。
|
|
1561
|
+
# 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
|
|
1562
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup = Invitations cannot be sent to "{groupName}" due to a security policy.
|
|
1561
1563
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1562
1564
|
boxui.unifiedShare.contactRestrictionNoticeSingular = 適用されているセキュリティポリシーにより外部コラボレーションが制限されているため、招待を{email}に送信できません。
|
|
1563
1565
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
package/i18n/ko-KR.js
CHANGED
|
@@ -5,6 +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": "Hide replies",
|
|
9
|
+
"be.activitySidebar.activityFeed.showReplies": "See {repliesToLoadCount, plural, one {# reply} other {# replies}}",
|
|
8
10
|
"be.activitySidebar.activityFeed.taskMissingError": "더 이상 존재하지 않는 작업입니다.",
|
|
9
11
|
"be.activitySidebarFilter.status.all": "모든 의견",
|
|
10
12
|
"be.activitySidebarFilter.status.open": "해결되지 않은 의견",
|
|
@@ -34,21 +36,21 @@ export default {
|
|
|
34
36
|
"be.choose": "선택",
|
|
35
37
|
"be.close": "닫기",
|
|
36
38
|
"be.collapse": "축소",
|
|
37
|
-
"be.contentInsights.contentAnalyticsErrorText": "
|
|
38
|
-
"be.contentInsights.contentInsightsTitle": "
|
|
39
|
-
"be.contentInsights.downloadGraphLabel": "
|
|
40
|
-
"be.contentInsights.downloadGraphType": "
|
|
41
|
-
"be.contentInsights.openContentInsightsButton": "
|
|
42
|
-
"be.contentInsights.peopleGraphLabel": "
|
|
43
|
-
"be.contentInsights.peopleTitle": "
|
|
44
|
-
"be.contentInsights.previewGraphLabel": "
|
|
45
|
-
"be.contentInsights.previewGraphType": "
|
|
46
|
-
"be.contentInsights.trendDown": "
|
|
47
|
-
"be.contentInsights.trendMonth": "
|
|
48
|
-
"be.contentInsights.trendThreeMonths": "
|
|
49
|
-
"be.contentInsights.trendUp": "
|
|
50
|
-
"be.contentInsights.trendWeek": "
|
|
51
|
-
"be.contentInsights.trendYear": "
|
|
39
|
+
"be.contentInsights.contentAnalyticsErrorText": "콘텐츠 인사이트를 로드하는 데 문제가 발생했습니다. 다시 시도하십시오.",
|
|
40
|
+
"be.contentInsights.contentInsightsTitle": "콘텐츠 인사이트",
|
|
41
|
+
"be.contentInsights.downloadGraphLabel": "선택된 기간 동안의 다운로드 수를 표시하는 차트",
|
|
42
|
+
"be.contentInsights.downloadGraphType": "다운로드",
|
|
43
|
+
"be.contentInsights.openContentInsightsButton": "세부 정보 보기",
|
|
44
|
+
"be.contentInsights.peopleGraphLabel": "선택된 기간 동안의 사용자 수를 표시하는 차트",
|
|
45
|
+
"be.contentInsights.peopleTitle": "사용자",
|
|
46
|
+
"be.contentInsights.previewGraphLabel": "선택된 기간 동안의 미리 보기 수를 표시하는 차트",
|
|
47
|
+
"be.contentInsights.previewGraphType": "미리 보기",
|
|
48
|
+
"be.contentInsights.trendDown": "하향 추세",
|
|
49
|
+
"be.contentInsights.trendMonth": "지난 달",
|
|
50
|
+
"be.contentInsights.trendThreeMonths": "지난 3개월",
|
|
51
|
+
"be.contentInsights.trendUp": "상향 추세",
|
|
52
|
+
"be.contentInsights.trendWeek": "지난 주",
|
|
53
|
+
"be.contentInsights.trendYear": "작년",
|
|
52
54
|
"be.contentSharing.badRequestError": "이 항목에 대한 요청이 잘못되었습니다.",
|
|
53
55
|
"be.contentSharing.collaboratorsLoadingError": "이 항목에 대한 공동 작업자를 검색할 수 없습니다.",
|
|
54
56
|
"be.contentSharing.getContactsError": "연락처를 검색할 수 없습니다.",
|
package/i18n/ko-KR.properties
CHANGED
|
@@ -69,35 +69,35 @@ be.close = 닫기
|
|
|
69
69
|
# Message to the user to collapse the Transcript entries
|
|
70
70
|
be.collapse = 축소
|
|
71
71
|
# Text shown to users when opening the content insights flyout and there is an error
|
|
72
|
-
be.contentInsights.contentAnalyticsErrorText =
|
|
72
|
+
be.contentInsights.contentAnalyticsErrorText = 콘텐츠 인사이트를 로드하는 데 문제가 발생했습니다. 다시 시도하십시오.
|
|
73
73
|
# Title for Content Insights section in file sidebar
|
|
74
|
-
be.contentInsights.contentInsightsTitle =
|
|
74
|
+
be.contentInsights.contentInsightsTitle = 콘텐츠 인사이트
|
|
75
75
|
# Label for the chart displaying the number of downloads over the selected time period
|
|
76
|
-
be.contentInsights.downloadGraphLabel =
|
|
76
|
+
be.contentInsights.downloadGraphLabel = 선택된 기간 동안의 다운로드 수를 표시하는 차트
|
|
77
77
|
# Title for the content insights graph card regarding number of Previews
|
|
78
|
-
be.contentInsights.downloadGraphType =
|
|
78
|
+
be.contentInsights.downloadGraphType = 다운로드
|
|
79
79
|
# Open Content Insights button which opens the Content Insights Modal
|
|
80
|
-
be.contentInsights.openContentInsightsButton =
|
|
80
|
+
be.contentInsights.openContentInsightsButton = 세부 정보 보기
|
|
81
81
|
# Label for the chart displaying the number of users over the selected time period
|
|
82
|
-
be.contentInsights.peopleGraphLabel =
|
|
82
|
+
be.contentInsights.peopleGraphLabel = 선택된 기간 동안의 사용자 수를 표시하는 차트
|
|
83
83
|
# Title used to represent how many users have interacted with the file
|
|
84
|
-
be.contentInsights.peopleTitle =
|
|
84
|
+
be.contentInsights.peopleTitle = 사용자
|
|
85
85
|
# Label for the chart displaying the number of previews over the selected time period
|
|
86
|
-
be.contentInsights.previewGraphLabel =
|
|
86
|
+
be.contentInsights.previewGraphLabel = 선택된 기간 동안의 미리 보기 수를 표시하는 차트
|
|
87
87
|
# Title for the content insights graph card regarding number of Previews
|
|
88
|
-
be.contentInsights.previewGraphType =
|
|
88
|
+
be.contentInsights.previewGraphType = 미리 보기
|
|
89
89
|
# Label for the arrow indicator in the trend pill
|
|
90
|
-
be.contentInsights.trendDown =
|
|
90
|
+
be.contentInsights.trendDown = 하향 추세
|
|
91
91
|
# Trend description for the content insights graph card regarding the count of events from the past month
|
|
92
|
-
be.contentInsights.trendMonth =
|
|
92
|
+
be.contentInsights.trendMonth = 지난 달
|
|
93
93
|
# Trend description for the content insights graph card regarding the count of events from the past three months
|
|
94
|
-
be.contentInsights.trendThreeMonths =
|
|
94
|
+
be.contentInsights.trendThreeMonths = 지난 3개월
|
|
95
95
|
# Label for the arrow indicator in the trend pill
|
|
96
|
-
be.contentInsights.trendUp =
|
|
96
|
+
be.contentInsights.trendUp = 상향 추세
|
|
97
97
|
# Trend description for the content insights graph card regarding the count of events from the past week
|
|
98
|
-
be.contentInsights.trendWeek =
|
|
98
|
+
be.contentInsights.trendWeek = 지난 주
|
|
99
99
|
# Trend description for the content insights graph card regarding the count of events from the past year
|
|
100
|
-
be.contentInsights.trendYear =
|
|
100
|
+
be.contentInsights.trendYear = 작년
|
|
101
101
|
# Message that appears when the request for the ContentSharing Element is malformed.
|
|
102
102
|
be.contentSharing.badRequestError = 이 항목에 대한 요청이 잘못되었습니다.
|
|
103
103
|
# Message that appears when collaborators cannot be retrieved in the ContentSharing Element.
|
|
@@ -1558,6 +1558,8 @@ boxui.unifiedShare.contactRestrictionNotice = 적용된 보안 정책으로 인
|
|
|
1558
1558
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = 보안 정책으로 인해 {count, plural, other {{count} 사용자}}에게 초대장을 보낼 수 없습니다.
|
|
1559
1559
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts
|
|
1560
1560
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular = 보안 정책으로 인해 {email}(으)로 초대장을 보낼 수 없습니다.
|
|
1561
|
+
# 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
|
|
1562
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup = Invitations cannot be sent to "{groupName}" due to a security policy.
|
|
1561
1563
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1562
1564
|
boxui.unifiedShare.contactRestrictionNoticeSingular = 적용된 보안 정책으로 인해 외부 공동 작업이 제한되어 있으므로 {email}(으)로 초대를 보낼 수 없습니다.
|
|
1563
1565
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
package/i18n/nb-NO.js
CHANGED
|
@@ -5,6 +5,8 @@ export default {
|
|
|
5
5
|
"be.activitySidebar.activityFeed.annotationMissingError": "Denne kommentaren finnes ikke lenger",
|
|
6
6
|
"be.activitySidebar.activityFeed.commentMissingError": "Denne kommentaren finnes ikke lenger",
|
|
7
7
|
"be.activitySidebar.activityFeed.feedInlineErrorTitle": "Feil",
|
|
8
|
+
"be.activitySidebar.activityFeed.hideReplies": "Hide replies",
|
|
9
|
+
"be.activitySidebar.activityFeed.showReplies": "See {repliesToLoadCount, plural, one {# reply} other {# replies}}",
|
|
8
10
|
"be.activitySidebar.activityFeed.taskMissingError": "Denne oppgaven finnes ikke lenger",
|
|
9
11
|
"be.activitySidebarFilter.status.all": "Alle kommentarer",
|
|
10
12
|
"be.activitySidebarFilter.status.open": "Uavklarte kommentarer",
|
|
@@ -34,21 +36,21 @@ export default {
|
|
|
34
36
|
"be.choose": "Velg",
|
|
35
37
|
"be.close": "Lukk",
|
|
36
38
|
"be.collapse": "Lukk",
|
|
37
|
-
"be.contentInsights.contentAnalyticsErrorText": "
|
|
38
|
-
"be.contentInsights.contentInsightsTitle": "
|
|
39
|
-
"be.contentInsights.downloadGraphLabel": "
|
|
40
|
-
"be.contentInsights.downloadGraphType": "
|
|
41
|
-
"be.contentInsights.openContentInsightsButton": "
|
|
42
|
-
"be.contentInsights.peopleGraphLabel": "
|
|
43
|
-
"be.contentInsights.peopleTitle": "
|
|
44
|
-
"be.contentInsights.previewGraphLabel": "
|
|
45
|
-
"be.contentInsights.previewGraphType": "
|
|
46
|
-
"be.contentInsights.trendDown": "
|
|
47
|
-
"be.contentInsights.trendMonth": "
|
|
48
|
-
"be.contentInsights.trendThreeMonths": "
|
|
49
|
-
"be.contentInsights.trendUp": "
|
|
50
|
-
"be.contentInsights.trendWeek": "
|
|
51
|
-
"be.contentInsights.trendYear": "
|
|
39
|
+
"be.contentInsights.contentAnalyticsErrorText": "Det oppstod et problem med lasting av innholdsinnsikt. Vennligst prøv igjen.",
|
|
40
|
+
"be.contentInsights.contentInsightsTitle": "Innholdsinnsikt",
|
|
41
|
+
"be.contentInsights.downloadGraphLabel": "Diagrammet viser antallet nedlastninger i den valgte tidsperioden",
|
|
42
|
+
"be.contentInsights.downloadGraphType": "Nedlastinger",
|
|
43
|
+
"be.contentInsights.openContentInsightsButton": "Se detaljer",
|
|
44
|
+
"be.contentInsights.peopleGraphLabel": "Diagrammet viser antallet brukere i den valgte tidsperioden",
|
|
45
|
+
"be.contentInsights.peopleTitle": "Personer",
|
|
46
|
+
"be.contentInsights.previewGraphLabel": "Diagrammet viser antallet forhåndsvisninger i den valgte tidsperioden",
|
|
47
|
+
"be.contentInsights.previewGraphType": "Forhåndsvisninger",
|
|
48
|
+
"be.contentInsights.trendDown": "Nedadgående trend",
|
|
49
|
+
"be.contentInsights.trendMonth": "Siste måned",
|
|
50
|
+
"be.contentInsights.trendThreeMonths": "De siste tre månedene",
|
|
51
|
+
"be.contentInsights.trendUp": "Oppadgående trend",
|
|
52
|
+
"be.contentInsights.trendWeek": "Den siste uken",
|
|
53
|
+
"be.contentInsights.trendYear": "Siste år",
|
|
52
54
|
"be.contentSharing.badRequestError": "Forespørselen om dette elementet inneholder feil.",
|
|
53
55
|
"be.contentSharing.collaboratorsLoadingError": "Kan ikke hente samarbeidspartnere for dette elementet.",
|
|
54
56
|
"be.contentSharing.getContactsError": "Kan ikke hente kontakter.",
|
package/i18n/nb-NO.properties
CHANGED
|
@@ -69,35 +69,35 @@ be.close = Lukk
|
|
|
69
69
|
# Message to the user to collapse the Transcript entries
|
|
70
70
|
be.collapse = Lukk
|
|
71
71
|
# Text shown to users when opening the content insights flyout and there is an error
|
|
72
|
-
be.contentInsights.contentAnalyticsErrorText =
|
|
72
|
+
be.contentInsights.contentAnalyticsErrorText = Det oppstod et problem med lasting av innholdsinnsikt. Vennligst prøv igjen.
|
|
73
73
|
# Title for Content Insights section in file sidebar
|
|
74
|
-
be.contentInsights.contentInsightsTitle =
|
|
74
|
+
be.contentInsights.contentInsightsTitle = Innholdsinnsikt
|
|
75
75
|
# Label for the chart displaying the number of downloads over the selected time period
|
|
76
|
-
be.contentInsights.downloadGraphLabel =
|
|
76
|
+
be.contentInsights.downloadGraphLabel = Diagrammet viser antallet nedlastninger i den valgte tidsperioden
|
|
77
77
|
# Title for the content insights graph card regarding number of Previews
|
|
78
|
-
be.contentInsights.downloadGraphType =
|
|
78
|
+
be.contentInsights.downloadGraphType = Nedlastinger
|
|
79
79
|
# Open Content Insights button which opens the Content Insights Modal
|
|
80
|
-
be.contentInsights.openContentInsightsButton =
|
|
80
|
+
be.contentInsights.openContentInsightsButton = Se detaljer
|
|
81
81
|
# Label for the chart displaying the number of users over the selected time period
|
|
82
|
-
be.contentInsights.peopleGraphLabel =
|
|
82
|
+
be.contentInsights.peopleGraphLabel = Diagrammet viser antallet brukere i den valgte tidsperioden
|
|
83
83
|
# Title used to represent how many users have interacted with the file
|
|
84
|
-
be.contentInsights.peopleTitle =
|
|
84
|
+
be.contentInsights.peopleTitle = Personer
|
|
85
85
|
# Label for the chart displaying the number of previews over the selected time period
|
|
86
|
-
be.contentInsights.previewGraphLabel =
|
|
86
|
+
be.contentInsights.previewGraphLabel = Diagrammet viser antallet forhåndsvisninger i den valgte tidsperioden
|
|
87
87
|
# Title for the content insights graph card regarding number of Previews
|
|
88
|
-
be.contentInsights.previewGraphType =
|
|
88
|
+
be.contentInsights.previewGraphType = Forhåndsvisninger
|
|
89
89
|
# Label for the arrow indicator in the trend pill
|
|
90
|
-
be.contentInsights.trendDown =
|
|
90
|
+
be.contentInsights.trendDown = Nedadgående trend
|
|
91
91
|
# Trend description for the content insights graph card regarding the count of events from the past month
|
|
92
|
-
be.contentInsights.trendMonth =
|
|
92
|
+
be.contentInsights.trendMonth = Siste måned
|
|
93
93
|
# Trend description for the content insights graph card regarding the count of events from the past three months
|
|
94
|
-
be.contentInsights.trendThreeMonths =
|
|
94
|
+
be.contentInsights.trendThreeMonths = De siste tre månedene
|
|
95
95
|
# Label for the arrow indicator in the trend pill
|
|
96
|
-
be.contentInsights.trendUp =
|
|
96
|
+
be.contentInsights.trendUp = Oppadgående trend
|
|
97
97
|
# Trend description for the content insights graph card regarding the count of events from the past week
|
|
98
|
-
be.contentInsights.trendWeek =
|
|
98
|
+
be.contentInsights.trendWeek = Den siste uken
|
|
99
99
|
# Trend description for the content insights graph card regarding the count of events from the past year
|
|
100
|
-
be.contentInsights.trendYear =
|
|
100
|
+
be.contentInsights.trendYear = Siste år
|
|
101
101
|
# Message that appears when the request for the ContentSharing Element is malformed.
|
|
102
102
|
be.contentSharing.badRequestError = Forespørselen om dette elementet inneholder feil.
|
|
103
103
|
# Message that appears when collaborators cannot be retrieved in the ContentSharing Element.
|
|
@@ -1558,6 +1558,8 @@ boxui.unifiedShare.contactRestrictionNotice = Invitasjoner kan ikke sendes til {
|
|
|
1558
1558
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = Invitasjoner kan ikke sendes til {count, plural, one {{count} person} other {{count} personer}} grunnet sikkerhetsretningslinjene.
|
|
1559
1559
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts
|
|
1560
1560
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular = Invitasjoner kan ikke sendes til {email} grunnet sikkerhetsretningslinjene.
|
|
1561
|
+
# 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
|
|
1562
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup = Invitations cannot be sent to "{groupName}" due to a security policy.
|
|
1561
1563
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1562
1564
|
boxui.unifiedShare.contactRestrictionNoticeSingular = Invitasjoner kan ikke sendes til {email} fordi det eksterne samarbeidet er begrenset på grunn av de anvendte retningslinjene for sikkerhet.
|
|
1563
1565
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
package/i18n/nl-NL.js
CHANGED
|
@@ -5,6 +5,8 @@ export default {
|
|
|
5
5
|
"be.activitySidebar.activityFeed.annotationMissingError": "De opmerking bestaat niet meer.",
|
|
6
6
|
"be.activitySidebar.activityFeed.commentMissingError": "De opmerking bestaat niet meer.",
|
|
7
7
|
"be.activitySidebar.activityFeed.feedInlineErrorTitle": "Fout",
|
|
8
|
+
"be.activitySidebar.activityFeed.hideReplies": "Hide replies",
|
|
9
|
+
"be.activitySidebar.activityFeed.showReplies": "See {repliesToLoadCount, plural, one {# reply} other {# replies}}",
|
|
8
10
|
"be.activitySidebar.activityFeed.taskMissingError": "Deze taak bestaat niet meer.",
|
|
9
11
|
"be.activitySidebarFilter.status.all": "Alle opmerkingen",
|
|
10
12
|
"be.activitySidebarFilter.status.open": "Niet-opgeloste opmerkingen",
|
|
@@ -34,21 +36,21 @@ export default {
|
|
|
34
36
|
"be.choose": "Kiezen",
|
|
35
37
|
"be.close": "Sluiten",
|
|
36
38
|
"be.collapse": "Samenvouwen",
|
|
37
|
-
"be.contentInsights.contentAnalyticsErrorText": "
|
|
38
|
-
"be.contentInsights.contentInsightsTitle": "
|
|
39
|
-
"be.contentInsights.downloadGraphLabel": "
|
|
40
|
-
"be.contentInsights.downloadGraphType": "
|
|
41
|
-
"be.contentInsights.openContentInsightsButton": "
|
|
42
|
-
"be.contentInsights.peopleGraphLabel": "
|
|
43
|
-
"be.contentInsights.peopleTitle": "
|
|
44
|
-
"be.contentInsights.previewGraphLabel": "
|
|
45
|
-
"be.contentInsights.previewGraphType": "
|
|
46
|
-
"be.contentInsights.trendDown": "
|
|
47
|
-
"be.contentInsights.trendMonth": "
|
|
48
|
-
"be.contentInsights.trendThreeMonths": "
|
|
49
|
-
"be.contentInsights.trendUp": "
|
|
50
|
-
"be.contentInsights.trendWeek": "
|
|
51
|
-
"be.contentInsights.trendYear": "
|
|
39
|
+
"be.contentInsights.contentAnalyticsErrorText": "Er is een probleem opgetreden met het laden van inzichten over de inhoud. Probeer het opnieuw.",
|
|
40
|
+
"be.contentInsights.contentInsightsTitle": "Inzichten over de inhoud",
|
|
41
|
+
"be.contentInsights.downloadGraphLabel": "Grafiek met het aantal downloads over de geselecteerde periode",
|
|
42
|
+
"be.contentInsights.downloadGraphType": "downloads",
|
|
43
|
+
"be.contentInsights.openContentInsightsButton": "Details bekijken",
|
|
44
|
+
"be.contentInsights.peopleGraphLabel": "Grafiek met het aantal gebruikers over de geselecteerde periode",
|
|
45
|
+
"be.contentInsights.peopleTitle": "Personen",
|
|
46
|
+
"be.contentInsights.previewGraphLabel": "Grafiek met het aantal previews over de geselecteerde periode",
|
|
47
|
+
"be.contentInsights.previewGraphType": "Voorbeelden",
|
|
48
|
+
"be.contentInsights.trendDown": "Neerwaartse trend",
|
|
49
|
+
"be.contentInsights.trendMonth": "Vorige maand",
|
|
50
|
+
"be.contentInsights.trendThreeMonths": "Afgelopen 3 maanden",
|
|
51
|
+
"be.contentInsights.trendUp": "Opwaartse trend",
|
|
52
|
+
"be.contentInsights.trendWeek": "Vorige week",
|
|
53
|
+
"be.contentInsights.trendYear": "Vorig jaar",
|
|
52
54
|
"be.contentSharing.badRequestError": "De aanvraag voor dit item heeft een ongeldige indeling.",
|
|
53
55
|
"be.contentSharing.collaboratorsLoadingError": "Kan medebewerkers voor dit item niet ophalen.",
|
|
54
56
|
"be.contentSharing.getContactsError": "Kan contacten niet ophalen.",
|
package/i18n/nl-NL.properties
CHANGED
|
@@ -69,35 +69,35 @@ be.close = Sluiten
|
|
|
69
69
|
# Message to the user to collapse the Transcript entries
|
|
70
70
|
be.collapse = Samenvouwen
|
|
71
71
|
# Text shown to users when opening the content insights flyout and there is an error
|
|
72
|
-
be.contentInsights.contentAnalyticsErrorText =
|
|
72
|
+
be.contentInsights.contentAnalyticsErrorText = Er is een probleem opgetreden met het laden van inzichten over de inhoud. Probeer het opnieuw.
|
|
73
73
|
# Title for Content Insights section in file sidebar
|
|
74
|
-
be.contentInsights.contentInsightsTitle =
|
|
74
|
+
be.contentInsights.contentInsightsTitle = Inzichten over de inhoud
|
|
75
75
|
# Label for the chart displaying the number of downloads over the selected time period
|
|
76
|
-
be.contentInsights.downloadGraphLabel =
|
|
76
|
+
be.contentInsights.downloadGraphLabel = Grafiek met het aantal downloads over de geselecteerde periode
|
|
77
77
|
# Title for the content insights graph card regarding number of Previews
|
|
78
|
-
be.contentInsights.downloadGraphType =
|
|
78
|
+
be.contentInsights.downloadGraphType = downloads
|
|
79
79
|
# Open Content Insights button which opens the Content Insights Modal
|
|
80
|
-
be.contentInsights.openContentInsightsButton =
|
|
80
|
+
be.contentInsights.openContentInsightsButton = Details bekijken
|
|
81
81
|
# Label for the chart displaying the number of users over the selected time period
|
|
82
|
-
be.contentInsights.peopleGraphLabel =
|
|
82
|
+
be.contentInsights.peopleGraphLabel = Grafiek met het aantal gebruikers over de geselecteerde periode
|
|
83
83
|
# Title used to represent how many users have interacted with the file
|
|
84
|
-
be.contentInsights.peopleTitle =
|
|
84
|
+
be.contentInsights.peopleTitle = Personen
|
|
85
85
|
# Label for the chart displaying the number of previews over the selected time period
|
|
86
|
-
be.contentInsights.previewGraphLabel =
|
|
86
|
+
be.contentInsights.previewGraphLabel = Grafiek met het aantal previews over de geselecteerde periode
|
|
87
87
|
# Title for the content insights graph card regarding number of Previews
|
|
88
|
-
be.contentInsights.previewGraphType =
|
|
88
|
+
be.contentInsights.previewGraphType = Voorbeelden
|
|
89
89
|
# Label for the arrow indicator in the trend pill
|
|
90
|
-
be.contentInsights.trendDown =
|
|
90
|
+
be.contentInsights.trendDown = Neerwaartse trend
|
|
91
91
|
# Trend description for the content insights graph card regarding the count of events from the past month
|
|
92
|
-
be.contentInsights.trendMonth =
|
|
92
|
+
be.contentInsights.trendMonth = Vorige maand
|
|
93
93
|
# Trend description for the content insights graph card regarding the count of events from the past three months
|
|
94
|
-
be.contentInsights.trendThreeMonths =
|
|
94
|
+
be.contentInsights.trendThreeMonths = Afgelopen 3 maanden
|
|
95
95
|
# Label for the arrow indicator in the trend pill
|
|
96
|
-
be.contentInsights.trendUp =
|
|
96
|
+
be.contentInsights.trendUp = Opwaartse trend
|
|
97
97
|
# Trend description for the content insights graph card regarding the count of events from the past week
|
|
98
|
-
be.contentInsights.trendWeek =
|
|
98
|
+
be.contentInsights.trendWeek = Vorige week
|
|
99
99
|
# Trend description for the content insights graph card regarding the count of events from the past year
|
|
100
|
-
be.contentInsights.trendYear =
|
|
100
|
+
be.contentInsights.trendYear = Vorig jaar
|
|
101
101
|
# Message that appears when the request for the ContentSharing Element is malformed.
|
|
102
102
|
be.contentSharing.badRequestError = De aanvraag voor dit item heeft een ongeldige indeling.
|
|
103
103
|
# Message that appears when collaborators cannot be retrieved in the ContentSharing Element.
|
|
@@ -1558,6 +1558,8 @@ boxui.unifiedShare.contactRestrictionNotice = Uitnodigingen kunnen niet worden v
|
|
|
1558
1558
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = Uitnodigingen kunnen niet worden verzonden naar {count, plural, one {{count} persoon} other {{count} personen}} vanwege een beveiligingsbeleid.
|
|
1559
1559
|
# Text for the notice that is displayed when there are Information Barrier collaboration restrictions that apply to only one of the selected contacts
|
|
1560
1560
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingular = Uitnodigingen kunnen niet naar {email} worden verzonden vanwege een beveiligingsbeleid.
|
|
1561
|
+
# 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
|
|
1562
|
+
boxui.unifiedShare.contactRestrictionNoticeInformationBarrierSingularGroup = Invitations cannot be sent to "{groupName}" due to a security policy.
|
|
1561
1563
|
# Text for the notice that is displayed when there are collaboration restrictions that apply to one or more of the selected contacts
|
|
1562
1564
|
boxui.unifiedShare.contactRestrictionNoticeSingular = Uitnodigingen kunnen niet worden verzonden naar {email} omdat externe samenwerking is beperkt door het toegepaste beveiligingsbeleid.
|
|
1563
1565
|
# Label for the button that removes restricted contacts on the contact restriction notice
|