box-ui-elements 24.0.0-beta.7 → 24.0.0-beta.9
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.js +1 -1
- package/dist/openwith.js +1 -1
- package/dist/picker.js +1 -1
- package/dist/preview.js +1 -1
- package/dist/sharing.js +1 -1
- package/dist/sidebar.js +1 -1
- package/dist/uploader.js +1 -1
- package/es/constants.js +3 -1
- package/es/constants.js.flow +5 -0
- package/es/constants.js.map +1 -1
- package/es/elements/content-explorer/ContentExplorer.js +3 -2
- package/es/elements/content-explorer/ContentExplorer.js.map +1 -1
- package/es/elements/content-explorer/MetadataQueryAPIHelper.js +3 -11
- package/es/elements/content-explorer/MetadataQueryAPIHelper.js.map +1 -1
- package/es/elements/content-explorer/MetadataQueryBuilder.js +13 -23
- package/es/elements/content-explorer/MetadataQueryBuilder.js.map +1 -1
- package/es/elements/content-explorer/constants.js +0 -1
- package/es/elements/content-explorer/constants.js.map +1 -1
- package/es/elements/content-explorer/utils.js +5 -10
- package/es/elements/content-explorer/utils.js.map +1 -1
- package/es/elements/content-open-with/ContentOpenWith.js +3 -2
- package/es/elements/content-open-with/ContentOpenWith.js.flow +2 -0
- package/es/elements/content-open-with/ContentOpenWith.js.map +1 -1
- package/es/elements/content-picker/ContentPicker.js +3 -2
- package/es/elements/content-picker/ContentPicker.js.flow +2 -0
- package/es/elements/content-picker/ContentPicker.js.map +1 -1
- package/es/elements/content-preview/ContentPreview.js +3 -2
- package/es/elements/content-preview/ContentPreview.js.flow +2 -0
- package/es/elements/content-preview/ContentPreview.js.map +1 -1
- package/es/elements/content-sharing/ContentSharing.js +3 -2
- package/es/elements/content-sharing/ContentSharing.js.flow +2 -1
- package/es/elements/content-sharing/ContentSharing.js.map +1 -1
- package/es/elements/content-sidebar/ContentSidebar.js +3 -2
- package/es/elements/content-sidebar/ContentSidebar.js.flow +7 -1
- package/es/elements/content-sidebar/ContentSidebar.js.map +1 -1
- package/es/elements/content-uploader/ContentUploader.js +3 -2
- package/es/elements/content-uploader/ContentUploader.js.map +1 -1
- package/es/elements/wrappers/ES6Wrapper.js +0 -1
- package/es/elements/wrappers/ES6Wrapper.js.flow +0 -3
- package/es/elements/wrappers/ES6Wrapper.js.map +1 -1
- package/es/src/elements/content-explorer/constants.d.ts +0 -1
- package/es/src/elements/content-explorer/utils.d.ts +1 -2
- package/i18n/bn-IN.js +5 -5
- package/i18n/bn-IN.properties +5 -5
- package/i18n/da-DK.js +5 -5
- package/i18n/da-DK.properties +5 -5
- package/i18n/de-DE.js +6 -6
- package/i18n/de-DE.properties +6 -6
- package/i18n/en-AU.js +1 -1
- package/i18n/en-AU.properties +1 -1
- package/i18n/en-GB.js +1 -1
- package/i18n/en-GB.properties +1 -1
- package/i18n/es-419.js +6 -6
- package/i18n/es-419.properties +6 -6
- package/i18n/es-ES.js +6 -6
- package/i18n/es-ES.properties +6 -6
- package/i18n/fi-FI.js +5 -5
- package/i18n/fi-FI.properties +5 -5
- package/i18n/fr-CA.js +5 -5
- package/i18n/fr-CA.properties +5 -5
- package/i18n/fr-FR.js +5 -5
- package/i18n/fr-FR.properties +5 -5
- package/i18n/hi-IN.js +5 -5
- package/i18n/hi-IN.properties +5 -5
- package/i18n/it-IT.js +5 -5
- package/i18n/it-IT.properties +5 -5
- package/i18n/ko-KR.js +5 -5
- package/i18n/ko-KR.properties +5 -5
- package/i18n/nb-NO.js +5 -5
- package/i18n/nb-NO.properties +5 -5
- package/i18n/nl-NL.js +5 -5
- package/i18n/nl-NL.properties +5 -5
- package/i18n/pl-PL.js +5 -5
- package/i18n/pl-PL.properties +5 -5
- package/i18n/pt-BR.js +5 -5
- package/i18n/pt-BR.properties +5 -5
- package/i18n/ru-RU.js +6 -6
- package/i18n/ru-RU.properties +6 -6
- package/i18n/sv-SE.js +5 -5
- package/i18n/sv-SE.properties +5 -5
- package/i18n/tr-TR.js +6 -6
- package/i18n/tr-TR.properties +6 -6
- package/i18n/zh-CN.js +5 -5
- package/i18n/zh-CN.properties +5 -5
- package/i18n/zh-TW.js +5 -5
- package/i18n/zh-TW.properties +5 -5
- package/package.json +3 -3
- package/src/constants.js +5 -0
- package/src/elements/content-explorer/ContentExplorer.tsx +2 -0
- package/src/elements/content-explorer/MetadataQueryAPIHelper.ts +3 -9
- package/src/elements/content-explorer/MetadataQueryBuilder.ts +14 -26
- package/src/elements/content-explorer/__tests__/MetadataQueryAPIHelper.test.ts +41 -14
- package/src/elements/content-explorer/__tests__/MetadataQueryBuilder.test.ts +13 -0
- package/src/elements/content-explorer/constants.ts +0 -2
- package/src/elements/content-explorer/utils.ts +5 -14
- package/src/elements/content-open-with/ContentOpenWith.js +2 -0
- package/src/elements/content-picker/ContentPicker.js +2 -0
- package/src/elements/content-preview/ContentPreview.js +2 -0
- package/src/elements/content-sharing/ContentSharing.js +2 -1
- package/src/elements/content-sidebar/ContentSidebar.js +7 -1
- package/src/elements/content-uploader/ContentUploader.tsx +2 -0
- package/src/elements/wrappers/ES6Wrapper.js +0 -3
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { type MetadataTemplate, type MetadataFormFieldValue } from '@box/metadata-editor';
|
|
2
2
|
import type { MetadataFieldType } from '@box/metadata-view';
|
|
3
3
|
import type { Selection } from 'react-aria-components';
|
|
4
|
-
import { BoxItemSelection } from '@box/box-item-type-selector';
|
|
5
4
|
import type { BoxItem, Collection } from '../../common/types/core';
|
|
6
5
|
type ItemMetadataFieldValue = string | number | Array<string> | null | undefined;
|
|
7
6
|
export declare function useSelectedItemText(currentCollection: Collection, selectedItemIds: Selection): string;
|
|
@@ -26,5 +25,5 @@ export declare function useTemplateInstance(metadataTemplate: MetadataTemplate,
|
|
|
26
25
|
templateKey: string;
|
|
27
26
|
type: string;
|
|
28
27
|
};
|
|
29
|
-
export declare const
|
|
28
|
+
export declare const getFileExtensions: (selectedFileType: string) => string[];
|
|
30
29
|
export {};
|
package/i18n/bn-IN.js
CHANGED
|
@@ -291,12 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "দুঃখিত, এই ইমেজটি দেখাতে আমরা সমস্যার সম্মুখীন হচ্ছি।",
|
|
292
292
|
"be.messageCenter.product": "পণ্য",
|
|
293
293
|
"be.messageCenter.title": "নতুন কী",
|
|
294
|
-
"be.metadataUpdateErrorNotification": "
|
|
295
|
-
"be.metadataUpdateSuccessNotification": "{numSelected,
|
|
294
|
+
"be.metadataUpdateErrorNotification": "পরিবর্তন সেভ করা যায়নি। অনুগ্রহ করে আবার চেষ্টা করুন।",
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected,plural,=1{1টি ডকুমেন্ট আপডেট করা হয়েছে} other{# টি ডকুমেন্ট আপডেট করা হয়েছে}}",
|
|
296
296
|
"be.modifiedDate": "সংশোধিত {date}",
|
|
297
297
|
"be.modifiedDateBy": "{name}-এর দ্বারা {date}-এ সংশোধিত",
|
|
298
298
|
"be.moreOptions": "আরও বিকল্প",
|
|
299
|
-
"be.multipleValues": "
|
|
299
|
+
"be.multipleValues": "একাধিক মান",
|
|
300
300
|
"be.nameASC": "নাম: A → Z",
|
|
301
301
|
"be.nameDESC": "নাম: Z → A",
|
|
302
302
|
"be.nameDate": "{name}-এর দ্বারা {date}",
|
|
@@ -420,7 +420,7 @@ export default {
|
|
|
420
420
|
"be.skillUnknownError": "এই দক্ষতাটি চালনা করার সময় বা এর ডেটা প্রাপ্তির সময় কিছু ত্রুটি ঘটেছে।",
|
|
421
421
|
"be.sort": "বাছাই করুন",
|
|
422
422
|
"be.statusSkill": "স্থিতি",
|
|
423
|
-
"be.success": "
|
|
423
|
+
"be.success": "সফল",
|
|
424
424
|
"be.today": "আজ",
|
|
425
425
|
"be.topicsSkill": "টপিকগুলি",
|
|
426
426
|
"be.transcriptEdit": "সম্পাদনা করতে যে কোনও নির্বাচন ক্লিক করুন।",
|
|
@@ -488,7 +488,7 @@ export default {
|
|
|
488
488
|
"boxui.checkboxTooltip.iconInfoText": "তথ্য",
|
|
489
489
|
"boxui.classification.add": "যোগ করুন",
|
|
490
490
|
"boxui.classification.appliedByBoxAi": "Box AI",
|
|
491
|
-
"boxui.classification.appliedByBoxAiOnDate": "Box AI
|
|
491
|
+
"boxui.classification.appliedByBoxAiOnDate": "{modifiedAt} এ Box AI",
|
|
492
492
|
"boxui.classification.classification": "শ্রেণিবিভাজন",
|
|
493
493
|
"boxui.classification.classificationDarkBlue": "গাঢ় নীল",
|
|
494
494
|
"boxui.classification.classificationGreen": "সবুজ",
|
package/i18n/bn-IN.properties
CHANGED
|
@@ -583,9 +583,9 @@ be.messageCenter.product = পণ্য
|
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = নতুন কী
|
|
585
585
|
# Text shown in error notification banner
|
|
586
|
-
be.metadataUpdateErrorNotification =
|
|
586
|
+
be.metadataUpdateErrorNotification = পরিবর্তন সেভ করা যায়নি। অনুগ্রহ করে আবার চেষ্টা করুন।
|
|
587
587
|
# Text shown in success notification banner
|
|
588
|
-
be.metadataUpdateSuccessNotification = {numSelected,
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected,plural,=1{1টি ডকুমেন্ট আপডেট করা হয়েছে} other{# টি ডকুমেন্ট আপডেট করা হয়েছে}}
|
|
589
589
|
# Text for modified date with modified prefix.
|
|
590
590
|
be.modifiedDate = সংশোধিত {date}
|
|
591
591
|
# Text for modified date with user with modified prefix.
|
|
@@ -593,7 +593,7 @@ be.modifiedDateBy = {name}-এর দ্বারা {date}-এ সংশোধ
|
|
|
593
593
|
# Label for a button that displays more options
|
|
594
594
|
be.moreOptions = আরও বিকল্প
|
|
595
595
|
# Display text for field when there are multiple items selected and have different value
|
|
596
|
-
be.multipleValues =
|
|
596
|
+
be.multipleValues = একাধিক মান
|
|
597
597
|
# Name ascending option shown in the share access drop down select.
|
|
598
598
|
be.nameASC = নাম: A → Z
|
|
599
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -841,7 +841,7 @@ be.sort = বাছাই করুন
|
|
|
841
841
|
# Label for status skill card in the preview sidebar
|
|
842
842
|
be.statusSkill = স্থিতি
|
|
843
843
|
# Generic success label.
|
|
844
|
-
be.success =
|
|
844
|
+
be.success = সফল
|
|
845
845
|
# Shown instead of todays date.
|
|
846
846
|
be.today = আজ
|
|
847
847
|
# Label for keywords/topics skill section in the preview sidebar
|
|
@@ -977,7 +977,7 @@ boxui.classification.add = যোগ করুন
|
|
|
977
977
|
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
978
978
|
boxui.classification.appliedByBoxAi = Box AI
|
|
979
979
|
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
980
|
-
boxui.classification.appliedByBoxAiOnDate = Box AI
|
|
980
|
+
boxui.classification.appliedByBoxAiOnDate = {modifiedAt} এ Box AI
|
|
981
981
|
# Header for classification section in sidebar
|
|
982
982
|
boxui.classification.classification = শ্রেণিবিভাজন
|
|
983
983
|
# Classification label color name as dark blue
|
package/i18n/da-DK.js
CHANGED
|
@@ -291,12 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "Vi har desværre problemer med at vise dette billede.",
|
|
292
292
|
"be.messageCenter.product": "Produkt",
|
|
293
293
|
"be.messageCenter.title": "Nyheder",
|
|
294
|
-
"be.metadataUpdateErrorNotification": "
|
|
295
|
-
"be.metadataUpdateSuccessNotification": "{numSelected,
|
|
294
|
+
"be.metadataUpdateErrorNotification": "Kunne ikke gemme ændringer. Prøv venligst igen.",
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected,plural,=1{1 dokument uploadet} other{# dokumenter uploadet}} ",
|
|
296
296
|
"be.modifiedDate": "Ændret {date}",
|
|
297
297
|
"be.modifiedDateBy": "Ændret {date} af {name}",
|
|
298
298
|
"be.moreOptions": "Flere muligheder",
|
|
299
|
-
"be.multipleValues": "
|
|
299
|
+
"be.multipleValues": "Flere værdier",
|
|
300
300
|
"be.nameASC": "Navn: A → Å",
|
|
301
301
|
"be.nameDESC": "Navn: Å → A",
|
|
302
302
|
"be.nameDate": "{date} af {name}",
|
|
@@ -420,7 +420,7 @@ export default {
|
|
|
420
420
|
"be.skillUnknownError": "Der opstod et problem under kørsel af denne færdighed eller i forbindelse med hentning af tilhørende data.",
|
|
421
421
|
"be.sort": "Sortér",
|
|
422
422
|
"be.statusSkill": "Status",
|
|
423
|
-
"be.success": "
|
|
423
|
+
"be.success": "Gennemført",
|
|
424
424
|
"be.today": "i dag",
|
|
425
425
|
"be.topicsSkill": "Emner",
|
|
426
426
|
"be.transcriptEdit": "Klik på et afsnit for at redigere.",
|
|
@@ -488,7 +488,7 @@ export default {
|
|
|
488
488
|
"boxui.checkboxTooltip.iconInfoText": "Oplysninger",
|
|
489
489
|
"boxui.classification.add": "Tilføj",
|
|
490
490
|
"boxui.classification.appliedByBoxAi": "Box AI",
|
|
491
|
-
"boxui.classification.appliedByBoxAiOnDate": "Box AI
|
|
491
|
+
"boxui.classification.appliedByBoxAiOnDate": "Box AI på {modifiedAt}",
|
|
492
492
|
"boxui.classification.classification": "Klassificering",
|
|
493
493
|
"boxui.classification.classificationDarkBlue": "Mørkeblå",
|
|
494
494
|
"boxui.classification.classificationGreen": "Grøn",
|
package/i18n/da-DK.properties
CHANGED
|
@@ -583,9 +583,9 @@ be.messageCenter.product = Produkt
|
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = Nyheder
|
|
585
585
|
# Text shown in error notification banner
|
|
586
|
-
be.metadataUpdateErrorNotification =
|
|
586
|
+
be.metadataUpdateErrorNotification = Kunne ikke gemme ændringer. Prøv venligst igen.
|
|
587
587
|
# Text shown in success notification banner
|
|
588
|
-
be.metadataUpdateSuccessNotification = {numSelected,
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected,plural,=1{1 dokument uploadet} other{# dokumenter uploadet}}
|
|
589
589
|
# Text for modified date with modified prefix.
|
|
590
590
|
be.modifiedDate = Ændret {date}
|
|
591
591
|
# Text for modified date with user with modified prefix.
|
|
@@ -593,7 +593,7 @@ be.modifiedDateBy = Ændret {date} af {name}
|
|
|
593
593
|
# Label for a button that displays more options
|
|
594
594
|
be.moreOptions = Flere muligheder
|
|
595
595
|
# Display text for field when there are multiple items selected and have different value
|
|
596
|
-
be.multipleValues =
|
|
596
|
+
be.multipleValues = Flere værdier
|
|
597
597
|
# Name ascending option shown in the share access drop down select.
|
|
598
598
|
be.nameASC = Navn: A → Å
|
|
599
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -841,7 +841,7 @@ be.sort = Sortér
|
|
|
841
841
|
# Label for status skill card in the preview sidebar
|
|
842
842
|
be.statusSkill = Status
|
|
843
843
|
# Generic success label.
|
|
844
|
-
be.success =
|
|
844
|
+
be.success = Gennemført
|
|
845
845
|
# Shown instead of todays date.
|
|
846
846
|
be.today = i dag
|
|
847
847
|
# Label for keywords/topics skill section in the preview sidebar
|
|
@@ -977,7 +977,7 @@ boxui.classification.add = Tilføj
|
|
|
977
977
|
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
978
978
|
boxui.classification.appliedByBoxAi = Box AI
|
|
979
979
|
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
980
|
-
boxui.classification.appliedByBoxAiOnDate = Box AI
|
|
980
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI på {modifiedAt}
|
|
981
981
|
# Header for classification section in sidebar
|
|
982
982
|
boxui.classification.classification = Klassificering
|
|
983
983
|
# Classification label color name as dark blue
|
package/i18n/de-DE.js
CHANGED
|
@@ -291,12 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "Leider kann dieses Bild derzeit nicht angezeigt werden.",
|
|
292
292
|
"be.messageCenter.product": "Produkt",
|
|
293
293
|
"be.messageCenter.title": "Neuerungen",
|
|
294
|
-
"be.metadataUpdateErrorNotification": "
|
|
295
|
-
"be.metadataUpdateSuccessNotification": "{numSelected,
|
|
294
|
+
"be.metadataUpdateErrorNotification": "Änderungen können nicht gespeichert werden. Versuchen Sie es bitte noch einmal.",
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected,plural,=1{1 document updated} other{# documents updated}} ",
|
|
296
296
|
"be.modifiedDate": "Geändert am {date}",
|
|
297
297
|
"be.modifiedDateBy": "Geändert am {date} von {name}",
|
|
298
298
|
"be.moreOptions": "Weitere Optionen",
|
|
299
|
-
"be.multipleValues": "
|
|
299
|
+
"be.multipleValues": "Mehrere Werte",
|
|
300
300
|
"be.nameASC": "Name: A → Z",
|
|
301
301
|
"be.nameDESC": "Name: Z → A",
|
|
302
302
|
"be.nameDate": "Am {date} von {name}",
|
|
@@ -420,7 +420,7 @@ export default {
|
|
|
420
420
|
"be.skillUnknownError": "Beim Ausführen dieses Skills oder Abrufen seiner Daten ist ein Fehler aufgetreten.",
|
|
421
421
|
"be.sort": "Sortieren",
|
|
422
422
|
"be.statusSkill": "Status",
|
|
423
|
-
"be.success": "
|
|
423
|
+
"be.success": "Erfolgreich",
|
|
424
424
|
"be.today": "heute",
|
|
425
425
|
"be.topicsSkill": "Themen",
|
|
426
426
|
"be.transcriptEdit": "Klicken Sie auf einen beliebigen Abschnitt, um ihn zu bearbeiten.",
|
|
@@ -487,8 +487,8 @@ export default {
|
|
|
487
487
|
"boxui.categorySelector.label.more": "Mehr",
|
|
488
488
|
"boxui.checkboxTooltip.iconInfoText": "Informationen",
|
|
489
489
|
"boxui.classification.add": "Hinzufügen",
|
|
490
|
-
"boxui.classification.appliedByBoxAi": "Box
|
|
491
|
-
"boxui.classification.appliedByBoxAiOnDate": "Box
|
|
490
|
+
"boxui.classification.appliedByBoxAi": "Box AI",
|
|
491
|
+
"boxui.classification.appliedByBoxAiOnDate": "Box AI am {modifiedAt}",
|
|
492
492
|
"boxui.classification.classification": "Klassifizierung",
|
|
493
493
|
"boxui.classification.classificationDarkBlue": "Dunkelblau",
|
|
494
494
|
"boxui.classification.classificationGreen": "Grün",
|
package/i18n/de-DE.properties
CHANGED
|
@@ -583,9 +583,9 @@ be.messageCenter.product = Produkt
|
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = Neuerungen
|
|
585
585
|
# Text shown in error notification banner
|
|
586
|
-
be.metadataUpdateErrorNotification =
|
|
586
|
+
be.metadataUpdateErrorNotification = Änderungen können nicht gespeichert werden. Versuchen Sie es bitte noch einmal.
|
|
587
587
|
# Text shown in success notification banner
|
|
588
|
-
be.metadataUpdateSuccessNotification = {numSelected,
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected,plural,=1{1 document updated} other{# documents updated}}
|
|
589
589
|
# Text for modified date with modified prefix.
|
|
590
590
|
be.modifiedDate = Geändert am {date}
|
|
591
591
|
# Text for modified date with user with modified prefix.
|
|
@@ -593,7 +593,7 @@ be.modifiedDateBy = Geändert am {date} von {name}
|
|
|
593
593
|
# Label for a button that displays more options
|
|
594
594
|
be.moreOptions = Weitere Optionen
|
|
595
595
|
# Display text for field when there are multiple items selected and have different value
|
|
596
|
-
be.multipleValues =
|
|
596
|
+
be.multipleValues = Mehrere Werte
|
|
597
597
|
# Name ascending option shown in the share access drop down select.
|
|
598
598
|
be.nameASC = Name: A → Z
|
|
599
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -841,7 +841,7 @@ be.sort = Sortieren
|
|
|
841
841
|
# Label for status skill card in the preview sidebar
|
|
842
842
|
be.statusSkill = Status
|
|
843
843
|
# Generic success label.
|
|
844
|
-
be.success =
|
|
844
|
+
be.success = Erfolgreich
|
|
845
845
|
# Shown instead of todays date.
|
|
846
846
|
be.today = heute
|
|
847
847
|
# Label for keywords/topics skill section in the preview sidebar
|
|
@@ -975,9 +975,9 @@ boxui.checkboxTooltip.iconInfoText = Informationen
|
|
|
975
975
|
# Button to add classification on an item
|
|
976
976
|
boxui.classification.add = Hinzufügen
|
|
977
977
|
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
978
|
-
boxui.classification.appliedByBoxAi = Box
|
|
978
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
979
979
|
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
980
|
-
boxui.classification.appliedByBoxAiOnDate = Box
|
|
980
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI am {modifiedAt}
|
|
981
981
|
# Header for classification section in sidebar
|
|
982
982
|
boxui.classification.classification = Klassifizierung
|
|
983
983
|
# Classification label color name as dark blue
|
package/i18n/en-AU.js
CHANGED
|
@@ -292,7 +292,7 @@ export default {
|
|
|
292
292
|
"be.messageCenter.product": "Product",
|
|
293
293
|
"be.messageCenter.title": "What's New",
|
|
294
294
|
"be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
|
|
295
|
-
"be.metadataUpdateSuccessNotification": "{numSelected,
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected,plural,=1{1 document updated} one{1 document updated} other{# documents updated}} ",
|
|
296
296
|
"be.modifiedDate": "Modified {date}",
|
|
297
297
|
"be.modifiedDateBy": "Modified {date} by {name}",
|
|
298
298
|
"be.moreOptions": "More Options",
|
package/i18n/en-AU.properties
CHANGED
|
@@ -585,7 +585,7 @@ be.messageCenter.title = What's New
|
|
|
585
585
|
# Text shown in error notification banner
|
|
586
586
|
be.metadataUpdateErrorNotification = Unable to save changes. Please try again.
|
|
587
587
|
# Text shown in success notification banner
|
|
588
|
-
be.metadataUpdateSuccessNotification = {numSelected,
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected,plural,=1{1 document updated} one{1 document updated} other{# documents updated}}
|
|
589
589
|
# Text for modified date with modified prefix.
|
|
590
590
|
be.modifiedDate = Modified {date}
|
|
591
591
|
# Text for modified date with user with modified prefix.
|
package/i18n/en-GB.js
CHANGED
|
@@ -292,7 +292,7 @@ export default {
|
|
|
292
292
|
"be.messageCenter.product": "Product",
|
|
293
293
|
"be.messageCenter.title": "What's New",
|
|
294
294
|
"be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
|
|
295
|
-
"be.metadataUpdateSuccessNotification": "{numSelected,
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected,plural,=1{1 document updated} one{1 document updated} other{# documents updated}} ",
|
|
296
296
|
"be.modifiedDate": "Modified {date}",
|
|
297
297
|
"be.modifiedDateBy": "Modified {date} by {name}",
|
|
298
298
|
"be.moreOptions": "More Options",
|
package/i18n/en-GB.properties
CHANGED
|
@@ -585,7 +585,7 @@ be.messageCenter.title = What's New
|
|
|
585
585
|
# Text shown in error notification banner
|
|
586
586
|
be.metadataUpdateErrorNotification = Unable to save changes. Please try again.
|
|
587
587
|
# Text shown in success notification banner
|
|
588
|
-
be.metadataUpdateSuccessNotification = {numSelected,
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected,plural,=1{1 document updated} one{1 document updated} other{# documents updated}}
|
|
589
589
|
# Text for modified date with modified prefix.
|
|
590
590
|
be.modifiedDate = Modified {date}
|
|
591
591
|
# Text for modified date with user with modified prefix.
|
package/i18n/es-419.js
CHANGED
|
@@ -291,12 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "Lo sentimos, no podemos mostrar esta imagen.",
|
|
292
292
|
"be.messageCenter.product": "Producto",
|
|
293
293
|
"be.messageCenter.title": "Novedades",
|
|
294
|
-
"be.metadataUpdateErrorNotification": "
|
|
295
|
-
"be.metadataUpdateSuccessNotification": "{numSelected,
|
|
294
|
+
"be.metadataUpdateErrorNotification": "No se pueden guardar los cambios. Inténtelo de nuevo.",
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected,plural,=1{1 documento actualizado} other{# documentos actualizados}} ",
|
|
296
296
|
"be.modifiedDate": "Modificado el {date}",
|
|
297
297
|
"be.modifiedDateBy": "Modificado el {date} por {name}",
|
|
298
298
|
"be.moreOptions": "Más opciones",
|
|
299
|
-
"be.multipleValues": "
|
|
299
|
+
"be.multipleValues": "Múltiples valores",
|
|
300
300
|
"be.nameASC": "Nombre: A → Z",
|
|
301
301
|
"be.nameDESC": "Nombre: Z → A",
|
|
302
302
|
"be.nameDate": "{date} por {name}",
|
|
@@ -420,7 +420,7 @@ export default {
|
|
|
420
420
|
"be.skillUnknownError": "Se ha producido un error al ejecutar esta capacidad o al recuperar sus datos.",
|
|
421
421
|
"be.sort": "Ordenar",
|
|
422
422
|
"be.statusSkill": "Estado",
|
|
423
|
-
"be.success": "
|
|
423
|
+
"be.success": "Con éxito",
|
|
424
424
|
"be.today": "hoy",
|
|
425
425
|
"be.topicsSkill": "Temas",
|
|
426
426
|
"be.transcriptEdit": "Haga clic en cualquier sección para editarla.",
|
|
@@ -487,8 +487,8 @@ export default {
|
|
|
487
487
|
"boxui.categorySelector.label.more": "Más",
|
|
488
488
|
"boxui.checkboxTooltip.iconInfoText": "Información",
|
|
489
489
|
"boxui.classification.add": "Agregar",
|
|
490
|
-
"boxui.classification.appliedByBoxAi": "
|
|
491
|
-
"boxui.classification.appliedByBoxAiOnDate": "Box AI
|
|
490
|
+
"boxui.classification.appliedByBoxAi": "Box AI",
|
|
491
|
+
"boxui.classification.appliedByBoxAiOnDate": "Box AI el {modifiedAt}",
|
|
492
492
|
"boxui.classification.classification": "Clasificación",
|
|
493
493
|
"boxui.classification.classificationDarkBlue": "Azul oscuro",
|
|
494
494
|
"boxui.classification.classificationGreen": "Verde",
|
package/i18n/es-419.properties
CHANGED
|
@@ -583,9 +583,9 @@ be.messageCenter.product = Producto
|
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = Novedades
|
|
585
585
|
# Text shown in error notification banner
|
|
586
|
-
be.metadataUpdateErrorNotification =
|
|
586
|
+
be.metadataUpdateErrorNotification = No se pueden guardar los cambios. Inténtelo de nuevo.
|
|
587
587
|
# Text shown in success notification banner
|
|
588
|
-
be.metadataUpdateSuccessNotification = {numSelected,
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected,plural,=1{1 documento actualizado} other{# documentos actualizados}}
|
|
589
589
|
# Text for modified date with modified prefix.
|
|
590
590
|
be.modifiedDate = Modificado el {date}
|
|
591
591
|
# Text for modified date with user with modified prefix.
|
|
@@ -593,7 +593,7 @@ be.modifiedDateBy = Modificado el {date} por {name}
|
|
|
593
593
|
# Label for a button that displays more options
|
|
594
594
|
be.moreOptions = Más opciones
|
|
595
595
|
# Display text for field when there are multiple items selected and have different value
|
|
596
|
-
be.multipleValues =
|
|
596
|
+
be.multipleValues = Múltiples valores
|
|
597
597
|
# Name ascending option shown in the share access drop down select.
|
|
598
598
|
be.nameASC = Nombre: A → Z
|
|
599
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -841,7 +841,7 @@ be.sort = Ordenar
|
|
|
841
841
|
# Label for status skill card in the preview sidebar
|
|
842
842
|
be.statusSkill = Estado
|
|
843
843
|
# Generic success label.
|
|
844
|
-
be.success =
|
|
844
|
+
be.success = Con éxito
|
|
845
845
|
# Shown instead of todays date.
|
|
846
846
|
be.today = hoy
|
|
847
847
|
# Label for keywords/topics skill section in the preview sidebar
|
|
@@ -975,9 +975,9 @@ boxui.checkboxTooltip.iconInfoText = Información
|
|
|
975
975
|
# Button to add classification on an item
|
|
976
976
|
boxui.classification.add = Agregar
|
|
977
977
|
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
978
|
-
boxui.classification.appliedByBoxAi =
|
|
978
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
979
979
|
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
980
|
-
boxui.classification.appliedByBoxAiOnDate = Box AI
|
|
980
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI el {modifiedAt}
|
|
981
981
|
# Header for classification section in sidebar
|
|
982
982
|
boxui.classification.classification = Clasificación
|
|
983
983
|
# Classification label color name as dark blue
|
package/i18n/es-ES.js
CHANGED
|
@@ -291,12 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "Lo sentimos, no podemos mostrar esta imagen.",
|
|
292
292
|
"be.messageCenter.product": "Producto",
|
|
293
293
|
"be.messageCenter.title": "Novedades",
|
|
294
|
-
"be.metadataUpdateErrorNotification": "
|
|
295
|
-
"be.metadataUpdateSuccessNotification": "{numSelected,
|
|
294
|
+
"be.metadataUpdateErrorNotification": "No se pueden guardar los cambios. Inténtelo de nuevo.",
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected,plural,=1{1 documento actualizado} other{# documentos actualizados}} ",
|
|
296
296
|
"be.modifiedDate": "Modificado el {date}",
|
|
297
297
|
"be.modifiedDateBy": "Modificado el {date} por {name}",
|
|
298
298
|
"be.moreOptions": "Más opciones",
|
|
299
|
-
"be.multipleValues": "
|
|
299
|
+
"be.multipleValues": "Múltiples valores",
|
|
300
300
|
"be.nameASC": "Nombre: A → Z",
|
|
301
301
|
"be.nameDESC": "Nombre: Z → A",
|
|
302
302
|
"be.nameDate": "{date} por {name}",
|
|
@@ -420,7 +420,7 @@ export default {
|
|
|
420
420
|
"be.skillUnknownError": "Se ha producido un error al ejecutar esta capacidad o al recuperar sus datos.",
|
|
421
421
|
"be.sort": "Ordenar",
|
|
422
422
|
"be.statusSkill": "Estado",
|
|
423
|
-
"be.success": "
|
|
423
|
+
"be.success": "Con éxito",
|
|
424
424
|
"be.today": "hoy",
|
|
425
425
|
"be.topicsSkill": "Temas",
|
|
426
426
|
"be.transcriptEdit": "Haga clic en cualquier sección para editarla.",
|
|
@@ -487,8 +487,8 @@ export default {
|
|
|
487
487
|
"boxui.categorySelector.label.more": "Más",
|
|
488
488
|
"boxui.checkboxTooltip.iconInfoText": "Información",
|
|
489
489
|
"boxui.classification.add": "Agregar",
|
|
490
|
-
"boxui.classification.appliedByBoxAi": "
|
|
491
|
-
"boxui.classification.appliedByBoxAiOnDate": "Box AI
|
|
490
|
+
"boxui.classification.appliedByBoxAi": "Box AI",
|
|
491
|
+
"boxui.classification.appliedByBoxAiOnDate": "Box AI el {modifiedAt}",
|
|
492
492
|
"boxui.classification.classification": "Clasificación",
|
|
493
493
|
"boxui.classification.classificationDarkBlue": "Azul oscuro",
|
|
494
494
|
"boxui.classification.classificationGreen": "Verde",
|
package/i18n/es-ES.properties
CHANGED
|
@@ -583,9 +583,9 @@ be.messageCenter.product = Producto
|
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = Novedades
|
|
585
585
|
# Text shown in error notification banner
|
|
586
|
-
be.metadataUpdateErrorNotification =
|
|
586
|
+
be.metadataUpdateErrorNotification = No se pueden guardar los cambios. Inténtelo de nuevo.
|
|
587
587
|
# Text shown in success notification banner
|
|
588
|
-
be.metadataUpdateSuccessNotification = {numSelected,
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected,plural,=1{1 documento actualizado} other{# documentos actualizados}}
|
|
589
589
|
# Text for modified date with modified prefix.
|
|
590
590
|
be.modifiedDate = Modificado el {date}
|
|
591
591
|
# Text for modified date with user with modified prefix.
|
|
@@ -593,7 +593,7 @@ be.modifiedDateBy = Modificado el {date} por {name}
|
|
|
593
593
|
# Label for a button that displays more options
|
|
594
594
|
be.moreOptions = Más opciones
|
|
595
595
|
# Display text for field when there are multiple items selected and have different value
|
|
596
|
-
be.multipleValues =
|
|
596
|
+
be.multipleValues = Múltiples valores
|
|
597
597
|
# Name ascending option shown in the share access drop down select.
|
|
598
598
|
be.nameASC = Nombre: A → Z
|
|
599
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -841,7 +841,7 @@ be.sort = Ordenar
|
|
|
841
841
|
# Label for status skill card in the preview sidebar
|
|
842
842
|
be.statusSkill = Estado
|
|
843
843
|
# Generic success label.
|
|
844
|
-
be.success =
|
|
844
|
+
be.success = Con éxito
|
|
845
845
|
# Shown instead of todays date.
|
|
846
846
|
be.today = hoy
|
|
847
847
|
# Label for keywords/topics skill section in the preview sidebar
|
|
@@ -975,9 +975,9 @@ boxui.checkboxTooltip.iconInfoText = Información
|
|
|
975
975
|
# Button to add classification on an item
|
|
976
976
|
boxui.classification.add = Agregar
|
|
977
977
|
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
978
|
-
boxui.classification.appliedByBoxAi =
|
|
978
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
979
979
|
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
980
|
-
boxui.classification.appliedByBoxAiOnDate = Box AI
|
|
980
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI el {modifiedAt}
|
|
981
981
|
# Header for classification section in sidebar
|
|
982
982
|
boxui.classification.classification = Clasificación
|
|
983
983
|
# Classification label color name as dark blue
|
package/i18n/fi-FI.js
CHANGED
|
@@ -291,12 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "Kuvaa ei voida juuri nyt näyttää.",
|
|
292
292
|
"be.messageCenter.product": "Tuote",
|
|
293
293
|
"be.messageCenter.title": "Uudet ominaisuudet",
|
|
294
|
-
"be.metadataUpdateErrorNotification": "
|
|
295
|
-
"be.metadataUpdateSuccessNotification": "{numSelected,
|
|
294
|
+
"be.metadataUpdateErrorNotification": "Muutoksia ei voi tallentaa. Yritä uudelleen.",
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected,plural,=1{1 document updated} other{# documents updated}} ",
|
|
296
296
|
"be.modifiedDate": "Muokattu {date}",
|
|
297
297
|
"be.modifiedDateBy": "Muokattu {date}, käyttäjä {name}",
|
|
298
298
|
"be.moreOptions": "Lisäasetukset",
|
|
299
|
-
"be.multipleValues": "
|
|
299
|
+
"be.multipleValues": "Useita arvoja",
|
|
300
300
|
"be.nameASC": "Nimi: A → Ö",
|
|
301
301
|
"be.nameDESC": "Nimi: Ö → A",
|
|
302
302
|
"be.nameDate": "{date}, käyttäjä {name}",
|
|
@@ -420,7 +420,7 @@ export default {
|
|
|
420
420
|
"be.skillUnknownError": "Tapahtui virhe osaamisen suorittamisessa tai sen tietojen hakemisessa.",
|
|
421
421
|
"be.sort": "Lajittele",
|
|
422
422
|
"be.statusSkill": "Tila",
|
|
423
|
-
"be.success": "
|
|
423
|
+
"be.success": "Onnistui",
|
|
424
424
|
"be.today": "tänään",
|
|
425
425
|
"be.topicsSkill": "Aiheet",
|
|
426
426
|
"be.transcriptEdit": "Napsauta muokattavaa kohtaa.",
|
|
@@ -488,7 +488,7 @@ export default {
|
|
|
488
488
|
"boxui.checkboxTooltip.iconInfoText": "Tiedot",
|
|
489
489
|
"boxui.classification.add": "Lisää",
|
|
490
490
|
"boxui.classification.appliedByBoxAi": "Box AI",
|
|
491
|
-
"boxui.classification.appliedByBoxAiOnDate": "Box AI
|
|
491
|
+
"boxui.classification.appliedByBoxAiOnDate": "Box AI {modifiedAt}",
|
|
492
492
|
"boxui.classification.classification": "Luokitus",
|
|
493
493
|
"boxui.classification.classificationDarkBlue": "Tummansininen",
|
|
494
494
|
"boxui.classification.classificationGreen": "Vihreä",
|
package/i18n/fi-FI.properties
CHANGED
|
@@ -583,9 +583,9 @@ be.messageCenter.product = Tuote
|
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = Uudet ominaisuudet
|
|
585
585
|
# Text shown in error notification banner
|
|
586
|
-
be.metadataUpdateErrorNotification =
|
|
586
|
+
be.metadataUpdateErrorNotification = Muutoksia ei voi tallentaa. Yritä uudelleen.
|
|
587
587
|
# Text shown in success notification banner
|
|
588
|
-
be.metadataUpdateSuccessNotification = {numSelected,
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected,plural,=1{1 document updated} other{# documents updated}}
|
|
589
589
|
# Text for modified date with modified prefix.
|
|
590
590
|
be.modifiedDate = Muokattu {date}
|
|
591
591
|
# Text for modified date with user with modified prefix.
|
|
@@ -593,7 +593,7 @@ be.modifiedDateBy = Muokattu {date}, käyttäjä {name}
|
|
|
593
593
|
# Label for a button that displays more options
|
|
594
594
|
be.moreOptions = Lisäasetukset
|
|
595
595
|
# Display text for field when there are multiple items selected and have different value
|
|
596
|
-
be.multipleValues =
|
|
596
|
+
be.multipleValues = Useita arvoja
|
|
597
597
|
# Name ascending option shown in the share access drop down select.
|
|
598
598
|
be.nameASC = Nimi: A → Ö
|
|
599
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -841,7 +841,7 @@ be.sort = Lajittele
|
|
|
841
841
|
# Label for status skill card in the preview sidebar
|
|
842
842
|
be.statusSkill = Tila
|
|
843
843
|
# Generic success label.
|
|
844
|
-
be.success =
|
|
844
|
+
be.success = Onnistui
|
|
845
845
|
# Shown instead of todays date.
|
|
846
846
|
be.today = tänään
|
|
847
847
|
# Label for keywords/topics skill section in the preview sidebar
|
|
@@ -977,7 +977,7 @@ boxui.classification.add = Lisää
|
|
|
977
977
|
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
978
978
|
boxui.classification.appliedByBoxAi = Box AI
|
|
979
979
|
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
980
|
-
boxui.classification.appliedByBoxAiOnDate = Box AI
|
|
980
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI {modifiedAt}
|
|
981
981
|
# Header for classification section in sidebar
|
|
982
982
|
boxui.classification.classification = Luokitus
|
|
983
983
|
# Classification label color name as dark blue
|
package/i18n/fr-CA.js
CHANGED
|
@@ -291,12 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "Désolé, nous ne parvenons pas à afficher cette image.",
|
|
292
292
|
"be.messageCenter.product": "Produit",
|
|
293
293
|
"be.messageCenter.title": "Nouveautés",
|
|
294
|
-
"be.metadataUpdateErrorNotification": "
|
|
295
|
-
"be.metadataUpdateSuccessNotification": "{numSelected,
|
|
294
|
+
"be.metadataUpdateErrorNotification": "Impossible d'enregistrer les modifications. Veuillez réessayer .",
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected,plural,=1{1 document mis à jour} other{# documents mis à jour}}",
|
|
296
296
|
"be.modifiedDate": "Dernière modification le {date}",
|
|
297
297
|
"be.modifiedDateBy": "Dernière modification effectuée le {date} par {name}",
|
|
298
298
|
"be.moreOptions": "Plus d'options",
|
|
299
|
-
"be.multipleValues": "
|
|
299
|
+
"be.multipleValues": "Valeurs multiples",
|
|
300
300
|
"be.nameASC": "Nom : de A à Z",
|
|
301
301
|
"be.nameDESC": "Nom : de Z à A",
|
|
302
302
|
"be.nameDate": "{date} par {name}",
|
|
@@ -420,7 +420,7 @@ export default {
|
|
|
420
420
|
"be.skillUnknownError": "Une erreur est survenue lors de l'exécution de cette compétence ou de la récupération de ses données.",
|
|
421
421
|
"be.sort": "Trier",
|
|
422
422
|
"be.statusSkill": "État",
|
|
423
|
-
"be.success": "
|
|
423
|
+
"be.success": "Succès",
|
|
424
424
|
"be.today": "aujourd'hui",
|
|
425
425
|
"be.topicsSkill": "Sujets",
|
|
426
426
|
"be.transcriptEdit": "Cliquez sur la section de votre choix pour effectuer des modifications.",
|
|
@@ -488,7 +488,7 @@ export default {
|
|
|
488
488
|
"boxui.checkboxTooltip.iconInfoText": "Info",
|
|
489
489
|
"boxui.classification.add": "Ajouter",
|
|
490
490
|
"boxui.classification.appliedByBoxAi": "Box AI",
|
|
491
|
-
"boxui.classification.appliedByBoxAiOnDate": "Box AI
|
|
491
|
+
"boxui.classification.appliedByBoxAiOnDate": "Box AI sur {modifiedAt}",
|
|
492
492
|
"boxui.classification.classification": "Classement",
|
|
493
493
|
"boxui.classification.classificationDarkBlue": "Bleu foncé",
|
|
494
494
|
"boxui.classification.classificationGreen": "Vert",
|
package/i18n/fr-CA.properties
CHANGED
|
@@ -583,9 +583,9 @@ be.messageCenter.product = Produit
|
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = Nouveautés
|
|
585
585
|
# Text shown in error notification banner
|
|
586
|
-
be.metadataUpdateErrorNotification =
|
|
586
|
+
be.metadataUpdateErrorNotification = Impossible d'enregistrer les modifications. Veuillez réessayer .
|
|
587
587
|
# Text shown in success notification banner
|
|
588
|
-
be.metadataUpdateSuccessNotification = {numSelected,
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected,plural,=1{1 document mis à jour} other{# documents mis à jour}}
|
|
589
589
|
# Text for modified date with modified prefix.
|
|
590
590
|
be.modifiedDate = Dernière modification le {date}
|
|
591
591
|
# Text for modified date with user with modified prefix.
|
|
@@ -593,7 +593,7 @@ be.modifiedDateBy = Dernière modification effectuée le {date} par {name}
|
|
|
593
593
|
# Label for a button that displays more options
|
|
594
594
|
be.moreOptions = Plus d'options
|
|
595
595
|
# Display text for field when there are multiple items selected and have different value
|
|
596
|
-
be.multipleValues =
|
|
596
|
+
be.multipleValues = Valeurs multiples
|
|
597
597
|
# Name ascending option shown in the share access drop down select.
|
|
598
598
|
be.nameASC = Nom : de A à Z
|
|
599
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -841,7 +841,7 @@ be.sort = Trier
|
|
|
841
841
|
# Label for status skill card in the preview sidebar
|
|
842
842
|
be.statusSkill = État
|
|
843
843
|
# Generic success label.
|
|
844
|
-
be.success =
|
|
844
|
+
be.success = Succès
|
|
845
845
|
# Shown instead of todays date.
|
|
846
846
|
be.today = aujourd'hui
|
|
847
847
|
# Label for keywords/topics skill section in the preview sidebar
|
|
@@ -977,7 +977,7 @@ boxui.classification.add = Ajouter
|
|
|
977
977
|
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
978
978
|
boxui.classification.appliedByBoxAi = Box AI
|
|
979
979
|
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
980
|
-
boxui.classification.appliedByBoxAiOnDate = Box AI
|
|
980
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI sur {modifiedAt}
|
|
981
981
|
# Header for classification section in sidebar
|
|
982
982
|
boxui.classification.classification = Classement
|
|
983
983
|
# Classification label color name as dark blue
|