box-ui-elements 24.0.0-beta.5 → 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.
Files changed (85) hide show
  1. package/dist/explorer.css +1 -1
  2. package/dist/explorer.js +1 -1
  3. package/es/elements/content-explorer/Content.js +3 -1
  4. package/es/elements/content-explorer/Content.js.map +1 -1
  5. package/es/elements/content-explorer/ContentExplorer.js +16 -5
  6. package/es/elements/content-explorer/ContentExplorer.js.map +1 -1
  7. package/es/elements/content-explorer/MetadataQueryAPIHelper.js +104 -7
  8. package/es/elements/content-explorer/MetadataQueryAPIHelper.js.map +1 -1
  9. package/es/elements/content-explorer/MetadataQueryBuilder.js +115 -0
  10. package/es/elements/content-explorer/MetadataQueryBuilder.js.map +1 -0
  11. package/es/elements/content-explorer/MetadataViewContainer.js +92 -46
  12. package/es/elements/content-explorer/MetadataViewContainer.js.map +1 -1
  13. package/es/elements/content-explorer/stories/MetadataView.stories.js +3 -25
  14. package/es/elements/content-explorer/stories/MetadataView.stories.js.map +1 -1
  15. package/es/elements/content-explorer/stories/tests/MetadataView-visual.stories.js +4 -16
  16. package/es/elements/content-explorer/stories/tests/MetadataView-visual.stories.js.map +1 -1
  17. package/es/src/elements/common/__mocks__/mockMetadata.d.ts +8 -24
  18. package/es/src/elements/content-explorer/Content.d.ts +4 -3
  19. package/es/src/elements/content-explorer/ContentExplorer.d.ts +8 -3
  20. package/es/src/elements/content-explorer/MetadataQueryAPIHelper.d.ts +11 -2
  21. package/es/src/elements/content-explorer/MetadataQueryBuilder.d.ts +27 -0
  22. package/es/src/elements/content-explorer/MetadataViewContainer.d.ts +8 -4
  23. package/es/src/elements/content-explorer/__tests__/MetadataQueryBuilder.test.d.ts +1 -0
  24. package/i18n/bn-IN.js +1 -1
  25. package/i18n/bn-IN.properties +8 -0
  26. package/i18n/da-DK.js +1 -1
  27. package/i18n/da-DK.properties +8 -0
  28. package/i18n/de-DE.js +1 -1
  29. package/i18n/de-DE.properties +8 -0
  30. package/i18n/en-AU.js +1 -1
  31. package/i18n/en-AU.properties +8 -0
  32. package/i18n/en-CA.js +1 -1
  33. package/i18n/en-CA.properties +8 -0
  34. package/i18n/en-GB.js +1 -1
  35. package/i18n/en-GB.properties +8 -0
  36. package/i18n/es-419.js +1 -1
  37. package/i18n/es-419.properties +8 -0
  38. package/i18n/es-ES.js +1 -1
  39. package/i18n/es-ES.properties +8 -0
  40. package/i18n/fi-FI.js +1 -1
  41. package/i18n/fi-FI.properties +8 -0
  42. package/i18n/fr-CA.js +1 -1
  43. package/i18n/fr-CA.properties +8 -0
  44. package/i18n/fr-FR.js +1 -1
  45. package/i18n/fr-FR.properties +8 -0
  46. package/i18n/hi-IN.js +1 -1
  47. package/i18n/hi-IN.properties +8 -0
  48. package/i18n/it-IT.js +1 -1
  49. package/i18n/it-IT.properties +8 -0
  50. package/i18n/ja-JP.js +1 -1
  51. package/i18n/ja-JP.properties +8 -0
  52. package/i18n/ko-KR.js +1 -1
  53. package/i18n/ko-KR.properties +8 -0
  54. package/i18n/nb-NO.js +1 -1
  55. package/i18n/nb-NO.properties +8 -0
  56. package/i18n/nl-NL.js +1 -1
  57. package/i18n/nl-NL.properties +8 -0
  58. package/i18n/pl-PL.js +1 -1
  59. package/i18n/pl-PL.properties +8 -0
  60. package/i18n/pt-BR.js +1 -1
  61. package/i18n/pt-BR.properties +8 -0
  62. package/i18n/ru-RU.js +1 -1
  63. package/i18n/ru-RU.properties +8 -0
  64. package/i18n/sv-SE.js +1 -1
  65. package/i18n/sv-SE.properties +8 -0
  66. package/i18n/tr-TR.js +1 -1
  67. package/i18n/tr-TR.properties +8 -0
  68. package/i18n/zh-CN.js +1 -1
  69. package/i18n/zh-CN.properties +8 -0
  70. package/i18n/zh-TW.js +1 -1
  71. package/i18n/zh-TW.properties +8 -0
  72. package/package.json +3 -3
  73. package/src/elements/common/__mocks__/mockMetadata.ts +7 -11
  74. package/src/elements/content-explorer/Content.tsx +8 -2
  75. package/src/elements/content-explorer/ContentExplorer.tsx +208 -193
  76. package/src/elements/content-explorer/MetadataQueryAPIHelper.ts +111 -5
  77. package/src/elements/content-explorer/MetadataQueryBuilder.ts +159 -0
  78. package/src/elements/content-explorer/MetadataViewContainer.tsx +112 -37
  79. package/src/elements/content-explorer/__tests__/Content.test.tsx +1 -0
  80. package/src/elements/content-explorer/__tests__/ContentExplorer.test.tsx +2 -5
  81. package/src/elements/content-explorer/__tests__/MetadataQueryAPIHelper.test.ts +421 -8
  82. package/src/elements/content-explorer/__tests__/MetadataQueryBuilder.test.ts +419 -0
  83. package/src/elements/content-explorer/__tests__/MetadataViewContainer.test.tsx +413 -9
  84. package/src/elements/content-explorer/stories/MetadataView.stories.tsx +3 -21
  85. package/src/elements/content-explorer/stories/tests/MetadataView-visual.stories.tsx +2 -13
