@box/metadata-editor 1.64.7 → 1.65.1

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 (61) hide show
  1. package/dist/chunks/metadata-instance-form-ai-disclaimer.js +28 -0
  2. package/dist/chunks/metadata-instance-form-card-wrapper.js +39 -33
  3. package/dist/esm/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form-ai-disclaimer/metadata-instance-form-ai-disclaimer.js +2 -0
  4. package/dist/esm/lib/messages.js +4 -0
  5. package/dist/i18n/bn-IN.js +9 -8
  6. package/dist/i18n/bn-IN.properties +17 -5
  7. package/dist/i18n/da-DK.js +9 -8
  8. package/dist/i18n/da-DK.properties +17 -5
  9. package/dist/i18n/de-DE.js +9 -8
  10. package/dist/i18n/de-DE.properties +17 -5
  11. package/dist/i18n/en-AU.js +4 -3
  12. package/dist/i18n/en-AU.properties +17 -5
  13. package/dist/i18n/en-CA.js +4 -3
  14. package/dist/i18n/en-CA.properties +17 -5
  15. package/dist/i18n/en-GB.js +4 -3
  16. package/dist/i18n/en-GB.properties +17 -5
  17. package/dist/i18n/en-US.js +1 -0
  18. package/dist/i18n/en-US.properties +2 -0
  19. package/dist/i18n/en-x-pseudo.js +157 -156
  20. package/dist/i18n/en-x-pseudo.properties +165 -153
  21. package/dist/i18n/es-419.js +9 -8
  22. package/dist/i18n/es-419.properties +17 -5
  23. package/dist/i18n/es-ES.js +9 -8
  24. package/dist/i18n/es-ES.properties +17 -5
  25. package/dist/i18n/fi-FI.js +9 -8
  26. package/dist/i18n/fi-FI.properties +17 -5
  27. package/dist/i18n/fr-CA.js +9 -8
  28. package/dist/i18n/fr-CA.properties +17 -5
  29. package/dist/i18n/fr-FR.js +9 -8
  30. package/dist/i18n/fr-FR.properties +17 -5
  31. package/dist/i18n/hi-IN.js +9 -8
  32. package/dist/i18n/hi-IN.properties +17 -5
  33. package/dist/i18n/it-IT.js +9 -8
  34. package/dist/i18n/it-IT.properties +17 -5
  35. package/dist/i18n/ja-JP.js +10 -9
  36. package/dist/i18n/ja-JP.properties +18 -6
  37. package/dist/i18n/json/src/lib/messages.json +1 -1
  38. package/dist/i18n/ko-KR.js +9 -8
  39. package/dist/i18n/ko-KR.properties +17 -5
  40. package/dist/i18n/nb-NO.js +9 -8
  41. package/dist/i18n/nb-NO.properties +17 -5
  42. package/dist/i18n/nl-NL.js +9 -8
  43. package/dist/i18n/nl-NL.properties +17 -5
  44. package/dist/i18n/pl-PL.js +9 -8
  45. package/dist/i18n/pl-PL.properties +17 -5
  46. package/dist/i18n/pt-BR.js +9 -8
  47. package/dist/i18n/pt-BR.properties +17 -5
  48. package/dist/i18n/ru-RU.js +9 -8
  49. package/dist/i18n/ru-RU.properties +17 -5
  50. package/dist/i18n/sv-SE.js +9 -8
  51. package/dist/i18n/sv-SE.properties +17 -5
  52. package/dist/i18n/tr-TR.js +9 -8
  53. package/dist/i18n/tr-TR.properties +17 -5
  54. package/dist/i18n/zh-CN.js +9 -8
  55. package/dist/i18n/zh-CN.properties +17 -5
  56. package/dist/i18n/zh-TW.js +9 -8
  57. package/dist/i18n/zh-TW.properties +17 -5
  58. package/dist/styles/metadata-instance-form-ai-disclaimer.css +1 -0
  59. package/dist/types/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form-ai-disclaimer/metadata-instance-form-ai-disclaimer.d.ts +8 -0
  60. package/dist/types/lib/messages.d.ts +5 -0
  61. package/package.json +4 -4
@@ -0,0 +1,28 @@
1
+ import e from "../esm/lib/messages.js";
2
+ import { Text as t } from "@box/blueprint-web";
3
+ import { useMemo as n } from "react";
4
+ import { useIntl as r } from "react-intl";
5
+ import { jsx as i, jsxs as a } from "react/jsx-runtime";
6
+ import { bpTextTextOnLightSecondary as o } from "@box/blueprint-web-assets/tokens/tokens";
7
+ import { InfoBadge as s } from "@box/blueprint-web-assets/icons/Line";
8
+ import '../styles/metadata-instance-form-ai-disclaimer.css';var c = {
9
+ aiDisclaimer: "_aiDisclaimer_6i2mf_1",
10
+ infoBadgeIcon: "_infoBadgeIcon_6i2mf_7"
11
+ }, l = (e) => e.some((e) => !!e.confidenceScore), u = ({ fields: u, isLoading: d, isConfidenceScoreReviewEnabled: f }) => {
12
+ let p = r(), m = n(() => l(u), [u]);
13
+ return !f || !m || d ? null : /* @__PURE__ */ a("div", {
14
+ className: c.aiDisclaimer,
15
+ children: [/* @__PURE__ */ i(s, {
16
+ className: c.infoBadgeIcon,
17
+ width: 12,
18
+ height: 12,
19
+ color: o
20
+ }), /* @__PURE__ */ i(t, {
21
+ as: "p",
22
+ color: "textOnLightSecondary",
23
+ variant: "bodySmall",
24
+ children: p.formatMessage(e.aiDisclaimer)
25
+ })]
26
+ });
27
+ };
28
+ export { u as t };
@@ -1,48 +1,54 @@
1
1
  import { TEMPLATE_CUSTOM_PROPERTIES as e } from "../esm/lib/constants.js";
2
2
  import { t } from "./metadata-instance-form-header.js";
