@box/metadata-editor 0.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/LICENSE +379 -0
- package/chunks/filter-dropdown-menu.module.js +18 -0
- package/chunks/types.js +6 -0
- package/esm/index.js +33 -0
- package/esm/lib/components/add-metadata-template-dropdown/add-metadata-template-dropdown.js +44 -0
- package/esm/lib/components/add-metadata-template-dropdown/index.js +4 -0
- package/esm/lib/components/add-metadata-template-dropdown/messages.js +18 -0
- package/esm/lib/components/filter-dropdown-menu/filter-dropdown-menu-content.js +19 -0
- package/esm/lib/components/filter-dropdown-menu/filter-dropdown-menu-empty-state.js +20 -0
- package/esm/lib/components/filter-dropdown-menu/filter-dropdown-menu-item.js +20 -0
- package/esm/lib/components/filter-dropdown-menu/filter-dropdown-menu-list.js +22 -0
- package/esm/lib/components/filter-dropdown-menu/filter-dropdown-menu-root.js +19 -0
- package/esm/lib/components/filter-dropdown-menu/filter-dropdown-menu-search.js +44 -0
- package/esm/lib/components/filter-dropdown-menu/filter-dropdown-menu-trigger.js +13 -0
- package/esm/lib/components/filter-dropdown-menu/index.js +19 -0
- package/esm/lib/components/filter-dropdown-menu/messages.js +14 -0
- package/esm/lib/components/interactive-text/interactive-text.js +22 -0
- package/esm/lib/components/metadata-editor-fields/components/constants.js +6 -0
- package/esm/lib/components/metadata-editor-fields/components/metadata-date-field/date-conversion-utils.js +16 -0
- package/esm/lib/components/metadata-editor-fields/components/metadata-date-field/metadata-date-field.js +60 -0
- package/esm/lib/components/metadata-editor-fields/components/metadata-date-field/use-date-internationalization.js +13 -0
- package/esm/lib/components/metadata-editor-fields/components/metadata-enum-field/metadata-enum-field.js +55 -0
- package/esm/lib/components/metadata-editor-fields/components/metadata-float-field/metadata-float-field.js +47 -0
- package/esm/lib/components/metadata-editor-fields/components/metadata-float-field/use-float-validation.js +15 -0
- package/esm/lib/components/metadata-editor-fields/components/metadata-multi-select-field/metadata-multi-select-field.js +51 -0
- package/esm/lib/components/metadata-editor-fields/components/metadata-string-field/metadata-string-field.js +35 -0
- package/esm/lib/components/metadata-editor-fields/components/update-mode-field-wrapper/messages.js +30 -0
- package/esm/lib/components/metadata-editor-fields/components/update-mode-field-wrapper/update-mode-field-wrapper.js +90 -0
- package/esm/lib/components/metadata-editor-fields/editor-field-types.js +26 -0
- package/esm/lib/components/metadata-editor-fields/metadata-editor-fields.js +52 -0
- package/esm/lib/components/metadata-empty-state/messages.js +46 -0
- package/esm/lib/components/metadata-empty-state/metadata-empty-state.js +63 -0
- package/esm/lib/components/metadata-instance-editor/index.js +10 -0
- package/esm/lib/components/metadata-instance-editor/subcomponents/custom-instance/custom-instance.js +76 -0
- package/esm/lib/components/metadata-instance-editor/subcomponents/custom-instance/messages.js +18 -0
- package/esm/lib/components/metadata-instance-editor/subcomponents/custom-instance-new-field/custom-instance-new-field.js +58 -0
- package/esm/lib/components/metadata-instance-editor/subcomponents/custom-instance-new-field/messages.js +42 -0
- package/esm/lib/components/metadata-instance-editor/subcomponents/delete-confirmation-modal/delete-confirmation-modal.js +81 -0
- package/esm/lib/components/metadata-instance-editor/subcomponents/delete-confirmation-modal/messages.js +38 -0
- package/esm/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form/messages.js +1 -0
- package/esm/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form/metadata-instance-form.js +79 -0
- package/esm/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form/utils.js +33 -0
- package/esm/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form-footer/messages.js +22 -0
- package/esm/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form-footer/metadata-instance-form-footer.js +50 -0
- package/esm/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form-header/messages.js +18 -0
- package/esm/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form-header/metadata-instance-form-header.js +40 -0
- package/esm/lib/components/metadata-instance-list/index.js +8 -0
- package/esm/lib/components/metadata-instance-list/metadata-instance-list.js +22 -0
- package/esm/lib/components/metadata-instance-list/subcomponents/metadata-instance/metadata-instance.js +51 -0
- package/esm/lib/components/metadata-instance-list/subcomponents/metadata-instance-content/metadata-instance-content.js +26 -0
- package/esm/lib/components/metadata-instance-list/subcomponents/metadata-instance-entry/convertDate.js +25 -0
- package/esm/lib/components/metadata-instance-list/subcomponents/metadata-instance-entry/metadata-instance-entry.js +56 -0
- package/esm/lib/components/metadata-instance-list/subcomponents/metadata-instance-footer/messages.js +14 -0
- package/esm/lib/components/metadata-instance-list/subcomponents/metadata-instance-footer/metadata-instance-footer.js +30 -0
- package/esm/lib/components/metadata-instance-list/subcomponents/metadata-instance-header/messages.js +10 -0
- package/esm/lib/components/metadata-instance-list/subcomponents/metadata-instance-header/metadata-instance-header.js +46 -0
- package/esm/lib/components/metadata-taxonomy-field/combobox-with-api-pagination.js +188 -0
- package/esm/lib/components/metadata-taxonomy-field/index.js +4 -0
- package/esm/lib/components/metadata-taxonomy-field/messages.js +34 -0
- package/esm/lib/components/metadata-taxonomy-field/request.js +6 -0
- package/esm/lib/components/metadata-taxonomy-field/single-level-taxonomy-field.js +19 -0
- package/esm/lib/components/metadata-taxonomy-field/use-async-list.js +124 -0
- package/esm/lib/components/metadata-taxonomy-field/utils/use-intersection-observer.js +87 -0
- package/esm/lib/components/unsaved-changes-modal/index.js +4 -0
- package/esm/lib/components/unsaved-changes-modal/messages.js +26 -0
- package/esm/lib/components/unsaved-changes-modal/unsaved-changes-modal.js +55 -0
- package/esm/lib/components/unsaved-changes-modal/utils.js +6 -0
- package/esm/lib/constants.js +4 -0
- package/esm/lib/defaults.js +18 -0
- package/esm/lib/mappers.js +28 -0
- package/esm/lib/messages.js +94 -0
- package/esm/lib/metadata-editor.js +15 -0
- package/esm/lib/test-utils/formik-wrapper.js +26 -0
- package/esm/lib/test-utils/index.js +31 -0
- package/esm/lib/test-utils/sample-data.js +281 -0
- package/esm/lib/test-utils/test-utils.js +13 -0
- package/i18n/bn-IN.js +88 -0
- package/i18n/bn-IN.properties +164 -0
- package/i18n/da-DK.js +88 -0
- package/i18n/da-DK.properties +164 -0
- package/i18n/de-DE.js +88 -0
- package/i18n/de-DE.properties +164 -0
- package/i18n/en-AU.js +88 -0
- package/i18n/en-AU.properties +164 -0
- package/i18n/en-CA.js +88 -0
- package/i18n/en-CA.properties +164 -0
- package/i18n/en-GB.js +88 -0
- package/i18n/en-GB.properties +164 -0
- package/i18n/en-US.js +87 -0
- package/i18n/en-US.properties +170 -0
- package/i18n/en-x-pseudo.js +88 -0
- package/i18n/en-x-pseudo.properties +164 -0
- package/i18n/es-419.js +88 -0
- package/i18n/es-419.properties +164 -0
- package/i18n/es-ES.js +88 -0
- package/i18n/es-ES.properties +164 -0
- package/i18n/fi-FI.js +88 -0
- package/i18n/fi-FI.properties +164 -0
- package/i18n/fr-CA.js +88 -0
- package/i18n/fr-CA.properties +164 -0
- package/i18n/fr-FR.js +88 -0
- package/i18n/fr-FR.properties +164 -0
- package/i18n/hi-IN.js +88 -0
- package/i18n/hi-IN.properties +164 -0
- package/i18n/it-IT.js +88 -0
- package/i18n/it-IT.properties +164 -0
- package/i18n/ja-JP.js +88 -0
- package/i18n/ja-JP.properties +164 -0
- package/i18n/json/src/lib/components/add-metadata-template-dropdown/messages.json +1 -0
- package/i18n/json/src/lib/components/filter-dropdown-menu/messages.json +1 -0
- package/i18n/json/src/lib/components/metadata-editor-fields/components/update-mode-field-wrapper/messages.json +1 -0
- package/i18n/json/src/lib/components/metadata-empty-state/messages.json +1 -0
- package/i18n/json/src/lib/components/metadata-instance-editor/subcomponents/custom-instance/messages.json +1 -0
- package/i18n/json/src/lib/components/metadata-instance-editor/subcomponents/custom-instance-new-field/messages.json +1 -0
- package/i18n/json/src/lib/components/metadata-instance-editor/subcomponents/delete-confirmation-modal/messages.json +1 -0
- package/i18n/json/src/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form-footer/messages.json +1 -0
- package/i18n/json/src/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form-header/messages.json +1 -0
- package/i18n/json/src/lib/components/metadata-instance-list/subcomponents/metadata-instance-footer/messages.json +1 -0
- package/i18n/json/src/lib/components/metadata-instance-list/subcomponents/metadata-instance-header/messages.json +1 -0
- package/i18n/json/src/lib/components/metadata-taxonomy-field/messages.json +1 -0
- package/i18n/json/src/lib/components/unsaved-changes-modal/messages.json +1 -0
- package/i18n/json/src/lib/messages.json +1 -0
- package/i18n/ko-KR.js +88 -0
- package/i18n/ko-KR.properties +164 -0
- package/i18n/nb-NO.js +88 -0
- package/i18n/nb-NO.properties +164 -0
- package/i18n/nl-NL.js +88 -0
- package/i18n/nl-NL.properties +164 -0
- package/i18n/pl-PL.js +88 -0
- package/i18n/pl-PL.properties +164 -0
- package/i18n/pt-BR.js +88 -0
- package/i18n/pt-BR.properties +164 -0
- package/i18n/ru-RU.js +88 -0
- package/i18n/ru-RU.properties +164 -0
- package/i18n/sv-SE.js +88 -0
- package/i18n/sv-SE.properties +164 -0
- package/i18n/tr-TR.js +88 -0
- package/i18n/tr-TR.properties +164 -0
- package/i18n/zh-CN.js +88 -0
- package/i18n/zh-CN.properties +164 -0
- package/i18n/zh-TW.js +88 -0
- package/i18n/zh-TW.properties +164 -0
- package/package.json +55 -0
- package/styles/combobox-with-api-pagination.css +1 -0
- package/styles/custom-instance-new-field.css +1 -0
- package/styles/custom-instance.css +1 -0
- package/styles/delete-confirmation-modal.css +1 -0
- package/styles/filter-dropdown-menu.css +1 -0
- package/styles/metadata-editor-fields.css +1 -0
- package/styles/metadata-editor.css +0 -0
- package/styles/metadata-instance-content.css +1 -0
- package/styles/metadata-instance-entry.css +1 -0
- package/styles/metadata-instance-footer.css +1 -0
- package/styles/metadata-instance-form-footer.css +1 -0
- package/styles/metadata-instance-form-header.css +1 -0
- package/styles/metadata-instance-form.css +1 -0
- package/styles/metadata-instance-header.css +1 -0
- package/styles/metadata-instance-list.css +1 -0
- package/styles/metadata-instance.css +1 -0
- package/styles/update-mode-field-wrapper.css +1 -0
- package/types/index.d.ts +10 -0
- package/types/lib/components/add-metadata-template-dropdown/add-metadata-template-dropdown.d.ts +2 -0
- package/types/lib/components/add-metadata-template-dropdown/index.d.ts +2 -0
- package/types/lib/components/add-metadata-template-dropdown/messages.d.ts +18 -0
- package/types/lib/components/add-metadata-template-dropdown/types.d.ts +6 -0
- package/types/lib/components/filter-dropdown-menu/filter-dropdown-menu-content.d.ts +9 -0
- package/types/lib/components/filter-dropdown-menu/filter-dropdown-menu-empty-state.d.ts +8 -0
- package/types/lib/components/filter-dropdown-menu/filter-dropdown-menu-item.d.ts +9 -0
- package/types/lib/components/filter-dropdown-menu/filter-dropdown-menu-list.d.ts +9 -0
- package/types/lib/components/filter-dropdown-menu/filter-dropdown-menu-root.d.ts +9 -0
- package/types/lib/components/filter-dropdown-menu/filter-dropdown-menu-search.d.ts +9 -0
- package/types/lib/components/filter-dropdown-menu/filter-dropdown-menu-trigger.d.ts +11 -0
- package/types/lib/components/filter-dropdown-menu/index.d.ts +36 -0
- package/types/lib/components/filter-dropdown-menu/messages.d.ts +13 -0
- package/types/lib/components/interactive-text/interactive-text.d.ts +10 -0
- package/types/lib/components/metadata-editor-fields/components/constants.d.ts +3 -0
- package/types/lib/components/metadata-editor-fields/components/metadata-date-field/date-conversion-utils.d.ts +3 -0
- package/types/lib/components/metadata-editor-fields/components/metadata-date-field/metadata-date-field.d.ts +3 -0
- package/types/lib/components/metadata-editor-fields/components/metadata-date-field/types.d.ts +4 -0
- package/types/lib/components/metadata-editor-fields/components/metadata-date-field/use-date-internationalization.d.ts +6 -0
- package/types/lib/components/metadata-editor-fields/components/metadata-enum-field/metadata-enum-field.d.ts +3 -0
- package/types/lib/components/metadata-editor-fields/components/metadata-float-field/metadata-float-field.d.ts +3 -0
- package/types/lib/components/metadata-editor-fields/components/metadata-float-field/use-float-validation.d.ts +4 -0
- package/types/lib/components/metadata-editor-fields/components/metadata-multi-select-field/metadata-multi-select-field.d.ts +3 -0
- package/types/lib/components/metadata-editor-fields/components/metadata-string-field/metadata-string-field.d.ts +6 -0
- package/types/lib/components/metadata-editor-fields/components/update-mode-field-wrapper/messages.d.ts +32 -0
- package/types/lib/components/metadata-editor-fields/components/update-mode-field-wrapper/update-mode-field-wrapper.d.ts +12 -0
- package/types/lib/components/metadata-editor-fields/editor-field-types.d.ts +8 -0
- package/types/lib/components/metadata-editor-fields/metadata-editor-fields.d.ts +3 -0
- package/types/lib/components/metadata-editor-fields/types.d.ts +12 -0
- package/types/lib/components/metadata-empty-state/messages.d.ts +53 -0
- package/types/lib/components/metadata-empty-state/metadata-empty-state.d.ts +3 -0
- package/types/lib/components/metadata-instance-editor/index.d.ts +4 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/custom-instance/custom-instance.d.ts +2 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/custom-instance/messages.d.ts +18 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/custom-instance/types.d.ts +3 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/custom-instance-new-field/custom-instance-new-field.d.ts +2 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/custom-instance-new-field/messages.d.ts +48 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/custom-instance-new-field/types.d.ts +5 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/delete-confirmation-modal/delete-confirmation-modal.d.ts +2 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/delete-confirmation-modal/messages.d.ts +43 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/delete-confirmation-modal/types.d.ts +6 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form/messages.d.ts +0 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form/metadata-instance-form.d.ts +2 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form/types.d.ts +26 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form/utils.d.ts +12 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form-footer/messages.d.ts +23 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form-footer/metadata-instance-form-footer.d.ts +2 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form-footer/types.d.ts +5 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form-header/messages.d.ts +18 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form-header/metadata-instance-form-header.d.ts +2 -0
- package/types/lib/components/metadata-instance-editor/subcomponents/metadata-instance-form-header/types.d.ts +6 -0
- package/types/lib/components/metadata-instance-editor/types.d.ts +6 -0
- package/types/lib/components/metadata-instance-list/index.d.ts +2 -0
- package/types/lib/components/metadata-instance-list/metadata-instance-list.d.ts +2 -0
- package/types/lib/components/metadata-instance-list/subcomponents/metadata-instance/metadata-instance.d.ts +2 -0
- package/types/lib/components/metadata-instance-list/subcomponents/metadata-instance/types.d.ts +7 -0
- package/types/lib/components/metadata-instance-list/subcomponents/metadata-instance-content/metadata-instance-content.d.ts +2 -0
- package/types/lib/components/metadata-instance-list/subcomponents/metadata-instance-content/types.d.ts +5 -0
- package/types/lib/components/metadata-instance-list/subcomponents/metadata-instance-entry/convertDate.d.ts +30 -0
- package/types/lib/components/metadata-instance-list/subcomponents/metadata-instance-entry/metadata-instance-entry.d.ts +2 -0
- package/types/lib/components/metadata-instance-list/subcomponents/metadata-instance-entry/types.d.ts +8 -0
- package/types/lib/components/metadata-instance-list/subcomponents/metadata-instance-footer/messages.d.ts +13 -0
- package/types/lib/components/metadata-instance-list/subcomponents/metadata-instance-footer/metadata-instance-footer.d.ts +2 -0
- package/types/lib/components/metadata-instance-list/subcomponents/metadata-instance-footer/types.d.ts +5 -0
- package/types/lib/components/metadata-instance-list/subcomponents/metadata-instance-header/messages.d.ts +8 -0
- package/types/lib/components/metadata-instance-list/subcomponents/metadata-instance-header/metadata-instance-header.d.ts +4 -0
- package/types/lib/components/metadata-instance-list/subcomponents/metadata-instance-header/types.d.ts +7 -0
- package/types/lib/components/metadata-instance-list/types.d.ts +7 -0
- package/types/lib/components/metadata-taxonomy-field/combobox-with-api-pagination.d.ts +15 -0
- package/types/lib/components/metadata-taxonomy-field/index.d.ts +2 -0
- package/types/lib/components/metadata-taxonomy-field/messages.d.ts +38 -0
- package/types/lib/components/metadata-taxonomy-field/request.d.ts +7 -0
- package/types/lib/components/metadata-taxonomy-field/single-level-taxonomy-field.d.ts +5 -0
- package/types/lib/components/metadata-taxonomy-field/types.d.ts +41 -0
- package/types/lib/components/metadata-taxonomy-field/use-async-list.d.ts +63 -0
- package/types/lib/components/metadata-taxonomy-field/utils/use-intersection-observer.d.ts +28 -0
- package/types/lib/components/unsaved-changes-modal/index.d.ts +1 -0
- package/types/lib/components/unsaved-changes-modal/messages.d.ts +28 -0
- package/types/lib/components/unsaved-changes-modal/types.d.ts +19 -0
- package/types/lib/components/unsaved-changes-modal/unsaved-changes-modal.d.ts +2 -0
- package/types/lib/components/unsaved-changes-modal/utils.d.ts +1 -0
- package/types/lib/constants.d.ts +1 -0
- package/types/lib/defaults.d.ts +13 -0
- package/types/lib/mappers.d.ts +16 -0
- package/types/lib/messages.d.ts +113 -0
- package/types/lib/metadata-editor.d.ts +4 -0
- package/types/lib/test-utils/formik-wrapper.d.ts +11 -0
- package/types/lib/test-utils/index.d.ts +3 -0
- package/types/lib/test-utils/sample-data.d.ts +24 -0
- package/types/lib/test-utils/test-utils.d.ts +3 -0
- package/types/lib/types.d.ts +63 -0
@@ -0,0 +1,170 @@
|
|
1
|
+
# Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
|
2
|
+
comboboxWithApiPagination.clearButtonAriaLabel = Clear input and selection
|
3
|
+
# Error message displayed resembling button that calls to action to reload the results
|
4
|
+
comboboxWithApiPagination.errorAction = Reload
|
5
|
+
# Aria-label text for the error icon in the loading results error message
|
6
|
+
comboboxWithApiPagination.errorIconLabel = Error
|
7
|
+
# Error message displayed as inline notice that informs the user that the options failed to load
|
8
|
+
comboboxWithApiPagination.errorMessage = Failed to load options
|
9
|
+
# Visually hidden aria-label text for the loading spinner
|
10
|
+
comboboxWithApiPagination.loadingAriaLabel = Loading...
|
11
|
+
# Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
|
12
|
+
comboboxWithApiPagination.loadingMoreAriaLabel = Loading more...
|
13
|
+
# Message displayed when no results are found in the combobox
|
14
|
+
comboboxWithApiPagination.noResults = No results found
|
15
|
+
# Aria label indicating that content is loading or in progress
|
16
|
+
groupSharedFeatures.metadataEditor.loading = loading
|
17
|
+
# Error message shown if an invalid after date is entered. {date} represents the date entered by the user.
|
18
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError = Enter a date after {date}
|
19
|
+
# Label for the append radio button in the update mode selector
|
20
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.append = Append
|
21
|
+
# Error message shown if an invalid before date is entered. {date} represents the date entered by the user.
|
22
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.beforeDateValidationError = Enter a date before {date}
|
23
|
+
# Label for the Clear All & Replace radio button in the update mode selector
|
24
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.clearAndReplace = Clear All & Replace
|
25
|
+
# Aria label for clearing the selected date
|
26
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.clearSelectedDate = Clear selected date
|
27
|
+
# Error message shown for an invalid field value
|
28
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.floatFieldInvalidValue = Invalid field value
|
29
|
+
# Placeholder text for the multiselect field
|
30
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.multiselectPlaceholder = Select value(s)
|
31
|
+
# Error message shown if no attributes are available in the template
|
32
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.noTemplateAtributesError = There are no attributes in this template.
|
33
|
+
# Aria label for opening the calendar to pick a date
|
34
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.openCalendarLabel = Open calendar to pick a date
|
35
|
+
# Label for the remove entered radio button in the update mode selector
|
36
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.removeEntered = Remove Entered
|
37
|
+
# Label for the replace entered radio button in the update mode selector
|
38
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.replaceEntered = Replace Entered
|
39
|
+
# Aria label for selecting the date
|
40
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.selectDate = Select the date
|
41
|
+
# Placeholder text for selecting a value
|
42
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.selectValuePlaceholder = Select a value
|
43
|
+
# Placeholder text for setting a value
|
44
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.setValuePlaceholder = Set Value
|
45
|
+
# Aria label for switching to the next month in the calendar
|
46
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth = Switch to next month
|
47
|
+
# Aria label for switching to the previous month in the calendar
|
48
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth = Switch to previous month
|
49
|
+
# aria-label for an icon button that toggles visiblity of update mode slection radio control.
|
50
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel = Toggle update mode selector
|
51
|
+
# Label for the additional input field that appears when the selected update mode is "Replace Entered"
|
52
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.with = With
|
53
|
+
# Label for the button that applies the selection and closes the template selection dialog
|
54
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.add = Add
|
55
|
+
# Label for the button that dismisses the template selection dialog
|
56
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel = Cancel
|
57
|
+
# Aria label for the button that closes the template selection dialog
|
58
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.close = Close
|
59
|
+
# Title for the metadata template selection dialog
|
60
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.header = Select Metadata Template
|
61
|
+
# Accessibility label for the button that clears the value of the search input that filters the templates in the metadata template selection dialog
|
62
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputClearAriaLabel = Clear
|
63
|
+
# Accessibility label for icon inside the search input that filters the templates in the metadata template selection dialog
|
64
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputIconAriaLabel = Search all templates
|
65
|
+
# Placeholder text for the search input in the metadata template selector modal
|
66
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder = Search all templates
|
67
|
+
# Placeholder text prompting the user to select a template
|
68
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate = Select a Template
|
69
|
+
# Error message displayed when templates fail to load
|
70
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError = Could not load templates. Try again later
|
71
|
+
# Display name for custom metadata templates
|
72
|
+
metadataEditor.addMetadataTemplate.customMetadataName = Custom Metadata
|
73
|
+
# Description for the search input field in the metadata editor
|
74
|
+
metadataEditor.addMetadataTemplate.search.placeholder = Search templates
|
75
|
+
# Call to encourage user to add metadata templates
|
76
|
+
metadataEditor.addMetadataTemplate.trigger.label = Add template
|
77
|
+
# Paragraph asking user are they sure that they want to delete the template
|
78
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph = Are you sure you want to delete the "{templateName}" Metadata template, and all of its values from this file?
|
79
|
+
# Label informing how to confirm deletion of the template
|
80
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel = Type "{templateName}" to confirm
|
81
|
+
# Paragraph informing that data cannot be restored
|
82
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.secondParagraph = Once deleted, Metadata values cannot be restored.
|
83
|
+
# CTA to cancel deletion of the template
|
84
|
+
metadataEditor.editInstance.deleteConfirmationModal.cancelButton = Cancel
|
85
|
+
# CTA to confirm deletion of the template
|
86
|
+
metadataEditor.editInstance.deleteConfirmationModal.confirmButton = Confirm
|
87
|
+
# Template named used when user created custom metadata template
|
88
|
+
metadataEditor.editInstance.deleteConfirmationModal.customMedatata = Custom Metadata
|
89
|
+
# Aria label for Dismiss (x) button
|
90
|
+
metadataEditor.editInstance.deleteConfirmationModal.dismissButton = Dismiss
|
91
|
+
# Header informing that template will be deleted
|
92
|
+
metadataEditor.editInstance.deleteConfirmationModal.header = Delete "{templateName}"
|
93
|
+
# Description of Box AI features
|
94
|
+
metadataEditor.fileLevel.emptyState.boxAiEnabled.body = Use the power of Box AI to quickly capture document metadata, with ever-increasing accuracy.
|
95
|
+
# Call to encourage user to use Box AI to autofill metadata fields
|
96
|
+
metadataEditor.fileLevel.emptyState.boxAiEnabled.heading = Autofill Metadata with Box AI
|
97
|
+
# Description of metadata features
|
98
|
+
metadataEditor.fileLevel.emptyState.default.body = Add Metadata to your file to support business operations, workflows, and more!
|
99
|
+
# Call to encourage user to add metadata templates
|
100
|
+
metadataEditor.fileLevel.emptyState.default.heading = Add Metadata Templates
|
101
|
+
# Aria label used to clear search input
|
102
|
+
metadataEditor.filterDropdownMenuSearch.iconButtonAriaLabel = Clear search
|
103
|
+
# Message displayed when there is no matching option in filter dropdown menu
|
104
|
+
metadataEditor.filterDropdownMenuSearch.noResultsFound = No results found
|
105
|
+
# Call to show empty values
|
106
|
+
metadataEditor.instanceLevel.emptyState.emptyValues.Cta = See empty values
|
107
|
+
# Header informing user that there are no values in the template
|
108
|
+
metadataEditor.instanceLevel.emptyState.heading = This template has no values
|
109
|
+
# Header informing user that there are no attributes in the template
|
110
|
+
metadataEditor.instanceLevel.emptyState.noAttributes.heading = This template has no attributes
|
111
|
+
# Caption about no empty values to be shown
|
112
|
+
metadataEditor.instanceLevel.emptyState.noEmptyValues.body = This template has no values
|
113
|
+
# Description how metadata can be added
|
114
|
+
metadataEditor.managerLevel.emptyState.body = Browse or search for your items to apply and edit metadata
|
115
|
+
# Call to encourage user apply metadata templates
|
116
|
+
metadataEditor.managerLevel.emptyState.heading = Apply Metadata Templates
|
117
|
+
# Primary CTA button to add new field to cutom meatdata instance
|
118
|
+
metadataEditor.metadataEditor.customIntanceNewField.addNewFieldCTA = Add
|
119
|
+
# Label for the attribute name input field
|
120
|
+
metadataEditor.metadataEditor.customIntanceNewField.attributeNameLabel = Attribute Name
|
121
|
+
# Cancel button text
|
122
|
+
metadataEditor.metadataEditor.customIntanceNewField.cancelCTA = Cancel
|
123
|
+
# Error enforcing unique key for custom metadata
|
124
|
+
metadataEditor.metadataEditor.customIntanceNewField.customErrorDuplicateKey = Key already exists.
|
125
|
+
# Error enforcing non internal key for custom metadata
|
126
|
+
metadataEditor.metadataEditor.customIntanceNewField.customErrorInternalKey = Keys cannot begin with a $.
|
127
|
+
# Placeholder for the key field for custom metadata
|
128
|
+
metadataEditor.metadataEditor.customIntanceNewField.customKeyPlaceholder = e.g. Order Number
|
129
|
+
# Error enforcing required key for custom metadata
|
130
|
+
metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired = Key is required
|
131
|
+
# Label for the value input field
|
132
|
+
metadataEditor.metadataEditor.customIntanceNewField.valueLabel = Value
|
133
|
+
# Placeholder for the value field for custom metadata
|
134
|
+
metadataEditor.metadataEditor.customIntanceNewField.valuePlaceholder = e.g. 42
|
135
|
+
# Button that allow to add new attribute to metadata custom instance
|
136
|
+
metadataEditor.metadataInstanceEditor.customInstance.addAttribute = + Add Attribute
|
137
|
+
# Aria label for button that allow to remove attribute from metadata custom instance
|
138
|
+
metadataEditor.metadataInstanceEditor.customInstance.removeAttribute = Remove
|
139
|
+
# Placeholder for the value field for custom metadata
|
140
|
+
metadataEditor.metadataInstanceEditor.customInstance.setValuePlaceholder = Set value
|
141
|
+
# Call to action to cancel and dismiss changes in Metadata Instance.
|
142
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.cancelButton = Cancel
|
143
|
+
# Call to action to delete Metadata Instance.
|
144
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.deleteButton = Delete
|
145
|
+
# Aria label used to indicate that the button is currently loading.
|
146
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.loadingAriaLabel = Loading...
|
147
|
+
# Call to action to save Metadata Instance.
|
148
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.saveButton = Save
|
149
|
+
# Button with "Autofill" text. Call to action to automatically fill in form fields based on AI information
|
150
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.autofillButton = Autofill
|
151
|
+
# Header with Custom Metadata template name
|
152
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.customInstanceTitle = Custom Metadata
|
153
|
+
# Aria label used to indicate that the button is currently loading.
|
154
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.loadingButtonAriaLabel = Loading...
|
155
|
+
# Body for the unsaved changes modal
|
156
|
+
metadataEditor.unsavedChangesModal.body = Metadata template(s) have unsaved changes. How would you like to proceed?
|
157
|
+
# Label for close (x) button
|
158
|
+
metadataEditor.unsavedChangesModal.closeLabel = Close
|
159
|
+
# CTA for dismissing the unsaved changes
|
160
|
+
metadataEditor.unsavedChangesModal.dismissCTA = Cancel
|
161
|
+
# Header for the unsaved changes modal
|
162
|
+
metadataEditor.unsavedChangesModal.header = Unsaved Changes
|
163
|
+
# CTA for saving the unsaved changes and continuing
|
164
|
+
metadataEditor.unsavedChangesModal.saveAndContinueCTA = Save and Continue
|
165
|
+
# Call to action to hide all empty values
|
166
|
+
metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA = Hide empty values
|
167
|
+
# Call to action to show hidden empty values
|
168
|
+
metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA = Show empty values
|
169
|
+
# Header with Custom Metadata template name
|
170
|
+
metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle = Custom Metadata
|
@@ -0,0 +1,88 @@
|
|
1
|
+
export default {
|
2
|
+
"comboboxWithApiPagination.clearButtonAriaLabel": "Clear input and selection",
|
3
|
+
"comboboxWithApiPagination.errorAction": "Reload",
|
4
|
+
"comboboxWithApiPagination.errorIconLabel": "Error",
|
5
|
+
"comboboxWithApiPagination.errorMessage": "Failed to load options",
|
6
|
+
"comboboxWithApiPagination.loadingAriaLabel": "⟦萬萬 Ĺóàďîиĝ... 國國⟧",
|
7
|
+
"comboboxWithApiPagination.loadingMoreAriaLabel": "⟦萬萬萬萬 Ŀøãďīлğ môгė... 國國國國⟧",
|
8
|
+
"comboboxWithApiPagination.noResults": "⟦萬萬萬萬 Иó řêŝùļťş ƒōùиď 國國國國⟧",
|
9
|
+
"groupSharedFeatures.metadataEditor.loading": "⟦萬萬 ĺóάďιпğ 國國⟧",
|
10
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "⟦萬萬萬萬萬萬萬 Ĕŋτεѓ á ďǻŧĕ àƒţея {date} 國國國國國國國⟧",
|
11
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.append": "⟦萬 ĀΡΡĕήď 國⟧",
|
12
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.beforeDateValidationError": "⟦萬萬萬萬萬萬萬 Èņτеŗ ā ďąţê ьéƒôґë {date} 國國國國國國國⟧",
|
13
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.clearAndReplace": "⟦萬萬萬萬萬 Çľёåґ Âľľ & ҐéΡļά¢ε 國國國國國⟧",
|
14
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.clearSelectedDate": "⟦萬萬萬萬萬 Çľëãѓ ŝеĺėċτеď ďãτе 國國國國國⟧",
|
15
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.floatFieldInvalidValue": "⟦萬萬萬萬萬 Ϊήνǻļĩď ƒįéĺď νàļúê 國國國國國⟧",
|
16
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.multiselectPlaceholder": "⟦萬萬萬萬 Śêľεсţ νåľűē(ş) 國國國國⟧",
|
17
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.noTemplateAtributesError": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Τĥєяê åяé πő ãťťŕìвцτεŝ īл ŧĥĩŝ ţêmΡĺàτë. 國國國國國國國國國國國國⟧",
|
18
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.openCalendarLabel": "⟦萬萬萬萬萬萬萬萬 ŐΡéή ċăļëňďàг ťŏ Ρι¢к å ďαŧε 國國國國國國國國⟧",
|
19
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.removeEntered": "⟦萬萬萬萬 Ŗеmõνє Ěπŧėŕεď 國國國國⟧",
|
20
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.replaceEntered": "⟦萬萬萬萬 ЯеΡľάсê Èпťέŕεď 國國國國⟧",
|
21
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.selectDate": "⟦萬萬萬萬 Ѕёĺëćť ŧĥē ďåťе 國國國國⟧",
|
22
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.selectValuePlaceholder": "⟦萬萬萬萬 Ŝëĺё¢ť ä νàľŭè 國國國國⟧",
|
23
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.setValuePlaceholder": "⟦萬萬 Śęţ Văļŭè 國國⟧",
|
24
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth": "⟦萬萬萬萬萬 Şẃîţċħ τó ŋē×ţ móйţħ 國國國國國⟧",
|
25
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth": "⟦萬萬萬萬萬萬萬 Şώìτçħ ţσ Ρřéνїόũŝ mőņτĥ 國國國國國國國⟧",
|
26
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "⟦萬萬萬萬萬萬萬萬 Ťöĝġľě ūΡďãŧé mόďê şεĺêçτοѓ 國國國國國國國國⟧",
|
27
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.with": "⟦萬 Щιτħ 國⟧",
|
28
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "⟦ Àďď ⟧",
|
29
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "⟦萬 Ćãη¢ėĺ 國⟧",
|
30
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "⟦萬 Ĉľσŝé 國⟧",
|
31
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.header": "⟦萬萬萬萬萬萬萬 Ŝēľéčτ Мёŧàďāťα ΤěmΡľâŧє 國國國國國國國⟧",
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputClearAriaLabel": "⟦萬 Čľέàŕ 國⟧",
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputIconAriaLabel": "⟦萬萬萬萬萬 Ŝέǻяċĥ αľļ ťèmΡĺāτéś 國國國國國⟧",
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder": "⟦萬萬萬萬萬 Śеąŗçĥ âĺļ ťеmΡļãτéŝ 國國國國國⟧",
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "⟦萬萬萬萬萬 Şëļèĉŧ á ΤёmΡľǻţĕ 國國國國國⟧",
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ċôůľď ήóτ ļøαď ţέmΡĺáţĕѕ. Ťŕý åğäìи ļãţéŕ 國國國國國國國國國國國國⟧",
|
37
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "⟦萬萬萬萬 Čũŝţôm Μĕŧãďατǻ 國國國國⟧",
|
38
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "⟦萬萬萬萬 Ѕёàяçн ţęmΡļāţėѕ 國國國國⟧",
|
39
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "⟦萬萬萬 Άďď τёmΡĺäŧє 國國國⟧",
|
40
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Αŗё ŷòù ѕüґê ÿòũ ẁäπţ ťò ďεļëτê ţĥė \"{templateName}\" Мēτåďāτα ťеmΡĺäτê, áйď åľĺ ôƒ ιτŝ νåľųеş ƒŗõm ťнįŝ ƒįľê? 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
|
41
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel": "⟦萬萬萬萬萬萬 ŦўΡε \"{templateName}\" ŧő čöήƒíŗm 國國國國國國⟧",
|
42
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.secondParagraph": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Óπ¢ė ďëľέťєď, Μėταďãτα νąĺūĕś ĉāńήõţ вê ґёѕŧοгéď. 國國國國國國國國國國國國國國⟧",
|
43
|
+
"metadataEditor.editInstance.deleteConfirmationModal.cancelButton": "⟦萬 Ċáйçêļ 國⟧",
|
44
|
+
"metadataEditor.editInstance.deleteConfirmationModal.confirmButton": "⟦萬萬 Čöпƒįгm 國國⟧",
|
45
|
+
"metadataEditor.editInstance.deleteConfirmationModal.customMedatata": "⟦萬萬萬萬 Ćцŝτőm Μėτàďáŧα 國國國國⟧",
|
46
|
+
"metadataEditor.editInstance.deleteConfirmationModal.dismissButton": "⟦萬萬 Ďĩśmіśѕ 國國⟧",
|
47
|
+
"metadataEditor.editInstance.deleteConfirmationModal.header": "⟦萬萬萬萬 Ďéļεŧę \"{templateName}\" 國國國國⟧",
|
48
|
+
"metadataEditor.fileLevel.emptyState.boxAiEnabled.body": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ūşě ťнέ Ρõŵęŕ öƒ Βòх ÄÎ ţο qůìĉкľУ ćåΡţūŗё ďö¢ůměπť mέţàďāţã, ωїτĥ ĕνёŗ-įŋсяēǻşїйġ âćсŭгąċŷ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
|
49
|
+
"metadataEditor.fileLevel.emptyState.boxAiEnabled.heading": "⟦萬萬萬萬萬萬萬萬 Âúτõƒϊľļ Μëτãďάťą ẃïťн ßö× ΑÍ 國國國國國國國國⟧",
|
50
|
+
"metadataEditor.fileLevel.emptyState.default.body": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ãďď Мĕţάďãťâ ŧό Уøμѓ ƒîľë ŧô śùΡΡόѓτ ьùşίηëşŝ øΡĕŕāτϊσňş, ώŏґĸƒļøώŝ, ǻňď mőŕє! 國國國國國國國國國國國國國國國國國國國國國國國⟧",
|
51
|
+
"metadataEditor.fileLevel.emptyState.default.heading": "⟦萬萬萬萬萬萬 Äďď Μеťāďâτà ŢєmΡľαŧěŝ 國國國國國國⟧",
|
52
|
+
"metadataEditor.filterDropdownMenuSearch.iconButtonAriaLabel": "⟦萬萬萬 Čľêãя ѕέǻř¢ħ 國國國⟧",
|
53
|
+
"metadataEditor.filterDropdownMenuSearch.noResultsFound": "⟦萬萬萬萬 Ŋο řêśůļťѕ ƒøųлď 國國國國⟧",
|
54
|
+
"metadataEditor.instanceLevel.emptyState.emptyValues.Cta": "⟦萬萬萬萬 Ŝėє єmΡťỳ νǻľųĕŝ 國國國國⟧",
|
55
|
+
"metadataEditor.instanceLevel.emptyState.heading": "⟦萬萬萬萬萬萬萬萬 Ťнїŝ τêmΡľăťê ħàş ŋо νάļцėś 國國國國國國國國⟧",
|
56
|
+
"metadataEditor.instanceLevel.emptyState.noAttributes.heading": "⟦萬萬萬萬萬萬萬萬萬 Ţĥìѕ ťęmΡľâťë ħáś лő äţτŗĩьцťёś 國國國國國國國國國⟧",
|
57
|
+
"metadataEditor.instanceLevel.emptyState.noEmptyValues.body": "⟦萬萬萬萬萬萬萬萬 Ťнíѕ τèmΡļąτе ħàś ňο νāľúéś 國國國國國國國國⟧",
|
58
|
+
"metadataEditor.managerLevel.emptyState.body": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Βŕоŵşê σя şėāřсħ ƒôя ýσűŗ ìţêmŝ ťó αΡΡļỳ ãʼnď еďϊŧ mëţäďāτă 國國國國國國國國國國國國國國國國國⟧",
|
59
|
+
"metadataEditor.managerLevel.emptyState.heading": "⟦萬萬萬萬萬萬萬 ÅΡΡľУ Мęŧáďǻťά ΤєmΡľáťéѕ 國國國國國國國⟧",
|
60
|
+
"metadataEditor.metadataEditor.customIntanceNewField.addNewFieldCTA": "⟦ Äďď ⟧",
|
61
|
+
"metadataEditor.metadataEditor.customIntanceNewField.attributeNameLabel": "⟦萬萬萬萬 Ąŧŧŕίьùţέ Ŋâmě 國國國國⟧",
|
62
|
+
"metadataEditor.metadataEditor.customIntanceNewField.cancelCTA": "⟦萬 Ćăπ¢ëĺ 國⟧",
|
63
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customErrorDuplicateKey": "⟦萬萬萬萬萬 Ќëỳ âĺŗèąďỳ ёхìşτś. 國國國國國⟧",
|
64
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customErrorInternalKey": "⟦萬萬萬萬萬萬萬萬 Κėўş çάňйσŧ ьêĝіη ωìţн ã $. 國國國國國國國國⟧",
|
65
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customKeyPlaceholder": "⟦萬萬萬萬萬 ë.ğ. Øŕďёґ Ñúmвёѓ 國國國國國⟧",
|
66
|
+
"metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired": "⟦萬萬萬萬 Ќεý ϊŝ гέqùіŗёď 國國國國⟧",
|
67
|
+
"metadataEditor.metadataEditor.customIntanceNewField.valueLabel": "⟦萬 Vąľűє 國⟧",
|
68
|
+
"metadataEditor.metadataEditor.customIntanceNewField.valuePlaceholder": "⟦萬萬 ε.ğ. 42 國國⟧",
|
69
|
+
"metadataEditor.metadataInstanceEditor.customInstance.addAttribute": "⟦萬萬萬萬 + Ąďď Åτţяιьµţê 國國國國⟧",
|
70
|
+
"metadataEditor.metadataInstanceEditor.customInstance.removeAttribute": "⟦萬 Ŕémőνè 國⟧",
|
71
|
+
"metadataEditor.metadataInstanceEditor.customInstance.setValuePlaceholder": "⟦萬萬 Ѕëţ νâļùё 國國⟧",
|
72
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.cancelButton": "⟦萬 Čäπĉєļ 國⟧",
|
73
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.deleteButton": "⟦萬 Ðεĺέţë 國⟧",
|
74
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.loadingAriaLabel": "⟦萬萬 Ŀσâďιлġ... 國國⟧",
|
75
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.saveButton": "⟦萬 Śåνе 國⟧",
|
76
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.autofillButton": "⟦萬萬 Âŭτőƒīļľ 國國⟧",
|
77
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.customInstanceTitle": "⟦萬萬萬萬 Ċúśτöm Μëţǻďąţą 國國國國⟧",
|
78
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.loadingButtonAriaLabel": "⟦萬萬 Ĺόāďїηğ... 國國⟧",
|
79
|
+
"metadataEditor.unsavedChangesModal.body": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Мēťãďàτā ŧєmΡľăτέ(ŝ) ĥανέ űňśåνёď ċнáʼnġêѕ. Ήσẁ ẃòűĺď ŷöů ĺïкę τó Ρѓóčĕēď? 國國國國國國國國國國國國國國國國國國國國國⟧",
|
80
|
+
"metadataEditor.unsavedChangesModal.closeLabel": "⟦萬 Ĉļόѕě 國⟧",
|
81
|
+
"metadataEditor.unsavedChangesModal.dismissCTA": "⟦萬 Ćāп¢éľ 國⟧",
|
82
|
+
"metadataEditor.unsavedChangesModal.header": "⟦萬萬萬萬 Űņѕåνеď Çнαŋĝêş 國國國國⟧",
|
83
|
+
"metadataEditor.unsavedChangesModal.saveAndContinueCTA": "⟦萬萬萬萬萬 Ŝăνę άйď Çőητíήµę 國國國國國⟧",
|
84
|
+
"metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA": "⟦萬萬萬萬萬 Ĥîďé êmΡťỳ νàļùèѕ 國國國國國⟧",
|
85
|
+
"metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA": "⟦萬萬萬萬萬 Şĥоω єmΡτў νãľũέş 國國國國國⟧",
|
86
|
+
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "⟦萬萬萬萬 Čűśτőm Μéŧαďäŧä 國國國國⟧",
|
87
|
+
"comboboxWithApiPagination.apiError": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Čσцĺďň'ţ ļøàď яēśũļŧŝ. Çĺїćκ ťŏ τґŷ ãĝàĭή. 國國國國國國國國國國國國⟧"
|
88
|
+
}
|
@@ -0,0 +1,164 @@
|
|
1
|
+
# Error message displayed as combobox item when an API failed and the suggestions could not load
|
2
|
+
comboboxWithApiPagination.apiError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Čσцĺďň'ţ ļøàď яēśũļŧŝ. Çĺїćκ ťŏ τґŷ ãĝàĭή. 國國國國國國國國國國國國⟧
|
3
|
+
# Visually hidden aria-label text for the loading spinner
|
4
|
+
comboboxWithApiPagination.loadingAriaLabel = ⟦萬萬 Ĺóàďîиĝ... 國國⟧
|
5
|
+
# Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
|
6
|
+
comboboxWithApiPagination.loadingMoreAriaLabel = ⟦萬萬萬萬 Ŀøãďīлğ môгė... 國國國國⟧
|
7
|
+
# Message displayed when no results are found in the combobox
|
8
|
+
comboboxWithApiPagination.noResults = ⟦萬萬萬萬 Иó řêŝùļťş ƒōùиď 國國國國⟧
|
9
|
+
# Aria label indicating that content is loading or in progress
|
10
|
+
groupSharedFeatures.metadataEditor.loading = ⟦萬萬 ĺóάďιпğ 國國⟧
|
11
|
+
# Error message shown if an invalid after date is entered. {date} represents the date entered by the user.
|
12
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError = ⟦萬萬萬萬萬萬萬 Ĕŋτεѓ á ďǻŧĕ àƒţея {date} 國國國國國國國⟧
|
13
|
+
# Label for the append radio button in the update mode selector
|
14
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.append = ⟦萬 ĀΡΡĕήď 國⟧
|
15
|
+
# Error message shown if an invalid before date is entered. {date} represents the date entered by the user.
|
16
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.beforeDateValidationError = ⟦萬萬萬萬萬萬萬 Èņτеŗ ā ďąţê ьéƒôґë {date} 國國國國國國國⟧
|
17
|
+
# Label for the Clear All & Replace radio button in the update mode selector
|
18
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.clearAndReplace = ⟦萬萬萬萬萬 Çľёåґ Âľľ & ҐéΡļά¢ε 國國國國國⟧
|
19
|
+
# Aria label for clearing the selected date
|
20
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.clearSelectedDate = ⟦萬萬萬萬萬 Çľëãѓ ŝеĺėċτеď ďãτе 國國國國國⟧
|
21
|
+
# Error message shown for an invalid field value
|
22
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.floatFieldInvalidValue = ⟦萬萬萬萬萬 Ϊήνǻļĩď ƒįéĺď νàļúê 國國國國國⟧
|
23
|
+
# Placeholder text for the multiselect field
|
24
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.multiselectPlaceholder = ⟦萬萬萬萬 Śêľεсţ νåľűē(ş) 國國國國⟧
|
25
|
+
# Error message shown if no attributes are available in the template
|
26
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.noTemplateAtributesError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Τĥєяê åяé πő ãťťŕìвцτεŝ īл ŧĥĩŝ ţêmΡĺàτë. 國國國國國國國國國國國國⟧
|
27
|
+
# Aria label for opening the calendar to pick a date
|
28
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.openCalendarLabel = ⟦萬萬萬萬萬萬萬萬 ŐΡéή ċăļëňďàг ťŏ Ρι¢к å ďαŧε 國國國國國國國國⟧
|
29
|
+
# Label for the remove entered radio button in the update mode selector
|
30
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.removeEntered = ⟦萬萬萬萬 Ŗеmõνє Ěπŧėŕεď 國國國國⟧
|
31
|
+
# Label for the replace entered radio button in the update mode selector
|
32
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.replaceEntered = ⟦萬萬萬萬 ЯеΡľάсê Èпťέŕεď 國國國國⟧
|
33
|
+
# Aria label for selecting the date
|
34
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.selectDate = ⟦萬萬萬萬 Ѕёĺëćť ŧĥē ďåťе 國國國國⟧
|
35
|
+
# Placeholder text for selecting a value
|
36
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.selectValuePlaceholder = ⟦萬萬萬萬 Ŝëĺё¢ť ä νàľŭè 國國國國⟧
|
37
|
+
# Placeholder text for setting a value
|
38
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.setValuePlaceholder = ⟦萬萬 Śęţ Văļŭè 國國⟧
|
39
|
+
# Aria label for switching to the next month in the calendar
|
40
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth = ⟦萬萬萬萬萬 Şẃîţċħ τó ŋē×ţ móйţħ 國國國國國⟧
|
41
|
+
# Aria label for switching to the previous month in the calendar
|
42
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth = ⟦萬萬萬萬萬萬萬 Şώìτçħ ţσ Ρřéνїόũŝ mőņτĥ 國國國國國國國⟧
|
43
|
+
# aria-label for an icon button that toggles visiblity of update mode slection radio control.
|
44
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel = ⟦萬萬萬萬萬萬萬萬 Ťöĝġľě ūΡďãŧé mόďê şεĺêçτοѓ 國國國國國國國國⟧
|
45
|
+
# Label for the additional input field that appears when the selected update mode is "Replace Entered"
|
46
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.with = ⟦萬 Щιτħ 國⟧
|
47
|
+
# Label for the button that applies the selection and closes the template selection dialog
|
48
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.add = ⟦ Àďď ⟧
|
49
|
+
# Label for the button that dismisses the template selection dialog
|
50
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel = ⟦萬 Ćãη¢ėĺ 國⟧
|
51
|
+
# Aria label for the button that closes the template selection dialog
|
52
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.close = ⟦萬 Ĉľσŝé 國⟧
|
53
|
+
# Title for the metadata template selection dialog
|
54
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.header = ⟦萬萬萬萬萬萬萬 Ŝēľéčτ Мёŧàďāťα ΤěmΡľâŧє 國國國國國國國⟧
|
55
|
+
# Accessibility label for the button that clears the value of the search input that filters the templates in the metadata template selection dialog
|
56
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputClearAriaLabel = ⟦萬 Čľέàŕ 國⟧
|
57
|
+
# Accessibility label for icon inside the search input that filters the templates in the metadata template selection dialog
|
58
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputIconAriaLabel = ⟦萬萬萬萬萬 Ŝέǻяċĥ αľļ ťèmΡĺāτéś 國國國國國⟧
|
59
|
+
# Placeholder text for the search input in the metadata template selector modal
|
60
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder = ⟦萬萬萬萬萬 Śеąŗçĥ âĺļ ťеmΡļãτéŝ 國國國國國⟧
|
61
|
+
# Placeholder text prompting the user to select a template
|
62
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate = ⟦萬萬萬萬萬 Şëļèĉŧ á ΤёmΡľǻţĕ 國國國國國⟧
|
63
|
+
# Error message displayed when templates fail to load
|
64
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ċôůľď ήóτ ļøαď ţέmΡĺáţĕѕ. Ťŕý åğäìи ļãţéŕ 國國國國國國國國國國國國⟧
|
65
|
+
# Display name for custom metadata templates
|
66
|
+
metadataEditor.addMetadataTemplate.customMetadataName = ⟦萬萬萬萬 Čũŝţôm Μĕŧãďατǻ 國國國國⟧
|
67
|
+
# Description for the search input field in the metadata editor
|
68
|
+
metadataEditor.addMetadataTemplate.search.placeholder = ⟦萬萬萬萬 Ѕёàяçн ţęmΡļāţėѕ 國國國國⟧
|
69
|
+
# Call to encourage user to add metadata templates
|
70
|
+
metadataEditor.addMetadataTemplate.trigger.label = ⟦萬萬萬 Άďď τёmΡĺäŧє 國國國⟧
|
71
|
+
# Paragraph asking user are they sure that they want to delete the template
|
72
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Αŗё ŷòù ѕüґê ÿòũ ẁäπţ ťò ďεļëτê ţĥė "{templateName}" Мēτåďāτα ťеmΡĺäτê, áйď åľĺ ôƒ ιτŝ νåľųеş ƒŗõm ťнįŝ ƒįľê? 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
73
|
+
# Label informing how to confirm deletion of the template
|
74
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel = ⟦萬萬萬萬萬萬 ŦўΡε "{templateName}" ŧő čöήƒíŗm 國國國國國國⟧
|
75
|
+
# Paragraph informing that data cannot be restored
|
76
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.secondParagraph = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Óπ¢ė ďëľέťєď, Μėταďãτα νąĺūĕś ĉāńήõţ вê ґёѕŧοгéď. 國國國國國國國國國國國國國國⟧
|
77
|
+
# CTA to cancel deletion of the template
|
78
|
+
metadataEditor.editInstance.deleteConfirmationModal.cancelButton = ⟦萬 Ċáйçêļ 國⟧
|
79
|
+
# CTA to confirm deletion of the template
|
80
|
+
metadataEditor.editInstance.deleteConfirmationModal.confirmButton = ⟦萬萬 Čöпƒįгm 國國⟧
|
81
|
+
# Template named used when user created custom metadata template
|
82
|
+
metadataEditor.editInstance.deleteConfirmationModal.customMedatata = ⟦萬萬萬萬 Ćцŝτőm Μėτàďáŧα 國國國國⟧
|
83
|
+
# Aria label for Dismiss (x) button
|
84
|
+
metadataEditor.editInstance.deleteConfirmationModal.dismissButton = ⟦萬萬 Ďĩśmіśѕ 國國⟧
|
85
|
+
# Header informing that template will be deleted
|
86
|
+
metadataEditor.editInstance.deleteConfirmationModal.header = ⟦萬萬萬萬 Ďéļεŧę "{templateName}" 國國國國⟧
|
87
|
+
# Description of Box AI features
|
88
|
+
metadataEditor.fileLevel.emptyState.boxAiEnabled.body = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ūşě ťнέ Ρõŵęŕ öƒ Βòх ÄÎ ţο qůìĉкľУ ćåΡţūŗё ďö¢ůměπť mέţàďāţã, ωїτĥ ĕνёŗ-įŋсяēǻşїйġ âćсŭгąċŷ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
89
|
+
# Call to encourage user to use Box AI to autofill metadata fields
|
90
|
+
metadataEditor.fileLevel.emptyState.boxAiEnabled.heading = ⟦萬萬萬萬萬萬萬萬 Âúτõƒϊľļ Μëτãďάťą ẃïťн ßö× ΑÍ 國國國國國國國國⟧
|
91
|
+
# Description of metadata features
|
92
|
+
metadataEditor.fileLevel.emptyState.default.body = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ãďď Мĕţάďãťâ ŧό Уøμѓ ƒîľë ŧô śùΡΡόѓτ ьùşίηëşŝ øΡĕŕāτϊσňş, ώŏґĸƒļøώŝ, ǻňď mőŕє! 國國國國國國國國國國國國國國國國國國國國國國國⟧
|
93
|
+
# Call to encourage user to add metadata templates
|
94
|
+
metadataEditor.fileLevel.emptyState.default.heading = ⟦萬萬萬萬萬萬 Äďď Μеťāďâτà ŢєmΡľαŧěŝ 國國國國國國⟧
|
95
|
+
# Aria label used to clear search input
|
96
|
+
metadataEditor.filterDropdownMenuSearch.iconButtonAriaLabel = ⟦萬萬萬 Čľêãя ѕέǻř¢ħ 國國國⟧
|
97
|
+
# Message displayed when there is no matching option in filter dropdown menu
|
98
|
+
metadataEditor.filterDropdownMenuSearch.noResultsFound = ⟦萬萬萬萬 Ŋο řêśůļťѕ ƒøųлď 國國國國⟧
|
99
|
+
# Call to show empty values
|
100
|
+
metadataEditor.instanceLevel.emptyState.emptyValues.Cta = ⟦萬萬萬萬 Ŝėє єmΡťỳ νǻľųĕŝ 國國國國⟧
|
101
|
+
# Header informing user that there are no values in the template
|
102
|
+
metadataEditor.instanceLevel.emptyState.heading = ⟦萬萬萬萬萬萬萬萬 Ťнїŝ τêmΡľăťê ħàş ŋо νάļцėś 國國國國國國國國⟧
|
103
|
+
# Header informing user that there are no attributes in the template
|
104
|
+
metadataEditor.instanceLevel.emptyState.noAttributes.heading = ⟦萬萬萬萬萬萬萬萬萬 Ţĥìѕ ťęmΡľâťë ħáś лő äţτŗĩьцťёś 國國國國國國國國國⟧
|
105
|
+
# Caption about no empty values to be shown
|
106
|
+
metadataEditor.instanceLevel.emptyState.noEmptyValues.body = ⟦萬萬萬萬萬萬萬萬 Ťнíѕ τèmΡļąτе ħàś ňο νāľúéś 國國國國國國國國⟧
|
107
|
+
# Description how metadata can be added
|
108
|
+
metadataEditor.managerLevel.emptyState.body = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Βŕоŵşê σя şėāřсħ ƒôя ýσűŗ ìţêmŝ ťó αΡΡļỳ ãʼnď еďϊŧ mëţäďāτă 國國國國國國國國國國國國國國國國國⟧
|
109
|
+
# Call to encourage user apply metadata templates
|
110
|
+
metadataEditor.managerLevel.emptyState.heading = ⟦萬萬萬萬萬萬萬 ÅΡΡľУ Мęŧáďǻťά ΤєmΡľáťéѕ 國國國國國國國⟧
|
111
|
+
# Primary CTA button to add new field to cutom meatdata instance
|
112
|
+
metadataEditor.metadataEditor.customIntanceNewField.addNewFieldCTA = ⟦ Äďď ⟧
|
113
|
+
# Label for the attribute name input field
|
114
|
+
metadataEditor.metadataEditor.customIntanceNewField.attributeNameLabel = ⟦萬萬萬萬 Ąŧŧŕίьùţέ Ŋâmě 國國國國⟧
|
115
|
+
# Cancel button text
|
116
|
+
metadataEditor.metadataEditor.customIntanceNewField.cancelCTA = ⟦萬 Ćăπ¢ëĺ 國⟧
|
117
|
+
# Error enforcing unique key for custom metadata
|
118
|
+
metadataEditor.metadataEditor.customIntanceNewField.customErrorDuplicateKey = ⟦萬萬萬萬萬 Ќëỳ âĺŗèąďỳ ёхìşτś. 國國國國國⟧
|
119
|
+
# Error enforcing non internal key for custom metadata
|
120
|
+
metadataEditor.metadataEditor.customIntanceNewField.customErrorInternalKey = ⟦萬萬萬萬萬萬萬萬 Κėўş çάňйσŧ ьêĝіη ωìţн ã $. 國國國國國國國國⟧
|
121
|
+
# Placeholder for the key field for custom metadata
|
122
|
+
metadataEditor.metadataEditor.customIntanceNewField.customKeyPlaceholder = ⟦萬萬萬萬萬 ë.ğ. Øŕďёґ Ñúmвёѓ 國國國國國⟧
|
123
|
+
# Error enforcing required key for custom metadata
|
124
|
+
metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired = ⟦萬萬萬萬 Ќεý ϊŝ гέqùіŗёď 國國國國⟧
|
125
|
+
# Label for the value input field
|
126
|
+
metadataEditor.metadataEditor.customIntanceNewField.valueLabel = ⟦萬 Vąľűє 國⟧
|
127
|
+
# Placeholder for the value field for custom metadata
|
128
|
+
metadataEditor.metadataEditor.customIntanceNewField.valuePlaceholder = ⟦萬萬 ε.ğ. 42 國國⟧
|
129
|
+
# Button that allow to add new attribute to metadata custom instance
|
130
|
+
metadataEditor.metadataInstanceEditor.customInstance.addAttribute = ⟦萬萬萬萬 + Ąďď Åτţяιьµţê 國國國國⟧
|
131
|
+
# Aria label for button that allow to remove attribute from metadata custom instance
|
132
|
+
metadataEditor.metadataInstanceEditor.customInstance.removeAttribute = ⟦萬 Ŕémőνè 國⟧
|
133
|
+
# Placeholder for the value field for custom metadata
|
134
|
+
metadataEditor.metadataInstanceEditor.customInstance.setValuePlaceholder = ⟦萬萬 Ѕëţ νâļùё 國國⟧
|
135
|
+
# Call to action to cancel and dismiss changes in Metadata Instance.
|
136
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.cancelButton = ⟦萬 Čäπĉєļ 國⟧
|
137
|
+
# Call to action to delete Metadata Instance.
|
138
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.deleteButton = ⟦萬 Ðεĺέţë 國⟧
|
139
|
+
# Aria label used to indicate that the button is currently loading.
|
140
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.loadingAriaLabel = ⟦萬萬 Ŀσâďιлġ... 國國⟧
|
141
|
+
# Call to action to save Metadata Instance.
|
142
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.saveButton = ⟦萬 Śåνе 國⟧
|
143
|
+
# Button with "Autofill" text. Call to action to automatically fill in form fields based on AI information
|
144
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.autofillButton = ⟦萬萬 Âŭτőƒīļľ 國國⟧
|
145
|
+
# Header with Custom Metadata template name
|
146
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.customInstanceTitle = ⟦萬萬萬萬 Ċúśτöm Μëţǻďąţą 國國國國⟧
|
147
|
+
# Aria label used to indicate that the button is currently loading.
|
148
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.loadingButtonAriaLabel = ⟦萬萬 Ĺόāďїηğ... 國國⟧
|
149
|
+
# Body for the unsaved changes modal
|
150
|
+
metadataEditor.unsavedChangesModal.body = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Мēťãďàτā ŧєmΡľăτέ(ŝ) ĥανέ űňśåνёď ċнáʼnġêѕ. Ήσẁ ẃòűĺď ŷöů ĺïкę τó Ρѓóčĕēď? 國國國國國國國國國國國國國國國國國國國國國⟧
|
151
|
+
# Label for close (x) button
|
152
|
+
metadataEditor.unsavedChangesModal.closeLabel = ⟦萬 Ĉļόѕě 國⟧
|
153
|
+
# CTA for dismissing the unsaved changes
|
154
|
+
metadataEditor.unsavedChangesModal.dismissCTA = ⟦萬 Ćāп¢éľ 國⟧
|
155
|
+
# Header for the unsaved changes modal
|
156
|
+
metadataEditor.unsavedChangesModal.header = ⟦萬萬萬萬 Űņѕåνеď Çнαŋĝêş 國國國國⟧
|
157
|
+
# CTA for saving the unsaved changes and continuing
|
158
|
+
metadataEditor.unsavedChangesModal.saveAndContinueCTA = ⟦萬萬萬萬萬 Ŝăνę άйď Çőητíήµę 國國國國國⟧
|
159
|
+
# Call to action to hide all empty values
|
160
|
+
metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA = ⟦萬萬萬萬萬 Ĥîďé êmΡťỳ νàļùèѕ 國國國國國⟧
|
161
|
+
# Call to action to show hidden empty values
|
162
|
+
metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA = ⟦萬萬萬萬萬 Şĥоω єmΡτў νãľũέş 國國國國國⟧
|
163
|
+
# Header with Custom Metadata template name
|
164
|
+
metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle = ⟦萬萬萬萬 Čűśτőm Μéŧαďäŧä 國國國國⟧
|
package/i18n/es-419.js
ADDED
@@ -0,0 +1,88 @@
|
|
1
|
+
export default {
|
2
|
+
"comboboxWithApiPagination.clearButtonAriaLabel": "Clear input and selection",
|
3
|
+
"comboboxWithApiPagination.errorAction": "Reload",
|
4
|
+
"comboboxWithApiPagination.errorIconLabel": "Error",
|
5
|
+
"comboboxWithApiPagination.errorMessage": "Failed to load options",
|
6
|
+
"comboboxWithApiPagination.loadingAriaLabel": "Cargando…",
|
7
|
+
"comboboxWithApiPagination.loadingMoreAriaLabel": "Cargando más...",
|
8
|
+
"comboboxWithApiPagination.noResults": "No se han encontrado resultados",
|
9
|
+
"groupSharedFeatures.metadataEditor.loading": "cargando",
|
10
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Ingresa una fecha posterior a {date}",
|
11
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.append": "Anexar",
|
12
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.beforeDateValidationError": "Ingresa una fecha anterior a {date}",
|
13
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.clearAndReplace": "Eliminar todo y reemplazar",
|
14
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.clearSelectedDate": "Eliminar fecha seleccionada",
|
15
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.floatFieldInvalidValue": "Valor de campo no válido",
|
16
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.multiselectPlaceholder": "Seleccionar valor(es)",
|
17
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.noTemplateAtributesError": "No hay atributos en esta plantilla.",
|
18
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.openCalendarLabel": "Abrir calendario para elegir una fecha",
|
19
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.removeEntered": "Eliminar ingresado",
|
20
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.replaceEntered": "Reemplazar ingresado",
|
21
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.selectDate": "Seleccionar la fecha",
|
22
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.selectValuePlaceholder": "Seleccionar un valor",
|
23
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.setValuePlaceholder": "Establecer un valor",
|
24
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth": "Cambiar al mes que viene",
|
25
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth": "Cambiar al mes anterior",
|
26
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "Alternar selector modo de actualización",
|
27
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.with": "Con",
|
28
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "Agregar",
|
29
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "Anular",
|
30
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "Cerrar",
|
31
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.header": "Seleccionar plantilla de metadatos",
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputClearAriaLabel": "Eliminar",
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputIconAriaLabel": "Buscar todas las plantillas",
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder": "Buscar todas las plantillas",
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Seleccionar una plantilla",
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "No se pudo cargar las plantillas. Vuelve a intentarlo más tarde",
|
37
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Metadatos personalizados",
|
38
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Buscar plantillas",
|
39
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Agregar plantilla",
|
40
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph": "¿Seguro que deseas eliminar la plantilla de metadatos \"{templateName}\" y todos sus valores de este archivo?",
|
41
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel": "Escribe \"{templateName}\" para confirmar",
|
42
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.secondParagraph": "Una vez eliminados, los valores de metadatos no se podrán recuperar.",
|
43
|
+
"metadataEditor.editInstance.deleteConfirmationModal.cancelButton": "Anular",
|
44
|
+
"metadataEditor.editInstance.deleteConfirmationModal.confirmButton": "Confirmar",
|
45
|
+
"metadataEditor.editInstance.deleteConfirmationModal.customMedatata": "Metadatos personalizados",
|
46
|
+
"metadataEditor.editInstance.deleteConfirmationModal.dismissButton": "Descartar",
|
47
|
+
"metadataEditor.editInstance.deleteConfirmationModal.header": "Eliminar \"{templateName}\"",
|
48
|
+
"metadataEditor.fileLevel.emptyState.boxAiEnabled.body": "Aproveche la potencia de Box AI para capturar rápidamente los metadatos de los documentos con precisión.",
|
49
|
+
"metadataEditor.fileLevel.emptyState.boxAiEnabled.heading": "Rellenar automáticamente metadatos con Box AI",
|
50
|
+
"metadataEditor.fileLevel.emptyState.default.body": "Agregue metadatos a su archivo para facilitar las operaciones comerciales, los flujos de trabajo y mucho más.",
|
51
|
+
"metadataEditor.fileLevel.emptyState.default.heading": "Agregar plantillas de metadatos",
|
52
|
+
"metadataEditor.filterDropdownMenuSearch.iconButtonAriaLabel": "Eliminar búsqueda",
|
53
|
+
"metadataEditor.filterDropdownMenuSearch.noResultsFound": "No se han encontrado resultados",
|
54
|
+
"metadataEditor.instanceLevel.emptyState.emptyValues.Cta": "Ver valores vacíos",
|
55
|
+
"metadataEditor.instanceLevel.emptyState.heading": "Esta plantilla no tiene valores",
|
56
|
+
"metadataEditor.instanceLevel.emptyState.noAttributes.heading": "Esta plantilla no tiene atributos",
|
57
|
+
"metadataEditor.instanceLevel.emptyState.noEmptyValues.body": "Esta plantilla no tiene valores",
|
58
|
+
"metadataEditor.managerLevel.emptyState.body": "Examine o busque sus elementos para aplicar y editar los metadatos",
|
59
|
+
"metadataEditor.managerLevel.emptyState.heading": "Aplicar plantillas de metadatos",
|
60
|
+
"metadataEditor.metadataEditor.customIntanceNewField.addNewFieldCTA": "Agregar",
|
61
|
+
"metadataEditor.metadataEditor.customIntanceNewField.attributeNameLabel": "Nombre del atributo",
|
62
|
+
"metadataEditor.metadataEditor.customIntanceNewField.cancelCTA": "Anular",
|
63
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customErrorDuplicateKey": "Esta clave ya existe.",
|
64
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customErrorInternalKey": "Las claves no pueden comenzar por $.",
|
65
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customKeyPlaceholder": "Por ejemplo, número de pedido",
|
66
|
+
"metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired": "Clave obligatoria",
|
67
|
+
"metadataEditor.metadataEditor.customIntanceNewField.valueLabel": "Valor",
|
68
|
+
"metadataEditor.metadataEditor.customIntanceNewField.valuePlaceholder": "Por ejemplo, 42",
|
69
|
+
"metadataEditor.metadataInstanceEditor.customInstance.addAttribute": "+ Agregar atributo",
|
70
|
+
"metadataEditor.metadataInstanceEditor.customInstance.removeAttribute": "Eliminar",
|
71
|
+
"metadataEditor.metadataInstanceEditor.customInstance.setValuePlaceholder": "Establecer el valor",
|
72
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.cancelButton": "Anular",
|
73
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.deleteButton": "Eliminar",
|
74
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.loadingAriaLabel": "Cargando…",
|
75
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.saveButton": "Guardar",
|
76
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.autofillButton": "Autorrellenar",
|
77
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.customInstanceTitle": "Metadatos personalizados",
|
78
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.loadingButtonAriaLabel": "Cargando…",
|
79
|
+
"metadataEditor.unsavedChangesModal.body": "No se han guardado los cambios de la(s) plantilla(s) de metadatos. ¿Cómo quieres continuar?",
|
80
|
+
"metadataEditor.unsavedChangesModal.closeLabel": "Cerrar",
|
81
|
+
"metadataEditor.unsavedChangesModal.dismissCTA": "Anular",
|
82
|
+
"metadataEditor.unsavedChangesModal.header": "Sin guardar cambios",
|
83
|
+
"metadataEditor.unsavedChangesModal.saveAndContinueCTA": "Guardar y continuar",
|
84
|
+
"metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA": "Ocultar los valores vacíos",
|
85
|
+
"metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA": "Mostrar los valores vacíos",
|
86
|
+
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Metadatos personalizados",
|
87
|
+
"comboboxWithApiPagination.apiError": "No es posible cargar los resultados. Haz clic para intentarlo nuevamente."
|
88
|
+
}
|