package/i18n/da-DK.js CHANGED
@@ -292,7 +292,7 @@ export default {
292
292
  "be.messageCenter.product": "Produkt",
293
293
  "be.messageCenter.title": "Nyheder",
294
294
  "be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
295
- "be.metadataUpdateSuccessNotification": " {numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
295
+ "be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
296
296
  "be.modifiedDate": "Ændret {date}",
297
297
  "be.modifiedDateBy": "Ændret {date} af {name}",
298
298
  "be.moreOptions": "Flere muligheder",
@@ -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
package/i18n/de-DE.js CHANGED
@@ -292,7 +292,7 @@ export default {
292
292
  "be.messageCenter.product": "Produkt",
293
293
  "be.messageCenter.title": "Neuerungen",
294
294
  "be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
295
- "be.metadataUpdateSuccessNotification": " {numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
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",
@@ -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
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, plural, =1 {1 document updated} other {# documents updated} } ",
295
+ "be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {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",
@@ -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
package/i18n/en-CA.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, plural, =1 {1 document updated} other {# documents updated} } ",
295
+ "be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {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",
@@ -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-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, plural, =1 {1 document updated} other {# documents updated} } ",
295
+ "be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {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",
@@ -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
package/i18n/es-419.js CHANGED
@@ -292,7 +292,7 @@ export default {
292
292
  "be.messageCenter.product": "Producto",
293
293
  "be.messageCenter.title": "Novedades",
294
294
  "be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
295
- "be.metadataUpdateSuccessNotification": " {numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
295
+ "be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
296
296
  "be.modifiedDate": "Modificado el {date}",
297
297
  "be.modifiedDateBy": "Modificado el {date} por {name}",
298
298
  "be.moreOptions": "Más opciones",
@@ -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
package/i18n/es-ES.js CHANGED
@@ -292,7 +292,7 @@ export default {
292
292
  "be.messageCenter.product": "Producto",
293
293
  "be.messageCenter.title": "Novedades",
294
294
  "be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
295
- "be.metadataUpdateSuccessNotification": " {numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
295
+ "be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
296
296
  "be.modifiedDate": "Modificado el {date}",
297
297
  "be.modifiedDateBy": "Modificado el {date} por {name}",
298
298
  "be.moreOptions": "Más opciones",
@@ -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
package/i18n/fi-FI.js CHANGED
@@ -292,7 +292,7 @@ export default {
292
292
  "be.messageCenter.product": "Tuote",
293
293
  "be.messageCenter.title": "Uudet ominaisuudet",
294
294
  "be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
295
- "be.metadataUpdateSuccessNotification": " {numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
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",
@@ -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
package/i18n/fr-CA.js CHANGED
@@ -292,7 +292,7 @@ export default {
292
292
  "be.messageCenter.product": "Produit",
293
293
  "be.messageCenter.title": "Nouveautés",
294
294
  "be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
295
- "be.metadataUpdateSuccessNotification": " {numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
295
+ "be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
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",
@@ -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
package/i18n/fr-FR.js CHANGED
@@ -292,7 +292,7 @@ export default {
292
292
  "be.messageCenter.product": "Produit",
293
293
  "be.messageCenter.title": "Nouveautés",
294
294
  "be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
295
- "be.metadataUpdateSuccessNotification": " {numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
295
+ "be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
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",
@@ -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
package/i18n/hi-IN.js CHANGED
@@ -292,7 +292,7 @@ export default {
292
292
  "be.messageCenter.product": "उत्पाद",
293
293
  "be.messageCenter.title": "नया क्या है",
294
294
  "be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
295
- "be.metadataUpdateSuccessNotification": " {numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
295
+ "be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
296
296
  "be.modifiedDate": "संशोधित {date}",
297
297
  "be.modifiedDateBy": "{name} द्वारा {date} को संशोधित",
298
298
  "be.moreOptions": "और विकल्प",
@@ -582,12 +582,18 @@ be.messageCenter.previewError = क्षमा करें, हमें य
582
582
  be.messageCenter.product = उत्पाद
583
583
  # Title for the message center modal
584
584
  be.messageCenter.title = नया क्या है
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 = संशोधित {date}
587
591
  # Text for modified date with user with modified prefix.
588
592
  be.modifiedDateBy = {name} द्वारा {date} को संशोधित
589
593
  # Label for a button that displays more options
590
594
  be.moreOptions = और विकल्प
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 = नाम: A → Z
593
599
  # Name descending option shown in the share access drop down select.
@@ -834,6 +840,8 @@ be.skillUnknownError = यह युक्ति चलाते समय य
834
840
  be.sort = सॉर्ट करें
835
841
  # Label for status skill card in the preview sidebar
836
842
  be.statusSkill = स्थिति
843
+ # Generic success label.
844
+ be.success = Success
837
845
  # Shown instead of todays date.
838
846
  be.today = आज
839
847
  # Label for keywords/topics skill section in the preview sidebar
package/i18n/it-IT.js CHANGED
@@ -292,7 +292,7 @@ export default {
292
292
  "be.messageCenter.product": "Prodotto",
293
293
  "be.messageCenter.title": "Novità",
294
294
  "be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
295
- "be.metadataUpdateSuccessNotification": " {numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
295
+ "be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
296
296
  "be.modifiedDate": "Data di modifica: {date}",
297
297
  "be.modifiedDateBy": "Data di modifica: {date}, autore: {name}",
298
298
  "be.moreOptions": "Altre opzioni",
@@ -582,12 +582,18 @@ be.messageCenter.previewError = Stiamo riscontrando problemi con la visualizzazi
582
582
  be.messageCenter.product = Prodotto
583
583
  # Title for the message center modal
584
584
  be.messageCenter.title = Novità
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 = Data di modifica: {date}
587
591
  # Text for modified date with user with modified prefix.
588
592
  be.modifiedDateBy = Data di modifica: {date}, autore: {name}
589
593
  # Label for a button that displays more options
590
594
  be.moreOptions = Altre opzioni
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 = Nome: A → Z
593
599
  # Name descending option shown in the share access drop down select.
@@ -834,6 +840,8 @@ be.skillUnknownError = Si è verificato un problema nell'esecuzione di questa sk
834
840
  be.sort = Ordina
835
841
  # Label for status skill card in the preview sidebar
836
842
  be.statusSkill = Stato
843
+ # Generic success label.
844
+ be.success = Success
837
845
  # Shown instead of todays date.
838
846
  be.today = oggi
839
847
  # Label for keywords/topics skill section in the preview sidebar
package/i18n/ja-JP.js CHANGED
@@ -292,7 +292,7 @@ export default {
292
292
  "be.messageCenter.product": "製品",
293
293
  "be.messageCenter.title": "最新情報",
294
294
  "be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
295
- "be.metadataUpdateSuccessNotification": " {numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
295
+ "be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
296
296
  "be.modifiedDate": "修正日: {date}",
297
297
  "be.modifiedDateBy": "更新日: {date}、更新者: {name}",
298
298
  "be.moreOptions": "その他のオプション",
@@ -582,12 +582,18 @@ be.messageCenter.previewError = この画像を表示できません。
582
582
  be.messageCenter.product = 製品
583
583
  # Title for the message center modal
584
584
  be.messageCenter.title = 最新情報
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 = 修正日: {date}
587
591
  # Text for modified date with user with modified prefix.
588
592
  be.modifiedDateBy = 更新日: {date}、更新者: {name}
589
593
  # Label for a button that displays more options
590
594
  be.moreOptions = その他のオプション
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 = 名前: A → Z
593
599
  # Name descending option shown in the share access drop down select.
@@ -834,6 +840,8 @@ be.skillUnknownError = このスキルの実行中またはデータの取得中
834
840
  be.sort = 並べ替え
835
841
  # Label for status skill card in the preview sidebar
836
842
  be.statusSkill = ステータス
843
+ # Generic success label.
844
+ be.success = Success
837
845
  # Shown instead of todays date.
838
846
  be.today = 今日
839
847
  # Label for keywords/topics skill section in the preview sidebar
package/i18n/ko-KR.js CHANGED
@@ -292,7 +292,7 @@ export default {
292
292
  "be.messageCenter.product": "제품",
293
293
  "be.messageCenter.title": "새 소식",
294
294
  "be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
295
- "be.metadataUpdateSuccessNotification": " {numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
295
+ "be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
296
296
  "be.modifiedDate": "{date}에 수정",
297
297
  "be.modifiedDateBy": "{date}에 {name} 님이 수정",
298
298
  "be.moreOptions": "추가 옵션",
@@ -582,12 +582,18 @@ be.messageCenter.previewError = 죄송합니다. 이 이미지를 표시하는
582
582
  be.messageCenter.product = 제품
583
583
  # Title for the message center modal
584
584
  be.messageCenter.title = 새 소식
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 = {date}에 수정
587
591
  # Text for modified date with user with modified prefix.
588
592
  be.modifiedDateBy = {date}에 {name} 님이 수정
589
593
  # Label for a button that displays more options
590
594
  be.moreOptions = 추가 옵션
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 = 이름: A → Z
593
599
  # Name descending option shown in the share access drop down select.
@@ -834,6 +840,8 @@ be.skillUnknownError = 이 스킬을 실행하는 중 또는 해당 데이터를
834
840
  be.sort = 정렬
835
841
  # Label for status skill card in the preview sidebar
836
842
  be.statusSkill = 상태
843
+ # Generic success label.
844
+ be.success = Success
837
845
  # Shown instead of todays date.
838
846
  be.today = 오늘
839
847
  # Label for keywords/topics skill section in the preview sidebar
package/i18n/nb-NO.js CHANGED
@@ -292,7 +292,7 @@ export default {
292
292
  "be.messageCenter.product": "Produkt",
293
293
  "be.messageCenter.title": "Nytt",
294
294
  "be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
295
- "be.metadataUpdateSuccessNotification": " {numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
295
+ "be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
296
296
  "be.modifiedDate": "Endret {date}",
297
297
  "be.modifiedDateBy": "Endret {date} av {name}",
298
298
  "be.moreOptions": "Flere alternativer",
@@ -582,12 +582,18 @@ be.messageCenter.previewError = Beklager, vi har problemer med å vise dette bil
582
582
  be.messageCenter.product = Produkt
583
583
  # Title for the message center modal
584
584
  be.messageCenter.title = Nytt
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 = Endret {date}
587
591
  # Text for modified date with user with modified prefix.
588
592
  be.modifiedDateBy = Endret {date} av {name}
589
593
  # Label for a button that displays more options
590
594
  be.moreOptions = Flere alternativer
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 = Kan ikke kjøre denne ferdigheten eller hente dataene for
834
840
  be.sort = Sorter
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
package/i18n/nl-NL.js CHANGED
@@ -292,7 +292,7 @@ export default {
292
292
  "be.messageCenter.product": "Product",
293
293
  "be.messageCenter.title": "Nieuwe functies",
294
294
  "be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
295
- "be.metadataUpdateSuccessNotification": " {numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
295
+ "be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
296
296
  "be.modifiedDate": "Gewijzigd op: {date}",
297
297
  "be.modifiedDateBy": "Gewijzigd op {date} door {name}",
298
298
  "be.moreOptions": "Meer opties",
@@ -582,12 +582,18 @@ be.messageCenter.previewError = Er zijn problemen met het weergeven van deze afb
582
582
  be.messageCenter.product = Product
583
583
  # Title for the message center modal
584
584
  be.messageCenter.title = Nieuwe functies
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 = Gewijzigd op: {date}
587
591
  # Text for modified date with user with modified prefix.
588
592
  be.modifiedDateBy = Gewijzigd op {date} door {name}
589
593
  # Label for a button that displays more options
590
594
  be.moreOptions = Meer opties
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 = Naam: A → Z
593
599
  # Name descending option shown in the share access drop down select.
@@ -834,6 +840,8 @@ be.skillUnknownError = Er is iets fout gegaan met deze skill of het ophalen van
834
840
  be.sort = Sorteren
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 = vandaag
839
847
  # Label for keywords/topics skill section in the preview sidebar
package/i18n/pl-PL.js CHANGED
@@ -292,7 +292,7 @@ export default {
292
292
  "be.messageCenter.product": "Produkt",
293
293
  "be.messageCenter.title": "Co nowego",
294
294
  "be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
295
- "be.metadataUpdateSuccessNotification": " {numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
295
+ "be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
296
296
  "be.modifiedDate": "Ostatnia modyfikacja: {date}",
297
297
  "be.modifiedDateBy": "Zmieniono {date} przez użytkownika {name}",
298
298
  "be.moreOptions": "Więcej opcji",