@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,164 @@
|
|
1
|
+
# Error message displayed as combobox item when an API failed and the suggestions could not load
|
2
|
+
comboboxWithApiPagination.apiError = No es posible cargar los resultados. Haz clic para intentarlo nuevamente.
|
3
|
+
# Visually hidden aria-label text for the loading spinner
|
4
|
+
comboboxWithApiPagination.loadingAriaLabel = Cargando…
|
5
|
+
# Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
|
6
|
+
comboboxWithApiPagination.loadingMoreAriaLabel = Cargando más...
|
7
|
+
# Message displayed when no results are found in the combobox
|
8
|
+
comboboxWithApiPagination.noResults = No se han encontrado resultados
|
9
|
+
# Aria label indicating that content is loading or in progress
|
10
|
+
groupSharedFeatures.metadataEditor.loading = cargando
|
11
|
+
# Error message shown if an invalid after date is entered. {date} represents the date entered by the user.
|
12
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError = Ingresa una fecha posterior a {date}
|
13
|
+
# Label for the append radio button in the update mode selector
|
14
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.append = Anexar
|
15
|
+
# Error message shown if an invalid before date is entered. {date} represents the date entered by the user.
|
16
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.beforeDateValidationError = Ingresa una fecha anterior a {date}
|
17
|
+
# Label for the Clear All & Replace radio button in the update mode selector
|
18
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.clearAndReplace = Eliminar todo y reemplazar
|
19
|
+
# Aria label for clearing the selected date
|
20
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.clearSelectedDate = Eliminar fecha seleccionada
|
21
|
+
# Error message shown for an invalid field value
|
22
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.floatFieldInvalidValue = Valor de campo no válido
|
23
|
+
# Placeholder text for the multiselect field
|
24
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.multiselectPlaceholder = Seleccionar valor(es)
|
25
|
+
# Error message shown if no attributes are available in the template
|
26
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.noTemplateAtributesError = No hay atributos en esta plantilla.
|
27
|
+
# Aria label for opening the calendar to pick a date
|
28
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.openCalendarLabel = Abrir calendario para elegir una fecha
|
29
|
+
# Label for the remove entered radio button in the update mode selector
|
30
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.removeEntered = Eliminar ingresado
|
31
|
+
# Label for the replace entered radio button in the update mode selector
|
32
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.replaceEntered = Reemplazar ingresado
|
33
|
+
# Aria label for selecting the date
|
34
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.selectDate = Seleccionar la fecha
|
35
|
+
# Placeholder text for selecting a value
|
36
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.selectValuePlaceholder = Seleccionar un valor
|
37
|
+
# Placeholder text for setting a value
|
38
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.setValuePlaceholder = Establecer un valor
|
39
|
+
# Aria label for switching to the next month in the calendar
|
40
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth = Cambiar al mes que viene
|
41
|
+
# Aria label for switching to the previous month in the calendar
|
42
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth = Cambiar al mes anterior
|
43
|
+
# aria-label for an icon button that toggles visiblity of update mode slection radio control.
|
44
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel = Alternar selector modo de actualización
|
45
|
+
# Label for the additional input field that appears when the selected update mode is "Replace Entered"
|
46
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.with = Con
|
47
|
+
# Label for the button that applies the selection and closes the template selection dialog
|
48
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.add = Agregar
|
49
|
+
# Label for the button that dismisses the template selection dialog
|
50
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel = Anular
|
51
|
+
# Aria label for the button that closes the template selection dialog
|
52
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.close = Cerrar
|
53
|
+
# Title for the metadata template selection dialog
|
54
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.header = Seleccionar plantilla de metadatos
|
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 = Eliminar
|
57
|
+
# Accessibility label for icon inside the search input that filters the templates in the metadata template selection dialog
|
58
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputIconAriaLabel = Buscar todas las plantillas
|
59
|
+
# Placeholder text for the search input in the metadata template selector modal
|
60
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder = Buscar todas las plantillas
|
61
|
+
# Placeholder text prompting the user to select a template
|
62
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate = Seleccionar una plantilla
|
63
|
+
# Error message displayed when templates fail to load
|
64
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError = No se pudo cargar las plantillas. Vuelve a intentarlo más tarde
|
65
|
+
# Display name for custom metadata templates
|
66
|
+
metadataEditor.addMetadataTemplate.customMetadataName = Metadatos personalizados
|
67
|
+
# Description for the search input field in the metadata editor
|
68
|
+
metadataEditor.addMetadataTemplate.search.placeholder = Buscar plantillas
|
69
|
+
# Call to encourage user to add metadata templates
|
70
|
+
metadataEditor.addMetadataTemplate.trigger.label = Agregar plantilla
|
71
|
+
# Paragraph asking user are they sure that they want to delete the template
|
72
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph = ¿Seguro que deseas eliminar la plantilla de metadatos "{templateName}" y todos sus valores de este archivo?
|
73
|
+
# Label informing how to confirm deletion of the template
|
74
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel = Escribe "{templateName}" para confirmar
|
75
|
+
# Paragraph informing that data cannot be restored
|
76
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.secondParagraph = Una vez eliminados, los valores de metadatos no se podrán recuperar.
|
77
|
+
# CTA to cancel deletion of the template
|
78
|
+
metadataEditor.editInstance.deleteConfirmationModal.cancelButton = Anular
|
79
|
+
# CTA to confirm deletion of the template
|
80
|
+
metadataEditor.editInstance.deleteConfirmationModal.confirmButton = Confirmar
|
81
|
+
# Template named used when user created custom metadata template
|
82
|
+
metadataEditor.editInstance.deleteConfirmationModal.customMedatata = Metadatos personalizados
|
83
|
+
# Aria label for Dismiss (x) button
|
84
|
+
metadataEditor.editInstance.deleteConfirmationModal.dismissButton = Descartar
|
85
|
+
# Header informing that template will be deleted
|
86
|
+
metadataEditor.editInstance.deleteConfirmationModal.header = Eliminar "{templateName}"
|
87
|
+
# Description of Box AI features
|
88
|
+
metadataEditor.fileLevel.emptyState.boxAiEnabled.body = Aproveche la potencia de Box AI para capturar rápidamente los metadatos de los documentos con precisión.
|
89
|
+
# Call to encourage user to use Box AI to autofill metadata fields
|
90
|
+
metadataEditor.fileLevel.emptyState.boxAiEnabled.heading = Rellenar automáticamente metadatos con Box AI
|
91
|
+
# Description of metadata features
|
92
|
+
metadataEditor.fileLevel.emptyState.default.body = Agregue metadatos a su archivo para facilitar las operaciones comerciales, los flujos de trabajo y mucho más.
|
93
|
+
# Call to encourage user to add metadata templates
|
94
|
+
metadataEditor.fileLevel.emptyState.default.heading = Agregar plantillas de metadatos
|
95
|
+
# Aria label used to clear search input
|
96
|
+
metadataEditor.filterDropdownMenuSearch.iconButtonAriaLabel = Eliminar búsqueda
|
97
|
+
# Message displayed when there is no matching option in filter dropdown menu
|
98
|
+
metadataEditor.filterDropdownMenuSearch.noResultsFound = No se han encontrado resultados
|
99
|
+
# Call to show empty values
|
100
|
+
metadataEditor.instanceLevel.emptyState.emptyValues.Cta = Ver valores vacíos
|
101
|
+
# Header informing user that there are no values in the template
|
102
|
+
metadataEditor.instanceLevel.emptyState.heading = Esta plantilla no tiene valores
|
103
|
+
# Header informing user that there are no attributes in the template
|
104
|
+
metadataEditor.instanceLevel.emptyState.noAttributes.heading = Esta plantilla no tiene atributos
|
105
|
+
# Caption about no empty values to be shown
|
106
|
+
metadataEditor.instanceLevel.emptyState.noEmptyValues.body = Esta plantilla no tiene valores
|
107
|
+
# Description how metadata can be added
|
108
|
+
metadataEditor.managerLevel.emptyState.body = Examine o busque sus elementos para aplicar y editar los metadatos
|
109
|
+
# Call to encourage user apply metadata templates
|
110
|
+
metadataEditor.managerLevel.emptyState.heading = Aplicar plantillas de metadatos
|
111
|
+
# Primary CTA button to add new field to cutom meatdata instance
|
112
|
+
metadataEditor.metadataEditor.customIntanceNewField.addNewFieldCTA = Agregar
|
113
|
+
# Label for the attribute name input field
|
114
|
+
metadataEditor.metadataEditor.customIntanceNewField.attributeNameLabel = Nombre del atributo
|
115
|
+
# Cancel button text
|
116
|
+
metadataEditor.metadataEditor.customIntanceNewField.cancelCTA = Anular
|
117
|
+
# Error enforcing unique key for custom metadata
|
118
|
+
metadataEditor.metadataEditor.customIntanceNewField.customErrorDuplicateKey = Esta clave ya existe.
|
119
|
+
# Error enforcing non internal key for custom metadata
|
120
|
+
metadataEditor.metadataEditor.customIntanceNewField.customErrorInternalKey = Las claves no pueden comenzar por $.
|
121
|
+
# Placeholder for the key field for custom metadata
|
122
|
+
metadataEditor.metadataEditor.customIntanceNewField.customKeyPlaceholder = Por ejemplo, número de pedido
|
123
|
+
# Error enforcing required key for custom metadata
|
124
|
+
metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired = Clave obligatoria
|
125
|
+
# Label for the value input field
|
126
|
+
metadataEditor.metadataEditor.customIntanceNewField.valueLabel = Valor
|
127
|
+
# Placeholder for the value field for custom metadata
|
128
|
+
metadataEditor.metadataEditor.customIntanceNewField.valuePlaceholder = Por ejemplo, 42
|
129
|
+
# Button that allow to add new attribute to metadata custom instance
|
130
|
+
metadataEditor.metadataInstanceEditor.customInstance.addAttribute = + Agregar atributo
|
131
|
+
# Aria label for button that allow to remove attribute from metadata custom instance
|
132
|
+
metadataEditor.metadataInstanceEditor.customInstance.removeAttribute = Eliminar
|
133
|
+
# Placeholder for the value field for custom metadata
|
134
|
+
metadataEditor.metadataInstanceEditor.customInstance.setValuePlaceholder = Establecer el valor
|
135
|
+
# Call to action to cancel and dismiss changes in Metadata Instance.
|
136
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.cancelButton = Anular
|
137
|
+
# Call to action to delete Metadata Instance.
|
138
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.deleteButton = Eliminar
|
139
|
+
# Aria label used to indicate that the button is currently loading.
|
140
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.loadingAriaLabel = Cargando…
|
141
|
+
# Call to action to save Metadata Instance.
|
142
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.saveButton = Guardar
|
143
|
+
# Button with "Autofill" text. Call to action to automatically fill in form fields based on AI information
|
144
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.autofillButton = Autorrellenar
|
145
|
+
# Header with Custom Metadata template name
|
146
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.customInstanceTitle = Metadatos personalizados
|
147
|
+
# Aria label used to indicate that the button is currently loading.
|
148
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.loadingButtonAriaLabel = Cargando…
|
149
|
+
# Body for the unsaved changes modal
|
150
|
+
metadataEditor.unsavedChangesModal.body = No se han guardado los cambios de la(s) plantilla(s) de metadatos. ¿Cómo quieres continuar?
|
151
|
+
# Label for close (x) button
|
152
|
+
metadataEditor.unsavedChangesModal.closeLabel = Cerrar
|
153
|
+
# CTA for dismissing the unsaved changes
|
154
|
+
metadataEditor.unsavedChangesModal.dismissCTA = Anular
|
155
|
+
# Header for the unsaved changes modal
|
156
|
+
metadataEditor.unsavedChangesModal.header = Sin guardar cambios
|
157
|
+
# CTA for saving the unsaved changes and continuing
|
158
|
+
metadataEditor.unsavedChangesModal.saveAndContinueCTA = Guardar y continuar
|
159
|
+
# Call to action to hide all empty values
|
160
|
+
metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA = Ocultar los valores vacíos
|
161
|
+
# Call to action to show hidden empty values
|
162
|
+
metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA = Mostrar los valores vacíos
|
163
|
+
# Header with Custom Metadata template name
|
164
|
+
metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle = Metadatos personalizados
|
package/i18n/es-ES.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
|
+
}
|
@@ -0,0 +1,164 @@
|
|
1
|
+
# Error message displayed as combobox item when an API failed and the suggestions could not load
|
2
|
+
comboboxWithApiPagination.apiError = No es posible cargar los resultados. Haz clic para intentarlo nuevamente.
|
3
|
+
# Visually hidden aria-label text for the loading spinner
|
4
|
+
comboboxWithApiPagination.loadingAriaLabel = Cargando…
|
5
|
+
# Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
|
6
|
+
comboboxWithApiPagination.loadingMoreAriaLabel = Cargando más...
|
7
|
+
# Message displayed when no results are found in the combobox
|
8
|
+
comboboxWithApiPagination.noResults = No se han encontrado resultados
|
9
|
+
# Aria label indicating that content is loading or in progress
|
10
|
+
groupSharedFeatures.metadataEditor.loading = cargando
|
11
|
+
# Error message shown if an invalid after date is entered. {date} represents the date entered by the user.
|
12
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError = Ingresa una fecha posterior a {date}
|
13
|
+
# Label for the append radio button in the update mode selector
|
14
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.append = Anexar
|
15
|
+
# Error message shown if an invalid before date is entered. {date} represents the date entered by the user.
|
16
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.beforeDateValidationError = Ingresa una fecha anterior a {date}
|
17
|
+
# Label for the Clear All & Replace radio button in the update mode selector
|
18
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.clearAndReplace = Eliminar todo y reemplazar
|
19
|
+
# Aria label for clearing the selected date
|
20
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.clearSelectedDate = Eliminar fecha seleccionada
|
21
|
+
# Error message shown for an invalid field value
|
22
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.floatFieldInvalidValue = Valor de campo no válido
|
23
|
+
# Placeholder text for the multiselect field
|
24
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.multiselectPlaceholder = Seleccionar valor(es)
|
25
|
+
# Error message shown if no attributes are available in the template
|
26
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.noTemplateAtributesError = No hay atributos en esta plantilla.
|
27
|
+
# Aria label for opening the calendar to pick a date
|
28
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.openCalendarLabel = Abrir calendario para elegir una fecha
|
29
|
+
# Label for the remove entered radio button in the update mode selector
|
30
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.removeEntered = Eliminar ingresado
|
31
|
+
# Label for the replace entered radio button in the update mode selector
|
32
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.replaceEntered = Reemplazar ingresado
|
33
|
+
# Aria label for selecting the date
|
34
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.selectDate = Seleccionar la fecha
|
35
|
+
# Placeholder text for selecting a value
|
36
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.selectValuePlaceholder = Seleccionar un valor
|
37
|
+
# Placeholder text for setting a value
|
38
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.setValuePlaceholder = Establecer un valor
|
39
|
+
# Aria label for switching to the next month in the calendar
|
40
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth = Cambiar al mes que viene
|
41
|
+
# Aria label for switching to the previous month in the calendar
|
42
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth = Cambiar al mes anterior
|
43
|
+
# aria-label for an icon button that toggles visiblity of update mode slection radio control.
|
44
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel = Alternar selector modo de actualización
|
45
|
+
# Label for the additional input field that appears when the selected update mode is "Replace Entered"
|
46
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.with = Con
|
47
|
+
# Label for the button that applies the selection and closes the template selection dialog
|
48
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.add = Agregar
|
49
|
+
# Label for the button that dismisses the template selection dialog
|
50
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel = Anular
|
51
|
+
# Aria label for the button that closes the template selection dialog
|
52
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.close = Cerrar
|
53
|
+
# Title for the metadata template selection dialog
|
54
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.header = Seleccionar plantilla de metadatos
|
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 = Eliminar
|
57
|
+
# Accessibility label for icon inside the search input that filters the templates in the metadata template selection dialog
|
58
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputIconAriaLabel = Buscar todas las plantillas
|
59
|
+
# Placeholder text for the search input in the metadata template selector modal
|
60
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder = Buscar todas las plantillas
|
61
|
+
# Placeholder text prompting the user to select a template
|
62
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate = Seleccionar una plantilla
|
63
|
+
# Error message displayed when templates fail to load
|
64
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError = No se pudo cargar las plantillas. Vuelve a intentarlo más tarde
|
65
|
+
# Display name for custom metadata templates
|
66
|
+
metadataEditor.addMetadataTemplate.customMetadataName = Metadatos personalizados
|
67
|
+
# Description for the search input field in the metadata editor
|
68
|
+
metadataEditor.addMetadataTemplate.search.placeholder = Buscar plantillas
|
69
|
+
# Call to encourage user to add metadata templates
|
70
|
+
metadataEditor.addMetadataTemplate.trigger.label = Agregar plantilla
|
71
|
+
# Paragraph asking user are they sure that they want to delete the template
|
72
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph = ¿Seguro que deseas eliminar la plantilla de metadatos "{templateName}" y todos sus valores de este archivo?
|
73
|
+
# Label informing how to confirm deletion of the template
|
74
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel = Escribe "{templateName}" para confirmar
|
75
|
+
# Paragraph informing that data cannot be restored
|
76
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.secondParagraph = Una vez eliminados, los valores de metadatos no se podrán recuperar.
|
77
|
+
# CTA to cancel deletion of the template
|
78
|
+
metadataEditor.editInstance.deleteConfirmationModal.cancelButton = Anular
|
79
|
+
# CTA to confirm deletion of the template
|
80
|
+
metadataEditor.editInstance.deleteConfirmationModal.confirmButton = Confirmar
|
81
|
+
# Template named used when user created custom metadata template
|
82
|
+
metadataEditor.editInstance.deleteConfirmationModal.customMedatata = Metadatos personalizados
|
83
|
+
# Aria label for Dismiss (x) button
|
84
|
+
metadataEditor.editInstance.deleteConfirmationModal.dismissButton = Descartar
|
85
|
+
# Header informing that template will be deleted
|
86
|
+
metadataEditor.editInstance.deleteConfirmationModal.header = Eliminar "{templateName}"
|
87
|
+
# Description of Box AI features
|
88
|
+
metadataEditor.fileLevel.emptyState.boxAiEnabled.body = Aproveche la potencia de Box AI para capturar rápidamente los metadatos de los documentos con precisión.
|
89
|
+
# Call to encourage user to use Box AI to autofill metadata fields
|
90
|
+
metadataEditor.fileLevel.emptyState.boxAiEnabled.heading = Rellenar automáticamente metadatos con Box AI
|
91
|
+
# Description of metadata features
|
92
|
+
metadataEditor.fileLevel.emptyState.default.body = Agregue metadatos a su archivo para facilitar las operaciones comerciales, los flujos de trabajo y mucho más.
|
93
|
+
# Call to encourage user to add metadata templates
|
94
|
+
metadataEditor.fileLevel.emptyState.default.heading = Agregar plantillas de metadatos
|
95
|
+
# Aria label used to clear search input
|
96
|
+
metadataEditor.filterDropdownMenuSearch.iconButtonAriaLabel = Eliminar búsqueda
|
97
|
+
# Message displayed when there is no matching option in filter dropdown menu
|
98
|
+
metadataEditor.filterDropdownMenuSearch.noResultsFound = No se han encontrado resultados
|
99
|
+
# Call to show empty values
|
100
|
+
metadataEditor.instanceLevel.emptyState.emptyValues.Cta = Ver valores vacíos
|
101
|
+
# Header informing user that there are no values in the template
|
102
|
+
metadataEditor.instanceLevel.emptyState.heading = Esta plantilla no tiene valores
|
103
|
+
# Header informing user that there are no attributes in the template
|
104
|
+
metadataEditor.instanceLevel.emptyState.noAttributes.heading = Esta plantilla no tiene atributos
|
105
|
+
# Caption about no empty values to be shown
|
106
|
+
metadataEditor.instanceLevel.emptyState.noEmptyValues.body = Esta plantilla no tiene valores
|
107
|
+
# Description how metadata can be added
|
108
|
+
metadataEditor.managerLevel.emptyState.body = Examine o busque sus elementos para aplicar y editar los metadatos
|
109
|
+
# Call to encourage user apply metadata templates
|
110
|
+
metadataEditor.managerLevel.emptyState.heading = Aplicar plantillas de metadatos
|
111
|
+
# Primary CTA button to add new field to cutom meatdata instance
|
112
|
+
metadataEditor.metadataEditor.customIntanceNewField.addNewFieldCTA = Agregar
|
113
|
+
# Label for the attribute name input field
|
114
|
+
metadataEditor.metadataEditor.customIntanceNewField.attributeNameLabel = Nombre del atributo
|
115
|
+
# Cancel button text
|
116
|
+
metadataEditor.metadataEditor.customIntanceNewField.cancelCTA = Anular
|
117
|
+
# Error enforcing unique key for custom metadata
|
118
|
+
metadataEditor.metadataEditor.customIntanceNewField.customErrorDuplicateKey = Esta clave ya existe.
|
119
|
+
# Error enforcing non internal key for custom metadata
|
120
|
+
metadataEditor.metadataEditor.customIntanceNewField.customErrorInternalKey = Las claves no pueden comenzar por $.
|
121
|
+
# Placeholder for the key field for custom metadata
|
122
|
+
metadataEditor.metadataEditor.customIntanceNewField.customKeyPlaceholder = Por ejemplo, número de pedido
|
123
|
+
# Error enforcing required key for custom metadata
|
124
|
+
metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired = Clave obligatoria
|
125
|
+
# Label for the value input field
|
126
|
+
metadataEditor.metadataEditor.customIntanceNewField.valueLabel = Valor
|
127
|
+
# Placeholder for the value field for custom metadata
|
128
|
+
metadataEditor.metadataEditor.customIntanceNewField.valuePlaceholder = Por ejemplo, 42
|
129
|
+
# Button that allow to add new attribute to metadata custom instance
|
130
|
+
metadataEditor.metadataInstanceEditor.customInstance.addAttribute = + Agregar atributo
|
131
|
+
# Aria label for button that allow to remove attribute from metadata custom instance
|
132
|
+
metadataEditor.metadataInstanceEditor.customInstance.removeAttribute = Eliminar
|
133
|
+
# Placeholder for the value field for custom metadata
|
134
|
+
metadataEditor.metadataInstanceEditor.customInstance.setValuePlaceholder = Establecer el valor
|
135
|
+
# Call to action to cancel and dismiss changes in Metadata Instance.
|
136
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.cancelButton = Anular
|
137
|
+
# Call to action to delete Metadata Instance.
|
138
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.deleteButton = Eliminar
|
139
|
+
# Aria label used to indicate that the button is currently loading.
|
140
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.loadingAriaLabel = Cargando…
|
141
|
+
# Call to action to save Metadata Instance.
|
142
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.saveButton = Guardar
|
143
|
+
# Button with "Autofill" text. Call to action to automatically fill in form fields based on AI information
|
144
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.autofillButton = Autorrellenar
|
145
|
+
# Header with Custom Metadata template name
|
146
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.customInstanceTitle = Metadatos personalizados
|
147
|
+
# Aria label used to indicate that the button is currently loading.
|
148
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.loadingButtonAriaLabel = Cargando…
|
149
|
+
# Body for the unsaved changes modal
|
150
|
+
metadataEditor.unsavedChangesModal.body = No se han guardado los cambios de la(s) plantilla(s) de metadatos. ¿Cómo quieres continuar?
|
151
|
+
# Label for close (x) button
|
152
|
+
metadataEditor.unsavedChangesModal.closeLabel = Cerrar
|
153
|
+
# CTA for dismissing the unsaved changes
|
154
|
+
metadataEditor.unsavedChangesModal.dismissCTA = Anular
|
155
|
+
# Header for the unsaved changes modal
|
156
|
+
metadataEditor.unsavedChangesModal.header = Sin guardar cambios
|
157
|
+
# CTA for saving the unsaved changes and continuing
|
158
|
+
metadataEditor.unsavedChangesModal.saveAndContinueCTA = Guardar y continuar
|
159
|
+
# Call to action to hide all empty values
|
160
|
+
metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA = Ocultar los valores vacíos
|
161
|
+
# Call to action to show hidden empty values
|
162
|
+
metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA = Mostrar los valores vacíos
|
163
|
+
# Header with Custom Metadata template name
|
164
|
+
metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle = Metadatos personalizados
|
package/i18n/fi-FI.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": "Ladataan...",
|
7
|
+
"comboboxWithApiPagination.loadingMoreAriaLabel": "Ladataan Lisää...",
|
8
|
+
"comboboxWithApiPagination.noResults": "Ei tuloksia",
|
9
|
+
"groupSharedFeatures.metadataEditor.loading": "ladataan",
|
10
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Anna päiväys {date} jälkeen",
|
11
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.append": "Liitä",
|
12
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.beforeDateValidationError": "Anna päiväys ennen {date}",
|
13
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.clearAndReplace": "Poista kaikki ja korvaa",
|
14
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.clearSelectedDate": "Tyhjennä valittu päiväys",
|
15
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.floatFieldInvalidValue": "Virheellinen kenttäarvo",
|
16
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.multiselectPlaceholder": "Valitse arvot",
|
17
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.noTemplateAtributesError": "Tässä mallissa ei ole määritteitä.",
|
18
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.openCalendarLabel": "Valitse päiväys avaamalla kalenteri",
|
19
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.removeEntered": "Poista syötetty",
|
20
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.replaceEntered": "Korvaa syötetty",
|
21
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.selectDate": "Valitse päiväys",
|
22
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.selectValuePlaceholder": "Valitse arvo",
|
23
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.setValuePlaceholder": "Aseta arvo",
|
24
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth": "Vaihda seuraavaan kuukauteen",
|
25
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth": "Vaihda edelliseen kuukauteen",
|
26
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "Vaihda päivityksen muodon valitsinta",
|
27
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.with": "Korvaava syöte",
|
28
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "Lisää",
|
29
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "Peruuta",
|
30
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "Sulje",
|
31
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.header": "Valitse metatietomalli",
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputClearAriaLabel": "Tyhjennä",
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputIconAriaLabel": "Hae kaikki mallit",
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder": "Hae kaikki mallit",
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Valitse malli",
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Malleja ei voitu ladata. Yritä myöhemmin uudelleen",
|
37
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Mukautetut metatiedot",
|
38
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Hae malleja",
|
39
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Lisää malli",
|
40
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph": "Oletko varma, että haluat poistaa \"{templateName}\" Metatietomallin ja kaikki sen arvot tästä tiedostosta?",
|
41
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel": "Kirjoita \"{templateName}\" vahvistaaksesi.",
|
42
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.secondParagraph": "Metatietoarvoja ei voi palauttaa, kun ne on poistettu.",
|
43
|
+
"metadataEditor.editInstance.deleteConfirmationModal.cancelButton": "Peruuta",
|
44
|
+
"metadataEditor.editInstance.deleteConfirmationModal.confirmButton": "Vahvista",
|
45
|
+
"metadataEditor.editInstance.deleteConfirmationModal.customMedatata": "Mukautetut metatiedot",
|
46
|
+
"metadataEditor.editInstance.deleteConfirmationModal.dismissButton": "Hylkää",
|
47
|
+
"metadataEditor.editInstance.deleteConfirmationModal.header": "Poista \"{templateName}\"",
|
48
|
+
"metadataEditor.fileLevel.emptyState.boxAiEnabled.body": "Box AI:n tehon avulla voit nopeasti tallentaa asiakirjan metatiedot yhä suuremmalla tarkkuudella.",
|
49
|
+
"metadataEditor.fileLevel.emptyState.boxAiEnabled.heading": "Täytä metatiedot automaattisesti Box AI:n avulla",
|
50
|
+
"metadataEditor.fileLevel.emptyState.default.body": "Lisää metatiedot tiedostoon tukemaan muun muassa liiketoimintoja ja työnkulkuja.",
|
51
|
+
"metadataEditor.fileLevel.emptyState.default.heading": "Lisää metatietomallit",
|
52
|
+
"metadataEditor.filterDropdownMenuSearch.iconButtonAriaLabel": "Tyhjennä haku",
|
53
|
+
"metadataEditor.filterDropdownMenuSearch.noResultsFound": "Ei tuloksia",
|
54
|
+
"metadataEditor.instanceLevel.emptyState.emptyValues.Cta": "Näytä tyhjät arvot",
|
55
|
+
"metadataEditor.instanceLevel.emptyState.heading": "Tässä mallissa ei ole arvoja",
|
56
|
+
"metadataEditor.instanceLevel.emptyState.noAttributes.heading": "Tässä mallissa ei ole määritteitä",
|
57
|
+
"metadataEditor.instanceLevel.emptyState.noEmptyValues.body": "Tässä mallissa ei ole arvoja",
|
58
|
+
"metadataEditor.managerLevel.emptyState.body": "Selaa tai hae kohteita käyttääksesi ja muokataksesi metatietoja",
|
59
|
+
"metadataEditor.managerLevel.emptyState.heading": "Käytä metatietomalleja",
|
60
|
+
"metadataEditor.metadataEditor.customIntanceNewField.addNewFieldCTA": "Lisää",
|
61
|
+
"metadataEditor.metadataEditor.customIntanceNewField.attributeNameLabel": "Määritteen nimi",
|
62
|
+
"metadataEditor.metadataEditor.customIntanceNewField.cancelCTA": "Peruuta",
|
63
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customErrorDuplicateKey": "Avain on jo olemassa.",
|
64
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customErrorInternalKey": "Avaimet eivät voi alkaa merkillä $.",
|
65
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customKeyPlaceholder": "esim. tilausnumero",
|
66
|
+
"metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired": "Avain on pakollinen",
|
67
|
+
"metadataEditor.metadataEditor.customIntanceNewField.valueLabel": "Arvo",
|
68
|
+
"metadataEditor.metadataEditor.customIntanceNewField.valuePlaceholder": "esim. 42",
|
69
|
+
"metadataEditor.metadataInstanceEditor.customInstance.addAttribute": "+ Lisää attribuutti",
|
70
|
+
"metadataEditor.metadataInstanceEditor.customInstance.removeAttribute": "Poista",
|
71
|
+
"metadataEditor.metadataInstanceEditor.customInstance.setValuePlaceholder": "Aseta arvo",
|
72
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.cancelButton": "Peruuta",
|
73
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.deleteButton": "Poista",
|
74
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.loadingAriaLabel": "Ladataan...",
|
75
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.saveButton": "Tallenna",
|
76
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.autofillButton": "Automaattinen täyttö",
|
77
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.customInstanceTitle": "Mukautetut metatiedot",
|
78
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.loadingButtonAriaLabel": "Ladataan...",
|
79
|
+
"metadataEditor.unsavedChangesModal.body": "Metatietomalleissa on tallentamattomia muutoksia. Miten haluat jatkaa?",
|
80
|
+
"metadataEditor.unsavedChangesModal.closeLabel": "Sulje",
|
81
|
+
"metadataEditor.unsavedChangesModal.dismissCTA": "Peruuta",
|
82
|
+
"metadataEditor.unsavedChangesModal.header": "Tallentamattomia muutoksia",
|
83
|
+
"metadataEditor.unsavedChangesModal.saveAndContinueCTA": "Tallenna ja jatka",
|
84
|
+
"metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA": "Piilota tyhjät arvot",
|
85
|
+
"metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA": "Näytä tyhjät arvot",
|
86
|
+
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Mukautetut metatiedot",
|
87
|
+
"comboboxWithApiPagination.apiError": "Tuloksia ei voitu ladata. Yritä uudelleen napsauttamalla."
|
88
|
+
}
|