@box/metadata-editor 1.44.1 → 1.45.0
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/esm/lib/components/metadata-instance-review-notice/messages.js +10 -6
- package/dist/esm/lib/components/metadata-instance-review-notice/metadata-instance-review-notice.js +9 -9
- package/dist/i18n/bn-IN.js +13 -6
- package/dist/i18n/da-DK.js +13 -6
- package/dist/i18n/de-DE.js +13 -6
- package/dist/i18n/en-AU.js +13 -6
- package/dist/i18n/en-CA.js +13 -6
- package/dist/i18n/en-GB.js +13 -6
- package/dist/i18n/en-US.js +7 -6
- package/dist/i18n/en-US.properties +14 -12
- package/dist/i18n/en-x-pseudo.js +13 -6
- package/dist/i18n/es-419.js +13 -6
- package/dist/i18n/es-ES.js +13 -6
- package/dist/i18n/fi-FI.js +13 -6
- package/dist/i18n/fr-CA.js +13 -6
- package/dist/i18n/fr-FR.js +13 -6
- package/dist/i18n/hi-IN.js +13 -6
- package/dist/i18n/it-IT.js +13 -6
- package/dist/i18n/ja-JP.js +13 -6
- package/dist/i18n/json/src/lib/components/metadata-instance-review-notice/messages.json +1 -1
- package/dist/i18n/ko-KR.js +13 -6
- package/dist/i18n/nb-NO.js +13 -6
- package/dist/i18n/nl-NL.js +13 -6
- package/dist/i18n/pl-PL.js +13 -6
- package/dist/i18n/pt-BR.js +13 -6
- package/dist/i18n/ru-RU.js +13 -6
- package/dist/i18n/sv-SE.js +13 -6
- package/dist/i18n/tr-TR.js +13 -6
- package/dist/i18n/zh-CN.js +13 -6
- package/dist/i18n/zh-TW.js +13 -6
- package/dist/types/lib/components/metadata-instance-review-notice/messages.d.ts +5 -0
- package/package.json +9 -9
|
@@ -1,28 +1,32 @@
|
|
|
1
1
|
import { defineMessages as e } from "react-intl";
|
|
2
2
|
const t = e({
|
|
3
3
|
reviewFieldsNoticeHeader: {
|
|
4
|
-
id: "metadataEditor.
|
|
4
|
+
id: "groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.reviewFieldsNoticeHeader",
|
|
5
5
|
defaultMessage: "{count, plural, one {# field needs} other {# fields need}} review"
|
|
6
6
|
},
|
|
7
7
|
viewReviewFieldsCTA: {
|
|
8
|
-
id: "metadataEditor.
|
|
8
|
+
id: "groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewReviewFieldsCTA",
|
|
9
9
|
defaultMessage: "View"
|
|
10
10
|
},
|
|
11
11
|
hideReviewFieldsCTA: {
|
|
12
|
-
id: "metadataEditor.
|
|
12
|
+
id: "groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideReviewFieldsCTA",
|
|
13
13
|
defaultMessage: "Hide"
|
|
14
14
|
},
|
|
15
15
|
showingReviewFields: {
|
|
16
|
-
id: "metadataEditor.
|
|
16
|
+
id: "groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.showingReviewFields",
|
|
17
17
|
defaultMessage: "Showing fields needing review"
|
|
18
18
|
},
|
|
19
19
|
viewButtonTooltip: {
|
|
20
|
-
id: "metadataEditor.
|
|
20
|
+
id: "groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewButtonTooltip",
|
|
21
21
|
defaultMessage: "{count, plural, one {# field needs} other {# fields need}} review as Box AI returned low confidence. Click to start reviewing."
|
|
22
22
|
},
|
|
23
23
|
hideButtonTooltip: {
|
|
24
|
-
id: "metadataEditor.
|
|
24
|
+
id: "groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideButtonTooltip",
|
|
25
25
|
defaultMessage: "Close review mode"
|
|
26
|
+
},
|
|
27
|
+
iconAriaLabel: {
|
|
28
|
+
id: "groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.iconAriaLabel",
|
|
29
|
+
defaultMessage: "Review alert"
|
|
26
30
|
}
|
|
27
31
|
});
|
|
28
32
|
export {
|
package/dist/esm/lib/components/metadata-instance-review-notice/metadata-instance-review-notice.js
CHANGED
|
@@ -3,25 +3,25 @@ import { ActionableInlineNotice as m, Tooltip as l, TextToggleButton as f } from
|
|
|
3
3
|
import { AlertCircle as p } from "@box/blueprint-web-assets/icons/Medium";
|
|
4
4
|
import t from "./messages.js";
|
|
5
5
|
import { jsx as s } from "react/jsx-runtime";
|
|
6
|
-
const
|
|
6
|
+
const h = ({
|
|
7
7
|
fieldsNeedingReviewCount: r,
|
|
8
8
|
isLowScoreFilteringEnabled: o = !1,
|
|
9
|
-
onTextToggleClick:
|
|
9
|
+
onTextToggleClick: i
|
|
10
10
|
}) => {
|
|
11
|
-
const e = c(),
|
|
11
|
+
const e = c(), a = o ? e.formatMessage(t.showingReviewFields) : e.formatMessage(t.reviewFieldsNoticeHeader, {
|
|
12
12
|
count: r
|
|
13
|
-
}),
|
|
13
|
+
}), n = o ? e.formatMessage(t.hideButtonTooltip) : e.formatMessage(t.viewButtonTooltip, {
|
|
14
14
|
count: r
|
|
15
15
|
});
|
|
16
16
|
return /* @__PURE__ */ s(m, {
|
|
17
17
|
backgroundColor: "backgroundBlue",
|
|
18
|
-
iconAriaLabel:
|
|
19
|
-
text:
|
|
18
|
+
iconAriaLabel: e.formatMessage(t.iconAriaLabel),
|
|
19
|
+
text: a,
|
|
20
20
|
icon: p,
|
|
21
21
|
children: /* @__PURE__ */ s(l, {
|
|
22
|
-
content:
|
|
22
|
+
content: n,
|
|
23
23
|
children: /* @__PURE__ */ s(f, {
|
|
24
|
-
onPressedChange:
|
|
24
|
+
onPressedChange: i,
|
|
25
25
|
pressed: o,
|
|
26
26
|
children: o ? e.formatMessage(t.hideReviewFieldsCTA) : e.formatMessage(t.viewReviewFieldsCTA)
|
|
27
27
|
})
|
|
@@ -29,5 +29,5 @@ const M = ({
|
|
|
29
29
|
});
|
|
30
30
|
};
|
|
31
31
|
export {
|
|
32
|
-
|
|
32
|
+
h as MetadataInstanceReviewNotice
|
|
33
33
|
};
|
package/dist/i18n/bn-IN.js
CHANGED
|
@@ -28,6 +28,13 @@ export default {
|
|
|
28
28
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.taxonomyPlaceholder": "একটি বিকল্প নির্বাচন করুন",
|
|
29
29
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "আপডেট মোড নির্বাচনকারী টগল করুন",
|
|
30
30
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.with": "এর সাথে",
|
|
31
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideButtonTooltip": "Close review mode",
|
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Hide",
|
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.iconAriaLabel": "Review alert",
|
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count, plural, one {# field needs} other {# fields need}} review",
|
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.showingReviewFields": "Showing fields needing review",
|
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewButtonTooltip": "{count, plural, one {# field needs} other {# fields need}} review as Box AI returned low confidence. Click to start reviewing.",
|
|
37
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View",
|
|
31
38
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "যোগ করুন",
|
|
32
39
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "বাতিল করুন",
|
|
33
40
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "বন্ধ করুন",
|
|
@@ -130,15 +137,15 @@ export default {
|
|
|
130
137
|
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "কাস্টম মেটাডেটা",
|
|
131
138
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonAriaLabel": "{templateName} এডিট করুন",
|
|
132
139
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonTooltip": "সম্পাদনা করুন",
|
|
140
|
+
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
141
|
+
"taxonomyAncestorStatusPill.errorAction": "রিলোড করুন",
|
|
142
|
+
"taxonomyAncestorStatusPill.errorIconLabel": "ত্রুটি",
|
|
143
|
+
"taxonomyAncestorStatusPill.errorMessage": "বিশদ লোড করা যায়নি",
|
|
144
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "লোড করা হচ্ছে...",
|
|
133
145
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideButtonTooltip": "পর্যালোচনা মোড বন্ধ করুন",
|
|
134
146
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideReviewFieldsCTA": "লুকান",
|
|
135
147
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count,plural,one{#টি ক্ষেত্র প্রয়োজন} other{#টি ক্ষেত্র প্রয়োজন}} পর্যালোচনা",
|
|
136
148
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.showingReviewFields": "দেখানো ক্ষেত্রের পর্যালোচনা প্রয়োজন",
|
|
137
149
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewButtonTooltip": "Box AI হিসাবে {count,plural,one{#টি ক্ষেত্র প্রয়োজন} other{#টি ক্ষেত্র প্রয়োজন}} পর্যালোচনা কম আত্মবিশ্বাস রিটার্ন করেছে। পর্যালোচনা শুরু করতে ক্লিক করুন।",
|
|
138
|
-
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "দেখুন"
|
|
139
|
-
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
140
|
-
"taxonomyAncestorStatusPill.errorAction": "রিলোড করুন",
|
|
141
|
-
"taxonomyAncestorStatusPill.errorIconLabel": "ত্রুটি",
|
|
142
|
-
"taxonomyAncestorStatusPill.errorMessage": "বিশদ লোড করা যায়নি",
|
|
143
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "লোড করা হচ্ছে..."
|
|
150
|
+
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "দেখুন"
|
|
144
151
|
}
|
package/dist/i18n/da-DK.js
CHANGED
|
@@ -28,6 +28,13 @@ export default {
|
|
|
28
28
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.taxonomyPlaceholder": "Vælg en mulighed",
|
|
29
29
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "Slå valg af opdateringstilstand til eller fra",
|
|
30
30
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.with": "Med",
|
|
31
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideButtonTooltip": "Close review mode",
|
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Hide",
|
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.iconAriaLabel": "Review alert",
|
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count, plural, one {# field needs} other {# fields need}} review",
|
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.showingReviewFields": "Showing fields needing review",
|
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewButtonTooltip": "{count, plural, one {# field needs} other {# fields need}} review as Box AI returned low confidence. Click to start reviewing.",
|
|
37
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View",
|
|
31
38
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "Tilføj",
|
|
32
39
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "Annuller",
|
|
33
40
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "Luk",
|
|
@@ -130,15 +137,15 @@ export default {
|
|
|
130
137
|
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Brugerdefineret metadata",
|
|
131
138
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonAriaLabel": "Rediger {templateName}",
|
|
132
139
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonTooltip": "Rediger",
|
|
140
|
+
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
141
|
+
"taxonomyAncestorStatusPill.errorAction": "Genindlæs",
|
|
142
|
+
"taxonomyAncestorStatusPill.errorIconLabel": "Fejl",
|
|
143
|
+
"taxonomyAncestorStatusPill.errorMessage": "Kunne ikke indlæse detaljer",
|
|
144
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Indlæser...",
|
|
133
145
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideButtonTooltip": "Luk gennemgangstilstand",
|
|
134
146
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Skjul",
|
|
135
147
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count,plural,one{# felt skal} other{# felter skal}} gennemgås",
|
|
136
148
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.showingReviewFields": "Viser felter, der kræver gennemgang",
|
|
137
149
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewButtonTooltip": "{count,plural,one{# felt skal} other{# felter skal}} gennemgås, da Box AI vendte tilbage med lav tillidsværdi. Klik for at starte gennemgangen.",
|
|
138
|
-
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "Se"
|
|
139
|
-
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
140
|
-
"taxonomyAncestorStatusPill.errorAction": "Genindlæs",
|
|
141
|
-
"taxonomyAncestorStatusPill.errorIconLabel": "Fejl",
|
|
142
|
-
"taxonomyAncestorStatusPill.errorMessage": "Kunne ikke indlæse detaljer",
|
|
143
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Indlæser..."
|
|
150
|
+
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "Se"
|
|
144
151
|
}
|
package/dist/i18n/de-DE.js
CHANGED
|
@@ -28,6 +28,13 @@ export default {
|
|
|
28
28
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.taxonomyPlaceholder": "Eine Option auswählen",
|
|
29
29
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "Wähler für Aktualisierungsmodus umschalten",
|
|
30
30
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.with": "Mit",
|
|
31
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideButtonTooltip": "Close review mode",
|
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Hide",
|
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.iconAriaLabel": "Review alert",
|
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count, plural, one {# field needs} other {# fields need}} review",
|
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.showingReviewFields": "Showing fields needing review",
|
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewButtonTooltip": "{count, plural, one {# field needs} other {# fields need}} review as Box AI returned low confidence. Click to start reviewing.",
|
|
37
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View",
|
|
31
38
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "Hinzufügen",
|
|
32
39
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "Abbrechen",
|
|
33
40
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "Schließen",
|
|
@@ -130,15 +137,15 @@ export default {
|
|
|
130
137
|
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Benutzerdefinierte Metadaten",
|
|
131
138
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonAriaLabel": "{templateName} bearbeiten",
|
|
132
139
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonTooltip": "Bearbeiten",
|
|
140
|
+
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
141
|
+
"taxonomyAncestorStatusPill.errorAction": "Neu laden",
|
|
142
|
+
"taxonomyAncestorStatusPill.errorIconLabel": "Fehler",
|
|
143
|
+
"taxonomyAncestorStatusPill.errorMessage": "Details konnten nicht geladen werden",
|
|
144
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Laden …",
|
|
133
145
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideButtonTooltip": "Überprüfungsmodus",
|
|
134
146
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Ausblenden",
|
|
135
147
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count,plural,one{# Feld benötigt} other{# Felder benötigt}} Überprüfung",
|
|
136
148
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.showingReviewFields": "Zeigen Felder, die überprüft werden müssen",
|
|
137
149
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewButtonTooltip": "{count,plural,one{# Feld benötigt} other{# Felder benötigt}} Überprüfung, da Box AI ein niedriges Konfidenzniveau zurückgegeben hat. Klicken Sie, um mit der Überprüfung zu beginnen.",
|
|
138
|
-
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "Anzeigen"
|
|
139
|
-
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
140
|
-
"taxonomyAncestorStatusPill.errorAction": "Neu laden",
|
|
141
|
-
"taxonomyAncestorStatusPill.errorIconLabel": "Fehler",
|
|
142
|
-
"taxonomyAncestorStatusPill.errorMessage": "Details konnten nicht geladen werden",
|
|
143
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Laden …"
|
|
150
|
+
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "Anzeigen"
|
|
144
151
|
}
|
package/dist/i18n/en-AU.js
CHANGED
|
@@ -28,6 +28,13 @@ export default {
|
|
|
28
28
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.taxonomyPlaceholder": "Select an option",
|
|
29
29
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "Toggle update mode selector",
|
|
30
30
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.with": "With",
|
|
31
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideButtonTooltip": "Close review mode",
|
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Hide",
|
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.iconAriaLabel": "Review alert",
|
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count, plural, one {# field needs} other {# fields need}} review",
|
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.showingReviewFields": "Showing fields needing review",
|
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewButtonTooltip": "{count, plural, one {# field needs} other {# fields need}} review as Box AI returned low confidence. Click to start reviewing.",
|
|
37
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View",
|
|
31
38
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "Add",
|
|
32
39
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "Cancel",
|
|
33
40
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "Close",
|
|
@@ -130,15 +137,15 @@ export default {
|
|
|
130
137
|
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Custom Metadata",
|
|
131
138
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonAriaLabel": "Edit {templateName}",
|
|
132
139
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonTooltip": "Edit",
|
|
140
|
+
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
141
|
+
"taxonomyAncestorStatusPill.errorAction": "Reload",
|
|
142
|
+
"taxonomyAncestorStatusPill.errorIconLabel": "Error",
|
|
143
|
+
"taxonomyAncestorStatusPill.errorMessage": "Failed to load details",
|
|
144
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Loading...",
|
|
133
145
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideButtonTooltip": "Close review mode",
|
|
134
146
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Hide",
|
|
135
147
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count,plural,one{# field needs} other{# fields need}} review",
|
|
136
148
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.showingReviewFields": "Showing fields needing review",
|
|
137
149
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewButtonTooltip": "{count,plural,one{# field needs} other{# fields need}} review as Box AI returned low confidence. Click to start reviewing.",
|
|
138
|
-
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View"
|
|
139
|
-
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
140
|
-
"taxonomyAncestorStatusPill.errorAction": "Reload",
|
|
141
|
-
"taxonomyAncestorStatusPill.errorIconLabel": "Error",
|
|
142
|
-
"taxonomyAncestorStatusPill.errorMessage": "Failed to load details",
|
|
143
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Loading..."
|
|
150
|
+
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View"
|
|
144
151
|
}
|
package/dist/i18n/en-CA.js
CHANGED
|
@@ -28,6 +28,13 @@ export default {
|
|
|
28
28
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.taxonomyPlaceholder": "Select an option",
|
|
29
29
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "Toggle update mode selector",
|
|
30
30
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.with": "With",
|
|
31
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideButtonTooltip": "Close review mode",
|
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Hide",
|
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.iconAriaLabel": "Review alert",
|
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count, plural, one {# field needs} other {# fields need}} review",
|
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.showingReviewFields": "Showing fields needing review",
|
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewButtonTooltip": "{count, plural, one {# field needs} other {# fields need}} review as Box AI returned low confidence. Click to start reviewing.",
|
|
37
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View",
|
|
31
38
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "Add",
|
|
32
39
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "Cancel",
|
|
33
40
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "Close",
|
|
@@ -130,15 +137,15 @@ export default {
|
|
|
130
137
|
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Custom Metadata",
|
|
131
138
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonAriaLabel": "Edit {templateName}",
|
|
132
139
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonTooltip": "Edit",
|
|
140
|
+
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
141
|
+
"taxonomyAncestorStatusPill.errorAction": "Reload",
|
|
142
|
+
"taxonomyAncestorStatusPill.errorIconLabel": "Error",
|
|
143
|
+
"taxonomyAncestorStatusPill.errorMessage": "Failed to load details",
|
|
144
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Loading...",
|
|
133
145
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideButtonTooltip": "Close review mode",
|
|
134
146
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Hide",
|
|
135
147
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count, plural, one {# field needs} other {# fields need}} review",
|
|
136
148
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.showingReviewFields": "Showing fields needing review",
|
|
137
149
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewButtonTooltip": "{count, plural, one {# field needs} other {# fields need}} review as Box AI returned low confidence. Click to start reviewing.",
|
|
138
|
-
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View"
|
|
139
|
-
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
140
|
-
"taxonomyAncestorStatusPill.errorAction": "Reload",
|
|
141
|
-
"taxonomyAncestorStatusPill.errorIconLabel": "Error",
|
|
142
|
-
"taxonomyAncestorStatusPill.errorMessage": "Failed to load details",
|
|
143
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Loading..."
|
|
150
|
+
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View"
|
|
144
151
|
}
|
package/dist/i18n/en-GB.js
CHANGED
|
@@ -28,6 +28,13 @@ export default {
|
|
|
28
28
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.taxonomyPlaceholder": "Select an option",
|
|
29
29
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "Toggle update mode selector",
|
|
30
30
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.with": "With",
|
|
31
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideButtonTooltip": "Close review mode",
|
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Hide",
|
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.iconAriaLabel": "Review alert",
|
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count, plural, one {# field needs} other {# fields need}} review",
|
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.showingReviewFields": "Showing fields needing review",
|
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewButtonTooltip": "{count, plural, one {# field needs} other {# fields need}} review as Box AI returned low confidence. Click to start reviewing.",
|
|
37
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View",
|
|
31
38
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "Add",
|
|
32
39
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "Cancel",
|
|
33
40
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "Close",
|
|
@@ -130,15 +137,15 @@ export default {
|
|
|
130
137
|
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Custom Metadata",
|
|
131
138
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonAriaLabel": "Edit {templateName}",
|
|
132
139
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonTooltip": "Edit",
|
|
140
|
+
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
141
|
+
"taxonomyAncestorStatusPill.errorAction": "Reload",
|
|
142
|
+
"taxonomyAncestorStatusPill.errorIconLabel": "Error",
|
|
143
|
+
"taxonomyAncestorStatusPill.errorMessage": "Failed to load details",
|
|
144
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Loading...",
|
|
133
145
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideButtonTooltip": "Close review mode",
|
|
134
146
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Hide",
|
|
135
147
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count,plural,one{# field needs} other{# fields need}} review",
|
|
136
148
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.showingReviewFields": "Showing fields needing review",
|
|
137
149
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewButtonTooltip": "{count,plural,one{# field needs} other{# fields need}} review as Box AI returned low confidence. Click to start reviewing.",
|
|
138
|
-
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View"
|
|
139
|
-
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
140
|
-
"taxonomyAncestorStatusPill.errorAction": "Reload",
|
|
141
|
-
"taxonomyAncestorStatusPill.errorIconLabel": "Error",
|
|
142
|
-
"taxonomyAncestorStatusPill.errorMessage": "Failed to load details",
|
|
143
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Loading..."
|
|
150
|
+
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View"
|
|
144
151
|
}
|
package/dist/i18n/en-US.js
CHANGED
|
@@ -28,6 +28,13 @@ export default {
|
|
|
28
28
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.taxonomyPlaceholder": "Select an option",
|
|
29
29
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "Toggle update mode selector",
|
|
30
30
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.with": "With",
|
|
31
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideButtonTooltip": "Close review mode",
|
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Hide",
|
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.iconAriaLabel": "Review alert",
|
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count, plural, one {# field needs} other {# fields need}} review",
|
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.showingReviewFields": "Showing fields needing review",
|
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewButtonTooltip": "{count, plural, one {# field needs} other {# fields need}} review as Box AI returned low confidence. Click to start reviewing.",
|
|
37
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View",
|
|
31
38
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "Add",
|
|
32
39
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "Cancel",
|
|
33
40
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "Close",
|
|
@@ -130,12 +137,6 @@ export default {
|
|
|
130
137
|
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Custom Metadata",
|
|
131
138
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonAriaLabel": "Edit {templateName}",
|
|
132
139
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonTooltip": "Edit",
|
|
133
|
-
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideButtonTooltip": "Close review mode",
|
|
134
|
-
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Hide",
|
|
135
|
-
"metadataEditor.viewInstance.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count, plural, one {# field needs} other {# fields need}} review",
|
|
136
|
-
"metadataEditor.viewInstance.metadataInstanceReviewNotice.showingReviewFields": "Showing fields needing review",
|
|
137
|
-
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewButtonTooltip": "{count, plural, one {# field needs} other {# fields need}} review as Box AI returned low confidence. Click to start reviewing.",
|
|
138
|
-
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View",
|
|
139
140
|
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
140
141
|
"taxonomyAncestorStatusPill.errorAction": "Reload",
|
|
141
142
|
"taxonomyAncestorStatusPill.errorIconLabel": "Error",
|
|
@@ -56,6 +56,20 @@ groupSharedFeatures.metadataEditor.metadataEditorFields.taxonomyPlaceholder = Se
|
|
|
56
56
|
groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel = Toggle update mode selector
|
|
57
57
|
# Label for the additional input field that appears when the selected update mode is "Replace Entered"
|
|
58
58
|
groupSharedFeatures.metadataEditor.metadataEditorFields.with = With
|
|
59
|
+
# Tooltip for Hide button to close review mode
|
|
60
|
+
groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideButtonTooltip = Close review mode
|
|
61
|
+
# Call to action to show all fields again
|
|
62
|
+
groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideReviewFieldsCTA = Hide
|
|
63
|
+
# Aria label for the alert icon indicating fields need review
|
|
64
|
+
groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.iconAriaLabel = Review alert
|
|
65
|
+
# Header text indicating how many fields need review
|
|
66
|
+
groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.reviewFieldsNoticeHeader = {count, plural, one {# field needs} other {# fields need}} review
|
|
67
|
+
# Text shown when displaying only fields that need review
|
|
68
|
+
groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.showingReviewFields = Showing fields needing review
|
|
69
|
+
# Tooltip for View button explaining why fields need review
|
|
70
|
+
groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewButtonTooltip = {count, plural, one {# field needs} other {# fields need}} review as Box AI returned low confidence. Click to start reviewing.
|
|
71
|
+
# Call to action to show only fields that need review
|
|
72
|
+
groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewReviewFieldsCTA = View
|
|
59
73
|
# Label for the button that applies the selection and closes the template selection dialog
|
|
60
74
|
groupSharedFeatures.metadataEditor.metadataTemplateSelector.add = Add
|
|
61
75
|
# Label for the button that dismisses the template selection dialog
|
|
@@ -260,18 +274,6 @@ metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle = Custom
|
|
|
260
274
|
metadataEditor.viewInstance.metadataInstanceHeader.editButtonAriaLabel = Edit {templateName}
|
|
261
275
|
# Tooltip text explaining that by clicking button user can edit template
|
|
262
276
|
metadataEditor.viewInstance.metadataInstanceHeader.editButtonTooltip = Edit
|
|
263
|
-
# Tooltip for Hide button to close review mode
|
|
264
|
-
metadataEditor.viewInstance.metadataInstanceReviewNotice.hideButtonTooltip = Close review mode
|
|
265
|
-
# Call to action to show all fields again
|
|
266
|
-
metadataEditor.viewInstance.metadataInstanceReviewNotice.hideReviewFieldsCTA = Hide
|
|
267
|
-
# Header text indicating how many fields need review
|
|
268
|
-
metadataEditor.viewInstance.metadataInstanceReviewNotice.reviewFieldsNoticeHeader = {count, plural, one {# field needs} other {# fields need}} review
|
|
269
|
-
# Text shown when review filter is active
|
|
270
|
-
metadataEditor.viewInstance.metadataInstanceReviewNotice.showingReviewFields = Showing fields needing review
|
|
271
|
-
# Tooltip for View button explaining why fields need review
|
|
272
|
-
metadataEditor.viewInstance.metadataInstanceReviewNotice.viewButtonTooltip = {count, plural, one {# field needs} other {# fields need}} review as Box AI returned low confidence. Click to start reviewing.
|
|
273
|
-
# Call to action to show only fields that need review
|
|
274
|
-
metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA = View
|
|
275
277
|
# Default value for ancestor level value when it is empty
|
|
276
278
|
taxonomyAncestorStatusPill.emptyAncestorLevelValue = - -
|
|
277
279
|
# Error message displayed resembling button that calls to action to reload the details
|
package/dist/i18n/en-x-pseudo.js
CHANGED
|
@@ -28,6 +28,13 @@ export default {
|
|
|
28
28
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.taxonomyPlaceholder": "⟦萬萬萬萬 Ѕëļě¢ť ąή όΡτĩόл 國國國國⟧",
|
|
29
29
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "⟦萬萬萬萬萬萬萬萬 Ťŏğĝľê úΡďǻŧë mōďè ŝèļέ¢ťöŗ 國國國國國國國國⟧",
|
|
30
30
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.with": "⟦萬 Ŵіţн 國⟧",
|
|
31
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideButtonTooltip": "Close review mode",
|
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Hide",
|
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.iconAriaLabel": "Review alert",
|
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count, plural, one {# field needs} other {# fields need}} review",
|
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.showingReviewFields": "Showing fields needing review",
|
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewButtonTooltip": "{count, plural, one {# field needs} other {# fields need}} review as Box AI returned low confidence. Click to start reviewing.",
|
|
37
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View",
|
|
31
38
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "⟦ Àďď ⟧",
|
|
32
39
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "⟦萬 Ċãπсéľ 國⟧",
|
|
33
40
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "⟦萬 Čļŏśē 國⟧",
|
|
@@ -130,15 +137,15 @@ export default {
|
|
|
130
137
|
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "⟦萬萬萬萬 Ĉŭŝťőm Μêτāďãţá 國國國國⟧",
|
|
131
138
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonAriaLabel": "⟦萬萬 Éďįţ {templateName} 國國⟧",
|
|
132
139
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonTooltip": "⟦萬 Ēďіτ 國⟧",
|
|
140
|
+
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "⟦ - - ⟧",
|
|
141
|
+
"taxonomyAncestorStatusPill.errorAction": "⟦萬 Ŕěļóαď 國⟧",
|
|
142
|
+
"taxonomyAncestorStatusPill.errorIconLabel": "⟦萬 Ёѓѓõг 國⟧",
|
|
143
|
+
"taxonomyAncestorStatusPill.errorMessage": "⟦萬萬萬萬萬萬 ₣âīľėď ťо ĺőάď ďėτäīľś 國國國國國國⟧",
|
|
144
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "⟦萬萬 Ĺôάďїлğ... 國國⟧",
|
|
133
145
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideButtonTooltip": "⟦萬萬萬萬萬 Ċľóѕē ѓĕνïěẃ mòďë 國國國國國⟧",
|
|
134
146
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideReviewFieldsCTA": "⟦萬 Ηίďё 國⟧",
|
|
135
147
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 {count, plural, one {# ƒìёĺď ʼnéĕďѕ} other {# ƒιĕļďѕ йèėď}} ґενιĕώ 國國國國國國國國國國國國國國⟧",
|
|
136
148
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.showingReviewFields": "⟦萬萬萬萬萬萬萬萬 Śнσẁĭʼnĝ ƒìεļďś лėęďіиğ ŕéνíéω 國國國國國國國國⟧",
|
|
137
149
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewButtonTooltip": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 {count, plural, one {# ƒïęĺď леėďş} other {# ƒįēļďѕ ηєëď}} яĕνїěẃ αŝ Βōх ĄĨ яєŧцŗηёď ļσŵ ćσпƒιďεńċе. Ċļîċĸ τŏ şτǻŗτ яěνìёώϊʼnğ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
|
|
138
|
-
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "⟦萬 Vїещ 國⟧"
|
|
139
|
-
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "⟦ - - ⟧",
|
|
140
|
-
"taxonomyAncestorStatusPill.errorAction": "⟦萬 Ŕěļóαď 國⟧",
|
|
141
|
-
"taxonomyAncestorStatusPill.errorIconLabel": "⟦萬 Ёѓѓõг 國⟧",
|
|
142
|
-
"taxonomyAncestorStatusPill.errorMessage": "⟦萬萬萬萬萬萬 ₣âīľėď ťо ĺőάď ďėτäīľś 國國國國國國⟧",
|
|
143
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "⟦萬萬 Ĺôάďїлğ... 國國⟧"
|
|
150
|
+
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "⟦萬 Vїещ 國⟧"
|
|
144
151
|
}
|
package/dist/i18n/es-419.js
CHANGED
|
@@ -28,6 +28,13 @@ export default {
|
|
|
28
28
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.taxonomyPlaceholder": "Seleccione una opción",
|
|
29
29
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "Alternar selector modo de actualización",
|
|
30
30
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.with": "Con",
|
|
31
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideButtonTooltip": "Close review mode",
|
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Hide",
|
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.iconAriaLabel": "Review alert",
|
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count, plural, one {# field needs} other {# fields need}} review",
|
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.showingReviewFields": "Showing fields needing review",
|
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewButtonTooltip": "{count, plural, one {# field needs} other {# fields need}} review as Box AI returned low confidence. Click to start reviewing.",
|
|
37
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View",
|
|
31
38
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "Agregar",
|
|
32
39
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "Anular",
|
|
33
40
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "Cerrar",
|
|
@@ -130,15 +137,15 @@ export default {
|
|
|
130
137
|
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Metadatos personalizados",
|
|
131
138
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonAriaLabel": "Editar {templateName}",
|
|
132
139
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonTooltip": "Editar",
|
|
140
|
+
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
141
|
+
"taxonomyAncestorStatusPill.errorAction": "Recargar",
|
|
142
|
+
"taxonomyAncestorStatusPill.errorIconLabel": "Error",
|
|
143
|
+
"taxonomyAncestorStatusPill.errorMessage": "Error al cargar los detalles",
|
|
144
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Cargando…",
|
|
133
145
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideButtonTooltip": "Cerrar modo de revisión",
|
|
134
146
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Ocultar",
|
|
135
147
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count,plural,one{# campo necesita} other{# campos necesitan} many{# campos necesitan}} revisión",
|
|
136
148
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.showingReviewFields": "Mostrando campos que necesitan revisión",
|
|
137
149
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewButtonTooltip": "{count,plural,one{# campo necesita} other{# campos necesitan} many{# campos necesitan}} revisión, ya que la IA de Box ha devuelto un nivel de confianza bajo. Haga clic para comenzar a revisar.",
|
|
138
|
-
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "Ver"
|
|
139
|
-
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
140
|
-
"taxonomyAncestorStatusPill.errorAction": "Recargar",
|
|
141
|
-
"taxonomyAncestorStatusPill.errorIconLabel": "Error",
|
|
142
|
-
"taxonomyAncestorStatusPill.errorMessage": "Error al cargar los detalles",
|
|
143
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Cargando…"
|
|
150
|
+
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "Ver"
|
|
144
151
|
}
|
package/dist/i18n/es-ES.js
CHANGED
|
@@ -28,6 +28,13 @@ export default {
|
|
|
28
28
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.taxonomyPlaceholder": "Seleccione una opción",
|
|
29
29
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "Alternar selector modo de actualización",
|
|
30
30
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.with": "Con",
|
|
31
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideButtonTooltip": "Close review mode",
|
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Hide",
|
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.iconAriaLabel": "Review alert",
|
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count, plural, one {# field needs} other {# fields need}} review",
|
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.showingReviewFields": "Showing fields needing review",
|
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewButtonTooltip": "{count, plural, one {# field needs} other {# fields need}} review as Box AI returned low confidence. Click to start reviewing.",
|
|
37
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View",
|
|
31
38
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "Agregar",
|
|
32
39
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "Anular",
|
|
33
40
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "Cerrar",
|
|
@@ -130,15 +137,15 @@ export default {
|
|
|
130
137
|
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Metadatos personalizados",
|
|
131
138
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonAriaLabel": "Editar {templateName}",
|
|
132
139
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonTooltip": "Editar",
|
|
140
|
+
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
141
|
+
"taxonomyAncestorStatusPill.errorAction": "Recargar",
|
|
142
|
+
"taxonomyAncestorStatusPill.errorIconLabel": "Error",
|
|
143
|
+
"taxonomyAncestorStatusPill.errorMessage": "Error al cargar los detalles",
|
|
144
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Cargando…",
|
|
133
145
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideButtonTooltip": "Cerrar modo de revisión",
|
|
134
146
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Ocultar",
|
|
135
147
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count,plural,one{# campo necesita} other{# campos necesitan} many{# campos necesitan}} revisión",
|
|
136
148
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.showingReviewFields": "Mostrando campos que necesitan revisión",
|
|
137
149
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewButtonTooltip": "{count,plural,one{# campo necesita} other{# campos necesitan} many{# campos necesitan}} revisión, ya que la IA de Box ha devuelto un nivel de confianza bajo. Haga clic para comenzar a revisar.",
|
|
138
|
-
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "Ver"
|
|
139
|
-
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
140
|
-
"taxonomyAncestorStatusPill.errorAction": "Recargar",
|
|
141
|
-
"taxonomyAncestorStatusPill.errorIconLabel": "Error",
|
|
142
|
-
"taxonomyAncestorStatusPill.errorMessage": "Error al cargar los detalles",
|
|
143
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Cargando…"
|
|
150
|
+
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "Ver"
|
|
144
151
|
}
|
package/dist/i18n/fi-FI.js
CHANGED
|
@@ -28,6 +28,13 @@ export default {
|
|
|
28
28
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.taxonomyPlaceholder": "Valitse vaihtoehto",
|
|
29
29
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "Vaihda päivityksen muodon valitsinta",
|
|
30
30
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.with": "Korvaava syöte",
|
|
31
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideButtonTooltip": "Close review mode",
|
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Hide",
|
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.iconAriaLabel": "Review alert",
|
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count, plural, one {# field needs} other {# fields need}} review",
|
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.showingReviewFields": "Showing fields needing review",
|
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewButtonTooltip": "{count, plural, one {# field needs} other {# fields need}} review as Box AI returned low confidence. Click to start reviewing.",
|
|
37
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View",
|
|
31
38
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "Lisää",
|
|
32
39
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "Peruuta",
|
|
33
40
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "Sulje",
|
|
@@ -130,15 +137,15 @@ export default {
|
|
|
130
137
|
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Mukautetut metatiedot",
|
|
131
138
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonAriaLabel": "Muokkaa mallia {templateName}",
|
|
132
139
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonTooltip": "Muokkaa",
|
|
140
|
+
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
141
|
+
"taxonomyAncestorStatusPill.errorAction": "Lataa uudelleen",
|
|
142
|
+
"taxonomyAncestorStatusPill.errorIconLabel": "Virhe",
|
|
143
|
+
"taxonomyAncestorStatusPill.errorMessage": "Tietoja ei voitu ladata",
|
|
144
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Ladataan...",
|
|
133
145
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideButtonTooltip": "Sulje tarkistustila",
|
|
134
146
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Piilota",
|
|
135
147
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count,plural,one{# kenttä vaatii} other{# kenttää vaativat}} tarkastusta",
|
|
136
148
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.showingReviewFields": "Näytetään tarkasteltavia kenttiä",
|
|
137
149
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewButtonTooltip": "{count,plural,one{# kenttä vaatii} other{# kenttää vaativat}} tarkistusta, kun Box AI palautti alhaisen luottamusarvon. Aloita tarkastelu napsauttamalla.",
|
|
138
|
-
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "Näytä"
|
|
139
|
-
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
140
|
-
"taxonomyAncestorStatusPill.errorAction": "Lataa uudelleen",
|
|
141
|
-
"taxonomyAncestorStatusPill.errorIconLabel": "Virhe",
|
|
142
|
-
"taxonomyAncestorStatusPill.errorMessage": "Tietoja ei voitu ladata",
|
|
143
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Ladataan..."
|
|
150
|
+
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "Näytä"
|
|
144
151
|
}
|
package/dist/i18n/fr-CA.js
CHANGED
|
@@ -28,6 +28,13 @@ export default {
|
|
|
28
28
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.taxonomyPlaceholder": "Sélectionner une option",
|
|
29
29
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "Basculer le sélecteur de mode de mise à jour",
|
|
30
30
|
"groupSharedFeatures.metadataEditor.metadataEditorFields.with": "Avec",
|
|
31
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideButtonTooltip": "Close review mode",
|
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Hide",
|
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.iconAriaLabel": "Review alert",
|
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "{count, plural, one {# field needs} other {# fields need}} review",
|
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.showingReviewFields": "Showing fields needing review",
|
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewButtonTooltip": "{count, plural, one {# field needs} other {# fields need}} review as Box AI returned low confidence. Click to start reviewing.",
|
|
37
|
+
"groupSharedFeatures.metadataEditor.metadataInstanceReviewNotice.viewReviewFieldsCTA": "View",
|
|
31
38
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "Ajouter",
|
|
32
39
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "Annuler",
|
|
33
40
|
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "Fermer",
|
|
@@ -130,15 +137,15 @@ export default {
|
|
|
130
137
|
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Métadonnées personnalisées",
|
|
131
138
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonAriaLabel": "Modifier {templateName}",
|
|
132
139
|
"metadataEditor.viewInstance.metadataInstanceHeader.editButtonTooltip": "Modifier",
|
|
140
|
+
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
141
|
+
"taxonomyAncestorStatusPill.errorAction": "Recharger",
|
|
142
|
+
"taxonomyAncestorStatusPill.errorIconLabel": "Erreur",
|
|
143
|
+
"taxonomyAncestorStatusPill.errorMessage": "Échec du chargement des détails",
|
|
144
|
+
"taxonomyAncestorStatusPill.loadingAriaLabel": "Chargement en cours...",
|
|
133
145
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideButtonTooltip": "Fermer le mode de révision",
|
|
134
146
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.hideReviewFieldsCTA": "Masquer",
|
|
135
147
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.reviewFieldsNoticeHeader": "Révision du/des {count,plural,one{# besoins de champ} other{# besoin de champs} many{# besoin de champs}}",
|
|
136
148
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.showingReviewFields": "Afficher les champs nécessitant une révision",
|
|
137
149
|
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewButtonTooltip": "Une révision du/des {count,plural,one{# besoins de champ} other{# besoin de champs} many{# besoin de champs}} en tant que Box AI a renvoyé un faible niveau de confiance. Cliquez pour commencer la révision.",
|
|
138
|
-
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "Afficher"
|
|
139
|
-
"taxonomyAncestorStatusPill.emptyAncestorLevelValue": "- -",
|
|
140
|
-
"taxonomyAncestorStatusPill.errorAction": "Recharger",
|
|
141
|
-
"taxonomyAncestorStatusPill.errorIconLabel": "Erreur",
|
|
142
|
-
"taxonomyAncestorStatusPill.errorMessage": "Échec du chargement des détails",
|
|
143
|
-
"taxonomyAncestorStatusPill.loadingAriaLabel": "Chargement en cours..."
|
|
150
|
+
"metadataEditor.viewInstance.metadataInstanceReviewNotice.viewReviewFieldsCTA": "Afficher"
|
|
144
151
|
}
|