@box/metadata-editor 1.70.11 → 1.70.12
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/chunks/add-metadata-template-dropdown.js +84 -0
- package/dist/chunks/metadata-instance-form-autofill-button.js +3 -3
- package/dist/esm/index.js +1 -1
- package/dist/esm/lib/components/add-metadata-template-dropdown/add-metadata-template-dropdown.js +2 -33
- package/dist/esm/lib/components/add-metadata-template-dropdown/index.js +1 -1
- package/dist/esm/lib/components/add-metadata-template-dropdown/messages.js +7 -3
- package/dist/i18n/bn-IN.js +8 -4
- package/dist/i18n/da-DK.js +8 -4
- package/dist/i18n/de-DE.js +8 -4
- package/dist/i18n/en-AU.js +8 -4
- package/dist/i18n/en-CA.js +8 -4
- package/dist/i18n/en-GB.js +8 -4
- package/dist/i18n/en-US.js +4 -3
- package/dist/i18n/en-US.properties +8 -6
- package/dist/i18n/en-x-pseudo.js +8 -4
- package/dist/i18n/es-419.js +8 -4
- package/dist/i18n/es-ES.js +8 -4
- package/dist/i18n/fi-FI.js +8 -4
- package/dist/i18n/fr-CA.js +8 -4
- package/dist/i18n/fr-FR.js +8 -4
- package/dist/i18n/hi-IN.js +8 -4
- package/dist/i18n/it-IT.js +8 -4
- package/dist/i18n/ja-JP.js +8 -4
- package/dist/i18n/json/src/lib/components/add-metadata-template-dropdown/messages.json +1 -1
- package/dist/i18n/ko-KR.js +8 -4
- package/dist/i18n/nb-NO.js +8 -4
- package/dist/i18n/nl-NL.js +8 -4
- package/dist/i18n/pl-PL.js +8 -4
- package/dist/i18n/pt-BR.js +8 -4
- package/dist/i18n/ru-RU.js +8 -4
- package/dist/i18n/sv-SE.js +8 -4
- package/dist/i18n/tr-TR.js +8 -4
- package/dist/i18n/zh-CN.js +8 -4
- package/dist/i18n/zh-TW.js +8 -4
- package/dist/styles/add-metadata-template-dropdown.css +1 -0
- package/dist/styles/metadata-instance-form-autofill-button.css +1 -1
- package/dist/types/lib/components/add-metadata-template-dropdown/add-metadata-template-dropdown.d.ts +1 -1
- package/dist/types/lib/components/add-metadata-template-dropdown/messages.d.ts +5 -0
- package/dist/types/lib/components/add-metadata-template-dropdown/types.d.ts +27 -0
- package/dist/types/lib/types.d.ts +1 -0
- package/package.json +11 -10
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { getTemplateDisplayName as e } from "../esm/lib/utils/utils.js";
|
|
2
|
+
import { FilterDropdownMenu as t } from "../esm/lib/components/filter-dropdown-menu/index.js";
|
|
3
|
+
import n from "../esm/lib/components/add-metadata-template-dropdown/messages.js";
|
|
4
|
+
import { IconButton as r } from "@box/blueprint-web";
|
|
5
|
+
import { Plus as i } from "@box/blueprint-web-assets/icons/Fill";
|
|
6
|
+
import { Space2 as a } from "@box/blueprint-web-assets/tokens/px-tokens";
|
|
7
|
+
import { MetadataTemplateBrowser as o } from "@box/metadata-template-browser";
|
|
8
|
+
import { useMemo as s, useState as c } from "react";
|
|
9
|
+
import { useIntl as l } from "react-intl";
|
|
10
|
+
import { Fragment as u, jsx as d, jsxs as f } from "react/jsx-runtime";
|
|
11
|
+
import '../styles/add-metadata-template-dropdown.css';var p = { templateBrowserContainer: "_templateBrowserContainer_z6m4k_1" }, m = parseInt(a, 10), h = "enterprise";
|
|
12
|
+
function g({ availableTemplates: a, onSelect: g, selectedTemplates: _, isTemplateManagementEnabled: v = !1, isLoading: y, onCreateTemplate: b, onEditTemplate: x }) {
|
|
13
|
+
let S = l(), C = S.formatMessage(n.customMetadataName), [w, T] = c(""), E = s(() => a.filter((t) => e(t, C).toLowerCase().includes(w.toLowerCase())), [
|
|
14
|
+
a,
|
|
15
|
+
w,
|
|
16
|
+
C
|
|
17
|
+
]), D = w.length > 0 && E.length === 0, O = (e) => _.some((t) => t.scope === e.scope && t.templateKey === e.templateKey), k = s(() => a.map((t) => ({
|
|
18
|
+
id: t.id,
|
|
19
|
+
displayName: e(t, C) ?? "",
|
|
20
|
+
scope: t.scope,
|
|
21
|
+
templateKey: t.templateKey,
|
|
22
|
+
canEdit: t.canEdit
|
|
23
|
+
})), [a, C]), A = s(() => ({
|
|
24
|
+
onTemplateSelect: async (e) => {
|
|
25
|
+
let t = a.find((t) => t.id === e.id);
|
|
26
|
+
t && g(t);
|
|
27
|
+
},
|
|
28
|
+
...v && {
|
|
29
|
+
onCreateTemplate: (e) => b?.(e),
|
|
30
|
+
onTemplateEdit: (e) => {
|
|
31
|
+
let t = a.find((t) => t.id === e);
|
|
32
|
+
t?.scope && t?.templateKey && x?.({
|
|
33
|
+
namespaceFqn: t.scope,
|
|
34
|
+
templateKey: t.templateKey
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}), [
|
|
39
|
+
a,
|
|
40
|
+
g,
|
|
41
|
+
v,
|
|
42
|
+
b,
|
|
43
|
+
x
|
|
44
|
+
]), j = s(() => ({
|
|
45
|
+
getTemplates: async () => ({
|
|
46
|
+
entries: k,
|
|
47
|
+
next_marker: void 0
|
|
48
|
+
}),
|
|
49
|
+
getSearchResults: async (e) => {
|
|
50
|
+
let t = e.toLowerCase();
|
|
51
|
+
return {
|
|
52
|
+
entries: k.filter((e) => e.displayName.toLowerCase().includes(t)),
|
|
53
|
+
next_marker: void 0
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
}), [k]);
|
|
57
|
+
return /* @__PURE__ */ f(t.Root, {
|
|
58
|
+
resetValueOnHide: !0,
|
|
59
|
+
setValue: T,
|
|
60
|
+
children: [/* @__PURE__ */ d(t.Trigger, { triggerButton: /* @__PURE__ */ d(r, {
|
|
61
|
+
"aria-label": S.formatMessage(n.addMetadataTemplatesTriggerButtonLabel),
|
|
62
|
+
icon: i,
|
|
63
|
+
size: "x-small",
|
|
64
|
+
"data-target-id": "IconButton-addMetadataTemplatesTriggerButtonLabel"
|
|
65
|
+
}) }), /* @__PURE__ */ d(t.Content, {
|
|
66
|
+
gutter: m,
|
|
67
|
+
children: v ? /* @__PURE__ */ d("div", {
|
|
68
|
+
className: p.templateBrowserContainer,
|
|
69
|
+
children: /* @__PURE__ */ d(o, {
|
|
70
|
+
enterpriseId: h,
|
|
71
|
+
eventService: A,
|
|
72
|
+
isDisabled: y,
|
|
73
|
+
itemsService: j,
|
|
74
|
+
canCreateAtRoot: !1
|
|
75
|
+
})
|
|
76
|
+
}) : /* @__PURE__ */ f(u, { children: [/* @__PURE__ */ d(t.Search, { placeholder: S.formatMessage(n.addMetadataTemplatesSearchPlaceholder) }), /* @__PURE__ */ d(t.List, { children: D ? /* @__PURE__ */ d(t.EmptyState, {}) : E.map((n) => /* @__PURE__ */ d(t.Item, {
|
|
77
|
+
disabled: O(n),
|
|
78
|
+
onClick: () => g(n),
|
|
79
|
+
value: e(n, C)
|
|
80
|
+
}, n.id)) })] })
|
|
81
|
+
})]
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
export { g as t };
|
|
@@ -11,9 +11,9 @@ import { jsx as b, jsxs as x } from "react/jsx-runtime";
|
|
|
11
11
|
import { getIn as S, useFormikContext as C } from "formik";
|
|
12
12
|
import { useLocalStorageAIAgents as w } from "@box/box-ai-agent-selector";
|
|
13
13
|
import '../styles/metadata-instance-form-autofill-button.css';var T = {
|
|
14
|
-
loadingIndicator: "
|
|
15
|
-
actionMenuItem: "
|
|
16
|
-
splitButtonIcon: "
|
|
14
|
+
loadingIndicator: "_loadingIndicator_zhzu0_1",
|
|
15
|
+
actionMenuItem: "_actionMenuItem_zhzu0_11",
|
|
16
|
+
splitButtonIcon: "_splitButtonIcon_zhzu0_17"
|
|
17
17
|
}, E = /* @__PURE__ */ p(({ isButtonDisabled: t, onAutofill: n, onAgentChange: r, storedAgent: i, icon: o, ...c }, l) => {
|
|
18
18
|
let f = _(), [p, m] = g(i || "standard"), h = (e) => {
|
|
19
19
|
m(e), r(e), setTimeout(() => {
|
package/dist/esm/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FilterDropdownMenu as e } from "./lib/components/filter-dropdown-menu/index.js";
|
|
2
|
-
import {
|
|
2
|
+
import { t } from "../chunks/add-metadata-template-dropdown.js";
|
|
3
3
|
import "./lib/components/add-metadata-template-dropdown/index.js";
|
|
4
4
|
import { t as n } from "../chunks/combobox-with-api-pagination.js";
|
|
5
5
|
import "./lib/components/combobox-with-api-pagination/index.js";
|
package/dist/esm/lib/components/add-metadata-template-dropdown/add-metadata-template-dropdown.js
CHANGED
|
@@ -1,33 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
import n from "./messages.js";
|
|
4
|
-
import { IconButton as r } from "@box/blueprint-web";
|
|
5
|
-
import { Plus as i } from "@box/blueprint-web-assets/icons/Fill";
|
|
6
|
-
import { Space2 as a } from "@box/blueprint-web-assets/tokens/px-tokens";
|
|
7
|
-
import { useMemo as o, useState as s } from "react";
|
|
8
|
-
import { useIntl as c } from "react-intl";
|
|
9
|
-
import { jsx as l, jsxs as u } from "react/jsx-runtime";
|
|
10
|
-
var d = parseInt(a, 10);
|
|
11
|
-
function f({ availableTemplates: a, onSelect: f, selectedTemplates: p }) {
|
|
12
|
-
let m = c(), h = m.formatMessage(n.customMetadataName), [g, _] = s(""), v = o(() => a.filter((t) => e(t, h).toLowerCase().includes(g.toLowerCase())), [a, g]), y = g.length > 0 && v.length === 0, b = (e) => p.some((t) => t.scope === e.scope && t.templateKey === e.templateKey), x = (e) => {
|
|
13
|
-
f(e);
|
|
14
|
-
};
|
|
15
|
-
return /* @__PURE__ */ u(t.Root, {
|
|
16
|
-
resetValueOnHide: !0,
|
|
17
|
-
setValue: _,
|
|
18
|
-
children: [/* @__PURE__ */ l(t.Trigger, { triggerButton: /* @__PURE__ */ l(r, {
|
|
19
|
-
"aria-label": m.formatMessage(n.addMetadataTemplatesTriggerButtonLabel),
|
|
20
|
-
icon: i,
|
|
21
|
-
size: "x-small",
|
|
22
|
-
"data-target-id": "IconButton-addMetadataTemplatesTriggerButtonLabel"
|
|
23
|
-
}) }), /* @__PURE__ */ u(t.Content, {
|
|
24
|
-
gutter: d,
|
|
25
|
-
children: [/* @__PURE__ */ l(t.Search, { placeholder: m.formatMessage(n.addMetadataTemplatesSearchPlaceholder) }), /* @__PURE__ */ l(t.List, { children: y ? /* @__PURE__ */ l(t.EmptyState, {}) : v.map((n) => /* @__PURE__ */ l(t.Item, {
|
|
26
|
-
disabled: b(n),
|
|
27
|
-
onClick: () => x(n),
|
|
28
|
-
value: e(n, h)
|
|
29
|
-
}, n.id)) })]
|
|
30
|
-
})]
|
|
31
|
-
});
|
|
32
|
-
}
|
|
33
|
-
export { f as AddMetadataTemplateDropdown };
|
|
1
|
+
import { t as e } from "../../../../chunks/add-metadata-template-dropdown.js";
|
|
2
|
+
export { e as AddMetadataTemplateDropdown };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { t as e } from "../../../../chunks/add-metadata-template-dropdown.js";
|
|
2
2
|
export { e as AddMetadataTemplateDropdown };
|
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
import { defineMessages as e } from "react-intl";
|
|
2
2
|
var t = e({
|
|
3
3
|
customMetadataName: {
|
|
4
|
-
id: "metadataEditor.addMetadataTemplate.customMetadataName",
|
|
4
|
+
id: "groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName",
|
|
5
5
|
defaultMessage: "Custom Metadata"
|
|
6
6
|
},
|
|
7
7
|
addMetadataTemplatesSearchPlaceholder: {
|
|
8
|
-
id: "metadataEditor.addMetadataTemplate.search.placeholder",
|
|
8
|
+
id: "groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder",
|
|
9
9
|
defaultMessage: "Search templates"
|
|
10
10
|
},
|
|
11
11
|
addMetadataTemplatesTriggerButtonLabel: {
|
|
12
|
-
id: "metadataEditor.addMetadataTemplate.trigger.label",
|
|
12
|
+
id: "groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label",
|
|
13
13
|
defaultMessage: "Add template"
|
|
14
|
+
},
|
|
15
|
+
createTemplateButtonLabel: {
|
|
16
|
+
id: "groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label",
|
|
17
|
+
defaultMessage: "New Template"
|
|
14
18
|
}
|
|
15
19
|
});
|
|
16
20
|
export { t as default };
|
package/dist/i18n/bn-IN.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "লোড করা হচ্ছে...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "আরও লোড করা হচ্ছে...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "কোনো ফলাফল পাওয়া যায়নি",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "ব্যবহার করার আগে Box AI আউটপুট পর্যালোচনা ও যাচাই করা উচিত।",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "লোড করা হচ্ছে",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "{date} তারিখের পরের তারিখ লিখুন",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "টেমপ্লেট নির্বাচন করুন",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "টেমপ্লেট লোড করা যায়নি। পরে আবার চেষ্টা করুন",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "ডকুমেন্টে দেখুন",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "কাস্টম মেটাডেটা",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "টেমপ্লেট খুঁজুন",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "টেমপ্লেট যোগ করুন",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "পরামর্শ গ্রহণ করুন",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI পরামর্শ:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI-র পরামর্শ ({level} আত্মবিশ্বাস)",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "রিলোড করুন",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "ত্রুটি",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "বিশদ লোড করা যায়নি",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "লোড করা হচ্ছে..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "লোড করা হচ্ছে...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "কাস্টম মেটাডেটা",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "টেমপ্লেট খুঁজুন",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "টেমপ্লেট যোগ করুন"
|
|
160
164
|
}
|
package/dist/i18n/da-DK.js
CHANGED
|
@@ -6,6 +6,10 @@ 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.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AI-outputs bør gennemgås og bekræftes før brug.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "indlæser",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Indtast en dato efter den {date}",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Vælg en skabelon",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Skabeloner kunne ikke indlæses. Prøv igen senere",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "Vis på dokument",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Brugerdefineret metadata",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Søg efter skabeloner",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Tilføj skabelon",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Acceptér forslag",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI-forslag ({level} tillid)",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "Genindlæs",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "Fejl",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "Kunne ikke indlæse detaljer",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Indlæser..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Indlæser...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Brugerdefineret metadata",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Søg efter skabeloner",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Tilføj skabelon"
|
|
160
164
|
}
|
package/dist/i18n/de-DE.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "Laden …",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "Mehr wird geladen ...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "Keine Ergebnisse gefunden",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AI-Ausgaben sollten vor der Verwendung überprüft und verifiziert werden.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "Beladen",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Ein Datum nach {date} eingeben",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Wählen Sie eine Vorlage aus",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Vorlagen konnten nicht geladen werden. Versuchen Sie es später erneut",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "Im Dokument anzeigen",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Selbst definierte Metadaten",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Suchvorlagen",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Vorlage hinzufügen",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Vorschlag akzeptieren",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box-AI-Vorschlag:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI-Vorschlag ({level} Konfidenzniveau)",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "Neu laden",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "Fehler",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "Details konnten nicht geladen werden",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Laden …"
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Laden …",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Selbst definierte Metadaten",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Suchvorlagen",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Vorlage hinzufügen"
|
|
160
164
|
}
|
package/dist/i18n/en-AU.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "Loading...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "Loading more...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "No results found",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AI outputs should be reviewed and verified before use.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "loading",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Enter a date after {date}",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Select a Template",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Could not load templates. Try again later",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "View on document",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Accept suggestion",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI suggestion:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI suggestion ({level} confidence)",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "Reload",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "Error",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "Failed to load details",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Loading..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Loading...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Add template"
|
|
160
164
|
}
|
package/dist/i18n/en-CA.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "Loading...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "Loading more...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "No results found",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AI outputs should be reviewed and verified before use.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "loading",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Enter a date after {date}",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Select a Template",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Could not load templates. Try again later",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "View on document",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Accept suggestion",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI suggestion:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI suggestion ({level} confidence)",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "Reload",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "Error",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "Failed to load details",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Loading..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Loading...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Add template"
|
|
160
164
|
}
|
package/dist/i18n/en-GB.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "Loading...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "Loading more...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "No results found",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AI outputs should be reviewed and verified before use.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "loading",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Enter a date after {date}",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Select a Template",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Could not load templates. Try again later",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "View on document",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Accept suggestion",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI suggestion:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI suggestion ({level} confidence)",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "Reload",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "Error",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "Failed to load details",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Loading..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Loading...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Add template"
|
|
160
164
|
}
|
package/dist/i18n/en-US.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "Loading...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "Loading more...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "No results found",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AI outputs should be reviewed and verified before use.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "loading",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Enter a date after {date}",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Select a Template",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Could not load templates. Try again later",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "View on document",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Accept suggestion",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI suggestion:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI suggestion ({level} confidence)",
|
|
@@ -12,6 +12,14 @@ 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
|
+
# Label for the button that opens the template editor to create a new template
|
|
16
|
+
groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label = New Template
|
|
17
|
+
# Display name for custom metadata templates
|
|
18
|
+
groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName = Custom Metadata
|
|
19
|
+
# Description for the search input field in the metadata editor
|
|
20
|
+
groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder = Search templates
|
|
21
|
+
# Call to encourage user to add metadata templates
|
|
22
|
+
groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label = Add template
|
|
15
23
|
# Disclaimer shown when at least one metadata field has been autofilled by AI
|
|
16
24
|
groupSharedFeatures.metadataEditor.aiDisclaimer = Box AI outputs should be reviewed and verified before use.
|
|
17
25
|
# Aria label indicating that content is loading or in progress
|
|
@@ -92,12 +100,6 @@ groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate = Sel
|
|
|
92
100
|
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError = Could not load templates. Try again later
|
|
93
101
|
# Tooltip shown when hovering over a clickable metadata field with bounding boxes
|
|
94
102
|
groupSharedFeatures.metadataEditor.viewOnDocument = View on document
|
|
95
|
-
# Display name for custom metadata templates
|
|
96
|
-
metadataEditor.addMetadataTemplate.customMetadataName = Custom Metadata
|
|
97
|
-
# Description for the search input field in the metadata editor
|
|
98
|
-
metadataEditor.addMetadataTemplate.search.placeholder = Search templates
|
|
99
|
-
# Call to encourage user to add metadata templates
|
|
100
|
-
metadataEditor.addMetadataTemplate.trigger.label = Add template
|
|
101
103
|
# Label for accepting the AI suggestion when it matches the existing field value
|
|
102
104
|
metadataEditor.aiSuggestionField.acceptLabel = Accept suggestion
|
|
103
105
|
# Label for value suggested by Box AI
|
package/dist/i18n/en-x-pseudo.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "⟦萬萬 Ĺőãďίπġ... 國國⟧",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "⟦萬萬萬萬 Ļόâďíňġ mōřé... 國國國國⟧",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "⟦萬萬萬萬 Иο řęŝμľţѕ ƒöūŋď 國國國國⟧",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Βőх ΆÌ ŏüťΡůŧѕ ѕħóµļď ьє гёνīєώеď âπď νēґϊƒϊĕď вεƒσѓė ūŝè. 國國國國國國國國國國國國國國國國國⟧",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "⟦萬萬 ļõàďίйĝ 國國⟧",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "⟦萬萬萬萬萬萬萬 Èηťéя ă ďáţè áƒťěґ {date} 國國國國國國國⟧",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "⟦萬萬萬萬萬 Ŝєľёċŧ à ŤèmΡĺăτē 國國國國國⟧",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Čøüĺď ηοţ ĺσąď ţєmΡľăŧèś. Ŧŕỳ āĝąіŋ ļąťèŗ 國國國國國國國國國國國國⟧",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "⟦萬萬萬萬 Vįēщ óʼn ďσсūméņť 國國國國⟧",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "⟦萬萬萬萬 Ċűşţöm Мετàďǻťą 國國國國⟧",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "⟦萬萬萬萬 Śėäґćн τεmΡĺäτęş 國國國國⟧",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "⟦萬萬萬 Áďď τέmΡľǻţę 國國國⟧",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "⟦萬萬萬萬萬 ǺčċєΡť ѕŭġġěśťĩōи 國國國國國⟧",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "⟦萬萬萬萬萬 Βôх ΆІ śŭğġêѕţîоŋ: 國國國國國⟧",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "⟦萬萬萬萬萬萬萬萬萬萬 Бο× Āİ ѕцĝğěśťîόп ({level} сôпƒíďêήçę) 國國國國國國國國國國⟧",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "⟦萬 Ŕěļōăď 國⟧",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "⟦萬 Ēяřøґ 國⟧",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "⟦萬萬萬萬萬萬 ₣ãĩļęď ŧó ľóäď ďęŧàìļѕ 國國國國國國⟧",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "⟦萬萬 Ŀоāďίʼnġ... 國國⟧"
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "⟦萬萬 Ŀоāďίʼnġ... 國國⟧",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "⟦萬萬萬萬 Ċűşţöm Мετàďǻťą 國國國國⟧",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "⟦萬萬萬萬 Śėäґćн τεmΡĺäτęş 國國國國⟧",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "⟦萬萬萬 Áďď τέmΡľǻţę 國國國⟧"
|
|
160
164
|
}
|
package/dist/i18n/es-419.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "Cargando…",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "Cargando más...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "No se han encontrado resultados",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Los resultados de Box AI se deben revisar y verificar antes de usarlos.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "cargando",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Ingresa una fecha posterior a {date}",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Seleccionar una plantilla",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "No se pudo cargar las plantillas. Vuelve a intentarlo más tarde",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "Ver en el documento",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Metadatos personalizados",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Buscar plantillas",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Agregar plantilla",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Aceptar sugerencia",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Sugerencia de Box AI:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Sugerencia de Box AI (nivel de confianza {level})",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "Recargar",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "Error",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "Error al cargar los detalles",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Cargando…"
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Cargando…",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Metadatos personalizados",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Buscar plantillas",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Agregar plantilla"
|
|
160
164
|
}
|
package/dist/i18n/es-ES.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "Cargando…",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "Cargando más...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "No se han encontrado resultados",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Los resultados de Box AI se deben revisar y verificar antes de usarlos.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "cargando",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Ingresa una fecha posterior a {date}",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Seleccionar una plantilla",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "No se pudo cargar las plantillas. Vuelve a intentarlo más tarde",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "Ver en el documento",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Metadatos personalizados",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Buscar plantillas",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Agregar plantilla",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Aceptar sugerencia",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Sugerencia de Box AI:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Sugerencia de Box AI (nivel de confianza {level})",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "Recargar",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "Error",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "Error al cargar los detalles",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Cargando…"
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Cargando…",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Metadatos personalizados",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Buscar plantillas",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Agregar plantilla"
|
|
160
164
|
}
|
package/dist/i18n/fi-FI.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "Ladataan...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "Ladataan Lisää...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "Ei tuloksia",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AI -tulokset tulisi tarkistaa ja vahvistaa ennen käyttöä.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "ladataan",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Anna päiväys {date} jälkeen",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Valitse malli",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Malleja ei voitu ladata. Yritä myöhemmin uudelleen",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "Näytä asiakirjassa",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Mukautetut metatiedot",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Hae malleja",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Lisää malli",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Hyväksy ehdotus",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI -ehdotus:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI -ehdotus (luottamustaso {level})",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "Lataa uudelleen",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "Virhe",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "Tietoja ei voitu ladata",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Ladataan..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Ladataan...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Mukautetut metatiedot",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Hae malleja",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Lisää malli"
|
|
160
164
|
}
|
package/dist/i18n/fr-CA.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "Chargement en cours...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "Plus de chargement en cours...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "Aucun résultat trouvé",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Les résultats de Box AI doivent être examinés et vérifiés avant d’être utilisés.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "en chargement",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Saisissez une date après {date}",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Sélectionner un modèle",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Impossible de charger les modèles. Réessayer plus tard",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "Afficher sur le document",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Métadonnées personnalisées",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Modèles de recherche",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Ajouter un modèle",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Accepter la suggestion",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Suggestion Box AI :",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Suggestion de Box AI (niveau de confiance {level})",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "Recharger",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "Erreur",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "Échec du chargement des détails",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Chargement en cours..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Chargement en cours...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Métadonnées personnalisées",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Modèles de recherche",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Ajouter un modèle"
|
|
160
164
|
}
|
package/dist/i18n/fr-FR.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "Chargement en cours...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "Plus de chargement en cours...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "Aucun résultat trouvé",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Les résultats de Box AI doivent être examinés et vérifiés avant d’être utilisés.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "en chargement",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Saisissez une date après {date}",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Sélectionner un modèle",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Impossible de charger les modèles. Réessayer plus tard",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "Afficher sur le document",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Métadonnées personnalisées",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Modèles de recherche",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Ajouter un modèle",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Accepter la suggestion",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Suggestion Box AI :",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Suggestion de Box AI (niveau de confiance {level})",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "Recharger",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "Erreur",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "Échec du chargement des détails",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Chargement en cours..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Chargement en cours...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Métadonnées personnalisées",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Modèles de recherche",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Ajouter un modèle"
|
|
160
164
|
}
|
package/dist/i18n/hi-IN.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "लोड हो रहा है...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "और लोड हो रहा है...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "कोई परिणाम नहीं मिला",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AI आउटपुट्स का उपयोग करने से पहले उनकी समीक्षा और सत्यापन कर लेना चाहिए।",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "लोड हो रहा है",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "{date} के बाद की एक तारीख़ दर्ज करें",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "एक टेम्पलेट चुनें",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "टेम्पलेट्स लोड नहीं कर सका। बाद में पुनः प्रयास करें",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "दस्तावेज़ पर देखें",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "कस्टम मेटाडेटा",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "टेम्पलेट्स खोजें",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "टेम्पलेट जोड़ें",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "सुझाव स्वीकार करें",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI सुझाव:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI सुझाव ({level} आत्मविश्वास)",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "फिर से लोड करें",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "त्रुटि",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "विवरण लोड करने में विफल रहा",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "लोड हो रहा है..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "लोड हो रहा है...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "कस्टम मेटाडेटा",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "टेम्पलेट्स खोजें",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "टेम्पलेट जोड़ें"
|
|
160
164
|
}
|
package/dist/i18n/it-IT.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "Caricamento in corso...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "Caricamento altri risultati in corso…",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "Nessun risultato trovato",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Gli output di Box AI devono essere rivisti e verificati prima dell’uso.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "Caricamento in corso…",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Inserisci una data dopo il {date}",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Seleziona un modello",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Impossibile caricare i modelli. Riprova più tardi",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "Visualizza nel documento",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Metadati personalizzati",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Cerca modelli",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Aggiungi modello",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Accetta suggerimento",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Suggerimento Box AI:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Suggerimento di Box AI (attendibilità di livello {level})",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "Ricarica",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "Errore",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "Caricamento dei dettagli non riuscito",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Caricamento in corso..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Caricamento in corso...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Metadati personalizzati",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Cerca modelli",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Aggiungi modello"
|
|
160
164
|
}
|
package/dist/i18n/ja-JP.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "読み込み中...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "さらに読み込み中...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "一致する結果がありません",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AIの出力は、使用前にレビューおよび検証する必要があります。",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "読み込み中",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "{date}より後の日付を入力してください",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "テンプレートを選択",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "テンプレートを読み込めませんでした。しばらくしてからもう一度お試しください",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "ドキュメントで表示",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "カスタムメタデータ",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "テンプレートを検索",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "テンプレートを追加",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "候補を承認",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AIによる候補:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AIによる候補 (信頼度{level})",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "再読み込み",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "エラー",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "詳細を読み込めませんでした",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "読み込み中..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "読み込み中...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "カスタムメタデータ",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "テンプレートを検索",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "テンプレートを追加"
|
|
160
164
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
[{"id":"metadataEditor.addMetadataTemplate.customMetadataName","description":"Display name for custom metadata templates","defaultMessage":"Custom Metadata"},{"id":"metadataEditor.addMetadataTemplate.search.placeholder","description":"Description for the search input field in the metadata editor","defaultMessage":"Search templates"},{"id":"metadataEditor.addMetadataTemplate.trigger.label","description":"Call to encourage user to add metadata templates","defaultMessage":"Add template"}]
|
|
1
|
+
[{"id":"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName","description":"Display name for custom metadata templates","defaultMessage":"Custom Metadata"},{"id":"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder","description":"Description for the search input field in the metadata editor","defaultMessage":"Search templates"},{"id":"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label","description":"Call to encourage user to add metadata templates","defaultMessage":"Add template"},{"id":"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label","description":"Label for the button that opens the template editor to create a new template","defaultMessage":"New Template"}]
|
package/dist/i18n/ko-KR.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "로드 중...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "더 많이 로드 중...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "결과 없음",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AI 출력은 사용하기 전에 검토하고 확인해야 합니다.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "로드 중",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "{date} 이후의 날짜를 입력하십시오.",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "템플릿 선택",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "템플릿을 로드할 수 없습니다. 나중에 다시 시도하십시오",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "문서에서 보기",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "사용자 정의 메타데이터",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "검색 템플릿",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "템플릿 추가",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "제안 수락",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI 제안:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI 제안({level} 신뢰도)",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "다시 로드",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "오류",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "상세한 내용을 로드하지 못함",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "로드 중..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "로드 중...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "사용자 정의 메타데이터",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "검색 템플릿",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "템플릿 추가"
|
|
160
164
|
}
|
package/dist/i18n/nb-NO.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "Laster …",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "Laster mer …",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "Ingen resultater funnet",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AI-utdata skal gjennomgås og bekreftes før bruk.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "laster",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Skriv inn en dato etter {date}",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Velg en mal",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Kunne ikke laste inn maler. Prøv igjen senere",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "Vis på dokument",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Tilpasset metadata",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Søk etter maler",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Legg til mal",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Godta forslag",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI-forslag:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI-forslag ({level} konfidens)",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "Last inn på nytt",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "Feil",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "Kunne ikke laste inn detaljer",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Laster …"
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Laster …",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Tilpasset metadata",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Søk etter maler",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Legg til mal"
|
|
160
164
|
}
|
package/dist/i18n/nl-NL.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "Laden...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "Meer laden...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "Geen resultaten gevonden",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AI-outputs moeten worden gecontroleerd en geverifieerd voordat ze worden gebruikt.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "laden",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Voer een datum in na {date}",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Selecteer een sjabloon",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Kon geen sjablonen laden. Probeer het later opnieuw",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "Weergeven op document",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Aangepaste metagegevens",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Sjablonen zoeken",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Sjabloon toevoegen",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Suggestie accepteren",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI-suggestie:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI-suggestie (betrouwbaarheidsscore {level})",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "Opnieuw laden",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "Fout",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "Kan geen details laden",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Laden..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Laden...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Aangepaste metagegevens",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Sjablonen zoeken",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Sjabloon toevoegen"
|
|
160
164
|
}
|
package/dist/i18n/pl-PL.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "Trwa wczytywanie...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "Wczytywanie więcej...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "Nie znaleziono wyników",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Przejrzyj i zweryfikuj dane wyjściowe Box AI przed wykorzystaniem.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "Wczytywanie",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Wprowadź datę po {date}",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Wybierz szablon",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Nie można wczytać szablonów. Spróbuj ponownie później",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "Wyświetl w dokumencie",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Niestandardowe metadane",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Szablony wyszukiwania",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Dodaj szablon",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Zaakceptuj sugestię",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Sugestia Box AI:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Sugestia Box AI (poziom pewności {level})",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "Wczytaj ponownie",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "Błąd",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "Nie udało się wczytać szczegółów",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Trwa wczytywanie..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Trwa wczytywanie...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Niestandardowe metadane",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Szablony wyszukiwania",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Dodaj szablon"
|
|
160
164
|
}
|
package/dist/i18n/pt-BR.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "Carregando...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "Carregando mais...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "Nenhum resultado encontrado",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "As saídas do Box AI devem ser revisadas e verificadas antes do uso.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "carregando",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Insira uma data depois de {date}",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Selecionar um modelo",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Não foi possível carregar modelos. Tente novamente mais tarde",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "Visualizar no documento",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Metadados personalizados",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Modelos de pesquisa",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Adicionar modelo",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Aceitar sugestão",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Sugestão do Box AI:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Sugestão do Box AI (confiança {level})",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "Recarregar",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "Erro",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "Falha ao carregar detalhes",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Carregando..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Carregando...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Metadados personalizados",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Modelos de pesquisa",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Adicionar modelo"
|
|
160
164
|
}
|
package/dist/i18n/ru-RU.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "Загрузка...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "Загрузка больше...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "Результаты не найдены",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Перед использованием выводы Box AI следует просмотреть и проверить.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "загрузка",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Введите дату после {date}",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Выбрать шаблон",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Не удалось загрузить шаблоны. Повторите попытку позже",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "Просмотреть в документе",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Настраиваемые метаданные",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Шаблоны для поиска",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Добавить шаблон",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Принять предложение",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Предложение ИИ Box:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Предложение Box AI (уровень уверенности: {level})",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "Перезагрузить",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "Ошибка",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "Не удалось загрузить сведения",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Загрузка..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Загрузка...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Настраиваемые метаданные",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Шаблоны для поиска",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Добавить шаблон"
|
|
160
164
|
}
|
package/dist/i18n/sv-SE.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "Läser in...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "Läser in mer...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "Inga träffar hittades",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AI-utdata bör granskas och verifieras före användning.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "läser in",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Ange ett datum efter {date}",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Välj en mall",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Det gick inte att läsa in mallar. Försök igen senare",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "Visa på dokument",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Anpassade metadata",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Sökmallar",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Lägg till mall",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Acceptera förslag",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI-förslag:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI-förslag ({level} konfidens)",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "Ladda om",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "Fel",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "Det gick inte att ladda information",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Läser in..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Läser in...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Anpassade metadata",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Sökmallar",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Lägg till mall"
|
|
160
164
|
}
|
package/dist/i18n/tr-TR.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "Yükleniyor...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "Daha fazla yükleniyor...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "Sonuç bulunamadı",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "Box AI tarafından üretilen çıktılar, kullanılmadan önce incelenmeli ve doğrulanmalıdır.",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "yükleniyor",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "{date} tarihinden sonraki bir tarihi girin",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Bir Şablon seçin",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Şablonlar yüklenemedi. Daha sonra tekrar deneyin",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "Belgede görüntüleyin",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "Özel Meta Veri",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "Şablonları ara",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "Şablon ekle",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "Öneriyi kabul edin",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI önerisi:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI önerisi ({level} güven)",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "Yeniden yükle",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "Hata",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "Ayrıntılar yüklenemedi",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Yükleniyor..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Yükleniyor...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Özel Meta Veri",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Şablonları ara",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Şablon ekle"
|
|
160
164
|
}
|
package/dist/i18n/zh-CN.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "正在加载......",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "正在加载更多……",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "未找到结果",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "应在使用前审查和验证 Box AI 输出。",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "正在加载",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "输入在 {date} 之后的日期",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "选择模板",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "无法加载模板。 请稍后重试",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "在文档上查看",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "自定义元数据",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "搜索模板",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "添加模板",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "接受建议",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI 建议:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI 建议({level} 置信度)",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "重新加载",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "错误",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "无法加载详细信息",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "正在加载..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "正在加载...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "自定义元数据",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "搜索模板",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "添加模板"
|
|
160
164
|
}
|
package/dist/i18n/zh-TW.js
CHANGED
|
@@ -6,6 +6,10 @@ export default {
|
|
|
6
6
|
"comboboxWithApiPagination.loadingAriaLabel": "正在載入...",
|
|
7
7
|
"comboboxWithApiPagination.loadingMoreAriaLabel": "正在載入更多...",
|
|
8
8
|
"comboboxWithApiPagination.noResults": "未找到結果",
|
|
9
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.createTemplate.button.label": "New Template",
|
|
10
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.customMetadataName": "Custom Metadata",
|
|
11
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.search.placeholder": "Search templates",
|
|
12
|
+
"groupSharedFeatures.metadataEditor.addMetadataTemplate.trigger.label": "Add template",
|
|
9
13
|
"groupSharedFeatures.metadataEditor.aiDisclaimer": "使用 Box AI 輸出之前,應先檢閱與驗證內容。",
|
|
10
14
|
"groupSharedFeatures.metadataEditor.loading": "載入中",
|
|
11
15
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "輸入 {date} 之後的日期",
|
|
@@ -46,9 +50,6 @@ export default {
|
|
|
46
50
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "選擇範本",
|
|
47
51
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "無法載入範本。 稍後再試一次",
|
|
48
52
|
"groupSharedFeatures.metadataEditor.viewOnDocument": "在文件中檢視",
|
|
49
|
-
"metadataEditor.addMetadataTemplate.customMetadataName": "自訂中繼資料",
|
|
50
|
-
"metadataEditor.addMetadataTemplate.search.placeholder": "搜尋範本",
|
|
51
|
-
"metadataEditor.addMetadataTemplate.trigger.label": "新增範本",
|
|
52
53
|
"metadataEditor.aiSuggestionField.acceptLabel": "接受建議",
|
|
53
54
|
"metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI 建議:",
|
|
54
55
|
"metadataEditor.aiSuggestionField.aiSuggestionCaptionWithLevel": "Box AI 建議 ({level} 信心指數)",
|
|
@@ -156,5 +157,8 @@ export default {
|
|
|
156
157
|
"taxonomyAncestorStatusPill.errorAction": "重新載入",
|
|
157
158
|
"taxonomyAncestorStatusPill.errorIconLabel": "錯誤",
|
|
158
159
|
"taxonomyAncestorStatusPill.errorMessage": "載入詳細資料失敗",
|
|
159
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "正在載入..."
|
|
160
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "正在載入...",
|
|
161
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "自訂中繼資料",
|
|
162
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "搜尋範本",
|
|
163
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "新增範本"
|
|
160
164
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._templateBrowserContainer_z6m4k_1{padding:var(--bp-space-020,.5rem)}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._loadingIndicator_zhzu0_1{width:var(--bp-size-080,2rem);height:var(--bp-size-080,2rem);margin:unset;justify-content:center;align-items:center;display:flex;position:relative}._actionMenuItem_zhzu0_11{gap:var(--bp-space-030,.75rem);align-items:center;display:flex}._splitButtonIcon_zhzu0_17{width:var(--bp-size-040,1rem);height:var(--bp-size-040,1rem)}
|
package/dist/types/lib/components/add-metadata-template-dropdown/add-metadata-template-dropdown.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { AddMetadataTemplateDropdownProps } from './types';
|
|
2
|
-
export declare function AddMetadataTemplateDropdown({ availableTemplates, onSelect, selectedTemplates, }: AddMetadataTemplateDropdownProps): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare function AddMetadataTemplateDropdown({ availableTemplates, onSelect, selectedTemplates, isTemplateManagementEnabled, isLoading, onCreateTemplate, onEditTemplate, }: AddMetadataTemplateDropdownProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -3,4 +3,31 @@ export type AddMetadataTemplateDropdownProps = {
|
|
|
3
3
|
availableTemplates: MetadataTemplate[];
|
|
4
4
|
selectedTemplates: MetadataTemplate[];
|
|
5
5
|
onSelect: (template: MetadataTemplate) => void;
|
|
6
|
+
/**
|
|
7
|
+
* Enables create/edit template affordances. When false (default), the dropdown renders
|
|
8
|
+
* the existing search-and-list UI. When true, `MetadataTemplateBrowser` is rendered
|
|
9
|
+
* inside the dropdown content area.
|
|
10
|
+
* @default false
|
|
11
|
+
*/
|
|
12
|
+
isTemplateManagementEnabled?: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* Indicates that an external loading state is in progress. When true, the create
|
|
15
|
+
* template button is disabled.
|
|
16
|
+
*/
|
|
17
|
+
isLoading?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Callback to open the template editor for creating a new template.
|
|
20
|
+
* Called with the namespace FQN the browser is currently navigated to.
|
|
21
|
+
* Only active when `isTemplateManagementEnabled` is true.
|
|
22
|
+
*/
|
|
23
|
+
onCreateTemplate?: (namespaceFqn: string) => void;
|
|
24
|
+
/**
|
|
25
|
+
* Callback to open the template editor for editing an existing template.
|
|
26
|
+
* Wired to the template browser's edit affordance via `EventService.onTemplateEdit`.
|
|
27
|
+
* Only active when `isTemplateManagementEnabled` is true.
|
|
28
|
+
*/
|
|
29
|
+
onEditTemplate?: (identifier: {
|
|
30
|
+
namespaceFqn: string;
|
|
31
|
+
templateKey: string;
|
|
32
|
+
}) => void;
|
|
6
33
|
};
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@box/metadata-editor",
|
|
3
|
-
"version": "1.70.
|
|
3
|
+
"version": "1.70.12",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@ariakit/react": "0.4.21",
|
|
6
|
-
"@box/blueprint-web": "^14.26.
|
|
7
|
-
"@box/blueprint-web-assets": "^4.116.
|
|
8
|
-
"@box/box-ai-agent-selector": "^1.40.
|
|
9
|
-
"@box/combobox-with-api": "^1.43.
|
|
6
|
+
"@box/blueprint-web": "^14.26.1",
|
|
7
|
+
"@box/blueprint-web-assets": "^4.116.5",
|
|
8
|
+
"@box/box-ai-agent-selector": "^1.40.26",
|
|
9
|
+
"@box/combobox-with-api": "^1.43.26",
|
|
10
|
+
"@box/metadata-template-browser": "^1.21.20",
|
|
10
11
|
"formik": "^2.0.3",
|
|
11
12
|
"lodash": "^4.17.15",
|
|
12
13
|
"react": "^17.0.0 || ^18.0.0",
|
|
@@ -15,11 +16,11 @@
|
|
|
15
16
|
},
|
|
16
17
|
"devDependencies": {
|
|
17
18
|
"@ariakit/react": "0.4.21",
|
|
18
|
-
"@box/babel-plugin-target-attributes": "1.5.
|
|
19
|
-
"@box/blueprint-web": "^14.26.
|
|
20
|
-
"@box/blueprint-web-assets": "^4.116.
|
|
21
|
-
"@box/box-ai-agent-selector": "^1.40.
|
|
22
|
-
"@box/storybook-utils": "^0.18.
|
|
19
|
+
"@box/babel-plugin-target-attributes": "1.5.22",
|
|
20
|
+
"@box/blueprint-web": "^14.26.1",
|
|
21
|
+
"@box/blueprint-web-assets": "^4.116.5",
|
|
22
|
+
"@box/box-ai-agent-selector": "^1.40.26",
|
|
23
|
+
"@box/storybook-utils": "^0.18.19",
|
|
23
24
|
"@testing-library/react": "^15.0.6",
|
|
24
25
|
"react": "^18.3.0",
|
|
25
26
|
"react-dom": "^18.3.0",
|