box-ui-elements 24.0.0-beta.5 → 24.0.0-beta.7
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/picker.js +1 -1
- package/es/elements/content-explorer/Content.js +3 -1
- package/es/elements/content-explorer/Content.js.map +1 -1
- package/es/elements/content-explorer/ContentExplorer.js +17 -6
- package/es/elements/content-explorer/ContentExplorer.js.map +1 -1
- package/es/elements/content-explorer/MetadataQueryAPIHelper.js +104 -7
- package/es/elements/content-explorer/MetadataQueryAPIHelper.js.map +1 -1
- package/es/elements/content-explorer/MetadataQueryBuilder.js +154 -0
- package/es/elements/content-explorer/MetadataQueryBuilder.js.map +1 -0
- package/es/elements/content-explorer/MetadataViewContainer.js +92 -46
- package/es/elements/content-explorer/MetadataViewContainer.js.map +1 -1
- package/es/elements/content-explorer/constants.js +4 -2
- package/es/elements/content-explorer/constants.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 +4 -16
- package/es/elements/content-explorer/stories/tests/MetadataView-visual.stories.js.map +1 -1
- package/es/elements/content-explorer/utils.js +12 -0
- 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 +8 -3
- package/es/src/elements/content-explorer/MetadataQueryAPIHelper.d.ts +11 -2
- package/es/src/elements/content-explorer/MetadataQueryBuilder.d.ts +27 -0
- package/es/src/elements/content-explorer/MetadataViewContainer.d.ts +8 -4
- package/es/src/elements/content-explorer/__tests__/MetadataQueryBuilder.test.d.ts +1 -0
- package/es/src/elements/content-explorer/constants.d.ts +4 -2
- package/es/src/elements/content-explorer/utils.d.ts +2 -0
- package/i18n/bn-IN.js +1 -1
- package/i18n/bn-IN.properties +8 -0
- package/i18n/da-DK.js +1 -1
- package/i18n/da-DK.properties +8 -0
- package/i18n/de-DE.js +1 -1
- package/i18n/de-DE.properties +8 -0
- package/i18n/en-AU.js +1 -1
- package/i18n/en-AU.properties +8 -0
- package/i18n/en-CA.js +1 -1
- package/i18n/en-CA.properties +8 -0
- package/i18n/en-GB.js +1 -1
- package/i18n/en-GB.properties +8 -0
- package/i18n/es-419.js +1 -1
- package/i18n/es-419.properties +8 -0
- package/i18n/es-ES.js +1 -1
- package/i18n/es-ES.properties +8 -0
- package/i18n/fi-FI.js +1 -1
- package/i18n/fi-FI.properties +8 -0
- package/i18n/fr-CA.js +1 -1
- package/i18n/fr-CA.properties +8 -0
- package/i18n/fr-FR.js +1 -1
- package/i18n/fr-FR.properties +8 -0
- package/i18n/hi-IN.js +1 -1
- package/i18n/hi-IN.properties +8 -0
- package/i18n/it-IT.js +1 -1
- package/i18n/it-IT.properties +8 -0
- package/i18n/ja-JP.js +1 -1
- package/i18n/ja-JP.properties +8 -0
- package/i18n/ko-KR.js +1 -1
- package/i18n/ko-KR.properties +8 -0
- package/i18n/nb-NO.js +1 -1
- package/i18n/nb-NO.properties +8 -0
- package/i18n/nl-NL.js +1 -1
- package/i18n/nl-NL.properties +8 -0
- package/i18n/pl-PL.js +1 -1
- package/i18n/pl-PL.properties +8 -0
- package/i18n/pt-BR.js +1 -1
- package/i18n/pt-BR.properties +8 -0
- package/i18n/ru-RU.js +1 -1
- package/i18n/ru-RU.properties +8 -0
- package/i18n/sv-SE.js +1 -1
- package/i18n/sv-SE.properties +8 -0
- package/i18n/tr-TR.js +1 -1
- package/i18n/tr-TR.properties +8 -0
- package/i18n/zh-CN.js +1 -1
- package/i18n/zh-CN.properties +8 -0
- package/i18n/zh-TW.js +1 -1
- package/i18n/zh-TW.properties +8 -0
- package/package.json +3 -3
- package/src/elements/common/__mocks__/mockMetadata.ts +7 -11
- package/src/elements/content-explorer/Content.tsx +8 -2
- package/src/elements/content-explorer/ContentExplorer.tsx +209 -194
- package/src/elements/content-explorer/MetadataQueryAPIHelper.ts +111 -5
- package/src/elements/content-explorer/MetadataQueryBuilder.ts +194 -0
- package/src/elements/content-explorer/MetadataViewContainer.tsx +112 -37
- package/src/elements/content-explorer/__tests__/Content.test.tsx +1 -0
- package/src/elements/content-explorer/__tests__/ContentExplorer.test.tsx +2 -5
- package/src/elements/content-explorer/__tests__/MetadataQueryAPIHelper.test.ts +427 -8
- package/src/elements/content-explorer/__tests__/MetadataQueryBuilder.test.ts +535 -0
- package/src/elements/content-explorer/__tests__/MetadataViewContainer.test.tsx +413 -9
- package/src/elements/content-explorer/constants.ts +39 -2
- package/src/elements/content-explorer/stories/MetadataView.stories.tsx +3 -21
- package/src/elements/content-explorer/stories/tests/MetadataView-visual.stories.tsx +2 -13
- package/src/elements/content-explorer/utils.ts +17 -0
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
|
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": "
|
|
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",
|
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
|
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": "
|
|
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",
|
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
|
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": "
|
|
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",
|
package/i18n/fr-FR.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
|
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": "
|
|
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": "और विकल्प",
|
package/i18n/hi-IN.properties
CHANGED
|
@@ -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": "
|
|
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",
|
package/i18n/it-IT.properties
CHANGED
|
@@ -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": "
|
|
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": "その他のオプション",
|
package/i18n/ja-JP.properties
CHANGED
|
@@ -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": "
|
|
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": "추가 옵션",
|
package/i18n/ko-KR.properties
CHANGED
|
@@ -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": "
|
|
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",
|
package/i18n/nb-NO.properties
CHANGED
|
@@ -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": "
|
|
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",
|
package/i18n/nl-NL.properties
CHANGED
|
@@ -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": "
|
|
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",
|
package/i18n/pl-PL.properties
CHANGED
|
@@ -582,12 +582,18 @@ be.messageCenter.previewError = Przepraszamy, występują problemy z wyświetlan
|
|
|
582
582
|
be.messageCenter.product = Produkt
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = Co nowego
|
|
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 = Ostatnia modyfikacja: {date}
|
|
587
591
|
# Text for modified date with user with modified prefix.
|
|
588
592
|
be.modifiedDateBy = Zmieniono {date} przez użytkownika {name}
|
|
589
593
|
# Label for a button that displays more options
|
|
590
594
|
be.moreOptions = Więcej opcji
|
|
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 = Nazwa: A → Z
|
|
593
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -834,6 +840,8 @@ be.skillUnknownError = Podczas uruchamiania umiejętności lub pobierania danych
|
|
|
834
840
|
be.sort = Sortuj
|
|
835
841
|
# Label for status skill card in the preview sidebar
|
|
836
842
|
be.statusSkill = Stan
|
|
843
|
+
# Generic success label.
|
|
844
|
+
be.success = Success
|
|
837
845
|
# Shown instead of todays date.
|
|
838
846
|
be.today = dziś
|
|
839
847
|
# Label for keywords/topics skill section in the preview sidebar
|
package/i18n/pt-BR.js
CHANGED
|
@@ -292,7 +292,7 @@ export default {
|
|
|
292
292
|
"be.messageCenter.product": "Produto",
|
|
293
293
|
"be.messageCenter.title": "Novidades",
|
|
294
294
|
"be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
|
|
295
|
-
"be.metadataUpdateSuccessNotification": "
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
|
|
296
296
|
"be.modifiedDate": "Alterado em {date}",
|
|
297
297
|
"be.modifiedDateBy": "Modificado em {date} por {name}",
|
|
298
298
|
"be.moreOptions": "Mais opções",
|
package/i18n/pt-BR.properties
CHANGED
|
@@ -582,12 +582,18 @@ be.messageCenter.previewError = Lamentamos, mas estamos com problemas para exibi
|
|
|
582
582
|
be.messageCenter.product = Produto
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = Novidades
|
|
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 = Alterado em {date}
|
|
587
591
|
# Text for modified date with user with modified prefix.
|
|
588
592
|
be.modifiedDateBy = Modificado em {date} por {name}
|
|
589
593
|
# Label for a button that displays more options
|
|
590
594
|
be.moreOptions = Mais opções
|
|
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 = Ocorreu um erro ao executar esta habilidade ou ao obter e
|
|
|
834
840
|
be.sort = Classificar
|
|
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 = hoje
|
|
839
847
|
# Label for keywords/topics skill section in the preview sidebar
|
package/i18n/ru-RU.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": "
|
|
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": "Дополнительные параметры",
|
package/i18n/ru-RU.properties
CHANGED
|
@@ -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 = Имя: А → Я
|
|
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/sv-SE.js
CHANGED
|
@@ -292,7 +292,7 @@ export default {
|
|
|
292
292
|
"be.messageCenter.product": "Produkt",
|
|
293
293
|
"be.messageCenter.title": "Nyheter",
|
|
294
294
|
"be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
|
|
295
|
-
"be.metadataUpdateSuccessNotification": "
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
|
|
296
296
|
"be.modifiedDate": "Ändrad {date}",
|
|
297
297
|
"be.modifiedDateBy": "Ändrad {date} av {name}",
|
|
298
298
|
"be.moreOptions": "Fler alternativ",
|
package/i18n/sv-SE.properties
CHANGED
|
@@ -582,12 +582,18 @@ be.messageCenter.previewError = Vi har tyvärr problem med att visa den här bil
|
|
|
582
582
|
be.messageCenter.product = Produkt
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = Nyheter
|
|
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 = Ändrad {date}
|
|
587
591
|
# Text for modified date with user with modified prefix.
|
|
588
592
|
be.modifiedDateBy = Ändrad {date} av {name}
|
|
589
593
|
# Label for a button that displays more options
|
|
590
594
|
be.moreOptions = Fler alternativ
|
|
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 = Namn: A → Ö
|
|
593
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -834,6 +840,8 @@ be.skillUnknownError = Något gick fel när funktionen kördes eller när dess d
|
|
|
834
840
|
be.sort = Sortera
|
|
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 = idag
|
|
839
847
|
# Label for keywords/topics skill section in the preview sidebar
|
package/i18n/tr-TR.js
CHANGED
|
@@ -292,7 +292,7 @@ export default {
|
|
|
292
292
|
"be.messageCenter.product": "Ürün",
|
|
293
293
|
"be.messageCenter.title": "Yenilikler",
|
|
294
294
|
"be.metadataUpdateErrorNotification": "Unable to save changes. Please try again.",
|
|
295
|
-
"be.metadataUpdateSuccessNotification": "
|
|
295
|
+
"be.metadataUpdateSuccessNotification": "{numSelected, plural, =1 {1 document updated} other {# documents updated} } ",
|
|
296
296
|
"be.modifiedDate": "{date} tarihinde değiştirildi",
|
|
297
297
|
"be.modifiedDateBy": "{name} tarafından {date} tarihinde değiştirildi",
|
|
298
298
|
"be.moreOptions": "Daha Fazla Seçenek",
|
package/i18n/tr-TR.properties
CHANGED
|
@@ -582,12 +582,18 @@ be.messageCenter.previewError = Üzgünüz, bu görüntüyü göstermekte sorun
|
|
|
582
582
|
be.messageCenter.product = Ürün
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = Yenilikler
|
|
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} tarihinde değiştirildi
|
|
587
591
|
# Text for modified date with user with modified prefix.
|
|
588
592
|
be.modifiedDateBy = {name} tarafından {date} tarihinde değiştirildi
|
|
589
593
|
# Label for a button that displays more options
|
|
590
594
|
be.moreOptions = Daha Fazla Seçenek
|
|
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 = Ad: A → Z
|
|
593
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -834,6 +840,8 @@ be.skillUnknownError = Bu Skill özelliği kullanılırken veya ilgili veriler g
|
|
|
834
840
|
be.sort = Sırala
|
|
835
841
|
# Label for status skill card in the preview sidebar
|
|
836
842
|
be.statusSkill = Durum
|
|
843
|
+
# Generic success label.
|
|
844
|
+
be.success = Success
|
|
837
845
|
# Shown instead of todays date.
|
|
838
846
|
be.today = bugün
|
|
839
847
|
# Label for keywords/topics skill section in the preview sidebar
|
package/i18n/zh-CN.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": "
|
|
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": "更多选项",
|
package/i18n/zh-CN.properties
CHANGED
|
@@ -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/zh-TW.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": "
|
|
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": "更多選項",
|