box-ui-elements 24.0.0-beta.4 → 24.0.0-beta.6
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 +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/api/Metadata.js +98 -13
- package/es/api/Metadata.js.flow +110 -12
- package/es/api/Metadata.js.map +1 -1
- package/es/elements/common/messages.js +16 -0
- package/es/elements/common/messages.js.flow +25 -0
- package/es/elements/common/messages.js.map +1 -1
- package/es/elements/content-explorer/Content.js +5 -2
- package/es/elements/content-explorer/Content.js.map +1 -1
- package/es/elements/content-explorer/ContentExplorer.js +31 -6
- package/es/elements/content-explorer/ContentExplorer.js.map +1 -1
- package/es/elements/content-explorer/MetadataQueryAPIHelper.js +164 -10
- package/es/elements/content-explorer/MetadataQueryAPIHelper.js.map +1 -1
- package/es/elements/content-explorer/MetadataQueryBuilder.js +115 -0
- package/es/elements/content-explorer/MetadataQueryBuilder.js.map +1 -0
- package/es/elements/content-explorer/MetadataSidePanel.js +40 -14
- package/es/elements/content-explorer/MetadataSidePanel.js.map +1 -1
- package/es/elements/content-explorer/MetadataViewContainer.js +133 -36
- package/es/elements/content-explorer/MetadataViewContainer.js.map +1 -1
- package/es/elements/content-explorer/stories/MetadataView.stories.js +3 -25
- package/es/elements/content-explorer/stories/MetadataView.stories.js.map +1 -1
- package/es/elements/content-explorer/stories/tests/MetadataView-visual.stories.js +65 -29
- package/es/elements/content-explorer/stories/tests/MetadataView-visual.stories.js.map +1 -1
- package/es/elements/content-explorer/utils.js +140 -12
- package/es/elements/content-explorer/utils.js.map +1 -1
- package/es/src/elements/common/__mocks__/mockMetadata.d.ts +8 -24
- package/es/src/elements/content-explorer/Content.d.ts +4 -3
- package/es/src/elements/content-explorer/ContentExplorer.d.ts +19 -6
- package/es/src/elements/content-explorer/MetadataQueryAPIHelper.d.ts +22 -3
- package/es/src/elements/content-explorer/MetadataQueryBuilder.d.ts +27 -0
- package/es/src/elements/content-explorer/MetadataSidePanel.d.ts +6 -3
- package/es/src/elements/content-explorer/MetadataViewContainer.d.ts +10 -4
- package/es/src/elements/content-explorer/__tests__/MetadataQueryBuilder.test.d.ts +1 -0
- package/es/src/elements/content-explorer/stories/tests/MetadataView-visual.stories.d.ts +1 -0
- package/es/src/elements/content-explorer/utils.d.ts +9 -3
- package/i18n/bn-IN.js +4 -0
- package/i18n/bn-IN.properties +12 -0
- package/i18n/da-DK.js +4 -0
- package/i18n/da-DK.properties +12 -0
- package/i18n/de-DE.js +5 -1
- package/i18n/de-DE.properties +12 -0
- package/i18n/en-AU.js +4 -0
- package/i18n/en-AU.properties +12 -0
- package/i18n/en-CA.js +4 -0
- package/i18n/en-CA.properties +12 -0
- package/i18n/en-GB.js +4 -0
- package/i18n/en-GB.properties +12 -0
- package/i18n/en-US.js +4 -0
- package/i18n/en-US.properties +8 -0
- package/i18n/en-x-pseudo.js +4 -0
- package/i18n/es-419.js +5 -1
- package/i18n/es-419.properties +12 -0
- package/i18n/es-ES.js +5 -1
- package/i18n/es-ES.properties +12 -0
- package/i18n/fi-FI.js +4 -0
- package/i18n/fi-FI.properties +12 -0
- package/i18n/fr-CA.js +4 -0
- package/i18n/fr-CA.properties +12 -0
- package/i18n/fr-FR.js +4 -0
- package/i18n/fr-FR.properties +12 -0
- package/i18n/hi-IN.js +4 -0
- package/i18n/hi-IN.properties +12 -0
- package/i18n/it-IT.js +4 -0
- package/i18n/it-IT.properties +12 -0
- package/i18n/ja-JP.js +6 -2
- package/i18n/ja-JP.properties +14 -2
- package/i18n/ko-KR.js +4 -0
- package/i18n/ko-KR.properties +12 -0
- package/i18n/nb-NO.js +4 -0
- package/i18n/nb-NO.properties +12 -0
- package/i18n/nl-NL.js +4 -0
- package/i18n/nl-NL.properties +12 -0
- package/i18n/pl-PL.js +4 -0
- package/i18n/pl-PL.properties +12 -0
- package/i18n/pt-BR.js +4 -0
- package/i18n/pt-BR.properties +12 -0
- package/i18n/ru-RU.js +5 -1
- package/i18n/ru-RU.properties +12 -0
- package/i18n/sv-SE.js +4 -0
- package/i18n/sv-SE.properties +12 -0
- package/i18n/tr-TR.js +5 -1
- package/i18n/tr-TR.properties +12 -0
- package/i18n/zh-CN.js +4 -0
- package/i18n/zh-CN.properties +12 -0
- package/i18n/zh-TW.js +4 -0
- package/i18n/zh-TW.properties +12 -0
- package/package.json +3 -3
- package/src/api/Metadata.js +110 -12
- package/src/api/__tests__/Metadata.test.js +120 -0
- package/src/elements/common/__mocks__/mockMetadata.ts +7 -11
- package/src/elements/common/messages.js +25 -0
- package/src/elements/content-explorer/Content.tsx +9 -2
- package/src/elements/content-explorer/ContentExplorer.tsx +71 -17
- package/src/elements/content-explorer/MetadataQueryAPIHelper.ts +199 -8
- package/src/elements/content-explorer/MetadataQueryBuilder.ts +159 -0
- package/src/elements/content-explorer/MetadataSidePanel.tsx +55 -14
- package/src/elements/content-explorer/MetadataViewContainer.tsx +164 -29
- package/src/elements/content-explorer/__tests__/Content.test.tsx +1 -0
- package/src/elements/content-explorer/__tests__/ContentExplorer.test.tsx +38 -7
- package/src/elements/content-explorer/__tests__/MetadataQueryAPIHelper.test.ts +428 -12
- package/src/elements/content-explorer/__tests__/MetadataQueryBuilder.test.ts +419 -0
- package/src/elements/content-explorer/__tests__/MetadataSidePanel.test.tsx +145 -3
- package/src/elements/content-explorer/__tests__/MetadataViewContainer.test.tsx +413 -9
- package/src/elements/content-explorer/stories/MetadataView.stories.tsx +3 -21
- package/src/elements/content-explorer/stories/tests/MetadataView-visual.stories.tsx +56 -21
- package/src/elements/content-explorer/utils.ts +150 -13
package/i18n/da-DK.js
CHANGED
|
@@ -291,9 +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": "Unable to save changes. Please try again.",
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
|
|
294
296
|
"be.modifiedDate": "Ændret {date}",
|
|
295
297
|
"be.modifiedDateBy": "Ændret {date} af {name}",
|
|
296
298
|
"be.moreOptions": "Flere muligheder",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "Navn: A → Å",
|
|
298
301
|
"be.nameDESC": "Navn: Å → A",
|
|
299
302
|
"be.nameDate": "{date} af {name}",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
420
|
"be.skillUnknownError": "Der opstod et problem under kørsel af denne færdighed eller i forbindelse med hentning af tilhørende data.",
|
|
418
421
|
"be.sort": "Sortér",
|
|
419
422
|
"be.statusSkill": "Status",
|
|
423
|
+
"be.success": "Success",
|
|
420
424
|
"be.today": "i dag",
|
|
421
425
|
"be.topicsSkill": "Emner",
|
|
422
426
|
"be.transcriptEdit": "Klik på et afsnit for at redigere.",
|
package/i18n/da-DK.properties
CHANGED
|
@@ -582,12 +582,18 @@ be.messageCenter.previewError = Vi har desværre problemer med at vise dette bil
|
|
|
582
582
|
be.messageCenter.product = Produkt
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = Nyheder
|
|
585
|
+
# Text shown in error notification banner
|
|
586
|
+
be.metadataUpdateErrorNotification = Unable to save changes. Please try again.
|
|
587
|
+
# Text shown in success notification banner
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected, plural, =1 {1 document updated} other {# documents updated} }
|
|
585
589
|
# Text for modified date with modified prefix.
|
|
586
590
|
be.modifiedDate = Ændret {date}
|
|
587
591
|
# Text for modified date with user with modified prefix.
|
|
588
592
|
be.modifiedDateBy = Ændret {date} af {name}
|
|
589
593
|
# Label for a button that displays more options
|
|
590
594
|
be.moreOptions = Flere muligheder
|
|
595
|
+
# Display text for field when there are multiple items selected and have different value
|
|
596
|
+
be.multipleValues = Multiple Values
|
|
591
597
|
# Name ascending option shown in the share access drop down select.
|
|
592
598
|
be.nameASC = Navn: A → Å
|
|
593
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -834,6 +840,8 @@ be.skillUnknownError = Der opstod et problem under kørsel af denne færdighed e
|
|
|
834
840
|
be.sort = Sortér
|
|
835
841
|
# Label for status skill card in the preview sidebar
|
|
836
842
|
be.statusSkill = Status
|
|
843
|
+
# Generic success label.
|
|
844
|
+
be.success = Success
|
|
837
845
|
# Shown instead of todays date.
|
|
838
846
|
be.today = i dag
|
|
839
847
|
# Label for keywords/topics skill section in the preview sidebar
|
|
@@ -966,6 +974,10 @@ boxui.categorySelector.label.more = Mere
|
|
|
966
974
|
boxui.checkboxTooltip.iconInfoText = Oplysninger
|
|
967
975
|
# Button to add classification on an item
|
|
968
976
|
boxui.classification.add = Tilføj
|
|
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 AI
|
|
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 on {modifiedAt}
|
|
969
981
|
# Header for classification section in sidebar
|
|
970
982
|
boxui.classification.classification = Klassificering
|
|
971
983
|
# Classification label color name as dark blue
|
package/i18n/de-DE.js
CHANGED
|
@@ -291,9 +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": "Unable to save changes. Please try again.",
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
|
|
294
296
|
"be.modifiedDate": "Geändert am {date}",
|
|
295
297
|
"be.modifiedDateBy": "Geändert am {date} von {name}",
|
|
296
298
|
"be.moreOptions": "Weitere Optionen",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "Name: A → Z",
|
|
298
301
|
"be.nameDESC": "Name: Z → A",
|
|
299
302
|
"be.nameDate": "Am {date} von {name}",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
420
|
"be.skillUnknownError": "Beim Ausführen dieses Skills oder Abrufen seiner Daten ist ein Fehler aufgetreten.",
|
|
418
421
|
"be.sort": "Sortieren",
|
|
419
422
|
"be.statusSkill": "Status",
|
|
423
|
+
"be.success": "Success",
|
|
420
424
|
"be.today": "heute",
|
|
421
425
|
"be.topicsSkill": "Themen",
|
|
422
426
|
"be.transcriptEdit": "Klicken Sie auf einen beliebigen Abschnitt, um ihn zu bearbeiten.",
|
|
@@ -483,7 +487,7 @@ export default {
|
|
|
483
487
|
"boxui.categorySelector.label.more": "Mehr",
|
|
484
488
|
"boxui.checkboxTooltip.iconInfoText": "Informationen",
|
|
485
489
|
"boxui.classification.add": "Hinzufügen",
|
|
486
|
-
"boxui.classification.appliedByBoxAi": "Box
|
|
490
|
+
"boxui.classification.appliedByBoxAi": "Box-KI",
|
|
487
491
|
"boxui.classification.appliedByBoxAiOnDate": "Box AI on {modifiedAt}",
|
|
488
492
|
"boxui.classification.classification": "Klassifizierung",
|
|
489
493
|
"boxui.classification.classificationDarkBlue": "Dunkelblau",
|
package/i18n/de-DE.properties
CHANGED
|
@@ -582,12 +582,18 @@ be.messageCenter.previewError = Leider kann dieses Bild derzeit nicht angezeigt
|
|
|
582
582
|
be.messageCenter.product = Produkt
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = Neuerungen
|
|
585
|
+
# Text shown in error notification banner
|
|
586
|
+
be.metadataUpdateErrorNotification = Unable to save changes. Please try again.
|
|
587
|
+
# Text shown in success notification banner
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected, plural, =1 {1 document updated} other {# documents updated} }
|
|
585
589
|
# Text for modified date with modified prefix.
|
|
586
590
|
be.modifiedDate = Geändert am {date}
|
|
587
591
|
# Text for modified date with user with modified prefix.
|
|
588
592
|
be.modifiedDateBy = Geändert am {date} von {name}
|
|
589
593
|
# Label for a button that displays more options
|
|
590
594
|
be.moreOptions = Weitere Optionen
|
|
595
|
+
# Display text for field when there are multiple items selected and have different value
|
|
596
|
+
be.multipleValues = Multiple Values
|
|
591
597
|
# Name ascending option shown in the share access drop down select.
|
|
592
598
|
be.nameASC = Name: A → Z
|
|
593
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -834,6 +840,8 @@ be.skillUnknownError = Beim Ausführen dieses Skills oder Abrufen seiner Daten i
|
|
|
834
840
|
be.sort = Sortieren
|
|
835
841
|
# Label for status skill card in the preview sidebar
|
|
836
842
|
be.statusSkill = Status
|
|
843
|
+
# Generic success label.
|
|
844
|
+
be.success = Success
|
|
837
845
|
# Shown instead of todays date.
|
|
838
846
|
be.today = heute
|
|
839
847
|
# Label for keywords/topics skill section in the preview sidebar
|
|
@@ -966,6 +974,10 @@ boxui.categorySelector.label.more = Mehr
|
|
|
966
974
|
boxui.checkboxTooltip.iconInfoText = Informationen
|
|
967
975
|
# Button to add classification on an item
|
|
968
976
|
boxui.classification.add = Hinzufügen
|
|
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-KI
|
|
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 on {modifiedAt}
|
|
969
981
|
# Header for classification section in sidebar
|
|
970
982
|
boxui.classification.classification = Klassifizierung
|
|
971
983
|
# Classification label color name as dark blue
|
package/i18n/en-AU.js
CHANGED
|
@@ -291,9 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "Sorry, we're having trouble showing this image.",
|
|
292
292
|
"be.messageCenter.product": "Product",
|
|
293
293
|
"be.messageCenter.title": "What's New",
|
|
294
|
+
"be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
|
|
294
296
|
"be.modifiedDate": "Modified {date}",
|
|
295
297
|
"be.modifiedDateBy": "Modified {date} by {name}",
|
|
296
298
|
"be.moreOptions": "More Options",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "Name: A → Z",
|
|
298
301
|
"be.nameDESC": "Name: Z → A",
|
|
299
302
|
"be.nameDate": "{date} by {name}",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
420
|
"be.skillUnknownError": "Something went wrong while running this skill or fetching its data.",
|
|
418
421
|
"be.sort": "Sort",
|
|
419
422
|
"be.statusSkill": "Status",
|
|
423
|
+
"be.success": "Success",
|
|
420
424
|
"be.today": "today",
|
|
421
425
|
"be.topicsSkill": "Topics",
|
|
422
426
|
"be.transcriptEdit": "Click any section to edit.",
|
package/i18n/en-AU.properties
CHANGED
|
@@ -582,12 +582,18 @@ be.messageCenter.previewError = Sorry, we're having trouble showing this image.
|
|
|
582
582
|
be.messageCenter.product = Product
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = What's New
|
|
585
|
+
# Text shown in error notification banner
|
|
586
|
+
be.metadataUpdateErrorNotification = Unable to save changes. Please try again.
|
|
587
|
+
# Text shown in success notification banner
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected, plural, =1 {1 document updated} other {# documents updated} }
|
|
585
589
|
# Text for modified date with modified prefix.
|
|
586
590
|
be.modifiedDate = Modified {date}
|
|
587
591
|
# Text for modified date with user with modified prefix.
|
|
588
592
|
be.modifiedDateBy = Modified {date} by {name}
|
|
589
593
|
# Label for a button that displays more options
|
|
590
594
|
be.moreOptions = More Options
|
|
595
|
+
# Display text for field when there are multiple items selected and have different value
|
|
596
|
+
be.multipleValues = Multiple Values
|
|
591
597
|
# Name ascending option shown in the share access drop down select.
|
|
592
598
|
be.nameASC = Name: A → Z
|
|
593
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -834,6 +840,8 @@ be.skillUnknownError = Something went wrong while running this skill or fetching
|
|
|
834
840
|
be.sort = Sort
|
|
835
841
|
# Label for status skill card in the preview sidebar
|
|
836
842
|
be.statusSkill = Status
|
|
843
|
+
# Generic success label.
|
|
844
|
+
be.success = Success
|
|
837
845
|
# Shown instead of todays date.
|
|
838
846
|
be.today = today
|
|
839
847
|
# Label for keywords/topics skill section in the preview sidebar
|
|
@@ -966,6 +974,10 @@ boxui.categorySelector.label.more = More
|
|
|
966
974
|
boxui.checkboxTooltip.iconInfoText = Info
|
|
967
975
|
# Button to add classification on an item
|
|
968
976
|
boxui.classification.add = Add
|
|
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 AI
|
|
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 on {modifiedAt}
|
|
969
981
|
# Header for classification section in sidebar
|
|
970
982
|
boxui.classification.classification = Classification
|
|
971
983
|
# Classification label color name as dark blue
|
package/i18n/en-CA.js
CHANGED
|
@@ -291,9 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "Sorry, we're having trouble showing this image. ",
|
|
292
292
|
"be.messageCenter.product": "Product",
|
|
293
293
|
"be.messageCenter.title": "What's New",
|
|
294
|
+
"be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
|
|
294
296
|
"be.modifiedDate": "Modified {date}",
|
|
295
297
|
"be.modifiedDateBy": "Modified {date} by {name}",
|
|
296
298
|
"be.moreOptions": "More options",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "Name: A → Z",
|
|
298
301
|
"be.nameDESC": "Name: Z → A",
|
|
299
302
|
"be.nameDate": "{date} by {name}",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
420
|
"be.skillUnknownError": "Something went wrong with running this skill or fetching its data.",
|
|
418
421
|
"be.sort": "Sort",
|
|
419
422
|
"be.statusSkill": "Status",
|
|
423
|
+
"be.success": "Success",
|
|
420
424
|
"be.today": "today",
|
|
421
425
|
"be.topicsSkill": "Topics",
|
|
422
426
|
"be.transcriptEdit": "Click any section to edit.",
|
package/i18n/en-CA.properties
CHANGED
|
@@ -582,12 +582,18 @@ be.messageCenter.previewError = Sorry, we're having trouble showing this image.
|
|
|
582
582
|
be.messageCenter.product = Product
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = What's New
|
|
585
|
+
# Text shown in error notification banner
|
|
586
|
+
be.metadataUpdateErrorNotification = Unable to save changes. Please try again.
|
|
587
|
+
# Text shown in success notification banner
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected, plural, =1 {1 document updated} other {# documents updated} }
|
|
585
589
|
# Text for modified date with modified prefix.
|
|
586
590
|
be.modifiedDate = Modified {date}
|
|
587
591
|
# Text for modified date with user with modified prefix.
|
|
588
592
|
be.modifiedDateBy = Modified {date} by {name}
|
|
589
593
|
# Label for a button that displays more options
|
|
590
594
|
be.moreOptions = More options
|
|
595
|
+
# Display text for field when there are multiple items selected and have different value
|
|
596
|
+
be.multipleValues = Multiple Values
|
|
591
597
|
# Name ascending option shown in the share access drop down select.
|
|
592
598
|
be.nameASC = Name: A → Z
|
|
593
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -834,6 +840,8 @@ be.skillUnknownError = Something went wrong with running this skill or fetching
|
|
|
834
840
|
be.sort = Sort
|
|
835
841
|
# Label for status skill card in the preview sidebar
|
|
836
842
|
be.statusSkill = Status
|
|
843
|
+
# Generic success label.
|
|
844
|
+
be.success = Success
|
|
837
845
|
# Shown instead of todays date.
|
|
838
846
|
be.today = today
|
|
839
847
|
# Label for keywords/topics skill section in the preview sidebar
|
|
@@ -966,6 +974,10 @@ boxui.categorySelector.label.more = More
|
|
|
966
974
|
boxui.checkboxTooltip.iconInfoText = Info
|
|
967
975
|
# Button to add classification on an item
|
|
968
976
|
boxui.classification.add = Add
|
|
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 AI
|
|
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 on {modifiedAt}
|
|
969
981
|
# Header for classification section in sidebar
|
|
970
982
|
boxui.classification.classification = Classification
|
|
971
983
|
# Classification label color name as dark blue
|
package/i18n/en-GB.js
CHANGED
|
@@ -291,9 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "Sorry, we're having trouble showing this image.",
|
|
292
292
|
"be.messageCenter.product": "Product",
|
|
293
293
|
"be.messageCenter.title": "What's New",
|
|
294
|
+
"be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
|
|
294
296
|
"be.modifiedDate": "Modified {date}",
|
|
295
297
|
"be.modifiedDateBy": "Modified {date} by {name}",
|
|
296
298
|
"be.moreOptions": "More Options",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "Name: A → Z",
|
|
298
301
|
"be.nameDESC": "Name: Z → A",
|
|
299
302
|
"be.nameDate": "{date} by {name}",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
420
|
"be.skillUnknownError": "Something went wrong while running this skill or fetching its data.",
|
|
418
421
|
"be.sort": "Sort",
|
|
419
422
|
"be.statusSkill": "Status",
|
|
423
|
+
"be.success": "Success",
|
|
420
424
|
"be.today": "today",
|
|
421
425
|
"be.topicsSkill": "Topics",
|
|
422
426
|
"be.transcriptEdit": "Click any section to edit.",
|
package/i18n/en-GB.properties
CHANGED
|
@@ -582,12 +582,18 @@ be.messageCenter.previewError = Sorry, we're having trouble showing this image.
|
|
|
582
582
|
be.messageCenter.product = Product
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = What's New
|
|
585
|
+
# Text shown in error notification banner
|
|
586
|
+
be.metadataUpdateErrorNotification = Unable to save changes. Please try again.
|
|
587
|
+
# Text shown in success notification banner
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected, plural, =1 {1 document updated} other {# documents updated} }
|
|
585
589
|
# Text for modified date with modified prefix.
|
|
586
590
|
be.modifiedDate = Modified {date}
|
|
587
591
|
# Text for modified date with user with modified prefix.
|
|
588
592
|
be.modifiedDateBy = Modified {date} by {name}
|
|
589
593
|
# Label for a button that displays more options
|
|
590
594
|
be.moreOptions = More Options
|
|
595
|
+
# Display text for field when there are multiple items selected and have different value
|
|
596
|
+
be.multipleValues = Multiple Values
|
|
591
597
|
# Name ascending option shown in the share access drop down select.
|
|
592
598
|
be.nameASC = Name: A → Z
|
|
593
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -834,6 +840,8 @@ be.skillUnknownError = Something went wrong while running this skill or fetching
|
|
|
834
840
|
be.sort = Sort
|
|
835
841
|
# Label for status skill card in the preview sidebar
|
|
836
842
|
be.statusSkill = Status
|
|
843
|
+
# Generic success label.
|
|
844
|
+
be.success = Success
|
|
837
845
|
# Shown instead of todays date.
|
|
838
846
|
be.today = today
|
|
839
847
|
# Label for keywords/topics skill section in the preview sidebar
|
|
@@ -966,6 +974,10 @@ boxui.categorySelector.label.more = More
|
|
|
966
974
|
boxui.checkboxTooltip.iconInfoText = Info
|
|
967
975
|
# Button to add classification on an item
|
|
968
976
|
boxui.classification.add = Add
|
|
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 AI
|
|
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 on {modifiedAt}
|
|
969
981
|
# Header for classification section in sidebar
|
|
970
982
|
boxui.classification.classification = Classification
|
|
971
983
|
# Classification label color name as dark blue
|
package/i18n/en-US.js
CHANGED
|
@@ -291,9 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "Sorry, we're having trouble showing this image. ",
|
|
292
292
|
"be.messageCenter.product": "Product",
|
|
293
293
|
"be.messageCenter.title": "What's New",
|
|
294
|
+
"be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
|
|
294
296
|
"be.modifiedDate": "Modified {date}",
|
|
295
297
|
"be.modifiedDateBy": "Modified {date} by {name}",
|
|
296
298
|
"be.moreOptions": "More options",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "Name: A → Z",
|
|
298
301
|
"be.nameDESC": "Name: Z → A",
|
|
299
302
|
"be.nameDate": "{date} by {name}",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
420
|
"be.skillUnknownError": "Something went wrong with running this skill or fetching its data.",
|
|
418
421
|
"be.sort": "Sort",
|
|
419
422
|
"be.statusSkill": "Status",
|
|
423
|
+
"be.success": "Success",
|
|
420
424
|
"be.today": "today",
|
|
421
425
|
"be.topicsSkill": "Topics",
|
|
422
426
|
"be.transcriptEdit": "Click any section to edit.",
|
package/i18n/en-US.properties
CHANGED
|
@@ -582,12 +582,18 @@ be.messageCenter.previewError = Sorry, we're having trouble showing this image.
|
|
|
582
582
|
be.messageCenter.product = Product
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = What's New
|
|
585
|
+
# Text shown in error notification banner
|
|
586
|
+
be.metadataUpdateErrorNotification = Unable to save changes. Please try again.
|
|
587
|
+
# Text shown in success notification banner
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected, plural, =1 {1 document updated} other {# documents updated} }
|
|
585
589
|
# Text for modified date with modified prefix.
|
|
586
590
|
be.modifiedDate = Modified {date}
|
|
587
591
|
# Text for modified date with user with modified prefix.
|
|
588
592
|
be.modifiedDateBy = Modified {date} by {name}
|
|
589
593
|
# Label for a button that displays more options
|
|
590
594
|
be.moreOptions = More options
|
|
595
|
+
# Display text for field when there are multiple items selected and have different value
|
|
596
|
+
be.multipleValues = Multiple Values
|
|
591
597
|
# Name ascending option shown in the share access drop down select.
|
|
592
598
|
be.nameASC = Name: A → Z
|
|
593
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -834,6 +840,8 @@ be.skillUnknownError = Something went wrong with running this skill or fetching
|
|
|
834
840
|
be.sort = Sort
|
|
835
841
|
# Label for status skill card in the preview sidebar
|
|
836
842
|
be.statusSkill = Status
|
|
843
|
+
# Generic success label.
|
|
844
|
+
be.success = Success
|
|
837
845
|
# Shown instead of todays date.
|
|
838
846
|
be.today = today
|
|
839
847
|
# Label for keywords/topics skill section in the preview sidebar
|
package/i18n/en-x-pseudo.js
CHANGED
|
@@ -291,9 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Şŏřŕÿ, шē'гє нáνĭņġ ŧѓöůвĺě şħõщïʼnğ ţнĭś ĩmάğĕ. 國國國國國國國國國國國國國國⟧",
|
|
292
292
|
"be.messageCenter.product": "⟦萬萬 Pгòďúċŧ 國國⟧",
|
|
293
293
|
"be.messageCenter.title": "⟦萬萬 Ẃĥąŧ'ѕ Йêщ 國國⟧",
|
|
294
|
+
"be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
|
|
295
|
+
"be.metadataUpdateSuccessNotification": " {numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
|
|
294
296
|
"be.modifiedDate": "⟦萬萬萬萬 Μōďīƒîέď {date} 國國國國⟧",
|
|
295
297
|
"be.modifiedDateBy": "⟦萬萬萬萬萬萬 Мοďíƒíęď {date} ьý {name} 國國國國國國⟧",
|
|
296
298
|
"be.moreOptions": "⟦萬萬萬 Μõŕę όΡťìõʼnѕ 國國國⟧",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "⟦萬萬萬 Νąmě: Â → Ź 國國國⟧",
|
|
298
301
|
"be.nameDESC": "⟦萬萬萬 Ŋαmє: Ζ → Á 國國國⟧",
|
|
299
302
|
"be.nameDate": "⟦萬萬萬萬 {date} вγ {name} 國國國國⟧",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
420
|
"be.skillUnknownError": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ѕòmêţħĭйğ ŵêʼnţ ẁѓóňĝ ẁϊŧħ гµʼnήìπĝ ťнίş şĸíľļ øг ƒεţçħĩńġ íτş ďåťà. 國國國國國國國國國國國國國國國國國國國⟧",
|
|
418
421
|
"be.sort": "⟦萬 Śôгť 國⟧",
|
|
419
422
|
"be.statusSkill": "⟦萬 Şτâťūś 國⟧",
|
|
423
|
+
"be.success": "Success",
|
|
420
424
|
"be.today": "⟦萬 ţóďάŷ 國⟧",
|
|
421
425
|
"be.topicsSkill": "⟦萬 ŤöΡίсş 國⟧",
|
|
422
426
|
"be.transcriptEdit": "⟦萬萬萬萬萬萬萬 Ċľíčк αйŷ ѕěčτĭőй ţô ęďιţ. 國國國國國國國⟧",
|
package/i18n/es-419.js
CHANGED
|
@@ -291,9 +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": "Unable to save changes. Please try again.",
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
|
|
294
296
|
"be.modifiedDate": "Modificado el {date}",
|
|
295
297
|
"be.modifiedDateBy": "Modificado el {date} por {name}",
|
|
296
298
|
"be.moreOptions": "Más opciones",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "Nombre: A → Z",
|
|
298
301
|
"be.nameDESC": "Nombre: Z → A",
|
|
299
302
|
"be.nameDate": "{date} por {name}",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
420
|
"be.skillUnknownError": "Se ha producido un error al ejecutar esta capacidad o al recuperar sus datos.",
|
|
418
421
|
"be.sort": "Ordenar",
|
|
419
422
|
"be.statusSkill": "Estado",
|
|
423
|
+
"be.success": "Success",
|
|
420
424
|
"be.today": "hoy",
|
|
421
425
|
"be.topicsSkill": "Temas",
|
|
422
426
|
"be.transcriptEdit": "Haga clic en cualquier sección para editarla.",
|
|
@@ -483,7 +487,7 @@ export default {
|
|
|
483
487
|
"boxui.categorySelector.label.more": "Más",
|
|
484
488
|
"boxui.checkboxTooltip.iconInfoText": "Información",
|
|
485
489
|
"boxui.classification.add": "Agregar",
|
|
486
|
-
"boxui.classification.appliedByBoxAi": "Box
|
|
490
|
+
"boxui.classification.appliedByBoxAi": "IA de Box",
|
|
487
491
|
"boxui.classification.appliedByBoxAiOnDate": "Box AI on {modifiedAt}",
|
|
488
492
|
"boxui.classification.classification": "Clasificación",
|
|
489
493
|
"boxui.classification.classificationDarkBlue": "Azul oscuro",
|
package/i18n/es-419.properties
CHANGED
|
@@ -582,12 +582,18 @@ be.messageCenter.previewError = Lo sentimos, no podemos mostrar esta imagen.
|
|
|
582
582
|
be.messageCenter.product = Producto
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = Novedades
|
|
585
|
+
# Text shown in error notification banner
|
|
586
|
+
be.metadataUpdateErrorNotification = Unable to save changes. Please try again.
|
|
587
|
+
# Text shown in success notification banner
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected, plural, =1 {1 document updated} other {# documents updated} }
|
|
585
589
|
# Text for modified date with modified prefix.
|
|
586
590
|
be.modifiedDate = Modificado el {date}
|
|
587
591
|
# Text for modified date with user with modified prefix.
|
|
588
592
|
be.modifiedDateBy = Modificado el {date} por {name}
|
|
589
593
|
# Label for a button that displays more options
|
|
590
594
|
be.moreOptions = Más opciones
|
|
595
|
+
# Display text for field when there are multiple items selected and have different value
|
|
596
|
+
be.multipleValues = Multiple Values
|
|
591
597
|
# Name ascending option shown in the share access drop down select.
|
|
592
598
|
be.nameASC = Nombre: A → Z
|
|
593
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -834,6 +840,8 @@ be.skillUnknownError = Se ha producido un error al ejecutar esta capacidad o al
|
|
|
834
840
|
be.sort = Ordenar
|
|
835
841
|
# Label for status skill card in the preview sidebar
|
|
836
842
|
be.statusSkill = Estado
|
|
843
|
+
# Generic success label.
|
|
844
|
+
be.success = Success
|
|
837
845
|
# Shown instead of todays date.
|
|
838
846
|
be.today = hoy
|
|
839
847
|
# Label for keywords/topics skill section in the preview sidebar
|
|
@@ -966,6 +974,10 @@ boxui.categorySelector.label.more = Más
|
|
|
966
974
|
boxui.checkboxTooltip.iconInfoText = Información
|
|
967
975
|
# Button to add classification on an item
|
|
968
976
|
boxui.classification.add = Agregar
|
|
977
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
978
|
+
boxui.classification.appliedByBoxAi = IA de Box
|
|
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 on {modifiedAt}
|
|
969
981
|
# Header for classification section in sidebar
|
|
970
982
|
boxui.classification.classification = Clasificación
|
|
971
983
|
# Classification label color name as dark blue
|
package/i18n/es-ES.js
CHANGED
|
@@ -291,9 +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": "Unable to save changes. Please try again.",
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
|
|
294
296
|
"be.modifiedDate": "Modificado el {date}",
|
|
295
297
|
"be.modifiedDateBy": "Modificado el {date} por {name}",
|
|
296
298
|
"be.moreOptions": "Más opciones",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "Nombre: A → Z",
|
|
298
301
|
"be.nameDESC": "Nombre: Z → A",
|
|
299
302
|
"be.nameDate": "{date} por {name}",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
420
|
"be.skillUnknownError": "Se ha producido un error al ejecutar esta capacidad o al recuperar sus datos.",
|
|
418
421
|
"be.sort": "Ordenar",
|
|
419
422
|
"be.statusSkill": "Estado",
|
|
423
|
+
"be.success": "Success",
|
|
420
424
|
"be.today": "hoy",
|
|
421
425
|
"be.topicsSkill": "Temas",
|
|
422
426
|
"be.transcriptEdit": "Haga clic en cualquier sección para editarla.",
|
|
@@ -483,7 +487,7 @@ export default {
|
|
|
483
487
|
"boxui.categorySelector.label.more": "Más",
|
|
484
488
|
"boxui.checkboxTooltip.iconInfoText": "Información",
|
|
485
489
|
"boxui.classification.add": "Agregar",
|
|
486
|
-
"boxui.classification.appliedByBoxAi": "Box
|
|
490
|
+
"boxui.classification.appliedByBoxAi": "IA de Box",
|
|
487
491
|
"boxui.classification.appliedByBoxAiOnDate": "Box AI on {modifiedAt}",
|
|
488
492
|
"boxui.classification.classification": "Clasificación",
|
|
489
493
|
"boxui.classification.classificationDarkBlue": "Azul oscuro",
|
package/i18n/es-ES.properties
CHANGED
|
@@ -582,12 +582,18 @@ be.messageCenter.previewError = Lo sentimos, no podemos mostrar esta imagen.
|
|
|
582
582
|
be.messageCenter.product = Producto
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = Novedades
|
|
585
|
+
# Text shown in error notification banner
|
|
586
|
+
be.metadataUpdateErrorNotification = Unable to save changes. Please try again.
|
|
587
|
+
# Text shown in success notification banner
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected, plural, =1 {1 document updated} other {# documents updated} }
|
|
585
589
|
# Text for modified date with modified prefix.
|
|
586
590
|
be.modifiedDate = Modificado el {date}
|
|
587
591
|
# Text for modified date with user with modified prefix.
|
|
588
592
|
be.modifiedDateBy = Modificado el {date} por {name}
|
|
589
593
|
# Label for a button that displays more options
|
|
590
594
|
be.moreOptions = Más opciones
|
|
595
|
+
# Display text for field when there are multiple items selected and have different value
|
|
596
|
+
be.multipleValues = Multiple Values
|
|
591
597
|
# Name ascending option shown in the share access drop down select.
|
|
592
598
|
be.nameASC = Nombre: A → Z
|
|
593
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -834,6 +840,8 @@ be.skillUnknownError = Se ha producido un error al ejecutar esta capacidad o al
|
|
|
834
840
|
be.sort = Ordenar
|
|
835
841
|
# Label for status skill card in the preview sidebar
|
|
836
842
|
be.statusSkill = Estado
|
|
843
|
+
# Generic success label.
|
|
844
|
+
be.success = Success
|
|
837
845
|
# Shown instead of todays date.
|
|
838
846
|
be.today = hoy
|
|
839
847
|
# Label for keywords/topics skill section in the preview sidebar
|
|
@@ -966,6 +974,10 @@ boxui.categorySelector.label.more = Más
|
|
|
966
974
|
boxui.checkboxTooltip.iconInfoText = Información
|
|
967
975
|
# Button to add classification on an item
|
|
968
976
|
boxui.classification.add = Agregar
|
|
977
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
978
|
+
boxui.classification.appliedByBoxAi = IA de Box
|
|
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 on {modifiedAt}
|
|
969
981
|
# Header for classification section in sidebar
|
|
970
982
|
boxui.classification.classification = Clasificación
|
|
971
983
|
# Classification label color name as dark blue
|
package/i18n/fi-FI.js
CHANGED
|
@@ -291,9 +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": "Unable to save changes. Please try again.",
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
|
|
294
296
|
"be.modifiedDate": "Muokattu {date}",
|
|
295
297
|
"be.modifiedDateBy": "Muokattu {date}, käyttäjä {name}",
|
|
296
298
|
"be.moreOptions": "Lisäasetukset",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "Nimi: A → Ö",
|
|
298
301
|
"be.nameDESC": "Nimi: Ö → A",
|
|
299
302
|
"be.nameDate": "{date}, käyttäjä {name}",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
420
|
"be.skillUnknownError": "Tapahtui virhe osaamisen suorittamisessa tai sen tietojen hakemisessa.",
|
|
418
421
|
"be.sort": "Lajittele",
|
|
419
422
|
"be.statusSkill": "Tila",
|
|
423
|
+
"be.success": "Success",
|
|
420
424
|
"be.today": "tänään",
|
|
421
425
|
"be.topicsSkill": "Aiheet",
|
|
422
426
|
"be.transcriptEdit": "Napsauta muokattavaa kohtaa.",
|
package/i18n/fi-FI.properties
CHANGED
|
@@ -582,12 +582,18 @@ be.messageCenter.previewError = Kuvaa ei voida juuri nyt näyttää.
|
|
|
582
582
|
be.messageCenter.product = Tuote
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = Uudet ominaisuudet
|
|
585
|
+
# Text shown in error notification banner
|
|
586
|
+
be.metadataUpdateErrorNotification = Unable to save changes. Please try again.
|
|
587
|
+
# Text shown in success notification banner
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected, plural, =1 {1 document updated} other {# documents updated} }
|
|
585
589
|
# Text for modified date with modified prefix.
|
|
586
590
|
be.modifiedDate = Muokattu {date}
|
|
587
591
|
# Text for modified date with user with modified prefix.
|
|
588
592
|
be.modifiedDateBy = Muokattu {date}, käyttäjä {name}
|
|
589
593
|
# Label for a button that displays more options
|
|
590
594
|
be.moreOptions = Lisäasetukset
|
|
595
|
+
# Display text for field when there are multiple items selected and have different value
|
|
596
|
+
be.multipleValues = Multiple Values
|
|
591
597
|
# Name ascending option shown in the share access drop down select.
|
|
592
598
|
be.nameASC = Nimi: A → Ö
|
|
593
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -834,6 +840,8 @@ be.skillUnknownError = Tapahtui virhe osaamisen suorittamisessa tai sen tietojen
|
|
|
834
840
|
be.sort = Lajittele
|
|
835
841
|
# Label for status skill card in the preview sidebar
|
|
836
842
|
be.statusSkill = Tila
|
|
843
|
+
# Generic success label.
|
|
844
|
+
be.success = Success
|
|
837
845
|
# Shown instead of todays date.
|
|
838
846
|
be.today = tänään
|
|
839
847
|
# Label for keywords/topics skill section in the preview sidebar
|
|
@@ -966,6 +974,10 @@ boxui.categorySelector.label.more = Lisää
|
|
|
966
974
|
boxui.checkboxTooltip.iconInfoText = Tiedot
|
|
967
975
|
# Button to add classification on an item
|
|
968
976
|
boxui.classification.add = Lisää
|
|
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 AI
|
|
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 on {modifiedAt}
|
|
969
981
|
# Header for classification section in sidebar
|
|
970
982
|
boxui.classification.classification = Luokitus
|
|
971
983
|
# Classification label color name as dark blue
|
package/i18n/fr-CA.js
CHANGED
|
@@ -291,9 +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": "Unable to save changes. Please try again.",
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
|
|
294
296
|
"be.modifiedDate": "Dernière modification le {date}",
|
|
295
297
|
"be.modifiedDateBy": "Dernière modification effectuée le {date} par {name}",
|
|
296
298
|
"be.moreOptions": "Plus d'options",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "Nom : de A à Z",
|
|
298
301
|
"be.nameDESC": "Nom : de Z à A",
|
|
299
302
|
"be.nameDate": "{date} par {name}",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
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.",
|
|
418
421
|
"be.sort": "Trier",
|
|
419
422
|
"be.statusSkill": "État",
|
|
423
|
+
"be.success": "Success",
|
|
420
424
|
"be.today": "aujourd'hui",
|
|
421
425
|
"be.topicsSkill": "Sujets",
|
|
422
426
|
"be.transcriptEdit": "Cliquez sur la section de votre choix pour effectuer des modifications.",
|
package/i18n/fr-CA.properties
CHANGED
|
@@ -582,12 +582,18 @@ be.messageCenter.previewError = Désolé, nous ne parvenons pas à afficher cett
|
|
|
582
582
|
be.messageCenter.product = Produit
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = Nouveautés
|
|
585
|
+
# Text shown in error notification banner
|
|
586
|
+
be.metadataUpdateErrorNotification = Unable to save changes. Please try again.
|
|
587
|
+
# Text shown in success notification banner
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected, plural, =1 {1 document updated} other {# documents updated} }
|
|
585
589
|
# Text for modified date with modified prefix.
|
|
586
590
|
be.modifiedDate = Dernière modification le {date}
|
|
587
591
|
# Text for modified date with user with modified prefix.
|
|
588
592
|
be.modifiedDateBy = Dernière modification effectuée le {date} par {name}
|
|
589
593
|
# Label for a button that displays more options
|
|
590
594
|
be.moreOptions = Plus d'options
|
|
595
|
+
# Display text for field when there are multiple items selected and have different value
|
|
596
|
+
be.multipleValues = Multiple Values
|
|
591
597
|
# Name ascending option shown in the share access drop down select.
|
|
592
598
|
be.nameASC = Nom : de A à Z
|
|
593
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -834,6 +840,8 @@ be.skillUnknownError = Une erreur est survenue lors de l'exécution de cette com
|
|
|
834
840
|
be.sort = Trier
|
|
835
841
|
# Label for status skill card in the preview sidebar
|
|
836
842
|
be.statusSkill = État
|
|
843
|
+
# Generic success label.
|
|
844
|
+
be.success = Success
|
|
837
845
|
# Shown instead of todays date.
|
|
838
846
|
be.today = aujourd'hui
|
|
839
847
|
# Label for keywords/topics skill section in the preview sidebar
|
|
@@ -966,6 +974,10 @@ boxui.categorySelector.label.more = Plus
|
|
|
966
974
|
boxui.checkboxTooltip.iconInfoText = Info
|
|
967
975
|
# Button to add classification on an item
|
|
968
976
|
boxui.classification.add = Ajouter
|
|
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 AI
|
|
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 on {modifiedAt}
|
|
969
981
|
# Header for classification section in sidebar
|
|
970
982
|
boxui.classification.classification = Classement
|
|
971
983
|
# Classification label color name as dark blue
|