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/es-419.js
CHANGED
|
@@ -5,6 +5,8 @@ export default {
|
|
|
5
5
|
"be.activitySidebar.activityFeed.annotationMissingError": "Este comentario ya no está disponible",
|
|
6
6
|
"be.activitySidebar.activityFeed.commentMissingError": "Este comentario ya no está disponible",
|
|
7
7
|
"be.activitySidebar.activityFeed.feedInlineErrorTitle": "Error",
|
|
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": "Esta tarea ya no está disponible",
|
|
9
11
|
"be.activitySidebarFilter.status.all": "Todos los comentarios",
|
|
10
12
|
"be.activitySidebarFilter.status.open": "Comentarios no resueltos",
|
|
@@ -34,21 +36,21 @@ export default {
|
|
|
34
36
|
"be.choose": "Seleccionar",
|
|
35
37
|
"be.close": "Cerrar",
|
|
36
38
|
"be.collapse": "Contraer",
|
|
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": "Se ha producido un problema al cargar la información sobre el contenido. Inténtelo de nuevo.",
|
|
40
|
+
"be.contentInsights.contentInsightsTitle": "Información del contenido",
|
|
41
|
+
"be.contentInsights.downloadGraphLabel": "Gráfico que muestra el número de descargas durante el periodo de tiempo seleccionado",
|
|
42
|
+
"be.contentInsights.downloadGraphType": "Descargas",
|
|
43
|
+
"be.contentInsights.openContentInsightsButton": "Ver detalles",
|
|
44
|
+
"be.contentInsights.peopleGraphLabel": "Gráfico que muestra el número de usuarios durante el periodo de tiempo seleccionado",
|
|
45
|
+
"be.contentInsights.peopleTitle": "PERSONAS",
|
|
46
|
+
"be.contentInsights.previewGraphLabel": "Gráfico que muestra el número de previsualizaciones en el periodo de tiempo seleccionado",
|
|
47
|
+
"be.contentInsights.previewGraphType": "Vistas previas",
|
|
48
|
+
"be.contentInsights.trendDown": "Tendencia a la baja",
|
|
49
|
+
"be.contentInsights.trendMonth": "Último mes",
|
|
50
|
+
"be.contentInsights.trendThreeMonths": "ÚLTIMOS 3 meses",
|
|
51
|
+
"be.contentInsights.trendUp": "Tendencias al alza",
|
|
52
|
+
"be.contentInsights.trendWeek": "Última semana",
|
|
53
|
+
"be.contentInsights.trendYear": "Último año",
|
|
52
54
|
"be.contentSharing.badRequestError": "La solicitud para este elemento no tiene un formato correcto.",
|
|
53
55
|
"be.contentSharing.collaboratorsLoadingError": "No se han podido recuperar los colaboradores de este elemento.",
|
|
54
56
|
"be.contentSharing.getContactsError": "No se ha podido recuperar los contactos.",
|
package/i18n/es-419.properties
CHANGED
|
@@ -69,35 +69,35 @@ be.close = Cerrar
|
|
|
69
69
|
# Message to the user to collapse the Transcript entries
|
|
70
70
|
be.collapse = Contraer
|
|
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 = Se ha producido un problema al cargar la información sobre el contenido. Inténtelo de nuevo.
|
|
73
73
|
# Title for Content Insights section in file sidebar
|
|
74
|
-
be.contentInsights.contentInsightsTitle =
|
|
74
|
+
be.contentInsights.contentInsightsTitle = Información del contenido
|
|
75
75
|
# Label for the chart displaying the number of downloads over the selected time period
|
|
76
|
-
be.contentInsights.downloadGraphLabel =
|
|
76
|
+
be.contentInsights.downloadGraphLabel = Gráfico que muestra el número de descargas durante el periodo de tiempo seleccionado
|
|
77
77
|
# Title for the content insights graph card regarding number of Previews
|
|
78
|
-
be.contentInsights.downloadGraphType =
|
|
78
|
+
be.contentInsights.downloadGraphType = Descargas
|
|
79
79
|
# Open Content Insights button which opens the Content Insights Modal
|
|
80
|
-
be.contentInsights.openContentInsightsButton =
|
|
80
|
+
be.contentInsights.openContentInsightsButton = Ver detalles
|
|
81
81
|
# Label for the chart displaying the number of users over the selected time period
|
|
82
|
-
be.contentInsights.peopleGraphLabel =
|
|
82
|
+
be.contentInsights.peopleGraphLabel = Gráfico que muestra el número de usuarios durante el periodo de tiempo seleccionado
|
|
83
83
|
# Title used to represent how many users have interacted with the file
|
|
84
|
-
be.contentInsights.peopleTitle =
|
|
84
|
+
be.contentInsights.peopleTitle = PERSONAS
|
|
85
85
|
# Label for the chart displaying the number of previews over the selected time period
|
|
86
|
-
be.contentInsights.previewGraphLabel =
|
|
86
|
+
be.contentInsights.previewGraphLabel = Gráfico que muestra el número de previsualizaciones en el periodo de tiempo seleccionado
|
|
87
87
|
# Title for the content insights graph card regarding number of Previews
|
|
88
|
-
be.contentInsights.previewGraphType =
|
|
88
|
+
be.contentInsights.previewGraphType = Vistas previas
|
|
89
89
|
# Label for the arrow indicator in the trend pill
|
|
90
|
-
be.contentInsights.trendDown =
|
|
90
|
+
be.contentInsights.trendDown = Tendencia a la baja
|
|
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 = Último mes
|
|
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 = ÚLTIMOS 3 meses
|
|
95
95
|
# Label for the arrow indicator in the trend pill
|
|
96
|
-
be.contentInsights.trendUp =
|
|
96
|
+
be.contentInsights.trendUp = Tendencias al alza
|
|
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 = Última semana
|
|
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 = Último año
|
|
101
101
|
# Message that appears when the request for the ContentSharing Element is malformed.
|
|
102
102
|
be.contentSharing.badRequestError = La solicitud para este elemento no tiene un formato correcto.
|
|
103
103
|
# Message that appears when collaborators cannot be retrieved in the ContentSharing Element.
|
|
@@ -1558,6 +1558,8 @@ boxui.unifiedShare.contactRestrictionNotice = Las invitaciones no se pueden envi
|
|
|
1558
1558
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = Las invitaciones no se pueden enviar a {count, plural, one {{count} persona} other {{count} personas}} debido a una política de seguridad.
|
|
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 = Las invitaciones no se pueden enviar a {email} debido a una política de seguridad.
|
|
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 = Las invitaciones no se pueden enviar a {email} porque la colaboración externa está restringida debido a la política de seguridad aplicada.
|
|
1563
1565
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
package/i18n/es-ES.js
CHANGED
|
@@ -5,6 +5,8 @@ export default {
|
|
|
5
5
|
"be.activitySidebar.activityFeed.annotationMissingError": "Este comentario ya no está disponible",
|
|
6
6
|
"be.activitySidebar.activityFeed.commentMissingError": "Este comentario ya no está disponible",
|
|
7
7
|
"be.activitySidebar.activityFeed.feedInlineErrorTitle": "Error",
|
|
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": "Esta tarea ya no está disponible",
|
|
9
11
|
"be.activitySidebarFilter.status.all": "Todos los comentarios",
|
|
10
12
|
"be.activitySidebarFilter.status.open": "Comentarios no resueltos",
|
|
@@ -34,21 +36,21 @@ export default {
|
|
|
34
36
|
"be.choose": "Elegir",
|
|
35
37
|
"be.close": "Cerrar",
|
|
36
38
|
"be.collapse": "Contraer",
|
|
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": "Se ha producido un problema al cargar la información sobre el contenido. Inténtelo de nuevo.",
|
|
40
|
+
"be.contentInsights.contentInsightsTitle": "Información del contenido",
|
|
41
|
+
"be.contentInsights.downloadGraphLabel": "Gráfico que muestra el número de descargas durante el periodo de tiempo seleccionado",
|
|
42
|
+
"be.contentInsights.downloadGraphType": "Descargas",
|
|
43
|
+
"be.contentInsights.openContentInsightsButton": "Ver detalles",
|
|
44
|
+
"be.contentInsights.peopleGraphLabel": "Gráfico que muestra el número de usuarios durante el periodo de tiempo seleccionado",
|
|
45
|
+
"be.contentInsights.peopleTitle": "PERSONAS",
|
|
46
|
+
"be.contentInsights.previewGraphLabel": "Gráfico que muestra el número de previsualizaciones en el periodo de tiempo seleccionado",
|
|
47
|
+
"be.contentInsights.previewGraphType": "Vistas previas",
|
|
48
|
+
"be.contentInsights.trendDown": "Tendencia a la baja",
|
|
49
|
+
"be.contentInsights.trendMonth": "Último mes",
|
|
50
|
+
"be.contentInsights.trendThreeMonths": "ÚLTIMOS 3 meses",
|
|
51
|
+
"be.contentInsights.trendUp": "Tendencias al alza",
|
|
52
|
+
"be.contentInsights.trendWeek": "Última semana",
|
|
53
|
+
"be.contentInsights.trendYear": "Último año",
|
|
52
54
|
"be.contentSharing.badRequestError": "La solicitud para este elemento no tiene un formato correcto.",
|
|
53
55
|
"be.contentSharing.collaboratorsLoadingError": "No se han podido recuperar los colaboradores de este elemento.",
|
|
54
56
|
"be.contentSharing.getContactsError": "No se ha podido recuperar los contactos.",
|
package/i18n/es-ES.properties
CHANGED
|
@@ -69,35 +69,35 @@ be.close = Cerrar
|
|
|
69
69
|
# Message to the user to collapse the Transcript entries
|
|
70
70
|
be.collapse = Contraer
|
|
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 = Se ha producido un problema al cargar la información sobre el contenido. Inténtelo de nuevo.
|
|
73
73
|
# Title for Content Insights section in file sidebar
|
|
74
|
-
be.contentInsights.contentInsightsTitle =
|
|
74
|
+
be.contentInsights.contentInsightsTitle = Información del contenido
|
|
75
75
|
# Label for the chart displaying the number of downloads over the selected time period
|
|
76
|
-
be.contentInsights.downloadGraphLabel =
|
|
76
|
+
be.contentInsights.downloadGraphLabel = Gráfico que muestra el número de descargas durante el periodo de tiempo seleccionado
|
|
77
77
|
# Title for the content insights graph card regarding number of Previews
|
|
78
|
-
be.contentInsights.downloadGraphType =
|
|
78
|
+
be.contentInsights.downloadGraphType = Descargas
|
|
79
79
|
# Open Content Insights button which opens the Content Insights Modal
|
|
80
|
-
be.contentInsights.openContentInsightsButton =
|
|
80
|
+
be.contentInsights.openContentInsightsButton = Ver detalles
|
|
81
81
|
# Label for the chart displaying the number of users over the selected time period
|
|
82
|
-
be.contentInsights.peopleGraphLabel =
|
|
82
|
+
be.contentInsights.peopleGraphLabel = Gráfico que muestra el número de usuarios durante el periodo de tiempo seleccionado
|
|
83
83
|
# Title used to represent how many users have interacted with the file
|
|
84
|
-
be.contentInsights.peopleTitle =
|
|
84
|
+
be.contentInsights.peopleTitle = PERSONAS
|
|
85
85
|
# Label for the chart displaying the number of previews over the selected time period
|
|
86
|
-
be.contentInsights.previewGraphLabel =
|
|
86
|
+
be.contentInsights.previewGraphLabel = Gráfico que muestra el número de previsualizaciones en el periodo de tiempo seleccionado
|
|
87
87
|
# Title for the content insights graph card regarding number of Previews
|
|
88
|
-
be.contentInsights.previewGraphType =
|
|
88
|
+
be.contentInsights.previewGraphType = Vistas previas
|
|
89
89
|
# Label for the arrow indicator in the trend pill
|
|
90
|
-
be.contentInsights.trendDown =
|
|
90
|
+
be.contentInsights.trendDown = Tendencia a la baja
|
|
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 = Último mes
|
|
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 = ÚLTIMOS 3 meses
|
|
95
95
|
# Label for the arrow indicator in the trend pill
|
|
96
|
-
be.contentInsights.trendUp =
|
|
96
|
+
be.contentInsights.trendUp = Tendencias al alza
|
|
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 = Última semana
|
|
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 = Último año
|
|
101
101
|
# Message that appears when the request for the ContentSharing Element is malformed.
|
|
102
102
|
be.contentSharing.badRequestError = La solicitud para este elemento no tiene un formato correcto.
|
|
103
103
|
# Message that appears when collaborators cannot be retrieved in the ContentSharing Element.
|
|
@@ -1558,6 +1558,8 @@ boxui.unifiedShare.contactRestrictionNotice = Las invitaciones no se pueden envi
|
|
|
1558
1558
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = Las invitaciones no se pueden enviar a {count, plural, one {{count} persona} other {{count} personas}} debido a una política de seguridad.
|
|
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 = Las invitaciones no se pueden enviar a {email} debido a una política de seguridad.
|
|
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 = Las invitaciones no se pueden enviar a {email} porque la colaboración externa está restringida debido a la política de seguridad aplicada.
|
|
1563
1565
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
package/i18n/fi-FI.js
CHANGED
|
@@ -5,6 +5,8 @@ export default {
|
|
|
5
5
|
"be.activitySidebar.activityFeed.annotationMissingError": "Tätä kommenttia ei enää löydy.",
|
|
6
6
|
"be.activitySidebar.activityFeed.commentMissingError": "Tätä kommenttia ei enää löydy.",
|
|
7
7
|
"be.activitySidebar.activityFeed.feedInlineErrorTitle": "Virhe",
|
|
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": "Tätä tehtävää ei enää löydy.",
|
|
9
11
|
"be.activitySidebarFilter.status.all": "Kaikki kommentit",
|
|
10
12
|
"be.activitySidebarFilter.status.open": "Ratkaisemattomat kommentit",
|
|
@@ -34,21 +36,21 @@ export default {
|
|
|
34
36
|
"be.choose": "Valitse",
|
|
35
37
|
"be.close": "Sulje",
|
|
36
38
|
"be.collapse": "Kutista",
|
|
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": "Sisällön tarkempien tietojen lataamisessa tapahtui virhe. Yritä uudelleen.",
|
|
40
|
+
"be.contentInsights.contentInsightsTitle": "Sisällön tarkemmat tiedot",
|
|
41
|
+
"be.contentInsights.downloadGraphLabel": "Kaavio, jossa näytetään latausten määrä valittuna ajanjaksona",
|
|
42
|
+
"be.contentInsights.downloadGraphType": "Lataukset",
|
|
43
|
+
"be.contentInsights.openContentInsightsButton": "Katso tiedot",
|
|
44
|
+
"be.contentInsights.peopleGraphLabel": "Kaavio, jossa näytetään käyttäjien määrä valittuna ajanjaksona",
|
|
45
|
+
"be.contentInsights.peopleTitle": "Henkilöt",
|
|
46
|
+
"be.contentInsights.previewGraphLabel": "Kaavio, jossa näytetään esikatseluiden määrä valittuna ajanjaksona",
|
|
47
|
+
"be.contentInsights.previewGraphType": "Esikatselut",
|
|
48
|
+
"be.contentInsights.trendDown": "Laskeva suuntaus",
|
|
49
|
+
"be.contentInsights.trendMonth": "Edellinen kuukausi",
|
|
50
|
+
"be.contentInsights.trendThreeMonths": "Edelliset 3 kuukautta",
|
|
51
|
+
"be.contentInsights.trendUp": "Nouseva suuntaus",
|
|
52
|
+
"be.contentInsights.trendWeek": "Edellinen viikko",
|
|
53
|
+
"be.contentInsights.trendYear": "Edellinen vuosi",
|
|
52
54
|
"be.contentSharing.badRequestError": "Tämän kohteen pyyntö on virheellinen.",
|
|
53
55
|
"be.contentSharing.collaboratorsLoadingError": "Tämän kohteen yhteistyökumppaneita ei löydy.",
|
|
54
56
|
"be.contentSharing.getContactsError": "Yhteystietojen haku epäonnistui.",
|
package/i18n/fi-FI.properties
CHANGED
|
@@ -69,35 +69,35 @@ be.close = Sulje
|
|
|
69
69
|
# Message to the user to collapse the Transcript entries
|
|
70
70
|
be.collapse = Kutista
|
|
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 = Sisällön tarkempien tietojen lataamisessa tapahtui virhe. Yritä uudelleen.
|
|
73
73
|
# Title for Content Insights section in file sidebar
|
|
74
|
-
be.contentInsights.contentInsightsTitle =
|
|
74
|
+
be.contentInsights.contentInsightsTitle = Sisällön tarkemmat tiedot
|
|
75
75
|
# Label for the chart displaying the number of downloads over the selected time period
|
|
76
|
-
be.contentInsights.downloadGraphLabel =
|
|
76
|
+
be.contentInsights.downloadGraphLabel = Kaavio, jossa näytetään latausten määrä valittuna ajanjaksona
|
|
77
77
|
# Title for the content insights graph card regarding number of Previews
|
|
78
|
-
be.contentInsights.downloadGraphType =
|
|
78
|
+
be.contentInsights.downloadGraphType = Lataukset
|
|
79
79
|
# Open Content Insights button which opens the Content Insights Modal
|
|
80
|
-
be.contentInsights.openContentInsightsButton =
|
|
80
|
+
be.contentInsights.openContentInsightsButton = Katso tiedot
|
|
81
81
|
# Label for the chart displaying the number of users over the selected time period
|
|
82
|
-
be.contentInsights.peopleGraphLabel =
|
|
82
|
+
be.contentInsights.peopleGraphLabel = Kaavio, jossa näytetään käyttäjien määrä valittuna ajanjaksona
|
|
83
83
|
# Title used to represent how many users have interacted with the file
|
|
84
|
-
be.contentInsights.peopleTitle =
|
|
84
|
+
be.contentInsights.peopleTitle = Henkilöt
|
|
85
85
|
# Label for the chart displaying the number of previews over the selected time period
|
|
86
|
-
be.contentInsights.previewGraphLabel =
|
|
86
|
+
be.contentInsights.previewGraphLabel = Kaavio, jossa näytetään esikatseluiden määrä valittuna ajanjaksona
|
|
87
87
|
# Title for the content insights graph card regarding number of Previews
|
|
88
|
-
be.contentInsights.previewGraphType =
|
|
88
|
+
be.contentInsights.previewGraphType = Esikatselut
|
|
89
89
|
# Label for the arrow indicator in the trend pill
|
|
90
|
-
be.contentInsights.trendDown =
|
|
90
|
+
be.contentInsights.trendDown = Laskeva suuntaus
|
|
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 = Edellinen kuukausi
|
|
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 = Edelliset 3 kuukautta
|
|
95
95
|
# Label for the arrow indicator in the trend pill
|
|
96
|
-
be.contentInsights.trendUp =
|
|
96
|
+
be.contentInsights.trendUp = Nouseva suuntaus
|
|
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 = Edellinen viikko
|
|
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 = Edellinen vuosi
|
|
101
101
|
# Message that appears when the request for the ContentSharing Element is malformed.
|
|
102
102
|
be.contentSharing.badRequestError = Tämän kohteen pyyntö on virheellinen.
|
|
103
103
|
# Message that appears when collaborators cannot be retrieved in the ContentSharing Element.
|
|
@@ -1558,6 +1558,8 @@ boxui.unifiedShare.contactRestrictionNotice = Kutsuja ei voida lähettää {coun
|
|
|
1558
1558
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = Kutsuja ei voi lähettää {count, plural, one {{count} henkilölle} other {{count} henkilölle}} suojauskäytännön vuoksi.
|
|
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 = Kutsuja ei voi lähettää sähköpostiosoitteeseen {email} suojauskäytännön vuoksi.
|
|
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 = Kutsuja ei voida lähettää osoitteeseen {email}, koska ulkoista yhteistyötä on rajoitettu suojauskäytännön mukaisesti.
|
|
1563
1565
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
package/i18n/fr-CA.js
CHANGED
|
@@ -5,6 +5,8 @@ export default {
|
|
|
5
5
|
"be.activitySidebar.activityFeed.annotationMissingError": "Ce commentaire n'existe plus",
|
|
6
6
|
"be.activitySidebar.activityFeed.commentMissingError": "Ce commentaire n'existe plus",
|
|
7
7
|
"be.activitySidebar.activityFeed.feedInlineErrorTitle": "Erreur",
|
|
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": "Cette tâche n'existe plus",
|
|
9
11
|
"be.activitySidebarFilter.status.all": "Tous les commentaires",
|
|
10
12
|
"be.activitySidebarFilter.status.open": "Commentaires non résolus",
|
|
@@ -34,21 +36,21 @@ export default {
|
|
|
34
36
|
"be.choose": "Sélectionner",
|
|
35
37
|
"be.close": "Fermer",
|
|
36
38
|
"be.collapse": "Réduire",
|
|
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": "Il y a eu un problème de chargement du contenu. Veuillez réessayer.",
|
|
40
|
+
"be.contentInsights.contentInsightsTitle": "Aperçus du contenu",
|
|
41
|
+
"be.contentInsights.downloadGraphLabel": "Graphique affichant le nombre de téléchargements sur la période sélectionnée",
|
|
42
|
+
"be.contentInsights.downloadGraphType": "Téléchargements",
|
|
43
|
+
"be.contentInsights.openContentInsightsButton": "Voir les détails",
|
|
44
|
+
"be.contentInsights.peopleGraphLabel": "Graphique affichant le nombre d'utilisateurs sur la période sélectionnée",
|
|
45
|
+
"be.contentInsights.peopleTitle": "Utilisateurs",
|
|
46
|
+
"be.contentInsights.previewGraphLabel": "Graphique affichant le nombre de prévisualisations sur la période sélectionnée",
|
|
47
|
+
"be.contentInsights.previewGraphType": "Prévisualisations",
|
|
48
|
+
"be.contentInsights.trendDown": "Tendance à la baisse",
|
|
49
|
+
"be.contentInsights.trendMonth": "Mois passé",
|
|
50
|
+
"be.contentInsights.trendThreeMonths": "3 DERNIERS MOIS",
|
|
51
|
+
"be.contentInsights.trendUp": "Tendance à la hausse",
|
|
52
|
+
"be.contentInsights.trendWeek": "Semaine passée",
|
|
53
|
+
"be.contentInsights.trendYear": "Année passée",
|
|
52
54
|
"be.contentSharing.badRequestError": "La demande pour cet élément n'était pas conforme.",
|
|
53
55
|
"be.contentSharing.collaboratorsLoadingError": "Récupération des collaborateurs impossible pour cet élément.",
|
|
54
56
|
"be.contentSharing.getContactsError": "Échec de la récupération des contacts.",
|
package/i18n/fr-CA.properties
CHANGED
|
@@ -69,35 +69,35 @@ be.close = Fermer
|
|
|
69
69
|
# Message to the user to collapse the Transcript entries
|
|
70
70
|
be.collapse = Réduire
|
|
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 = Il y a eu un problème de chargement du contenu. Veuillez réessayer.
|
|
73
73
|
# Title for Content Insights section in file sidebar
|
|
74
|
-
be.contentInsights.contentInsightsTitle =
|
|
74
|
+
be.contentInsights.contentInsightsTitle = Aperçus du contenu
|
|
75
75
|
# Label for the chart displaying the number of downloads over the selected time period
|
|
76
|
-
be.contentInsights.downloadGraphLabel =
|
|
76
|
+
be.contentInsights.downloadGraphLabel = Graphique affichant le nombre de téléchargements sur la période sélectionnée
|
|
77
77
|
# Title for the content insights graph card regarding number of Previews
|
|
78
|
-
be.contentInsights.downloadGraphType =
|
|
78
|
+
be.contentInsights.downloadGraphType = Téléchargements
|
|
79
79
|
# Open Content Insights button which opens the Content Insights Modal
|
|
80
|
-
be.contentInsights.openContentInsightsButton =
|
|
80
|
+
be.contentInsights.openContentInsightsButton = Voir les détails
|
|
81
81
|
# Label for the chart displaying the number of users over the selected time period
|
|
82
|
-
be.contentInsights.peopleGraphLabel =
|
|
82
|
+
be.contentInsights.peopleGraphLabel = Graphique affichant le nombre d'utilisateurs sur la période sélectionnée
|
|
83
83
|
# Title used to represent how many users have interacted with the file
|
|
84
|
-
be.contentInsights.peopleTitle =
|
|
84
|
+
be.contentInsights.peopleTitle = Utilisateurs
|
|
85
85
|
# Label for the chart displaying the number of previews over the selected time period
|
|
86
|
-
be.contentInsights.previewGraphLabel =
|
|
86
|
+
be.contentInsights.previewGraphLabel = Graphique affichant le nombre de prévisualisations sur la période sélectionnée
|
|
87
87
|
# Title for the content insights graph card regarding number of Previews
|
|
88
|
-
be.contentInsights.previewGraphType =
|
|
88
|
+
be.contentInsights.previewGraphType = Prévisualisations
|
|
89
89
|
# Label for the arrow indicator in the trend pill
|
|
90
|
-
be.contentInsights.trendDown =
|
|
90
|
+
be.contentInsights.trendDown = Tendance à la baisse
|
|
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 = Mois passé
|
|
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 DERNIERS MOIS
|
|
95
95
|
# Label for the arrow indicator in the trend pill
|
|
96
|
-
be.contentInsights.trendUp =
|
|
96
|
+
be.contentInsights.trendUp = Tendance à la hausse
|
|
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 = Semaine passée
|
|
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 = Année passée
|
|
101
101
|
# Message that appears when the request for the ContentSharing Element is malformed.
|
|
102
102
|
be.contentSharing.badRequestError = La demande pour cet élément n'était pas conforme.
|
|
103
103
|
# Message that appears when collaborators cannot be retrieved in the ContentSharing Element.
|
|
@@ -1558,6 +1558,8 @@ boxui.unifiedShare.contactRestrictionNotice = Les invitations ne peuvent pas êt
|
|
|
1558
1558
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = Les invitations ne peuvent pas être envoyées à {count, plural, one {{count} personne} other {{count} utilisateurs}} à cause de la politique de sécurité.
|
|
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 = Les invitations ne peuvent pas être envoyées à {email} à cause d'une politique de sécurité.
|
|
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 = Les invitations ne peuvent pas être envoyées à {email}, car la collaboration externe est limitée en raison de la règle de sécurité appliquée.
|
|
1563
1565
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
package/i18n/fr-FR.js
CHANGED
|
@@ -5,6 +5,8 @@ export default {
|
|
|
5
5
|
"be.activitySidebar.activityFeed.annotationMissingError": "Ce commentaire n'existe plus",
|
|
6
6
|
"be.activitySidebar.activityFeed.commentMissingError": "Ce commentaire n'existe plus",
|
|
7
7
|
"be.activitySidebar.activityFeed.feedInlineErrorTitle": "Erreur",
|
|
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": "Cette tâche n'existe plus",
|
|
9
11
|
"be.activitySidebarFilter.status.all": "Tous les commentaires",
|
|
10
12
|
"be.activitySidebarFilter.status.open": "Commentaires non résolus",
|
|
@@ -34,21 +36,21 @@ export default {
|
|
|
34
36
|
"be.choose": "Sélectionner",
|
|
35
37
|
"be.close": "Fermer",
|
|
36
38
|
"be.collapse": "Réduire",
|
|
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": "Il y a eu un problème de chargement du contenu. Veuillez réessayer.",
|
|
40
|
+
"be.contentInsights.contentInsightsTitle": "Aperçus du contenu",
|
|
41
|
+
"be.contentInsights.downloadGraphLabel": "Graphique affichant le nombre de téléchargements sur la période sélectionnée",
|
|
42
|
+
"be.contentInsights.downloadGraphType": "Téléchargements",
|
|
43
|
+
"be.contentInsights.openContentInsightsButton": "Voir les détails",
|
|
44
|
+
"be.contentInsights.peopleGraphLabel": "Graphique affichant le nombre d'utilisateurs sur la période sélectionnée",
|
|
45
|
+
"be.contentInsights.peopleTitle": "Utilisateurs",
|
|
46
|
+
"be.contentInsights.previewGraphLabel": "Graphique affichant le nombre de prévisualisations sur la période sélectionnée",
|
|
47
|
+
"be.contentInsights.previewGraphType": "Prévisualisations",
|
|
48
|
+
"be.contentInsights.trendDown": "Tendance à la baisse",
|
|
49
|
+
"be.contentInsights.trendMonth": "Mois passé",
|
|
50
|
+
"be.contentInsights.trendThreeMonths": "3 DERNIERS MOIS",
|
|
51
|
+
"be.contentInsights.trendUp": "Tendance à la hausse",
|
|
52
|
+
"be.contentInsights.trendWeek": "Semaine passée",
|
|
53
|
+
"be.contentInsights.trendYear": "Année passée",
|
|
52
54
|
"be.contentSharing.badRequestError": "La demande pour cet élément n'était pas conforme.",
|
|
53
55
|
"be.contentSharing.collaboratorsLoadingError": "Récupération des collaborateurs impossible pour cet élément.",
|
|
54
56
|
"be.contentSharing.getContactsError": "Échec de la récupération des contacts.",
|
package/i18n/fr-FR.properties
CHANGED
|
@@ -69,35 +69,35 @@ be.close = Fermer
|
|
|
69
69
|
# Message to the user to collapse the Transcript entries
|
|
70
70
|
be.collapse = Réduire
|
|
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 = Il y a eu un problème de chargement du contenu. Veuillez réessayer.
|
|
73
73
|
# Title for Content Insights section in file sidebar
|
|
74
|
-
be.contentInsights.contentInsightsTitle =
|
|
74
|
+
be.contentInsights.contentInsightsTitle = Aperçus du contenu
|
|
75
75
|
# Label for the chart displaying the number of downloads over the selected time period
|
|
76
|
-
be.contentInsights.downloadGraphLabel =
|
|
76
|
+
be.contentInsights.downloadGraphLabel = Graphique affichant le nombre de téléchargements sur la période sélectionnée
|
|
77
77
|
# Title for the content insights graph card regarding number of Previews
|
|
78
|
-
be.contentInsights.downloadGraphType =
|
|
78
|
+
be.contentInsights.downloadGraphType = Téléchargements
|
|
79
79
|
# Open Content Insights button which opens the Content Insights Modal
|
|
80
|
-
be.contentInsights.openContentInsightsButton =
|
|
80
|
+
be.contentInsights.openContentInsightsButton = Voir les détails
|
|
81
81
|
# Label for the chart displaying the number of users over the selected time period
|
|
82
|
-
be.contentInsights.peopleGraphLabel =
|
|
82
|
+
be.contentInsights.peopleGraphLabel = Graphique affichant le nombre d'utilisateurs sur la période sélectionnée
|
|
83
83
|
# Title used to represent how many users have interacted with the file
|
|
84
|
-
be.contentInsights.peopleTitle =
|
|
84
|
+
be.contentInsights.peopleTitle = Utilisateurs
|
|
85
85
|
# Label for the chart displaying the number of previews over the selected time period
|
|
86
|
-
be.contentInsights.previewGraphLabel =
|
|
86
|
+
be.contentInsights.previewGraphLabel = Graphique affichant le nombre de prévisualisations sur la période sélectionnée
|
|
87
87
|
# Title for the content insights graph card regarding number of Previews
|
|
88
|
-
be.contentInsights.previewGraphType =
|
|
88
|
+
be.contentInsights.previewGraphType = Prévisualisations
|
|
89
89
|
# Label for the arrow indicator in the trend pill
|
|
90
|
-
be.contentInsights.trendDown =
|
|
90
|
+
be.contentInsights.trendDown = Tendance à la baisse
|
|
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 = Mois passé
|
|
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 DERNIERS MOIS
|
|
95
95
|
# Label for the arrow indicator in the trend pill
|
|
96
|
-
be.contentInsights.trendUp =
|
|
96
|
+
be.contentInsights.trendUp = Tendance à la hausse
|
|
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 = Semaine passée
|
|
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 = Année passée
|
|
101
101
|
# Message that appears when the request for the ContentSharing Element is malformed.
|
|
102
102
|
be.contentSharing.badRequestError = La demande pour cet élément n'était pas conforme.
|
|
103
103
|
# Message that appears when collaborators cannot be retrieved in the ContentSharing Element.
|
|
@@ -1558,6 +1558,8 @@ boxui.unifiedShare.contactRestrictionNotice = Les invitations ne peuvent pas êt
|
|
|
1558
1558
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = Les invitations ne peuvent pas être envoyées à {count, plural, one {{count} personne} other {{count} utilisateurs}} à cause de la politique de sécurité.
|
|
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 = Les invitations ne peuvent pas être envoyées à {email} à cause d'une politique de sécurité.
|
|
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 = Les invitations ne peuvent pas être envoyées à {email}, car la collaboration externe est limitée en raison de la règle de sécurité appliquée.
|
|
1563
1565
|
# Label for the button that removes restricted contacts on the contact restriction notice
|