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/pl-PL.js
CHANGED
|
@@ -5,6 +5,8 @@ export default {
|
|
|
5
5
|
"be.activitySidebar.activityFeed.annotationMissingError": "Ten komentarz już nie istnieje",
|
|
6
6
|
"be.activitySidebar.activityFeed.commentMissingError": "Ten komentarz już nie istnieje",
|
|
7
7
|
"be.activitySidebar.activityFeed.feedInlineErrorTitle": "Błąd",
|
|
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": "To zadanie już nie istnieje",
|
|
9
11
|
"be.activitySidebarFilter.status.all": "Wszystkie komentarze",
|
|
10
12
|
"be.activitySidebarFilter.status.open": "Nierozstrzygnięte komentarze",
|
|
@@ -34,21 +36,21 @@ export default {
|
|
|
34
36
|
"be.choose": "Wybierz",
|
|
35
37
|
"be.close": "Zamknij",
|
|
36
38
|
"be.collapse": "Zwiń",
|
|
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": "Wystąpił problem podczas wczytywania danych o zawartości. Spróbuj ponownie.",
|
|
40
|
+
"be.contentInsights.contentInsightsTitle": "Dane o zawartości",
|
|
41
|
+
"be.contentInsights.downloadGraphLabel": "Wykres przedstawiający liczbę pobrań w wybranym okresie",
|
|
42
|
+
"be.contentInsights.downloadGraphType": "Pobrania",
|
|
43
|
+
"be.contentInsights.openContentInsightsButton": "Zobacz szczegóły",
|
|
44
|
+
"be.contentInsights.peopleGraphLabel": "Wykres przedstawiający liczbę użytkowników w wybranym okresie",
|
|
45
|
+
"be.contentInsights.peopleTitle": "OSOBY",
|
|
46
|
+
"be.contentInsights.previewGraphLabel": "Wykres przedstawiający liczbę podglądów w wybranym okresie",
|
|
47
|
+
"be.contentInsights.previewGraphType": "Wyświetlenia podglądu",
|
|
48
|
+
"be.contentInsights.trendDown": "Spadek",
|
|
49
|
+
"be.contentInsights.trendMonth": "Ubiegły miesiąc",
|
|
50
|
+
"be.contentInsights.trendThreeMonths": "OSTATNIE 3 MIESIĄCE",
|
|
51
|
+
"be.contentInsights.trendUp": "Wzrost",
|
|
52
|
+
"be.contentInsights.trendWeek": "Ubiegły tydzień",
|
|
53
|
+
"be.contentInsights.trendYear": "Ubiegły rok",
|
|
52
54
|
"be.contentSharing.badRequestError": "Żądanie tego elementu było nieprawidłowe.",
|
|
53
55
|
"be.contentSharing.collaboratorsLoadingError": "Nie można pobrać współpracowników dla tego elementu.",
|
|
54
56
|
"be.contentSharing.getContactsError": "Nie można pobrać kontaktów.",
|
package/i18n/pl-PL.properties
CHANGED
|
@@ -69,35 +69,35 @@ be.close = Zamknij
|
|
|
69
69
|
# Message to the user to collapse the Transcript entries
|
|
70
70
|
be.collapse = Zwiń
|
|
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 = Wystąpił problem podczas wczytywania danych o zawartości. Spróbuj ponownie.
|
|
73
73
|
# Title for Content Insights section in file sidebar
|
|
74
|
-
be.contentInsights.contentInsightsTitle =
|
|
74
|
+
be.contentInsights.contentInsightsTitle = Dane o zawartości
|
|
75
75
|
# Label for the chart displaying the number of downloads over the selected time period
|
|
76
|
-
be.contentInsights.downloadGraphLabel =
|
|
76
|
+
be.contentInsights.downloadGraphLabel = Wykres przedstawiający liczbę pobrań w wybranym okresie
|
|
77
77
|
# Title for the content insights graph card regarding number of Previews
|
|
78
|
-
be.contentInsights.downloadGraphType =
|
|
78
|
+
be.contentInsights.downloadGraphType = Pobrania
|
|
79
79
|
# Open Content Insights button which opens the Content Insights Modal
|
|
80
|
-
be.contentInsights.openContentInsightsButton =
|
|
80
|
+
be.contentInsights.openContentInsightsButton = Zobacz szczegóły
|
|
81
81
|
# Label for the chart displaying the number of users over the selected time period
|
|
82
|
-
be.contentInsights.peopleGraphLabel =
|
|
82
|
+
be.contentInsights.peopleGraphLabel = Wykres przedstawiający liczbę użytkowników w wybranym okresie
|
|
83
83
|
# Title used to represent how many users have interacted with the file
|
|
84
|
-
be.contentInsights.peopleTitle =
|
|
84
|
+
be.contentInsights.peopleTitle = OSOBY
|
|
85
85
|
# Label for the chart displaying the number of previews over the selected time period
|
|
86
|
-
be.contentInsights.previewGraphLabel =
|
|
86
|
+
be.contentInsights.previewGraphLabel = Wykres przedstawiający liczbę podglądów w wybranym okresie
|
|
87
87
|
# Title for the content insights graph card regarding number of Previews
|
|
88
|
-
be.contentInsights.previewGraphType =
|
|
88
|
+
be.contentInsights.previewGraphType = Wyświetlenia podglądu
|
|
89
89
|
# Label for the arrow indicator in the trend pill
|
|
90
|
-
be.contentInsights.trendDown =
|
|
90
|
+
be.contentInsights.trendDown = Spadek
|
|
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 = Ubiegły miesiąc
|
|
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 = OSTATNIE 3 MIESIĄCE
|
|
95
95
|
# Label for the arrow indicator in the trend pill
|
|
96
|
-
be.contentInsights.trendUp =
|
|
96
|
+
be.contentInsights.trendUp = Wzrost
|
|
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 = Ubiegły tydzień
|
|
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 = Ubiegły rok
|
|
101
101
|
# Message that appears when the request for the ContentSharing Element is malformed.
|
|
102
102
|
be.contentSharing.badRequestError = Żądanie tego elementu było nieprawidłowe.
|
|
103
103
|
# Message that appears when collaborators cannot be retrieved in the ContentSharing Element.
|
|
@@ -1558,6 +1558,8 @@ boxui.unifiedShare.contactRestrictionNotice = Nie można wysyłać zaproszeń do
|
|
|
1558
1558
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = Nie można wysłać zaproszeń do {count, plural, one {{count} osoby} few {{count} osób} other {count} osób}} ze względu na politykę bezpieczeństwa.
|
|
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 = Ze względu na politykę bezpieczeństwa nie można wysłać zaproszeń na adres {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 = Nie można wysyłać zaproszeń do {email}, ponieważ współpraca zewnętrzna jest ograniczona ze względu na zastosowaną zasadę zabezpieczeń.
|
|
1563
1565
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
package/i18n/pt-BR.js
CHANGED
|
@@ -5,6 +5,8 @@ export default {
|
|
|
5
5
|
"be.activitySidebar.activityFeed.annotationMissingError": "Este comentário não existe mais",
|
|
6
6
|
"be.activitySidebar.activityFeed.commentMissingError": "Este comentário não existe mais",
|
|
7
7
|
"be.activitySidebar.activityFeed.feedInlineErrorTitle": "Erro",
|
|
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 tarefa não existe mais",
|
|
9
11
|
"be.activitySidebarFilter.status.all": "Todos os comentários",
|
|
10
12
|
"be.activitySidebarFilter.status.open": "Comentários não resolvidos",
|
|
@@ -34,21 +36,21 @@ export default {
|
|
|
34
36
|
"be.choose": "Escolher",
|
|
35
37
|
"be.close": "Fechar",
|
|
36
38
|
"be.collapse": "Recolher",
|
|
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": "Houve um problema ao carregar as estatísticas de conteúdo. Tente novamente.",
|
|
40
|
+
"be.contentInsights.contentInsightsTitle": "Estatísticas de conteúdo",
|
|
41
|
+
"be.contentInsights.downloadGraphLabel": "Gráfico mostrando o número de downloads durante o período selecionado",
|
|
42
|
+
"be.contentInsights.downloadGraphType": "Downloads",
|
|
43
|
+
"be.contentInsights.openContentInsightsButton": "Ver detalhes",
|
|
44
|
+
"be.contentInsights.peopleGraphLabel": "Gráfico mostrando o número de usuários durante o período selecionado",
|
|
45
|
+
"be.contentInsights.peopleTitle": "Pessoas",
|
|
46
|
+
"be.contentInsights.previewGraphLabel": "Gráfico mostrando o número de visualizações durante o período selecionado",
|
|
47
|
+
"be.contentInsights.previewGraphType": "Visualizações",
|
|
48
|
+
"be.contentInsights.trendDown": "Redução de tendência",
|
|
49
|
+
"be.contentInsights.trendMonth": "Mês anterior",
|
|
50
|
+
"be.contentInsights.trendThreeMonths": "Últimos 3 meses",
|
|
51
|
+
"be.contentInsights.trendUp": "Aumento de tendência",
|
|
52
|
+
"be.contentInsights.trendWeek": "Semana anterior",
|
|
53
|
+
"be.contentInsights.trendYear": "Ano anterior",
|
|
52
54
|
"be.contentSharing.badRequestError": "A solicitação para este item não foi formulada adequadamente.",
|
|
53
55
|
"be.contentSharing.collaboratorsLoadingError": "Não foi possível recuperar os colaboradores deste item.",
|
|
54
56
|
"be.contentSharing.getContactsError": "Não foi possível recuperar os contatos.",
|
package/i18n/pt-BR.properties
CHANGED
|
@@ -69,35 +69,35 @@ be.close = Fechar
|
|
|
69
69
|
# Message to the user to collapse the Transcript entries
|
|
70
70
|
be.collapse = Recolher
|
|
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 = Houve um problema ao carregar as estatísticas de conteúdo. Tente novamente.
|
|
73
73
|
# Title for Content Insights section in file sidebar
|
|
74
|
-
be.contentInsights.contentInsightsTitle =
|
|
74
|
+
be.contentInsights.contentInsightsTitle = Estatísticas de conteúdo
|
|
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 mostrando o número de downloads durante o período selecionado
|
|
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 = Ver detalhes
|
|
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 mostrando o número de usuários durante o período selecionado
|
|
83
83
|
# Title used to represent how many users have interacted with the file
|
|
84
|
-
be.contentInsights.peopleTitle =
|
|
84
|
+
be.contentInsights.peopleTitle = Pessoas
|
|
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 mostrando o número de visualizações durante o período selecionado
|
|
87
87
|
# Title for the content insights graph card regarding number of Previews
|
|
88
|
-
be.contentInsights.previewGraphType =
|
|
88
|
+
be.contentInsights.previewGraphType = Visualizações
|
|
89
89
|
# Label for the arrow indicator in the trend pill
|
|
90
|
-
be.contentInsights.trendDown =
|
|
90
|
+
be.contentInsights.trendDown = Redução de tendência
|
|
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 = Mês anterior
|
|
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 = Aumento de tendência
|
|
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 = Semana anterior
|
|
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 = Ano anterior
|
|
101
101
|
# Message that appears when the request for the ContentSharing Element is malformed.
|
|
102
102
|
be.contentSharing.badRequestError = A solicitação para este item não foi formulada adequadamente.
|
|
103
103
|
# Message that appears when collaborators cannot be retrieved in the ContentSharing Element.
|
|
@@ -1558,6 +1558,8 @@ boxui.unifiedShare.contactRestrictionNotice = Como a colaboração externa está
|
|
|
1558
1558
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = Não é possível enviar os convites para {count, plural, one {{count} pessoa} other {{count} pessoas}} devido a uma política de segurança.
|
|
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 = Não é possível enviar os convites para {email} devido a uma política de segurança.
|
|
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 = Como a colaboração externa está restrita, devido à política de segurança aplicada, não é possível enviar convites para {email}.
|
|
1563
1565
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
package/i18n/ru-RU.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": "ПРОШЕДШИЕ ТРИ МЕСЯЦА",
|
|
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/ru-RU.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 = ПРОШЕДШИЕ ТРИ МЕСЯЦА
|
|
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, one {{count} пользователю}} few {{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/sv-SE.js
CHANGED
|
@@ -5,6 +5,8 @@ export default {
|
|
|
5
5
|
"be.activitySidebar.activityFeed.annotationMissingError": "Den här kommentaren finns inte längre",
|
|
6
6
|
"be.activitySidebar.activityFeed.commentMissingError": "Den här kommentaren finns inte längre",
|
|
7
7
|
"be.activitySidebar.activityFeed.feedInlineErrorTitle": "Fel",
|
|
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": "Den här uppgiften finns inte längre",
|
|
9
11
|
"be.activitySidebarFilter.status.all": "Alla kommentarer",
|
|
10
12
|
"be.activitySidebarFilter.status.open": "Olösta kommentarer",
|
|
@@ -34,21 +36,21 @@ export default {
|
|
|
34
36
|
"be.choose": "Välj",
|
|
35
37
|
"be.close": "Stäng",
|
|
36
38
|
"be.collapse": "Komprimera",
|
|
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 gick inte att ladda innehållsinsikter. Försök igen.",
|
|
40
|
+
"be.contentInsights.contentInsightsTitle": "Innehållsinsikter",
|
|
41
|
+
"be.contentInsights.downloadGraphLabel": "Diagram som visar antalet nedladdningar under den valda tidsperioden",
|
|
42
|
+
"be.contentInsights.downloadGraphType": "Hämtningar",
|
|
43
|
+
"be.contentInsights.openContentInsightsButton": "Se detaljer",
|
|
44
|
+
"be.contentInsights.peopleGraphLabel": "Diagram som visar antalet användare under den valda tidsperioden",
|
|
45
|
+
"be.contentInsights.peopleTitle": "PERSONER",
|
|
46
|
+
"be.contentInsights.previewGraphLabel": "Diagram som visar antalet förhandsgranskningar under den valda tidsperioden",
|
|
47
|
+
"be.contentInsights.previewGraphType": "Förhandsgranskningar",
|
|
48
|
+
"be.contentInsights.trendDown": "Trendar ner",
|
|
49
|
+
"be.contentInsights.trendMonth": "Föregående månad",
|
|
50
|
+
"be.contentInsights.trendThreeMonths": "Senaste 3 månaderna",
|
|
51
|
+
"be.contentInsights.trendUp": "Trendar upp",
|
|
52
|
+
"be.contentInsights.trendWeek": "Föregående vecka",
|
|
53
|
+
"be.contentInsights.trendYear": "Föregående år",
|
|
52
54
|
"be.contentSharing.badRequestError": "Begäran om det här objektet är felaktig.",
|
|
53
55
|
"be.contentSharing.collaboratorsLoadingError": "Det gick inte att hämta medarbetare för det här objektet.",
|
|
54
56
|
"be.contentSharing.getContactsError": "Det gick inte att hämta kontakter.",
|
package/i18n/sv-SE.properties
CHANGED
|
@@ -69,35 +69,35 @@ be.close = Stäng
|
|
|
69
69
|
# Message to the user to collapse the Transcript entries
|
|
70
70
|
be.collapse = Komprimera
|
|
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 gick inte att ladda innehållsinsikter. Försök igen.
|
|
73
73
|
# Title for Content Insights section in file sidebar
|
|
74
|
-
be.contentInsights.contentInsightsTitle =
|
|
74
|
+
be.contentInsights.contentInsightsTitle = Innehållsinsikter
|
|
75
75
|
# Label for the chart displaying the number of downloads over the selected time period
|
|
76
|
-
be.contentInsights.downloadGraphLabel =
|
|
76
|
+
be.contentInsights.downloadGraphLabel = Diagram som visar antalet nedladdningar under den valda tidsperioden
|
|
77
77
|
# Title for the content insights graph card regarding number of Previews
|
|
78
|
-
be.contentInsights.downloadGraphType =
|
|
78
|
+
be.contentInsights.downloadGraphType = Hämtningar
|
|
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 = Diagram som visar antalet användare under den valda 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 = Diagram som visar antalet förhandsgranskningar under den valda tidsperioden
|
|
87
87
|
# Title for the content insights graph card regarding number of Previews
|
|
88
|
-
be.contentInsights.previewGraphType =
|
|
88
|
+
be.contentInsights.previewGraphType = Förhandsgranskningar
|
|
89
89
|
# Label for the arrow indicator in the trend pill
|
|
90
|
-
be.contentInsights.trendDown =
|
|
90
|
+
be.contentInsights.trendDown = Trendar ner
|
|
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 = Föregående månad
|
|
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 = Senaste 3 månaderna
|
|
95
95
|
# Label for the arrow indicator in the trend pill
|
|
96
|
-
be.contentInsights.trendUp =
|
|
96
|
+
be.contentInsights.trendUp = Trendar upp
|
|
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 = Föregående vecka
|
|
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 = Föregående år
|
|
101
101
|
# Message that appears when the request for the ContentSharing Element is malformed.
|
|
102
102
|
be.contentSharing.badRequestError = Begäran om det här objektet är felaktig.
|
|
103
103
|
# Message that appears when collaborators cannot be retrieved in the ContentSharing Element.
|
|
@@ -1558,6 +1558,8 @@ boxui.unifiedShare.contactRestrictionNotice = Det går inte att skicka inbjudnin
|
|
|
1558
1558
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = Inbjudningar kan inte skickas till {count, plural, one {{count} person} other {{count} personer}} på grund av en säkerhetspolicy.
|
|
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 = Inbjudningar kan inte skickas till {email} på grund av en säkerhetspolicy.
|
|
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 = Det går inte att skicka inbjudningar till {email} eftersom externt samarbete är begränsat på grund av den tillämpade säkerhetspolicyn.
|
|
1563
1565
|
# Label for the button that removes restricted contacts on the contact restriction notice
|
package/i18n/tr-TR.js
CHANGED
|
@@ -5,6 +5,8 @@ export default {
|
|
|
5
5
|
"be.activitySidebar.activityFeed.annotationMissingError": "Bu yorum artık yok",
|
|
6
6
|
"be.activitySidebar.activityFeed.commentMissingError": "Bu yorum artık yok",
|
|
7
7
|
"be.activitySidebar.activityFeed.feedInlineErrorTitle": "Hata",
|
|
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": "Bu görev artık yok",
|
|
9
11
|
"be.activitySidebarFilter.status.all": "Tüm Yorumlar",
|
|
10
12
|
"be.activitySidebarFilter.status.open": "Çözülmemiş Yorumlar",
|
|
@@ -34,21 +36,21 @@ export default {
|
|
|
34
36
|
"be.choose": "Seç",
|
|
35
37
|
"be.close": "Kapat",
|
|
36
38
|
"be.collapse": "Daralt",
|
|
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": "İçerikten çıkarımlar yüklenirken bir sorun oluştu. Lütfen tekrar deneyin.",
|
|
40
|
+
"be.contentInsights.contentInsightsTitle": "İçerikten Çıkarımlar",
|
|
41
|
+
"be.contentInsights.downloadGraphLabel": "Seçilen zaman aralığında gerçekleşen indirme sayısını gösteren grafik",
|
|
42
|
+
"be.contentInsights.downloadGraphType": "İndirmeler",
|
|
43
|
+
"be.contentInsights.openContentInsightsButton": "Ayrıntılara Bak",
|
|
44
|
+
"be.contentInsights.peopleGraphLabel": "Seçilen zaman aralığındaki kullanıcı sayısını gösteren grafik",
|
|
45
|
+
"be.contentInsights.peopleTitle": "KİŞİLER",
|
|
46
|
+
"be.contentInsights.previewGraphLabel": "Seçilen zaman aralığında gerçekleşen önizleme sayısını gösteren grafik",
|
|
47
|
+
"be.contentInsights.previewGraphType": "Ön Görüntülemeler",
|
|
48
|
+
"be.contentInsights.trendDown": "Düşüyor",
|
|
49
|
+
"be.contentInsights.trendMonth": "Önceki Ay",
|
|
50
|
+
"be.contentInsights.trendThreeMonths": "SON 3 AY",
|
|
51
|
+
"be.contentInsights.trendUp": "Çıkıyor",
|
|
52
|
+
"be.contentInsights.trendWeek": "Önceki Hafta",
|
|
53
|
+
"be.contentInsights.trendYear": "Önceki Yıl",
|
|
52
54
|
"be.contentSharing.badRequestError": "Bu öğe için yapılan istek hatalı oluşturulmuş.",
|
|
53
55
|
"be.contentSharing.collaboratorsLoadingError": "Bu öğe için işbirlikçiler alınamadı.",
|
|
54
56
|
"be.contentSharing.getContactsError": "Kişiler alınamadı.",
|
package/i18n/tr-TR.properties
CHANGED
|
@@ -69,35 +69,35 @@ be.close = Kapat
|
|
|
69
69
|
# Message to the user to collapse the Transcript entries
|
|
70
70
|
be.collapse = Daralt
|
|
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 = İçerikten çıkarımlar yüklenirken bir sorun oluştu. Lütfen tekrar deneyin.
|
|
73
73
|
# Title for Content Insights section in file sidebar
|
|
74
|
-
be.contentInsights.contentInsightsTitle =
|
|
74
|
+
be.contentInsights.contentInsightsTitle = İçerikten Çıkarımlar
|
|
75
75
|
# Label for the chart displaying the number of downloads over the selected time period
|
|
76
|
-
be.contentInsights.downloadGraphLabel =
|
|
76
|
+
be.contentInsights.downloadGraphLabel = Seçilen zaman aralığında gerçekleşen indirme sayısını gösteren grafik
|
|
77
77
|
# Title for the content insights graph card regarding number of Previews
|
|
78
|
-
be.contentInsights.downloadGraphType =
|
|
78
|
+
be.contentInsights.downloadGraphType = İndirmeler
|
|
79
79
|
# Open Content Insights button which opens the Content Insights Modal
|
|
80
|
-
be.contentInsights.openContentInsightsButton =
|
|
80
|
+
be.contentInsights.openContentInsightsButton = Ayrıntılara Bak
|
|
81
81
|
# Label for the chart displaying the number of users over the selected time period
|
|
82
|
-
be.contentInsights.peopleGraphLabel =
|
|
82
|
+
be.contentInsights.peopleGraphLabel = Seçilen zaman aralığındaki kullanıcı sayısını gösteren grafik
|
|
83
83
|
# Title used to represent how many users have interacted with the file
|
|
84
|
-
be.contentInsights.peopleTitle =
|
|
84
|
+
be.contentInsights.peopleTitle = KİŞİLER
|
|
85
85
|
# Label for the chart displaying the number of previews over the selected time period
|
|
86
|
-
be.contentInsights.previewGraphLabel =
|
|
86
|
+
be.contentInsights.previewGraphLabel = Seçilen zaman aralığında gerçekleşen önizleme sayısını gösteren grafik
|
|
87
87
|
# Title for the content insights graph card regarding number of Previews
|
|
88
|
-
be.contentInsights.previewGraphType =
|
|
88
|
+
be.contentInsights.previewGraphType = Ön Görüntülemeler
|
|
89
89
|
# Label for the arrow indicator in the trend pill
|
|
90
|
-
be.contentInsights.trendDown =
|
|
90
|
+
be.contentInsights.trendDown = Düşüyor
|
|
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 = Önceki Ay
|
|
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 = SON 3 AY
|
|
95
95
|
# Label for the arrow indicator in the trend pill
|
|
96
|
-
be.contentInsights.trendUp =
|
|
96
|
+
be.contentInsights.trendUp = Çıkıyor
|
|
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 = Önceki Hafta
|
|
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 = Önceki Yıl
|
|
101
101
|
# Message that appears when the request for the ContentSharing Element is malformed.
|
|
102
102
|
be.contentSharing.badRequestError = Bu öğe için yapılan istek hatalı oluşturulmuş.
|
|
103
103
|
# Message that appears when collaborators cannot be retrieved in the ContentSharing Element.
|
|
@@ -1558,6 +1558,8 @@ boxui.unifiedShare.contactRestrictionNotice = Uygulanan güvenlik ilkesi nedeniy
|
|
|
1558
1558
|
boxui.unifiedShare.contactRestrictionNoticeInformationBarrier = Bir güvenlik ilkesi nedeniyle {count, plural, one {{count} kişiye} other {{count} kişiye}} davetiye gönderilemiyor.
|
|
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 = Bir güvenlik ilkesi nedeniyle {email} adresine davetiye gönderilemiyor.
|
|
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 = Uygulanan güvenlik ilkesi nedeniyle harici işbirliği kısıtlandığı için {email} adresine davet gönderilemiyor.
|
|
1563
1565
|
# Label for the button that removes restricted contacts on the contact restriction notice
|