box-ui-elements 24.0.0-beta.4 → 24.0.0-beta.5
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/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 +2 -1
- package/es/elements/content-explorer/Content.js.map +1 -1
- package/es/elements/content-explorer/ContentExplorer.js +19 -5
- package/es/elements/content-explorer/ContentExplorer.js.map +1 -1
- package/es/elements/content-explorer/MetadataQueryAPIHelper.js +61 -4
- package/es/elements/content-explorer/MetadataQueryAPIHelper.js.map +1 -1
- 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 +55 -4
- package/es/elements/content-explorer/MetadataViewContainer.js.map +1 -1
- package/es/elements/content-explorer/stories/tests/MetadataView-visual.stories.js +61 -13
- 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/content-explorer/ContentExplorer.d.ts +11 -3
- package/es/src/elements/content-explorer/MetadataQueryAPIHelper.d.ts +11 -1
- package/es/src/elements/content-explorer/MetadataSidePanel.d.ts +6 -3
- package/es/src/elements/content-explorer/MetadataViewContainer.d.ts +3 -1
- 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 +4 -0
- package/i18n/da-DK.js +4 -0
- package/i18n/da-DK.properties +4 -0
- package/i18n/de-DE.js +5 -1
- package/i18n/de-DE.properties +4 -0
- package/i18n/en-AU.js +4 -0
- package/i18n/en-AU.properties +4 -0
- package/i18n/en-CA.js +4 -0
- package/i18n/en-CA.properties +4 -0
- package/i18n/en-GB.js +4 -0
- package/i18n/en-GB.properties +4 -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 +4 -0
- package/i18n/es-ES.js +5 -1
- package/i18n/es-ES.properties +4 -0
- package/i18n/fi-FI.js +4 -0
- package/i18n/fi-FI.properties +4 -0
- package/i18n/fr-CA.js +4 -0
- package/i18n/fr-CA.properties +4 -0
- package/i18n/fr-FR.js +4 -0
- package/i18n/fr-FR.properties +4 -0
- package/i18n/hi-IN.js +4 -0
- package/i18n/hi-IN.properties +4 -0
- package/i18n/it-IT.js +4 -0
- package/i18n/it-IT.properties +4 -0
- package/i18n/ja-JP.js +6 -2
- package/i18n/ja-JP.properties +6 -2
- package/i18n/ko-KR.js +4 -0
- package/i18n/ko-KR.properties +4 -0
- package/i18n/nb-NO.js +4 -0
- package/i18n/nb-NO.properties +4 -0
- package/i18n/nl-NL.js +4 -0
- package/i18n/nl-NL.properties +4 -0
- package/i18n/pl-PL.js +4 -0
- package/i18n/pl-PL.properties +4 -0
- package/i18n/pt-BR.js +4 -0
- package/i18n/pt-BR.properties +4 -0
- package/i18n/ru-RU.js +5 -1
- package/i18n/ru-RU.properties +4 -0
- package/i18n/sv-SE.js +4 -0
- package/i18n/sv-SE.properties +4 -0
- package/i18n/tr-TR.js +5 -1
- package/i18n/tr-TR.properties +4 -0
- package/i18n/zh-CN.js +4 -0
- package/i18n/zh-CN.properties +4 -0
- package/i18n/zh-TW.js +4 -0
- package/i18n/zh-TW.properties +4 -0
- package/package.json +1 -1
- package/src/api/Metadata.js +110 -12
- package/src/api/__tests__/Metadata.test.js +120 -0
- package/src/elements/common/messages.js +25 -0
- package/src/elements/content-explorer/Content.tsx +1 -0
- package/src/elements/content-explorer/ContentExplorer.tsx +220 -181
- package/src/elements/content-explorer/MetadataQueryAPIHelper.ts +89 -4
- package/src/elements/content-explorer/MetadataSidePanel.tsx +55 -14
- package/src/elements/content-explorer/MetadataViewContainer.tsx +61 -1
- package/src/elements/content-explorer/__tests__/ContentExplorer.test.tsx +36 -2
- package/src/elements/content-explorer/__tests__/MetadataQueryAPIHelper.test.ts +8 -5
- package/src/elements/content-explorer/__tests__/MetadataSidePanel.test.tsx +145 -3
- package/src/elements/content-explorer/stories/tests/MetadataView-visual.stories.tsx +54 -8
- package/src/elements/content-explorer/utils.ts +150 -13
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
|
@@ -966,6 +966,10 @@ boxui.categorySelector.label.more = More
|
|
|
966
966
|
boxui.checkboxTooltip.iconInfoText = Info
|
|
967
967
|
# Button to add classification on an item
|
|
968
968
|
boxui.classification.add = Add
|
|
969
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
970
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
971
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
972
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
973
|
# Header for classification section in sidebar
|
|
970
974
|
boxui.classification.classification = Classification
|
|
971
975
|
# 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
|
@@ -966,6 +966,10 @@ boxui.categorySelector.label.more = More
|
|
|
966
966
|
boxui.checkboxTooltip.iconInfoText = Info
|
|
967
967
|
# Button to add classification on an item
|
|
968
968
|
boxui.classification.add = Add
|
|
969
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
970
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
971
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
972
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
973
|
# Header for classification section in sidebar
|
|
970
974
|
boxui.classification.classification = Classification
|
|
971
975
|
# 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
|
@@ -966,6 +966,10 @@ boxui.categorySelector.label.more = Más
|
|
|
966
966
|
boxui.checkboxTooltip.iconInfoText = Información
|
|
967
967
|
# Button to add classification on an item
|
|
968
968
|
boxui.classification.add = Agregar
|
|
969
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
970
|
+
boxui.classification.appliedByBoxAi = IA de Box
|
|
971
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
972
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
973
|
# Header for classification section in sidebar
|
|
970
974
|
boxui.classification.classification = Clasificación
|
|
971
975
|
# 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
|
@@ -966,6 +966,10 @@ boxui.categorySelector.label.more = Más
|
|
|
966
966
|
boxui.checkboxTooltip.iconInfoText = Información
|
|
967
967
|
# Button to add classification on an item
|
|
968
968
|
boxui.classification.add = Agregar
|
|
969
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
970
|
+
boxui.classification.appliedByBoxAi = IA de Box
|
|
971
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
972
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
973
|
# Header for classification section in sidebar
|
|
970
974
|
boxui.classification.classification = Clasificación
|
|
971
975
|
# 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
|
@@ -966,6 +966,10 @@ boxui.categorySelector.label.more = Lisää
|
|
|
966
966
|
boxui.checkboxTooltip.iconInfoText = Tiedot
|
|
967
967
|
# Button to add classification on an item
|
|
968
968
|
boxui.classification.add = Lisää
|
|
969
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
970
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
971
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
972
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
973
|
# Header for classification section in sidebar
|
|
970
974
|
boxui.classification.classification = Luokitus
|
|
971
975
|
# 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
|
@@ -966,6 +966,10 @@ boxui.categorySelector.label.more = Plus
|
|
|
966
966
|
boxui.checkboxTooltip.iconInfoText = Info
|
|
967
967
|
# Button to add classification on an item
|
|
968
968
|
boxui.classification.add = Ajouter
|
|
969
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
970
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
971
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
972
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
973
|
# Header for classification section in sidebar
|
|
970
974
|
boxui.classification.classification = Classement
|
|
971
975
|
# Classification label color name as dark blue
|
package/i18n/fr-FR.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-FR.properties
CHANGED
|
@@ -966,6 +966,10 @@ boxui.categorySelector.label.more = Plus
|
|
|
966
966
|
boxui.checkboxTooltip.iconInfoText = Info
|
|
967
967
|
# Button to add classification on an item
|
|
968
968
|
boxui.classification.add = Ajouter
|
|
969
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
970
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
971
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
972
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
973
|
# Header for classification section in sidebar
|
|
970
974
|
boxui.classification.classification = Classement
|
|
971
975
|
# Classification label color name as dark blue
|
package/i18n/hi-IN.js
CHANGED
|
@@ -291,9 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "क्षमा करें, हमें यह छवि दिखाने में समस्या हो रही है.",
|
|
292
292
|
"be.messageCenter.product": "उत्पाद",
|
|
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": "{name} द्वारा {date} को संशोधित",
|
|
296
298
|
"be.moreOptions": "और विकल्प",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "नाम: A → Z",
|
|
298
301
|
"be.nameDESC": "नाम: Z → A",
|
|
299
302
|
"be.nameDate": "{name} द्वारा {date} को",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
420
|
"be.skillUnknownError": "यह युक्ति चलाते समय या इसका डेटा प्राप्त करते समय कुछ गलत हुआ.",
|
|
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/hi-IN.properties
CHANGED
|
@@ -966,6 +966,10 @@ boxui.categorySelector.label.more = अधिक
|
|
|
966
966
|
boxui.checkboxTooltip.iconInfoText = जानकारी
|
|
967
967
|
# Button to add classification on an item
|
|
968
968
|
boxui.classification.add = जोड़ें
|
|
969
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
970
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
971
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
972
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
973
|
# Header for classification section in sidebar
|
|
970
974
|
boxui.classification.classification = वर्गीकरण
|
|
971
975
|
# Classification label color name as dark blue
|
package/i18n/it-IT.js
CHANGED
|
@@ -291,9 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "Stiamo riscontrando problemi con la visualizzazione di questa immagine.",
|
|
292
292
|
"be.messageCenter.product": "Prodotto",
|
|
293
293
|
"be.messageCenter.title": "Novità",
|
|
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": "Data di modifica: {date}",
|
|
295
297
|
"be.modifiedDateBy": "Data di modifica: {date}, autore: {name}",
|
|
296
298
|
"be.moreOptions": "Altre opzioni",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "Nome: A → Z",
|
|
298
301
|
"be.nameDESC": "Nome: Z → A",
|
|
299
302
|
"be.nameDate": "{date} da {name}",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
420
|
"be.skillUnknownError": "Si è verificato un problema nell'esecuzione di questa skill o nel recupero dei relativi dati.",
|
|
418
421
|
"be.sort": "Ordina",
|
|
419
422
|
"be.statusSkill": "Stato",
|
|
423
|
+
"be.success": "Success",
|
|
420
424
|
"be.today": "oggi",
|
|
421
425
|
"be.topicsSkill": "Argomenti",
|
|
422
426
|
"be.transcriptEdit": "Fai clic su qualsiasi sezione per modificare.",
|
package/i18n/it-IT.properties
CHANGED
|
@@ -966,6 +966,10 @@ boxui.categorySelector.label.more = Altro
|
|
|
966
966
|
boxui.checkboxTooltip.iconInfoText = Informazioni
|
|
967
967
|
# Button to add classification on an item
|
|
968
968
|
boxui.classification.add = Aggiungi
|
|
969
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
970
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
971
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
972
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
973
|
# Header for classification section in sidebar
|
|
970
974
|
boxui.classification.classification = Classificazione
|
|
971
975
|
# Classification label color name as dark blue
|
package/i18n/ja-JP.js
CHANGED
|
@@ -109,7 +109,7 @@ export default {
|
|
|
109
109
|
"be.contentSidebar.activityFeed.commentForm.commentCancel": "キャンセル",
|
|
110
110
|
"be.contentSidebar.activityFeed.commentForm.commentLabel": "コメントを入力",
|
|
111
111
|
"be.contentSidebar.activityFeed.commentForm.commentPost": "投稿",
|
|
112
|
-
"be.contentSidebar.activityFeed.commentForm.commentTimestampLabel": "
|
|
112
|
+
"be.contentSidebar.activityFeed.commentForm.commentTimestampLabel": "タイムスタンプ付きでコメントする",
|
|
113
113
|
"be.contentSidebar.activityFeed.commentForm.commentWrite": "コメントを入力",
|
|
114
114
|
"be.contentSidebar.activityFeed.commmon.showOriginalMessage": "オリジナルを表示",
|
|
115
115
|
"be.contentSidebar.activityFeed.common.activityStatusResolved": "対応済み",
|
|
@@ -291,9 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "この画像を表示できません。",
|
|
292
292
|
"be.messageCenter.product": "製品",
|
|
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": "その他のオプション",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "名前: A → Z",
|
|
298
301
|
"be.nameDESC": "名前: Z → A",
|
|
299
302
|
"be.nameDate": "{date}、更新者: {name}",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
420
|
"be.skillUnknownError": "このスキルの実行中またはデータの取得中に問題が発生しました。",
|
|
418
421
|
"be.sort": "並べ替え",
|
|
419
422
|
"be.statusSkill": "ステータス",
|
|
423
|
+
"be.success": "Success",
|
|
420
424
|
"be.today": "今日",
|
|
421
425
|
"be.topicsSkill": "トピック",
|
|
422
426
|
"be.transcriptEdit": "編集するセクションをクリックします。",
|
|
@@ -915,7 +919,7 @@ export default {
|
|
|
915
919
|
"boxui.shareMenu.shortcutOnly": "ショートカットのみ",
|
|
916
920
|
"boxui.shareMenu.viewAndDownload": "表示とダウンロード",
|
|
917
921
|
"boxui.shareMenu.viewOnly": "表示のみ",
|
|
918
|
-
"boxui.subHeader.bulkItemActionMenuAriaLabel": "
|
|
922
|
+
"boxui.subHeader.bulkItemActionMenuAriaLabel": "一括操作",
|
|
919
923
|
"boxui.subHeader.metadata": "メタデータ",
|
|
920
924
|
"boxui.timeInput.emptyTimeError": "必須フィールドです。HH:MM AM/PM形式で時間を入力してください。",
|
|
921
925
|
"boxui.timeInput.invalidTimeError": "時間の形式が無効です。HH:MM AM/PM形式で時間を入力してください。",
|
package/i18n/ja-JP.properties
CHANGED
|
@@ -219,7 +219,7 @@ be.contentSidebar.activityFeed.commentForm.commentLabel = コメントを入力
|
|
|
219
219
|
# Text for post button
|
|
220
220
|
be.contentSidebar.activityFeed.commentForm.commentPost = 投稿
|
|
221
221
|
# Label for toggle to add video timestamp to comment
|
|
222
|
-
be.contentSidebar.activityFeed.commentForm.commentTimestampLabel =
|
|
222
|
+
be.contentSidebar.activityFeed.commentForm.commentTimestampLabel = タイムスタンプ付きでコメントする
|
|
223
223
|
# Placeholder for comment input
|
|
224
224
|
be.contentSidebar.activityFeed.commentForm.commentWrite = コメントを入力
|
|
225
225
|
# Show original button for showing original comment
|
|
@@ -966,6 +966,10 @@ boxui.categorySelector.label.more = その他
|
|
|
966
966
|
boxui.checkboxTooltip.iconInfoText = 情報
|
|
967
967
|
# Button to add classification on an item
|
|
968
968
|
boxui.classification.add = 追加
|
|
969
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
970
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
971
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
972
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
973
|
# Header for classification section in sidebar
|
|
970
974
|
boxui.classification.classification = 分類
|
|
971
975
|
# Classification label color name as dark blue
|
|
@@ -1827,7 +1831,7 @@ boxui.shareMenu.viewAndDownload = 表示とダウンロード
|
|
|
1827
1831
|
# Description of permissions granted to users who have access to the shared link
|
|
1828
1832
|
boxui.shareMenu.viewOnly = 表示のみ
|
|
1829
1833
|
# Aria-label for the dropdown menu that shows actions for selected items
|
|
1830
|
-
boxui.subHeader.bulkItemActionMenuAriaLabel =
|
|
1834
|
+
boxui.subHeader.bulkItemActionMenuAriaLabel = 一括操作
|
|
1831
1835
|
# Text for metadata button that will open the metadata side panel
|
|
1832
1836
|
boxui.subHeader.metadata = メタデータ
|
|
1833
1837
|
# Error message for empty time formats. "HH:MM A" should be localized.
|
package/i18n/ko-KR.js
CHANGED
|
@@ -291,9 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "죄송합니다. 이 이미지를 표시하는 중 문제가 발생했습니다.",
|
|
292
292
|
"be.messageCenter.product": "제품",
|
|
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": "추가 옵션",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "이름: A → Z",
|
|
298
301
|
"be.nameDESC": "이름: Z → A",
|
|
299
302
|
"be.nameDate": "{date}, {name}",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
420
|
"be.skillUnknownError": "이 스킬을 실행하는 중 또는 해당 데이터를 가져오는 중 문제가 발생했습니다.",
|
|
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/ko-KR.properties
CHANGED
|
@@ -966,6 +966,10 @@ boxui.categorySelector.label.more = 더 보기
|
|
|
966
966
|
boxui.checkboxTooltip.iconInfoText = 정보
|
|
967
967
|
# Button to add classification on an item
|
|
968
968
|
boxui.classification.add = 추가
|
|
969
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
970
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
971
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
972
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
973
|
# Header for classification section in sidebar
|
|
970
974
|
boxui.classification.classification = 분류
|
|
971
975
|
# Classification label color name as dark blue
|
package/i18n/nb-NO.js
CHANGED
|
@@ -291,9 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "Beklager, vi har problemer med å vise dette bildet.",
|
|
292
292
|
"be.messageCenter.product": "Produkt",
|
|
293
293
|
"be.messageCenter.title": "Nytt",
|
|
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": "Endret {date}",
|
|
295
297
|
"be.modifiedDateBy": "Endret {date} av {name}",
|
|
296
298
|
"be.moreOptions": "Flere alternativer",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "Navn: A → Å",
|
|
298
301
|
"be.nameDESC": "Navn: Å → A",
|
|
299
302
|
"be.nameDate": "{date} av {name}",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
420
|
"be.skillUnknownError": "Kan ikke kjøre denne ferdigheten eller hente dataene for den.",
|
|
418
421
|
"be.sort": "Sorter",
|
|
419
422
|
"be.statusSkill": "Status",
|
|
423
|
+
"be.success": "Success",
|
|
420
424
|
"be.today": "i dag",
|
|
421
425
|
"be.topicsSkill": "Emner",
|
|
422
426
|
"be.transcriptEdit": "Klikk på en del for å redigere den.",
|
package/i18n/nb-NO.properties
CHANGED
|
@@ -966,6 +966,10 @@ boxui.categorySelector.label.more = Mer
|
|
|
966
966
|
boxui.checkboxTooltip.iconInfoText = Informasjon
|
|
967
967
|
# Button to add classification on an item
|
|
968
968
|
boxui.classification.add = Legg til
|
|
969
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
970
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
971
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
972
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
973
|
# Header for classification section in sidebar
|
|
970
974
|
boxui.classification.classification = Klassifisering
|
|
971
975
|
# Classification label color name as dark blue
|
package/i18n/nl-NL.js
CHANGED
|
@@ -291,9 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "Er zijn problemen met het weergeven van deze afbeelding.",
|
|
292
292
|
"be.messageCenter.product": "Product",
|
|
293
293
|
"be.messageCenter.title": "Nieuwe functies",
|
|
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": "Gewijzigd op: {date}",
|
|
295
297
|
"be.modifiedDateBy": "Gewijzigd op {date} door {name}",
|
|
296
298
|
"be.moreOptions": "Meer opties",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "Naam: A → Z",
|
|
298
301
|
"be.nameDESC": "Naam: Z → A",
|
|
299
302
|
"be.nameDate": "{date} door {name}",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
420
|
"be.skillUnknownError": "Er is iets fout gegaan met deze skill of het ophalen van de gegevens.",
|
|
418
421
|
"be.sort": "Sorteren",
|
|
419
422
|
"be.statusSkill": "Status",
|
|
423
|
+
"be.success": "Success",
|
|
420
424
|
"be.today": "vandaag",
|
|
421
425
|
"be.topicsSkill": "Onderwerpen",
|
|
422
426
|
"be.transcriptEdit": "Klik op een sectie om deze te bewerken.",
|
package/i18n/nl-NL.properties
CHANGED
|
@@ -966,6 +966,10 @@ boxui.categorySelector.label.more = Meer
|
|
|
966
966
|
boxui.checkboxTooltip.iconInfoText = Info
|
|
967
967
|
# Button to add classification on an item
|
|
968
968
|
boxui.classification.add = Toevoegen
|
|
969
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
970
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
971
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
972
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
973
|
# Header for classification section in sidebar
|
|
970
974
|
boxui.classification.classification = Classificatie
|
|
971
975
|
# Classification label color name as dark blue
|
package/i18n/pl-PL.js
CHANGED
|
@@ -291,9 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "Przepraszamy, występują problemy z wyświetlaniem tego obrazu.",
|
|
292
292
|
"be.messageCenter.product": "Produkt",
|
|
293
293
|
"be.messageCenter.title": "Co nowego",
|
|
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": "Ostatnia modyfikacja: {date}",
|
|
295
297
|
"be.modifiedDateBy": "Zmieniono {date} przez użytkownika {name}",
|
|
296
298
|
"be.moreOptions": "Więcej opcji",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "Nazwa: A → Z",
|
|
298
301
|
"be.nameDESC": "Nazwa: Z → A",
|
|
299
302
|
"be.nameDate": "{date} przez użytkownika {name}",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
420
|
"be.skillUnknownError": "Podczas uruchamiania umiejętności lub pobierania danych wystąpił błąd.",
|
|
418
421
|
"be.sort": "Sortuj",
|
|
419
422
|
"be.statusSkill": "Stan",
|
|
423
|
+
"be.success": "Success",
|
|
420
424
|
"be.today": "dziś",
|
|
421
425
|
"be.topicsSkill": "Tematy",
|
|
422
426
|
"be.transcriptEdit": "Kliknij dowolną sekcję, aby edytować.",
|
package/i18n/pl-PL.properties
CHANGED
|
@@ -966,6 +966,10 @@ boxui.categorySelector.label.more = Więcej
|
|
|
966
966
|
boxui.checkboxTooltip.iconInfoText = Informacje
|
|
967
967
|
# Button to add classification on an item
|
|
968
968
|
boxui.classification.add = Dodaj
|
|
969
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
970
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
971
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
972
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
973
|
# Header for classification section in sidebar
|
|
970
974
|
boxui.classification.classification = Klasyfikacja
|
|
971
975
|
# Classification label color name as dark blue
|
package/i18n/pt-BR.js
CHANGED
|
@@ -291,9 +291,12 @@ export default {
|
|
|
291
291
|
"be.messageCenter.previewError": "Lamentamos, mas estamos com problemas para exibir esta imagem.",
|
|
292
292
|
"be.messageCenter.product": "Produto",
|
|
293
293
|
"be.messageCenter.title": "Novidades",
|
|
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": "Alterado em {date}",
|
|
295
297
|
"be.modifiedDateBy": "Modificado em {date} por {name}",
|
|
296
298
|
"be.moreOptions": "Mais opções",
|
|
299
|
+
"be.multipleValues": "Multiple Values",
|
|
297
300
|
"be.nameASC": "Nome: A → Z",
|
|
298
301
|
"be.nameDESC": "Nome: Z → A",
|
|
299
302
|
"be.nameDate": "{date} por {name}",
|
|
@@ -417,6 +420,7 @@ export default {
|
|
|
417
420
|
"be.skillUnknownError": "Ocorreu um erro ao executar esta habilidade ou ao obter esses dados.",
|
|
418
421
|
"be.sort": "Classificar",
|
|
419
422
|
"be.statusSkill": "Status",
|
|
423
|
+
"be.success": "Success",
|
|
420
424
|
"be.today": "hoje",
|
|
421
425
|
"be.topicsSkill": "Tópicos",
|
|
422
426
|
"be.transcriptEdit": "Clique em qualquer seção para editar.",
|