box-ui-elements 24.0.0-beta.4 → 24.0.0-beta.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/explorer.css +1 -1
- package/dist/explorer.js +1 -1
- package/dist/openwith.js +1 -1
- package/dist/picker.js +1 -1
- package/dist/preview.js +1 -1
- package/dist/sharing.js +1 -1
- package/dist/sidebar.js +1 -1
- package/dist/uploader.js +1 -1
- package/es/api/Metadata.js +98 -13
- package/es/api/Metadata.js.flow +110 -12
- package/es/api/Metadata.js.map +1 -1
- package/es/elements/common/messages.js +16 -0
- package/es/elements/common/messages.js.flow +25 -0
- package/es/elements/common/messages.js.map +1 -1
- package/es/elements/content-explorer/Content.js +5 -2
- package/es/elements/content-explorer/Content.js.map +1 -1
- package/es/elements/content-explorer/ContentExplorer.js +31 -6
- package/es/elements/content-explorer/ContentExplorer.js.map +1 -1
- package/es/elements/content-explorer/MetadataQueryAPIHelper.js +164 -10
- package/es/elements/content-explorer/MetadataQueryAPIHelper.js.map +1 -1
- package/es/elements/content-explorer/MetadataQueryBuilder.js +115 -0
- package/es/elements/content-explorer/MetadataQueryBuilder.js.map +1 -0
- package/es/elements/content-explorer/MetadataSidePanel.js +40 -14
- package/es/elements/content-explorer/MetadataSidePanel.js.map +1 -1
- package/es/elements/content-explorer/MetadataViewContainer.js +133 -36
- package/es/elements/content-explorer/MetadataViewContainer.js.map +1 -1
- package/es/elements/content-explorer/stories/MetadataView.stories.js +3 -25
- package/es/elements/content-explorer/stories/MetadataView.stories.js.map +1 -1
- package/es/elements/content-explorer/stories/tests/MetadataView-visual.stories.js +65 -29
- package/es/elements/content-explorer/stories/tests/MetadataView-visual.stories.js.map +1 -1
- package/es/elements/content-explorer/utils.js +140 -12
- package/es/elements/content-explorer/utils.js.map +1 -1
- package/es/src/elements/common/__mocks__/mockMetadata.d.ts +8 -24
- package/es/src/elements/content-explorer/Content.d.ts +4 -3
- package/es/src/elements/content-explorer/ContentExplorer.d.ts +19 -6
- package/es/src/elements/content-explorer/MetadataQueryAPIHelper.d.ts +22 -3
- package/es/src/elements/content-explorer/MetadataQueryBuilder.d.ts +27 -0
- package/es/src/elements/content-explorer/MetadataSidePanel.d.ts +6 -3
- package/es/src/elements/content-explorer/MetadataViewContainer.d.ts +10 -4
- package/es/src/elements/content-explorer/__tests__/MetadataQueryBuilder.test.d.ts +1 -0
- package/es/src/elements/content-explorer/stories/tests/MetadataView-visual.stories.d.ts +1 -0
- package/es/src/elements/content-explorer/utils.d.ts +9 -3
- package/i18n/bn-IN.js +4 -0
- package/i18n/bn-IN.properties +12 -0
- package/i18n/da-DK.js +4 -0
- package/i18n/da-DK.properties +12 -0
- package/i18n/de-DE.js +5 -1
- package/i18n/de-DE.properties +12 -0
- package/i18n/en-AU.js +4 -0
- package/i18n/en-AU.properties +12 -0
- package/i18n/en-CA.js +4 -0
- package/i18n/en-CA.properties +12 -0
- package/i18n/en-GB.js +4 -0
- package/i18n/en-GB.properties +12 -0
- package/i18n/en-US.js +4 -0
- package/i18n/en-US.properties +8 -0
- package/i18n/en-x-pseudo.js +4 -0
- package/i18n/es-419.js +5 -1
- package/i18n/es-419.properties +12 -0
- package/i18n/es-ES.js +5 -1
- package/i18n/es-ES.properties +12 -0
- package/i18n/fi-FI.js +4 -0
- package/i18n/fi-FI.properties +12 -0
- package/i18n/fr-CA.js +4 -0
- package/i18n/fr-CA.properties +12 -0
- package/i18n/fr-FR.js +4 -0
- package/i18n/fr-FR.properties +12 -0
- package/i18n/hi-IN.js +4 -0
- package/i18n/hi-IN.properties +12 -0
- package/i18n/it-IT.js +4 -0
- package/i18n/it-IT.properties +12 -0
- package/i18n/ja-JP.js +6 -2
- package/i18n/ja-JP.properties +14 -2
- package/i18n/ko-KR.js +4 -0
- package/i18n/ko-KR.properties +12 -0
- package/i18n/nb-NO.js +4 -0
- package/i18n/nb-NO.properties +12 -0
- package/i18n/nl-NL.js +4 -0
- package/i18n/nl-NL.properties +12 -0
- package/i18n/pl-PL.js +4 -0
- package/i18n/pl-PL.properties +12 -0
- package/i18n/pt-BR.js +4 -0
- package/i18n/pt-BR.properties +12 -0
- package/i18n/ru-RU.js +5 -1
- package/i18n/ru-RU.properties +12 -0
- package/i18n/sv-SE.js +4 -0
- package/i18n/sv-SE.properties +12 -0
- package/i18n/tr-TR.js +5 -1
- package/i18n/tr-TR.properties +12 -0
- package/i18n/zh-CN.js +4 -0
- package/i18n/zh-CN.properties +12 -0
- package/i18n/zh-TW.js +4 -0
- package/i18n/zh-TW.properties +12 -0
- package/package.json +3 -3
- package/src/api/Metadata.js +110 -12
- package/src/api/__tests__/Metadata.test.js +120 -0
- package/src/elements/common/__mocks__/mockMetadata.ts +7 -11
- package/src/elements/common/messages.js +25 -0
- package/src/elements/content-explorer/Content.tsx +9 -2
- package/src/elements/content-explorer/ContentExplorer.tsx +71 -17
- package/src/elements/content-explorer/MetadataQueryAPIHelper.ts +199 -8
- package/src/elements/content-explorer/MetadataQueryBuilder.ts +159 -0
- package/src/elements/content-explorer/MetadataSidePanel.tsx +55 -14
- package/src/elements/content-explorer/MetadataViewContainer.tsx +164 -29
- package/src/elements/content-explorer/__tests__/Content.test.tsx +1 -0
- package/src/elements/content-explorer/__tests__/ContentExplorer.test.tsx +38 -7
- package/src/elements/content-explorer/__tests__/MetadataQueryAPIHelper.test.ts +428 -12
- package/src/elements/content-explorer/__tests__/MetadataQueryBuilder.test.ts +419 -0
- package/src/elements/content-explorer/__tests__/MetadataSidePanel.test.tsx +145 -3
- package/src/elements/content-explorer/__tests__/MetadataViewContainer.test.tsx +413 -9
- package/src/elements/content-explorer/stories/MetadataView.stories.tsx +3 -21
- package/src/elements/content-explorer/stories/tests/MetadataView-visual.stories.tsx +56 -21
- package/src/elements/content-explorer/utils.ts +150 -13
package/i18n/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
|
@@ -582,12 +582,18 @@ be.messageCenter.previewError = Désolé, nous ne parvenons pas à afficher cett
|
|
|
582
582
|
be.messageCenter.product = Produit
|
|
583
583
|
# Title for the message center modal
|
|
584
584
|
be.messageCenter.title = Nouveautés
|
|
585
|
+
# Text shown in error notification banner
|
|
586
|
+
be.metadataUpdateErrorNotification = Unable to save changes. Please try again.
|
|
587
|
+
# Text shown in success notification banner
|
|
588
|
+
be.metadataUpdateSuccessNotification = {numSelected, plural, =1 {1 document updated} other {# documents updated} }
|
|
585
589
|
# Text for modified date with modified prefix.
|
|
586
590
|
be.modifiedDate = Dernière modification le {date}
|
|
587
591
|
# Text for modified date with user with modified prefix.
|
|
588
592
|
be.modifiedDateBy = Dernière modification effectuée le {date} par {name}
|
|
589
593
|
# Label for a button that displays more options
|
|
590
594
|
be.moreOptions = Plus d'options
|
|
595
|
+
# Display text for field when there are multiple items selected and have different value
|
|
596
|
+
be.multipleValues = Multiple Values
|
|
591
597
|
# Name ascending option shown in the share access drop down select.
|
|
592
598
|
be.nameASC = Nom : de A à Z
|
|
593
599
|
# Name descending option shown in the share access drop down select.
|
|
@@ -834,6 +840,8 @@ be.skillUnknownError = Une erreur est survenue lors de l'exécution de cette com
|
|
|
834
840
|
be.sort = Trier
|
|
835
841
|
# Label for status skill card in the preview sidebar
|
|
836
842
|
be.statusSkill = État
|
|
843
|
+
# Generic success label.
|
|
844
|
+
be.success = Success
|
|
837
845
|
# Shown instead of todays date.
|
|
838
846
|
be.today = aujourd'hui
|
|
839
847
|
# Label for keywords/topics skill section in the preview sidebar
|
|
@@ -966,6 +974,10 @@ boxui.categorySelector.label.more = Plus
|
|
|
966
974
|
boxui.checkboxTooltip.iconInfoText = Info
|
|
967
975
|
# Button to add classification on an item
|
|
968
976
|
boxui.classification.add = Ajouter
|
|
977
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
978
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
979
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
980
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
981
|
# Header for classification section in sidebar
|
|
970
982
|
boxui.classification.classification = Classement
|
|
971
983
|
# Classification label color name as dark blue
|
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
|
@@ -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
|
|
@@ -966,6 +974,10 @@ boxui.categorySelector.label.more = अधिक
|
|
|
966
974
|
boxui.checkboxTooltip.iconInfoText = जानकारी
|
|
967
975
|
# Button to add classification on an item
|
|
968
976
|
boxui.classification.add = जोड़ें
|
|
977
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
978
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
979
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
980
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
981
|
# Header for classification section in sidebar
|
|
970
982
|
boxui.classification.classification = वर्गीकरण
|
|
971
983
|
# 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
|
@@ -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
|
|
@@ -966,6 +974,10 @@ boxui.categorySelector.label.more = Altro
|
|
|
966
974
|
boxui.checkboxTooltip.iconInfoText = Informazioni
|
|
967
975
|
# Button to add classification on an item
|
|
968
976
|
boxui.classification.add = Aggiungi
|
|
977
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
978
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
979
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
980
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
981
|
# Header for classification section in sidebar
|
|
970
982
|
boxui.classification.classification = Classificazione
|
|
971
983
|
# 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
|
|
@@ -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
|
|
@@ -966,6 +974,10 @@ boxui.categorySelector.label.more = その他
|
|
|
966
974
|
boxui.checkboxTooltip.iconInfoText = 情報
|
|
967
975
|
# Button to add classification on an item
|
|
968
976
|
boxui.classification.add = 追加
|
|
977
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
978
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
979
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
980
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
981
|
# Header for classification section in sidebar
|
|
970
982
|
boxui.classification.classification = 分類
|
|
971
983
|
# Classification label color name as dark blue
|
|
@@ -1827,7 +1839,7 @@ boxui.shareMenu.viewAndDownload = 表示とダウンロード
|
|
|
1827
1839
|
# Description of permissions granted to users who have access to the shared link
|
|
1828
1840
|
boxui.shareMenu.viewOnly = 表示のみ
|
|
1829
1841
|
# Aria-label for the dropdown menu that shows actions for selected items
|
|
1830
|
-
boxui.subHeader.bulkItemActionMenuAriaLabel =
|
|
1842
|
+
boxui.subHeader.bulkItemActionMenuAriaLabel = 一括操作
|
|
1831
1843
|
# Text for metadata button that will open the metadata side panel
|
|
1832
1844
|
boxui.subHeader.metadata = メタデータ
|
|
1833
1845
|
# 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
|
@@ -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
|
|
@@ -966,6 +974,10 @@ boxui.categorySelector.label.more = 더 보기
|
|
|
966
974
|
boxui.checkboxTooltip.iconInfoText = 정보
|
|
967
975
|
# Button to add classification on an item
|
|
968
976
|
boxui.classification.add = 추가
|
|
977
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
978
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
979
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
980
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
981
|
# Header for classification section in sidebar
|
|
970
982
|
boxui.classification.classification = 분류
|
|
971
983
|
# 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
|
@@ -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
|
|
@@ -966,6 +974,10 @@ boxui.categorySelector.label.more = Mer
|
|
|
966
974
|
boxui.checkboxTooltip.iconInfoText = Informasjon
|
|
967
975
|
# Button to add classification on an item
|
|
968
976
|
boxui.classification.add = Legg til
|
|
977
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
978
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
979
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
980
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
981
|
# Header for classification section in sidebar
|
|
970
982
|
boxui.classification.classification = Klassifisering
|
|
971
983
|
# 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
|
@@ -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
|
|
@@ -966,6 +974,10 @@ boxui.categorySelector.label.more = Meer
|
|
|
966
974
|
boxui.checkboxTooltip.iconInfoText = Info
|
|
967
975
|
# Button to add classification on an item
|
|
968
976
|
boxui.classification.add = Toevoegen
|
|
977
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
978
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
979
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
980
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
981
|
# Header for classification section in sidebar
|
|
970
982
|
boxui.classification.classification = Classificatie
|
|
971
983
|
# 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
|
@@ -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
|
|
@@ -966,6 +974,10 @@ boxui.categorySelector.label.more = Więcej
|
|
|
966
974
|
boxui.checkboxTooltip.iconInfoText = Informacje
|
|
967
975
|
# Button to add classification on an item
|
|
968
976
|
boxui.classification.add = Dodaj
|
|
977
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
978
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
979
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
980
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
981
|
# Header for classification section in sidebar
|
|
970
982
|
boxui.classification.classification = Klasyfikacja
|
|
971
983
|
# 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.",
|
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
|
|
@@ -966,6 +974,10 @@ boxui.categorySelector.label.more = Mais
|
|
|
966
974
|
boxui.checkboxTooltip.iconInfoText = Informações
|
|
967
975
|
# Button to add classification on an item
|
|
968
976
|
boxui.classification.add = Adicionar
|
|
977
|
+
# Title of the card that shows the reason why the AI classification was applied when no date is available.
|
|
978
|
+
boxui.classification.appliedByBoxAi = Box AI
|
|
979
|
+
# Title of the card that shows the reason why the AI classification was applied on a specific date.
|
|
980
|
+
boxui.classification.appliedByBoxAiOnDate = Box AI on {modifiedAt}
|
|
969
981
|
# Header for classification section in sidebar
|
|
970
982
|
boxui.classification.classification = Classificação
|
|
971
983
|
# Classification label color name as dark blue
|
package/i18n/ru-RU.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": "Имя: А → Я",
|
|
298
301
|
"be.nameDESC": "Имя: Я → А",
|
|
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": "Нажмите на любой раздел для изменения.",
|
|
@@ -483,7 +487,7 @@ export default {
|
|
|
483
487
|
"boxui.categorySelector.label.more": "Дополнительно",
|
|
484
488
|
"boxui.checkboxTooltip.iconInfoText": "Информация",
|
|
485
489
|
"boxui.classification.add": "Добавить",
|
|
486
|
-
"boxui.classification.appliedByBoxAi": "Box
|
|
490
|
+
"boxui.classification.appliedByBoxAi": "ИИ Box",
|
|
487
491
|
"boxui.classification.appliedByBoxAiOnDate": "Box AI on {modifiedAt}",
|
|
488
492
|
"boxui.classification.classification": "Классификация",
|
|
489
493
|
"boxui.classification.classificationDarkBlue": "Темно-синий",
|