3
- import { t as n } from "./metadata-instance-form-footer.js";
4
- import { Card as r, useBlueprintModernization as i } from "@box/blueprint-web";
5
- import { jsx as a, jsxs as o } from "react/jsx-runtime";
6
- import s from "clsx";
7
- import '../styles/metadata-instance-form-card-wrapper.css';var c = {
3
+ import { t as n } from "./metadata-instance-form-ai-disclaimer.js";
4
+ import { t as r } from "./metadata-instance-form-footer.js";
5
+ import { Card as i, useBlueprintModernization as a } from "@box/blueprint-web";
6
+ import { jsx as o, jsxs as s } from "react/jsx-runtime";
7
+ import c from "clsx";
8
+ import '../styles/metadata-instance-form-card-wrapper.css';var l = {
8
9
  metadataInstanceForm: "_metadataInstanceForm_ztv76_1",
9
10
  wrapperGradient: "_wrapperGradient_ztv76_7",
10
11
  suggestionsFetching: "_suggestionsFetching_ztv76_17",
11
12
  metadataInstanceFormContent: "_metadataInstanceFormContent_ztv76_23",
12
13
  metadataInstanceFormContentReducedGap: "_metadataInstanceFormContentReducedGap_ztv76_30",
13
14
  showOverlay: "_showOverlay_ztv76_34"
14
- }, l = (l) => {
15
- let { areAiSuggestionsAvailable: u, children: d, className: f, formRef: p, isAdvancedExtractAgentEnabled: m = !1, isAiSuggestionsFeatureEnabled: h, isBetaLanguageEnabled: g, isConfidenceScoreReviewEnabled: _ = !1, isLargeFile: v = !1, isDeleteButtonDisabled: y, onToggleReviewFilter: b, shouldShowOnlyReviewFields: x = !1, suggestions: S, isFetchingSuggestions: C, isFormDirty: w = !1, selectedTemplateInstance: T, getAiSuggestions: E, handleCancel: D, handleDelete: O } = l, { enableModernizedComponents: k } = i(), A = T?.templateKey === e, j = !!S[T?.templateKey];
16
- return /* @__PURE__ */ a("div", {
17
- className: C && c.wrapperGradient,
18
- "data-modern": k,
19
- children: /* @__PURE__ */ o(r, {
20
- ref: p,
21
- className: s(f, { [c.suggestionsFetching]: C }),
15
+ }, u = (u) => {
16
+ let { areAiSuggestionsAvailable: d, children: f, className: p, formRef: m, formValues: h, isAdvancedExtractAgentEnabled: g = !1, isAiSuggestionsFeatureEnabled: _, isBetaLanguageEnabled: v, isConfidenceScoreReviewEnabled: y = !1, isLargeFile: b = !1, isDeleteButtonDisabled: x, onToggleReviewFilter: S, shouldShowOnlyReviewFields: C = !1, suggestions: w, isFetchingSuggestions: T, isFormDirty: E = !1, selectedTemplateInstance: D, getAiSuggestions: O, handleCancel: k, handleDelete: A } = u, { enableModernizedComponents: j } = a(), M = D?.templateKey === e, N = !!w[D?.templateKey];
17
+ return /* @__PURE__ */ o("div", {
18
+ className: T && l.wrapperGradient,
19
+ "data-modern": j,
20
+ children: /* @__PURE__ */ s(i, {
21
+ ref: m,
22
+ className: c(p, { [l.suggestionsFetching]: T }),
22
23
  children: [
23
- /* @__PURE__ */ a(t, {
24
- areAiSuggestionsAvailable: u,
25
- hasSuggestions: j,
26
- isAdvancedExtractAgentEnabled: m,
27
- isAiSuggestionsFeatureEnabled: h && !A,
28
- isBetaLanguageEnabled: g,
29
- isConfidenceScoreReviewEnabled: _,
30
- isLargeFile: v,
31
- isLoading: C,
32
- onAutofill: E,
33
- onToggleReviewFilter: b,
34
- shouldShowOnlyReviewFields: x,
35
- templateName: T?.displayName
24
+ /* @__PURE__ */ o(t, {
25
+ areAiSuggestionsAvailable: d,
26
+ hasSuggestions: N,
27
+ isAdvancedExtractAgentEnabled: g,
28
+ isAiSuggestionsFeatureEnabled: _ && !M,
29
+ isBetaLanguageEnabled: v,
30
+ isConfidenceScoreReviewEnabled: y,
31
+ isLargeFile: b,
32
+ isLoading: T,
33
+ onAutofill: O,
34
+ onToggleReviewFilter: S,
35
+ shouldShowOnlyReviewFields: C,
36
+ templateName: D?.displayName
36
37
  }),
37
- T && d,
38
- /* @__PURE__ */ a(n, {
39
- isDeleteButtonDisabled: y,
40
- isLoading: C,
41
- onCancel: () => D(w),
42
- onDelete: O
38
+ D && f,
39
+ /* @__PURE__ */ o(n, {
40
+ isLoading: T,
41
+ isConfidenceScoreReviewEnabled: y,
42
+ fields: h.metadata?.fields ?? []
43
+ }),
44
+ /* @__PURE__ */ o(r, {
45
+ isDeleteButtonDisabled: x,
46
+ isLoading: T,
47
+ onCancel: () => k(E),
48
+ onDelete: A
43
49
  })
44
50
  ]
45
51
  })
46
52
  });
47
53
  };
48
- export { c as n, l as t };
54
+ export { l as n, u as t };
@@ -0,0 +1,2 @@
1
+ import { t as e } from "../../../../../../chunks/metadata-instance-form-ai-disclaimer.js";
2
+ export { e as MetadataInstanceFormAiDisclaimer };
@@ -99,6 +99,10 @@ var t = e({
99
99
  viewOnDocument: {
100
100
  id: "groupSharedFeatures.metadataEditor.viewOnDocument",
101
101
  defaultMessage: "View on document"
102
+ },
103
+ aiDisclaimer: {
104
+ id: "groupSharedFeatures.metadataEditor.aiDisclaimer",
105
+ defaultMessage: "Box AI is continuously evolving. Please verify all AI-generated information."
102
106
  }
103
107
  }), n = e({
104
108
  autofillButtonTooltipGA: {
@@ -6,6 +6,7 @@ export default {
6
6
  "comboboxWithApiPagination.loadingAriaLabel": "লোড করা হচ্ছে...",
7
7
  "comboboxWithApiPagination.loadingMoreAriaLabel": "আরও লোড করা হচ্ছে...",
8
8
  "comboboxWithApiPagination.noResults": "কোনো ফলাফল পাওয়া যায়নি",
9
+ "groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AI is continuously evolving. Please verify all AI-generated information.",
9
10
  "groupSharedFeatures.metadataEditor.loading": "লোড করা হচ্ছে",
10
11
  "groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "{date} তারিখের পরের তারিখ লিখুন",
11
12
  "groupSharedFeatures.metadataEditor.metadataEditorFields.append": "সংযুক্ত করুন",
@@ -44,30 +45,30 @@ export default {
44
45
  "groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder": "সব টেমপ্লেট অনুসন্ধান করুন",
45
46
  "groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "টেমপ্লেট নির্বাচন করুন",
46
47
  "groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "টেমপ্লেট লোড করা যায়নি। পরে আবার চেষ্টা করুন",
47
- "groupSharedFeatures.metadataEditor.viewOnDocument": "View on document",
48
+ "groupSharedFeatures.metadataEditor.viewOnDocument": "ডকুমেন্টে দেখুন",
48
49
  "metadataEditor.addMetadataTemplate.customMetadataName": "কাস্টম মেটাডেটা",
49
50
  "metadataEditor.addMetadataTemplate.search.placeholder": "টেমপ্লেট খুঁজুন",
50
51
  "metadataEditor.addMetadataTemplate.trigger.label": "টেমপ্লেট যোগ করুন",
51
- "metadataEditor.aiSuggestionField.acceptLabel": "Accept suggestion",
52
+ "metadataEditor.aiSuggestionField.acceptLabel": "পরামর্শ গ্রহণ করুন",
52
53
  "metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI পরামর্শ:",
53
54
  "metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI-র পরামর্শ ({level} আত্মবিশ্বাস)",
54
55
  "metadataEditor.aiSuggestionField.aiSuggestionOptions": "বিকল্প",
55
56
  "metadataEditor.aiSuggestionField.appendLabel": "সংযুক্ত করুন",
56
57
  "metadataEditor.aiSuggestionField.clearAndReplaceLabel": "পরিষ্কার করুন এবং প্রতিস্থাপন করুন",
57
- "metadataEditor.aiSuggestionField.confidenceLevelHigh": "High",
58
- "metadataEditor.aiSuggestionField.confidenceLevelLow": "Low",
58
+ "metadataEditor.aiSuggestionField.confidenceLevelHigh": "বেশি",
59
+ "metadataEditor.aiSuggestionField.confidenceLevelLow": "কম",
59
60
  "metadataEditor.aiSuggestionField.dismissLabel": "নিশ্চিত করুন",
60
61
  "metadataEditor.aiSuggestionField.ignoreLabel": "উপেক্ষা করুন",
61
62
  "metadataEditor.aiSuggestionField.sameValueAiSuggestionCaption": "Box AI উপরের মতো একই মান প্রস্তাব করে",
62
- "metadataEditor.aiSuggestionField.sameValueAiSuggestionCaptionWithLevel": "Box AI suggests the same value as above ({level} confidence)",
63
+ "metadataEditor.aiSuggestionField.sameValueAiSuggestionCaptionWithLevel": "Box AI উপরের মতো একই মানের পরামর্শ দেয় ({level} আত্মবিশ্বাস)",
63
64
  "metadataEditor.autofillButton.ariaLabel": "Box AI-এর মাধ্যমে অটোফিল করুন",
64
65
  "metadataEditor.autofillButton.ariaLabelWithTemplateName": "Box AI দিয়ে {templateName} অটোফিল করুন",
65
66
  "metadataEditor.autofillButton.tooltip.enhanced": "Box AI (বর্ধিত)-এর মাধ্যমে অটোফিল করুন",
66
67
  "metadataEditor.autofillButton.tooltip.ga": "Box AI-এর মাধ্যমে অটোফিল করুন",
67
68
  "metadataEditor.autofillButton.tooltip.standard": "Box AI (স্ট্যান্ডার্ড)-এর মাধ্যমে অটোফিল করুন",
68
- "metadataEditor.confidenceScore.tooltipHighConfidence": "এই এক্সট্রাকশনের জন্য Box AI উচ্চ আত্মবিশ্বাস ({score}) লেভেল রিটার্ন করেছে।",
69
- "metadataEditor.confidenceScore.tooltipLowConfidence": "এই এক্সট্রাকশনের জন্য Box AI কম আস্থা ({score}) লেভেল ফেরত দিয়েছে। মান পর্যালোচনা করুন।",
70
- "metadataEditor.confidenceScore.tooltipReviewedAndAccepted": "Box AI এই এক্সট্রাকশনের জন্য কম আত্মবিশ্বাস ({score}) লেভেল রিটার্ন করেছে, তবে এটি একজন মানুষের দ্বারা গৃহীত হয়েছে।",
69
+ "metadataEditor.confidenceScore.tooltipHighConfidence": "এই এক্সট্রাকশনের জন্য Box AI বেশি আত্মবিশ্বাস লেভেল রিটার্ন করেছে।",
70
+ "metadataEditor.confidenceScore.tooltipLowConfidence": "এই এক্সট্রাকশনের জন্য Box AI কম আত্মবিশ্বাস লেভেল রিটার্ন করেছে। মান পর্যালোচনা করুন।",
71
+ "metadataEditor.confidenceScore.tooltipReviewedAndAccepted": "Box AI এই এক্সট্রাকশনের জন্য কম আত্মবিশ্বাস লেভেল রিটার্ন করেছে, তবে এটি একজন মানুষ দ্বারা গৃহীত হয়েছে।",
71
72
  "metadataEditor.editInstance.deleteConfirmationModal.body.checkboxLabel": "মেটাডেটার ইনস্ট্যান্স মুছে ফেলা নিশ্চিত করুন",
72
73
  "metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph": "আপনি কি সত্যিই \"{templateName}\" মেটাডেটা টেমপ্লেট এবং এই ফাইল থেকে এটির সব মান মুছে ফেলতে চান?",
73
74
  "metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraphCheckboxVersion": "আপনি কি নিশ্চিত যে \"{templateName}\" মেটাডেটার ইনস্ট্যান্স এবং এর মান মুছতে চান?",
@@ -12,6 +12,8 @@ comboboxWithApiPagination.loadingAriaLabel = লোড করা হচ্ছে
12
12
  comboboxWithApiPagination.loadingMoreAriaLabel = আরও লোড করা হচ্ছে...
13
13
  # Message displayed when no results are found in the combobox
14
14
  comboboxWithApiPagination.noResults = কোনো ফলাফল পাওয়া যায়নি
15
+ # Disclaimer shown when at least one metadata field has been autofilled by AI
16
+ groupSharedFeatures.metadataEditor.aiDisclaimer = Box AI is continuously evolving. Please verify all AI-generated information.
15
17
  # Aria label indicating that content is loading or in progress
16
18
  groupSharedFeatures.metadataEditor.loading = লোড করা হচ্ছে
17
19
  # Error message shown if an invalid after date is entered. {date} represents the date entered by the user.
@@ -88,12 +90,16 @@ groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlacehold
88
90
  groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate = টেমপ্লেট নির্বাচন করুন
89
91
  # Error message displayed when templates fail to load
90
92
  groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError = টেমপ্লেট লোড করা যায়নি। পরে আবার চেষ্টা করুন
93
+ # Tooltip shown when hovering over a clickable metadata field with bounding boxes
94
+ groupSharedFeatures.metadataEditor.viewOnDocument = ডকুমেন্টে দেখুন
91
95
  # Display name for custom metadata templates
92
96
  metadataEditor.addMetadataTemplate.customMetadataName = কাস্টম মেটাডেটা
93
97
  # Description for the search input field in the metadata editor
94
98
  metadataEditor.addMetadataTemplate.search.placeholder = টেমপ্লেট খুঁজুন
95
99
  # Call to encourage user to add metadata templates
96
100
  metadataEditor.addMetadataTemplate.trigger.label = টেমপ্লেট যোগ করুন
101
+ # Label for accepting the AI suggestion when it matches the existing field value
102
+ metadataEditor.aiSuggestionField.acceptLabel = পরামর্শ গ্রহণ করুন
97
103
  # Label for value suggested by Box AI
98
104
  metadataEditor.aiSuggestionField.aiSuggestionCaption = Box AI পরামর্শ:
99
105
  # Label for value suggested by Box AI, including confidence level (e.g. "low")
@@ -104,12 +110,18 @@ metadataEditor.aiSuggestionField.aiSuggestionOptions = বিকল্প
104
110
  metadataEditor.aiSuggestionField.appendLabel = সংযুক্ত করুন
105
111
  # Label for clearing the current value and applying the AI suggestion
106
112
  metadataEditor.aiSuggestionField.clearAndReplaceLabel = পরিষ্কার করুন এবং প্রতিস্থাপন করুন
113
+ # Confidence level label shown in the AI suggestion caption when extraction confidence is high
114
+ metadataEditor.aiSuggestionField.confidenceLevelHigh = বেশি
115
+ # Confidence level label shown in the AI suggestion caption when extraction confidence is low or medium
116
+ metadataEditor.aiSuggestionField.confidenceLevelLow = কম
107
117
  # Label for confirming the message informing that AI suggestion is the same as already applied value
108
118
  metadataEditor.aiSuggestionField.dismissLabel = নিশ্চিত করুন
109
119
  # Label for ignoring the AI suggestion
110
120
  metadataEditor.aiSuggestionField.ignoreLabel = উপেক্ষা করুন
111
121
  # Label informing that AI suggestion value is the same as already existing value
112
122
  metadataEditor.aiSuggestionField.sameValueAiSuggestionCaption = Box AI উপরের মতো একই মান প্রস্তাব করে
123
+ # Label informing that AI suggestion value is the same as already existing value, including confidence level
124
+ metadataEditor.aiSuggestionField.sameValueAiSuggestionCaptionWithLevel = Box AI উপরের মতো একই মানের পরামর্শ দেয় ({level} আত্মবিশ্বাস)
113
125
  # Aria label for the autofill button
114
126
  metadataEditor.autofillButton.ariaLabel = Box AI-এর মাধ্যমে অটোফিল করুন
115
127
  # Aria label for the autofill button with the template name
@@ -120,12 +132,12 @@ metadataEditor.autofillButton.tooltip.enhanced = Box AI (বর্ধিত)-এ
120
132
  metadataEditor.autofillButton.tooltip.ga = Box AI-এর মাধ্যমে অটোফিল করুন
121
133
  # Tooltip for the autofill button when using standard AI agent
122
134
  metadataEditor.autofillButton.tooltip.standard = Box AI (স্ট্যান্ডার্ড)-এর মাধ্যমে অটোফিল করুন
123
- # Tooltip message shown when Box AI extraction has high confidence score. {score} is the formatted percentage (e.g., "95%")
124
- metadataEditor.confidenceScore.tooltipHighConfidence = এই এক্সট্রাকশনের জন্য Box AI উচ্চ আত্মবিশ্বাস ({score}) লেভেল রিটার্ন করেছে।
125
- # Tooltip message shown when Box AI extraction has low confidence score. {score} is the formatted percentage (e.g., "35%")
126
- metadataEditor.confidenceScore.tooltipLowConfidence = এই এক্সট্রাকশনের জন্য Box AI কম আস্থা ({score}) লেভেল ফেরত দিয়েছে। মান পর্যালোচনা করুন।
135
+ # Tooltip message shown when Box AI extraction has high confidence score
136
+ metadataEditor.confidenceScore.tooltipHighConfidence = এই এক্সট্রাকশনের জন্য Box AI বেশি আত্মবিশ্বাস লেভেল রিটার্ন করেছে।
137
+ # Tooltip message shown when Box AI extraction has low confidence score
138
+ metadataEditor.confidenceScore.tooltipLowConfidence = এই এক্সট্রাকশনের জন্য Box AI কম আত্মবিশ্বাস লেভেল রিটার্ন করেছে। মান পর্যালোচনা করুন।
127
139
  # Tooltip message shown when a low confidence extraction has been reviewed and accepted by user
128
- metadataEditor.confidenceScore.tooltipReviewedAndAccepted = Box AI এই এক্সট্রাকশনের জন্য কম আত্মবিশ্বাস ({score}) লেভেল রিটার্ন করেছে, তবে এটি একজন মানুষের দ্বারা গৃহীত হয়েছে।
140
+ metadataEditor.confidenceScore.tooltipReviewedAndAccepted = Box AI এই এক্সট্রাকশনের জন্য কম আত্মবিশ্বাস লেভেল রিটার্ন করেছে, তবে এটি একজন মানুষ দ্বারা গৃহীত হয়েছে।
129
141
  # Label informing how to confirm deletion of the template
130
142
  metadataEditor.editInstance.deleteConfirmationModal.body.checkboxLabel = মেটাডেটার ইনস্ট্যান্স মুছে ফেলা নিশ্চিত করুন
131
143
  # Paragraph asking user are they sure that they want to delete the template
@@ -6,6 +6,7 @@ export default {
6
6
  "comboboxWithApiPagination.loadingAriaLabel": "Indlæser...",
7
7
  "comboboxWithApiPagination.loadingMoreAriaLabel": "Indlæser mere...",
8
8
  "comboboxWithApiPagination.noResults": "Ingen resultater fundet",
9
+ "groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AI is continuously evolving. Please verify all AI-generated information.",
9
10
  "groupSharedFeatures.metadataEditor.loading": "indlæser",
10
11
  "groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Indtast en dato efter den {date}",
11
12
  "groupSharedFeatures.metadataEditor.metadataEditorFields.append": "Tilføj",
@@ -44,30 +45,30 @@ export default {
44
45
  "groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder": "Søg i alle skabeloner",
45
46
  "groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Vælg en skabelon",
46
47
  "groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Skabeloner kunne ikke indlæses. Prøv igen senere",
47
- "groupSharedFeatures.metadataEditor.viewOnDocument": "View on document",
48
+ "groupSharedFeatures.metadataEditor.viewOnDocument": "Vis dokument",
48
49
  "metadataEditor.addMetadataTemplate.customMetadataName": "Brugerdefineret metadata",
49
50
  "metadataEditor.addMetadataTemplate.search.placeholder": "Søg efter skabeloner",
50
51
  "metadataEditor.addMetadataTemplate.trigger.label": "Tilføj skabelon",
51
- "metadataEditor.aiSuggestionField.acceptLabel": "Accept suggestion",
52
+ "metadataEditor.aiSuggestionField.acceptLabel": "Acceptér forslag",
52
53
  "metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI",
53
54
  "metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI-forslag ({level} tillid)",
54
55
  "metadataEditor.aiSuggestionField.aiSuggestionOptions": "Indstillingsmuligheder",
55
56
  "metadataEditor.aiSuggestionField.appendLabel": "Tilføj",
56
57
  "metadataEditor.aiSuggestionField.clearAndReplaceLabel": "Ryd og Erstat",
57
- "metadataEditor.aiSuggestionField.confidenceLevelHigh": "High",
58
- "metadataEditor.aiSuggestionField.confidenceLevelLow": "Low",
58
+ "metadataEditor.aiSuggestionField.confidenceLevelHigh": "Høj",
59
+ "metadataEditor.aiSuggestionField.confidenceLevelLow": "Lav",
59
60
  "metadataEditor.aiSuggestionField.dismissLabel": "Bekræft",
60
61
  "metadataEditor.aiSuggestionField.ignoreLabel": "Ignorer",
61
62
  "metadataEditor.aiSuggestionField.sameValueAiSuggestionCaption": "Box AI foreslår den samme værdi som ovenfor",
62
- "metadataEditor.aiSuggestionField.sameValueAiSuggestionCaptionWithLevel": "Box AI suggests the same value as above ({level} confidence)",
63
+ "metadataEditor.aiSuggestionField.sameValueAiSuggestionCaptionWithLevel": "Box AI foreslår samme værdi som ovenfor ({level} tillid)",
63
64
  "metadataEditor.autofillButton.ariaLabel": "Automatisk udfyldning med Box AI",
64
65
  "metadataEditor.autofillButton.ariaLabelWithTemplateName": "Automatisk udfyldning af {templateName} med Box AI",
65
66
  "metadataEditor.autofillButton.tooltip.enhanced": "Automatisk udfyldning med Box AI (Forbedret)",
66
67
  "metadataEditor.autofillButton.tooltip.ga": "Automatisk udfyldning med Box AI",
67
68
  "metadataEditor.autofillButton.tooltip.standard": "Automatisk udfyldning med Box AI (Standard)",
68
- "metadataEditor.confidenceScore.tooltipHighConfidence": "Box AI returnerede højt tillidsniveau ({score}) for denne udtrækning.",
69
- "metadataEditor.confidenceScore.tooltipLowConfidence": "Box AI returnerede lavt tillidsniveau ({score}) for denne udtrækning. Gennemgå værdien.",
70
- "metadataEditor.confidenceScore.tooltipReviewedAndAccepted": "Box AI vendte tilbage med lavt tillidsniveau ({score}) for denne udtrækning, men den blev godtaget af et menneske.",
69
+ "metadataEditor.confidenceScore.tooltipHighConfidence": "Box AI returnerede et højt tillidsniveau for denne udtrækning.",
70
+ "metadataEditor.confidenceScore.tooltipLowConfidence": "Box AI returnerede lavt tillidsniveau for denne udtrækning. Gennemgang værdien.",
71
+ "metadataEditor.confidenceScore.tooltipReviewedAndAccepted": "Box AI returnerede et lavt tillidsniveau for denne udtrækning, men den blev godtaget af et menneske.",
71
72
  "metadataEditor.editInstance.deleteConfirmationModal.body.checkboxLabel": "Bekræft sletning af metadatainstans",
72
73
  "metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph": "Er du sikker på, at du vil slette \"{templateName}\" metadataskabelon og alle dens værdier fra denne fil?",
73
74
  "metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraphCheckboxVersion": "Er du sikker på, at du vil slette metadatainstansen \"{templateName}\" og dens værdier?",
@@ -12,6 +12,8 @@ comboboxWithApiPagination.loadingAriaLabel = Indlæser...
12
12
  comboboxWithApiPagination.loadingMoreAriaLabel = Indlæser mere...
13
13
  # Message displayed when no results are found in the combobox
14
14
  comboboxWithApiPagination.noResults = Ingen resultater fundet
15
+ # Disclaimer shown when at least one metadata field has been autofilled by AI
16
+ groupSharedFeatures.metadataEditor.aiDisclaimer = Box AI is continuously evolving. Please verify all AI-generated information.
15
17
  # Aria label indicating that content is loading or in progress
16
18
  groupSharedFeatures.metadataEditor.loading = indlæser
17
19
  # Error message shown if an invalid after date is entered. {date} represents the date entered by the user.
@@ -88,12 +90,16 @@ groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlacehold
88
90
  groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate = Vælg en skabelon
89
91
  # Error message displayed when templates fail to load
90
92
  groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError = Skabeloner kunne ikke indlæses. Prøv igen senere
93
+ # Tooltip shown when hovering over a clickable metadata field with bounding boxes
94
+ groupSharedFeatures.metadataEditor.viewOnDocument = Vis på dokument
91
95
  # Display name for custom metadata templates
92
96
  metadataEditor.addMetadataTemplate.customMetadataName = Brugerdefineret metadata
93
97
  # Description for the search input field in the metadata editor
94
98
  metadataEditor.addMetadataTemplate.search.placeholder = Søg efter skabeloner
95
99
  # Call to encourage user to add metadata templates
96
100
  metadataEditor.addMetadataTemplate.trigger.label = Tilføj skabelon
101
+ # Label for accepting the AI suggestion when it matches the existing field value
102
+ metadataEditor.aiSuggestionField.acceptLabel = Acceptér forslag
97
103
  # Label for value suggested by Box AI
98
104
  metadataEditor.aiSuggestionField.aiSuggestionCaption = Box AI
99
105
  # Label for value suggested by Box AI, including confidence level (e.g. "low")
@@ -104,12 +110,18 @@ metadataEditor.aiSuggestionField.aiSuggestionOptions = Indstillingsmuligheder
104
110
  metadataEditor.aiSuggestionField.appendLabel = Tilføj
105
111
  # Label for clearing the current value and applying the AI suggestion
106
112
  metadataEditor.aiSuggestionField.clearAndReplaceLabel = Ryd og Erstat
113
+ # Confidence level label shown in the AI suggestion caption when extraction confidence is high
114
+ metadataEditor.aiSuggestionField.confidenceLevelHigh = Høj
115
+ # Confidence level label shown in the AI suggestion caption when extraction confidence is low or medium
116
+ metadataEditor.aiSuggestionField.confidenceLevelLow = Lav
107
117
  # Label for confirming the message informing that AI suggestion is the same as already applied value
108
118
  metadataEditor.aiSuggestionField.dismissLabel = Bekræft
109
119
  # Label for ignoring the AI suggestion
110
120
  metadataEditor.aiSuggestionField.ignoreLabel = Ignorer
111
121
  # Label informing that AI suggestion value is the same as already existing value
112
122
  metadataEditor.aiSuggestionField.sameValueAiSuggestionCaption = Box AI foreslår den samme værdi som ovenfor
123
+ # Label informing that AI suggestion value is the same as already existing value, including confidence level
124
+ metadataEditor.aiSuggestionField.sameValueAiSuggestionCaptionWithLevel = Box AI foreslår samme værdi som ovenfor ({level} tillid)
113
125
  # Aria label for the autofill button
114
126
  metadataEditor.autofillButton.ariaLabel = Automatisk udfyldning med Box AI
115
127
  # Aria label for the autofill button with the template name
@@ -120,12 +132,12 @@ metadataEditor.autofillButton.tooltip.enhanced = Automatisk udfyldning med Box A
120
132
  metadataEditor.autofillButton.tooltip.ga = Automatisk udfyldning med Box AI
121
133
  # Tooltip for the autofill button when using standard AI agent
122
134
  metadataEditor.autofillButton.tooltip.standard = Automatisk udfyldning med Box AI (Standard)
123
- # Tooltip message shown when Box AI extraction has high confidence score. {score} is the formatted percentage (e.g., "95%")
124
- metadataEditor.confidenceScore.tooltipHighConfidence = Box AI returnerede højt tillidsniveau ({score}) for denne udtrækning.
125
- # Tooltip message shown when Box AI extraction has low confidence score. {score} is the formatted percentage (e.g., "35%")
126
- metadataEditor.confidenceScore.tooltipLowConfidence = Box AI returnerede lavt tillidsniveau ({score}) for denne udtrækning. Gennemgå værdien.
135
+ # Tooltip message shown when Box AI extraction has high confidence score
136
+ metadataEditor.confidenceScore.tooltipHighConfidence = Box AI returnerede et højt tillidsniveau for denne udtrækning.
137
+ # Tooltip message shown when Box AI extraction has low confidence score
138
+ metadataEditor.confidenceScore.tooltipLowConfidence = Box AI returnerede lavt tillidsniveau for denne udtrækning. Gennemgang værdien.
127
139
  # Tooltip message shown when a low confidence extraction has been reviewed and accepted by user
128
- metadataEditor.confidenceScore.tooltipReviewedAndAccepted = Box AI vendte tilbage med lavt tillidsniveau ({score}) for denne udtrækning, men den blev godtaget af et menneske.
140
+ metadataEditor.confidenceScore.tooltipReviewedAndAccepted = Box AI returnerede et lavt tillidsniveau for denne udtrækning, men den blev godtaget af et menneske.
129
141
  # Label informing how to confirm deletion of the template
130
142
  metadataEditor.editInstance.deleteConfirmationModal.body.checkboxLabel = Bekræft sletning af metadatainstans
131
143
  # Paragraph asking user are they sure that they want to delete the template
@@ -6,6 +6,7 @@ export default {
6
6
  "comboboxWithApiPagination.loadingAriaLabel": "Laden …",
7
7
  "comboboxWithApiPagination.loadingMoreAriaLabel": "Mehr wird geladen ...",
8
8
  "comboboxWithApiPagination.noResults": "Keine Ergebnisse gefunden",
9
+ "groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AI is continuously evolving. Please verify all AI-generated information.",
9
10
  "groupSharedFeatures.metadataEditor.loading": "Beladen",
10
11
  "groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Ein Datum nach {date} eingeben",
11
12
  "groupSharedFeatures.metadataEditor.metadataEditorFields.append": "Anfügen",
@@ -44,30 +45,30 @@ export default {
44
45
  "groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder": "Alle Vorlagen suchen",
45
46
  "groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Wählen Sie eine Vorlage aus",
46
47
  "groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Vorlagen konnten nicht geladen werden. Versuchen Sie es später erneut",
47
- "groupSharedFeatures.metadataEditor.viewOnDocument": "View on document",
48
+ "groupSharedFeatures.metadataEditor.viewOnDocument": "Im Dokument anzeigen",
48
49
  "metadataEditor.addMetadataTemplate.customMetadataName": "Selbst definierte Metadaten",
49
50
  "metadataEditor.addMetadataTemplate.search.placeholder": "Suchvorlagen",
50
51
  "metadataEditor.addMetadataTemplate.trigger.label": "Vorlage hinzufügen",
51
- "metadataEditor.aiSuggestionField.acceptLabel": "Accept suggestion",
52
+ "metadataEditor.aiSuggestionField.acceptLabel": "Vorschlag akzeptieren",
52
53
  "metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box-AI-Vorschlag:",
53
54
  "metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI-Vorschlag ({level} Konfidenzniveau)",
54
55
  "metadataEditor.aiSuggestionField.aiSuggestionOptions": "Optionen",
55
56
  "metadataEditor.aiSuggestionField.appendLabel": "Anfügen",
56
57
  "metadataEditor.aiSuggestionField.clearAndReplaceLabel": "Löschen und ersetzen",
57
- "metadataEditor.aiSuggestionField.confidenceLevelHigh": "High",
58
- "metadataEditor.aiSuggestionField.confidenceLevelLow": "Low",
58
+ "metadataEditor.aiSuggestionField.confidenceLevelHigh": "Hoch",
59
+ "metadataEditor.aiSuggestionField.confidenceLevelLow": "Niedrig",
59
60
  "metadataEditor.aiSuggestionField.dismissLabel": "Bestätigen",
60
61
  "metadataEditor.aiSuggestionField.ignoreLabel": "Ignorieren",
61
62
  "metadataEditor.aiSuggestionField.sameValueAiSuggestionCaption": "Box AI schlägt denselben Wert wie oben vor",
62
- "metadataEditor.aiSuggestionField.sameValueAiSuggestionCaptionWithLevel": "Box AI suggests the same value as above ({level} confidence)",
63
+ "metadataEditor.aiSuggestionField.sameValueAiSuggestionCaptionWithLevel": "Box AI schlägt denselben Wert wie oben vor ({level} Konfidenzniveau)",
63
64
  "metadataEditor.autofillButton.ariaLabel": "Automatisch ausfüllen mit Box AI",
64
65
  "metadataEditor.autofillButton.ariaLabelWithTemplateName": "Mit Box KI automatisch ausfüllen {templateName}",
65
66
  "metadataEditor.autofillButton.tooltip.enhanced": "Automatisch ausfüllen mit Box AI (erweitert)",
66
67
  "metadataEditor.autofillButton.tooltip.ga": "Automatisch ausfüllen mit Box AI",
67
68
  "metadataEditor.autofillButton.tooltip.standard": "Automatisch ausfüllen mit Box AI (Standard)",
68
- "metadataEditor.confidenceScore.tooltipHighConfidence": "Box AI hat für diese Extraktion ein hohes Konfidenzniveau ({score}) zurückgegeben.",
69
- "metadataEditor.confidenceScore.tooltipLowConfidence": "Box AI hat für diese Extraktion ein niedriges Konfidenzniveau ({score}) zurückgegeben. Bitte überprüfen Sie den Wert.",
70
- "metadataEditor.confidenceScore.tooltipReviewedAndAccepted": "Box AI hat für diese Extraktion ein niedriges Konfidenzniveau ({score}) zurückgegeben, wurde jedoch von einer Person akzeptiert.",
69
+ "metadataEditor.confidenceScore.tooltipHighConfidence": "Box AI hat für diese Extraktion ein hohes Konfidenzniveau zurückgegeben.",
70
+ "metadataEditor.confidenceScore.tooltipLowConfidence": "Box AI hat für diese Extraktion ein niedriges Konfidenzniveau zurückgegeben. Überprüfen Sie den Wert.",
71
+ "metadataEditor.confidenceScore.tooltipReviewedAndAccepted": "Box AI hat für diese Extraktion ein niedriges Konfidenzniveau zurückgegeben, es wurde jedoch von einer Person akzeptiert.",
71
72
  "metadataEditor.editInstance.deleteConfirmationModal.body.checkboxLabel": "Löschen der Metadateninstanz bestätigen",
72
73
  "metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph": "Möchten Sie die Metadaten-Vorlage „{templateName}“ und alle ihre Werte aus dieser Datei wirklich löschen?",
73
74
  "metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraphCheckboxVersion": "Möchten Sie die Metadateninstanz „{templateName}“ und ihre Werte wirklich löschen?",
@@ -12,6 +12,8 @@ comboboxWithApiPagination.loadingAriaLabel = Laden …
12
12
  comboboxWithApiPagination.loadingMoreAriaLabel = Mehr wird geladen ...
13
13
  # Message displayed when no results are found in the combobox
14
14
  comboboxWithApiPagination.noResults = Keine Ergebnisse gefunden
15
+ # Disclaimer shown when at least one metadata field has been autofilled by AI
16
+ groupSharedFeatures.metadataEditor.aiDisclaimer = Box AI is continuously evolving. Please verify all AI-generated information.
15
17
  # Aria label indicating that content is loading or in progress
16
18
  groupSharedFeatures.metadataEditor.loading = Beladen
17
19
  # Error message shown if an invalid after date is entered. {date} represents the date entered by the user.
@@ -88,12 +90,16 @@ groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlacehold
88
90
  groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate = Wählen Sie eine Vorlage aus
89
91
  # Error message displayed when templates fail to load
90
92
  groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError = Vorlagen konnten nicht geladen werden. Versuchen Sie es später erneut
93
+ # Tooltip shown when hovering over a clickable metadata field with bounding boxes
94
+ groupSharedFeatures.metadataEditor.viewOnDocument = Im Dokument anzeigen
91
95
  # Display name for custom metadata templates
92
96
  metadataEditor.addMetadataTemplate.customMetadataName = Selbst definierte Metadaten
93
97
  # Description for the search input field in the metadata editor
94
98
  metadataEditor.addMetadataTemplate.search.placeholder = Suchvorlagen
95
99
  # Call to encourage user to add metadata templates
96
100
  metadataEditor.addMetadataTemplate.trigger.label = Vorlage hinzufügen
101
+ # Label for accepting the AI suggestion when it matches the existing field value
102
+ metadataEditor.aiSuggestionField.acceptLabel = Vorschlag akzeptieren
97
103
  # Label for value suggested by Box AI
98
104
  metadataEditor.aiSuggestionField.aiSuggestionCaption = Box-AI-Vorschlag:
99
105
  # Label for value suggested by Box AI, including confidence level (e.g. "low")
@@ -104,12 +110,18 @@ metadataEditor.aiSuggestionField.aiSuggestionOptions = Optionen
104
110
  metadataEditor.aiSuggestionField.appendLabel = Anfügen
105
111
  # Label for clearing the current value and applying the AI suggestion
106
112
  metadataEditor.aiSuggestionField.clearAndReplaceLabel = Löschen und ersetzen
113
+ # Confidence level label shown in the AI suggestion caption when extraction confidence is high
114
+ metadataEditor.aiSuggestionField.confidenceLevelHigh = Hoch
115
+ # Confidence level label shown in the AI suggestion caption when extraction confidence is low or medium
116
+ metadataEditor.aiSuggestionField.confidenceLevelLow = Niedrig
107
117
  # Label for confirming the message informing that AI suggestion is the same as already applied value
108
118
  metadataEditor.aiSuggestionField.dismissLabel = Bestätigen
109
119
  # Label for ignoring the AI suggestion
110
120
  metadataEditor.aiSuggestionField.ignoreLabel = Ignorieren
111
121
  # Label informing that AI suggestion value is the same as already existing value
112
122
  metadataEditor.aiSuggestionField.sameValueAiSuggestionCaption = Box AI schlägt denselben Wert wie oben vor
123
+ # Label informing that AI suggestion value is the same as already existing value, including confidence level
124
+ metadataEditor.aiSuggestionField.sameValueAiSuggestionCaptionWithLevel = Box AI schlägt denselben Wert wie oben vor ({level} Konfidenzniveau)
113
125
  # Aria label for the autofill button
114
126
  metadataEditor.autofillButton.ariaLabel = Automatisch ausfüllen mit Box AI
115
127
  # Aria label for the autofill button with the template name
@@ -120,12 +132,12 @@ metadataEditor.autofillButton.tooltip.enhanced = Automatisch ausfüllen mit Box
120
132
  metadataEditor.autofillButton.tooltip.ga = Automatisch ausfüllen mit Box AI
121
133
  # Tooltip for the autofill button when using standard AI agent
122
134
  metadataEditor.autofillButton.tooltip.standard = Automatisch ausfüllen mit Box AI (Standard)
123
- # Tooltip message shown when Box AI extraction has high confidence score. {score} is the formatted percentage (e.g., "95%")
124
- metadataEditor.confidenceScore.tooltipHighConfidence = Box AI hat für diese Extraktion ein hohes Konfidenzniveau ({score}) zurückgegeben.
125
- # Tooltip message shown when Box AI extraction has low confidence score. {score} is the formatted percentage (e.g., "35%")
126
- metadataEditor.confidenceScore.tooltipLowConfidence = Box AI hat für diese Extraktion ein niedriges Konfidenzniveau ({score}) zurückgegeben. Bitte überprüfen Sie den Wert.
135
+ # Tooltip message shown when Box AI extraction has high confidence score
136
+ metadataEditor.confidenceScore.tooltipHighConfidence = Box AI hat für diese Extraktion ein hohes Konfidenzniveau zurückgegeben.
137
+ # Tooltip message shown when Box AI extraction has low confidence score
138
+ metadataEditor.confidenceScore.tooltipLowConfidence = Box AI hat für diese Extraktion ein niedriges Konfidenzniveau zurückgegeben. Überprüfen Sie den Wert.
127
139
  # Tooltip message shown when a low confidence extraction has been reviewed and accepted by user
128
- metadataEditor.confidenceScore.tooltipReviewedAndAccepted = Box AI hat für diese Extraktion ein niedriges Konfidenzniveau ({score}) zurückgegeben, wurde jedoch von einer Person akzeptiert.
140
+ metadataEditor.confidenceScore.tooltipReviewedAndAccepted = Box AI hat für diese Extraktion ein niedriges Konfidenzniveau zurückgegeben, es wurde jedoch von einer Person akzeptiert.
129
141
  # Label informing how to confirm deletion of the template
130
142
  metadataEditor.editInstance.deleteConfirmationModal.body.checkboxLabel = Löschen der Metadateninstanz bestätigen
131
143
  # Paragraph asking user are they sure that they want to delete the template
@@ -6,6 +6,7 @@ export default {
6
6
  "comboboxWithApiPagination.loadingAriaLabel": "Loading...",
7
7
  "comboboxWithApiPagination.loadingMoreAriaLabel": "Loading more...",
8
8
  "comboboxWithApiPagination.noResults": "No results found",
9
+ "groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AI is continuously evolving. Please verify all AI-generated information.",
9
10
  "groupSharedFeatures.metadataEditor.loading": "loading",
10
11
  "groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Enter a date after {date}",
11
12
  "groupSharedFeatures.metadataEditor.metadataEditorFields.append": "Append",
@@ -65,9 +66,9 @@ export default {
65
66
  "metadataEditor.autofillButton.tooltip.enhanced": "Autofill with Box AI (Enhanced)",
66
67
  "metadataEditor.autofillButton.tooltip.ga": "Autofill with Box AI",
67
68
  "metadataEditor.autofillButton.tooltip.standard": "Autofill with Box AI (Standard)",
68
- "metadataEditor.confidenceScore.tooltipHighConfidence": "Box AI returned high confidence ({score}) level for this extraction.",
69
- "metadataEditor.confidenceScore.tooltipLowConfidence": "Box AI returned low confidence ({score}) level for this extraction. Review the value.",
70
- "metadataEditor.confidenceScore.tooltipReviewedAndAccepted": "Box AI returned low confidence ({score}) level for this extraction but it was accepted by a human.",
69
+ "metadataEditor.confidenceScore.tooltipHighConfidence": "Box AI returned high confidence level for this extraction.",
70
+ "metadataEditor.confidenceScore.tooltipLowConfidence": "Box AI returned low confidence level for this extraction. Review the value.",
71
+ "metadataEditor.confidenceScore.tooltipReviewedAndAccepted": "Box AI returned low confidence level for this extraction but it was accepted by a human.",
71
72
  "metadataEditor.editInstance.deleteConfirmationModal.body.checkboxLabel": "Confirm deletion of Metadata instance",
72
73
  "metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph": "Are you sure you want to delete the \"{templateName}\" Metadata template, and all of its values from this file?",
73
74
  "metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraphCheckboxVersion": "Are you sure you want to delete the \"{templateName}\" Metadata instance, and its values?",
@@ -12,6 +12,8 @@ comboboxWithApiPagination.loadingAriaLabel = Loading...
12
12
  comboboxWithApiPagination.loadingMoreAriaLabel = Loading more...
13
13
  # Message displayed when no results are found in the combobox
14
14
  comboboxWithApiPagination.noResults = No results found
15
+ # Disclaimer shown when at least one metadata field has been autofilled by AI
16
+ groupSharedFeatures.metadataEditor.aiDisclaimer = Box AI is continuously evolving. Please verify all AI-generated information.
15
17
  # Aria label indicating that content is loading or in progress
16
18
  groupSharedFeatures.metadataEditor.loading = loading
17
19
  # Error message shown if an invalid after date is entered. {date} represents the date entered by the user.
@@ -88,12 +90,16 @@ groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlacehold
88
90
  groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate = Select a Template
89
91
  # Error message displayed when templates fail to load
90
92
  groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError = Could not load templates. Try again later
93
+ # Tooltip shown when hovering over a clickable metadata field with bounding boxes
94
+ groupSharedFeatures.metadataEditor.viewOnDocument = View on document
91
95
  # Display name for custom metadata templates
92
96
  metadataEditor.addMetadataTemplate.customMetadataName = Custom Metadata
93
97
  # Description for the search input field in the metadata editor
94
98
  metadataEditor.addMetadataTemplate.search.placeholder = Search templates
95
99
  # Call to encourage user to add metadata templates
96
100
  metadataEditor.addMetadataTemplate.trigger.label = Add template
101
+ # Label for accepting the AI suggestion when it matches the existing field value
102
+ metadataEditor.aiSuggestionField.acceptLabel = Accept suggestion
97
103
  # Label for value suggested by Box AI
98
104
  metadataEditor.aiSuggestionField.aiSuggestionCaption = Box AI suggestion:
99
105
  # Label for value suggested by Box AI, including confidence level (e.g. "low")
@@ -104,12 +110,18 @@ metadataEditor.aiSuggestionField.aiSuggestionOptions = Options
104
110
  metadataEditor.aiSuggestionField.appendLabel = Append
105
111
  # Label for clearing the current value and applying the AI suggestion
106
112
  metadataEditor.aiSuggestionField.clearAndReplaceLabel = Clear and Replace
113
+ # Confidence level label shown in the AI suggestion caption when extraction confidence is high
114
+ metadataEditor.aiSuggestionField.confidenceLevelHigh = High
115
+ # Confidence level label shown in the AI suggestion caption when extraction confidence is low or medium
116
+ metadataEditor.aiSuggestionField.confidenceLevelLow = Low
107
117
  # Label for confirming the message informing that AI suggestion is the same as already applied value
108
118
  metadataEditor.aiSuggestionField.dismissLabel = Confirm
109
119
  # Label for ignoring the AI suggestion
110
120
  metadataEditor.aiSuggestionField.ignoreLabel = Ignore
111
121
  # Label informing that AI suggestion value is the same as already existing value
112
122
  metadataEditor.aiSuggestionField.sameValueAiSuggestionCaption = Box AI suggests the same value as above
123
+ # Label informing that AI suggestion value is the same as already existing value, including confidence level
124
+ metadataEditor.aiSuggestionField.sameValueAiSuggestionCaptionWithLevel = Box AI suggests the same value as above ({level} confidence)
113
125
  # Aria label for the autofill button
114
126
  metadataEditor.autofillButton.ariaLabel = Autofill with Box AI
115
127
  # Aria label for the autofill button with the template name
@@ -120,12 +132,12 @@ metadataEditor.autofillButton.tooltip.enhanced = Autofill with Box AI (Enhanced)
120
132
  metadataEditor.autofillButton.tooltip.ga = Autofill with Box AI
121
133
  # Tooltip for the autofill button when using standard AI agent
122
134
  metadataEditor.autofillButton.tooltip.standard = Autofill with Box AI (Standard)
123
- # Tooltip message shown when Box AI extraction has high confidence score. {score} is the formatted percentage (e.g., "95%")
124
- metadataEditor.confidenceScore.tooltipHighConfidence = Box AI returned high confidence ({score}) level for this extraction.
125
- # Tooltip message shown when Box AI extraction has low confidence score. {score} is the formatted percentage (e.g., "35%")
126
- metadataEditor.confidenceScore.tooltipLowConfidence = Box AI returned low confidence ({score}) level for this extraction. Review the value.
135
+ # Tooltip message shown when Box AI extraction has high confidence score
136
+ metadataEditor.confidenceScore.tooltipHighConfidence = Box AI returned high confidence level for this extraction.
137
+ # Tooltip message shown when Box AI extraction has low confidence score
138
+ metadataEditor.confidenceScore.tooltipLowConfidence = Box AI returned low confidence level for this extraction. Review the value.
127
139
  # Tooltip message shown when a low confidence extraction has been reviewed and accepted by user
128
- metadataEditor.confidenceScore.tooltipReviewedAndAccepted = Box AI returned low confidence ({score}) level for this extraction but it was accepted by a human.
140
+ metadataEditor.confidenceScore.tooltipReviewedAndAccepted = Box AI returned low confidence level for this extraction but it was accepted by a human.
129
141
  # Label informing how to confirm deletion of the template
130
142
  metadataEditor.editInstance.deleteConfirmationModal.body.checkboxLabel = Confirm deletion of Metadata instance
131
143
  # Paragraph asking user are they sure that they want to delete the template
@@ -6,6 +6,7 @@ export default {
6
6
  "comboboxWithApiPagination.loadingAriaLabel": "Loading...",
7
7
  "comboboxWithApiPagination.loadingMoreAriaLabel": "Loading more...",
8
8
  "comboboxWithApiPagination.noResults": "No results found",
9
+ "groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AI is continuously evolving. Please verify all AI-generated information.",
9
10
  "groupSharedFeatures.metadataEditor.loading": "loading",
10
11
  "groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Enter a date after {date}",
11
12
  "groupSharedFeatures.metadataEditor.metadataEditorFields.append": "Append",
@@ -65,9 +66,9 @@ export default {
65
66
  "metadataEditor.autofillButton.tooltip.enhanced": "Autofill with Box AI (Enhanced)",
66
67
  "metadataEditor.autofillButton.tooltip.ga": "Autofill with Box AI",
67
68
  "metadataEditor.autofillButton.tooltip.standard": "Autofill with Box AI (Standard)",
68
- "metadataEditor.confidenceScore.tooltipHighConfidence": "Box AI returned high confidence ({score}) level for this extraction.",
69
- "metadataEditor.confidenceScore.tooltipLowConfidence": "Box AI returned low confidence ({score}) level for this extraction. Review the value.",
70
- "metadataEditor.confidenceScore.tooltipReviewedAndAccepted": "Box AI returned low confidence ({score}) level for this extraction but it was accepted by a human.",
69
+ "metadataEditor.confidenceScore.tooltipHighConfidence": "Box AI returned high confidence level for this extraction.",
70
+ "metadataEditor.confidenceScore.tooltipLowConfidence": "Box AI returned low confidence level for this extraction. Review the value.",
71
+ "metadataEditor.confidenceScore.tooltipReviewedAndAccepted": "Box AI returned low confidence level for this extraction but it was accepted by a human.",
71
72
  "metadataEditor.editInstance.deleteConfirmationModal.body.checkboxLabel": "Confirm deletion of Metadata instance",
72
73
  "metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph": "Are you sure you want to delete the \"{templateName}\" Metadata template, and all of its values from this file?",
73
74
  "metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraphCheckboxVersion": "Are you sure you want to delete the \"{templateName}\" Metadata instance, and its values?",