@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 = Não foi possível carregar os resultados. Clique para tentar novamente.
|
3
|
+
# Visually hidden aria-label text for the loading spinner
|
4
|
+
comboboxWithApiPagination.loadingAriaLabel = Carregando...
|
5
|
+
# Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
|
6
|
+
comboboxWithApiPagination.loadingMoreAriaLabel = Carregando mais...
|
7
|
+
# Message displayed when no results are found in the combobox
|
8
|
+
comboboxWithApiPagination.noResults = Nenhum resultado encontrado
|
9
|
+
# Aria label indicating that content is loading or in progress
|
10
|
+
groupSharedFeatures.metadataEditor.loading = carregando
|
11
|
+
# Error message shown if an invalid after date is entered. {date} represents the date entered by the user.
|
12
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError = Insira uma data depois de {date}
|
13
|
+
# Label for the append radio button in the update mode selector
|
14
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.append = Acrescentar
|
15
|
+
# Error message shown if an invalid before date is entered. {date} represents the date entered by the user.
|
16
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.beforeDateValidationError = Insira uma data antes de {date}
|
17
|
+
# Label for the Clear All & Replace radio button in the update mode selector
|
18
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.clearAndReplace = Limpar tudo e substituir
|
19
|
+
# Aria label for clearing the selected date
|
20
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.clearSelectedDate = Limpar data selecionada
|
21
|
+
# Error message shown for an invalid field value
|
22
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.floatFieldInvalidValue = Valor de campo inválido
|
23
|
+
# Placeholder text for the multiselect field
|
24
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.multiselectPlaceholder = Selecionar valor(es)
|
25
|
+
# Error message shown if no attributes are available in the template
|
26
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.noTemplateAtributesError = Não há atributos neste modelo.
|
27
|
+
# Aria label for opening the calendar to pick a date
|
28
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.openCalendarLabel = Abrir calendário para escolher uma data
|
29
|
+
# Label for the remove entered radio button in the update mode selector
|
30
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.removeEntered = Remover inserido
|
31
|
+
# Label for the replace entered radio button in the update mode selector
|
32
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.replaceEntered = Substituir inserido
|
33
|
+
# Aria label for selecting the date
|
34
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.selectDate = Selecionar a data
|
35
|
+
# Placeholder text for selecting a value
|
36
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.selectValuePlaceholder = Selecionar um valor
|
37
|
+
# Placeholder text for setting a value
|
38
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.setValuePlaceholder = Definir valor
|
39
|
+
# Aria label for switching to the next month in the calendar
|
40
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth = Mudar para o próximo mês
|
41
|
+
# Aria label for switching to the previous month in the calendar
|
42
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth = Mudar para o mês anterior
|
43
|
+
# aria-label for an icon button that toggles visiblity of update mode slection radio control.
|
44
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel = Alternar seletor de modo de atualização
|
45
|
+
# Label for the additional input field that appears when the selected update mode is "Replace Entered"
|
46
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.with = Com
|
47
|
+
# Label for the button that applies the selection and closes the template selection dialog
|
48
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.add = Adicionar
|
49
|
+
# Label for the button that dismisses the template selection dialog
|
50
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel = Cancelar
|
51
|
+
# Aria label for the button that closes the template selection dialog
|
52
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.close = Fechar
|
53
|
+
# Title for the metadata template selection dialog
|
54
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.header = Selecionar modelo de metadados
|
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 = Limpar
|
57
|
+
# Accessibility label for icon inside the search input that filters the templates in the metadata template selection dialog
|
58
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputIconAriaLabel = Pesquisar todos os modelos
|
59
|
+
# Placeholder text for the search input in the metadata template selector modal
|
60
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder = Pesquisar todos os modelos
|
61
|
+
# Placeholder text prompting the user to select a template
|
62
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate = Selecionar um modelo
|
63
|
+
# Error message displayed when templates fail to load
|
64
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError = Não foi possível carregar modelos. Tente novamente mais tarde
|
65
|
+
# Display name for custom metadata templates
|
66
|
+
metadataEditor.addMetadataTemplate.customMetadataName = Metadados personalizados
|
67
|
+
# Description for the search input field in the metadata editor
|
68
|
+
metadataEditor.addMetadataTemplate.search.placeholder = Modelos de pesquisa
|
69
|
+
# Call to encourage user to add metadata templates
|
70
|
+
metadataEditor.addMetadataTemplate.trigger.label = Adicionar modelo
|
71
|
+
# Paragraph asking user are they sure that they want to delete the template
|
72
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph = Tem certeza de que deseja excluir o modelo de metadados "{templateName}" e todos os seus valores deste arquivo?
|
73
|
+
# Label informing how to confirm deletion of the template
|
74
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel = Digite "{templateName}" para confirmar
|
75
|
+
# Paragraph informing that data cannot be restored
|
76
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.secondParagraph = Após excluídos, os valores de metadados não podem ser restaurados.
|
77
|
+
# CTA to cancel deletion of the template
|
78
|
+
metadataEditor.editInstance.deleteConfirmationModal.cancelButton = Cancelar
|
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 = Metadados 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 = Excluir "{templateName}"
|
87
|
+
# Description of Box AI features
|
88
|
+
metadataEditor.fileLevel.emptyState.boxAiEnabled.body = Use o poder do Box AI para capturar rapidamente os metadados do documento, com precisão cada vez maior.
|
89
|
+
# Call to encourage user to use Box AI to autofill metadata fields
|
90
|
+
metadataEditor.fileLevel.emptyState.boxAiEnabled.heading = Preencha automaticamente metadados com o Box AI
|
91
|
+
# Description of metadata features
|
92
|
+
metadataEditor.fileLevel.emptyState.default.body = Adicione metadados ao seu arquivo para auxiliar às operações de negócios, fluxos de trabalho e muito mais!
|
93
|
+
# Call to encourage user to add metadata templates
|
94
|
+
metadataEditor.fileLevel.emptyState.default.heading = Adicione modelos de metadados
|
95
|
+
# Aria label used to clear search input
|
96
|
+
metadataEditor.filterDropdownMenuSearch.iconButtonAriaLabel = Limpar pesquisa
|
97
|
+
# Message displayed when there is no matching option in filter dropdown menu
|
98
|
+
metadataEditor.filterDropdownMenuSearch.noResultsFound = Nenhum resultado encontrado
|
99
|
+
# Call to show empty values
|
100
|
+
metadataEditor.instanceLevel.emptyState.emptyValues.Cta = Ver valores vazios
|
101
|
+
# Header informing user that there are no values in the template
|
102
|
+
metadataEditor.instanceLevel.emptyState.heading = Este modelo não tem valores
|
103
|
+
# Header informing user that there are no attributes in the template
|
104
|
+
metadataEditor.instanceLevel.emptyState.noAttributes.heading = Este modelo não tem atributos
|
105
|
+
# Caption about no empty values to be shown
|
106
|
+
metadataEditor.instanceLevel.emptyState.noEmptyValues.body = Este modelo não tem valores
|
107
|
+
# Description how metadata can be added
|
108
|
+
metadataEditor.managerLevel.emptyState.body = Navegue ou pesquise seus itens para aplicar e editar metadados
|
109
|
+
# Call to encourage user apply metadata templates
|
110
|
+
metadataEditor.managerLevel.emptyState.heading = Aplique modelos de metadados
|
111
|
+
# Primary CTA button to add new field to cutom meatdata instance
|
112
|
+
metadataEditor.metadataEditor.customIntanceNewField.addNewFieldCTA = Adicionar
|
113
|
+
# Label for the attribute name input field
|
114
|
+
metadataEditor.metadataEditor.customIntanceNewField.attributeNameLabel = Nome do atributo
|
115
|
+
# Cancel button text
|
116
|
+
metadataEditor.metadataEditor.customIntanceNewField.cancelCTA = Cancelar
|
117
|
+
# Error enforcing unique key for custom metadata
|
118
|
+
metadataEditor.metadataEditor.customIntanceNewField.customErrorDuplicateKey = A chave já existe.
|
119
|
+
# Error enforcing non internal key for custom metadata
|
120
|
+
metadataEditor.metadataEditor.customIntanceNewField.customErrorInternalKey = As chaves não podem começar com um $.
|
121
|
+
# Placeholder for the key field for custom metadata
|
122
|
+
metadataEditor.metadataEditor.customIntanceNewField.customKeyPlaceholder = por exemplo, número do pedido
|
123
|
+
# Error enforcing required key for custom metadata
|
124
|
+
metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired = A chave é obrigatória
|
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 exemplo, 42
|
129
|
+
# Button that allow to add new attribute to metadata custom instance
|
130
|
+
metadataEditor.metadataInstanceEditor.customInstance.addAttribute = + Adicionar atributo
|
131
|
+
# Aria label for button that allow to remove attribute from metadata custom instance
|
132
|
+
metadataEditor.metadataInstanceEditor.customInstance.removeAttribute = Remover
|
133
|
+
# Placeholder for the value field for custom metadata
|
134
|
+
metadataEditor.metadataInstanceEditor.customInstance.setValuePlaceholder = Definir valor
|
135
|
+
# Call to action to cancel and dismiss changes in Metadata Instance.
|
136
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.cancelButton = Cancelar
|
137
|
+
# Call to action to delete Metadata Instance.
|
138
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.deleteButton = Excluir
|
139
|
+
# Aria label used to indicate that the button is currently loading.
|
140
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.loadingAriaLabel = Carregando...
|
141
|
+
# Call to action to save Metadata Instance.
|
142
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.saveButton = Salvar
|
143
|
+
# Button with "Autofill" text. Call to action to automatically fill in form fields based on AI information
|
144
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.autofillButton = Preenchimento automático
|
145
|
+
# Header with Custom Metadata template name
|
146
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.customInstanceTitle = Metadados personalizados
|
147
|
+
# Aria label used to indicate that the button is currently loading.
|
148
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.loadingButtonAriaLabel = Carregando...
|
149
|
+
# Body for the unsaved changes modal
|
150
|
+
metadataEditor.unsavedChangesModal.body = Os modelos de metadados têm alterações não salvas. Como você gostaria de prosseguir?
|
151
|
+
# Label for close (x) button
|
152
|
+
metadataEditor.unsavedChangesModal.closeLabel = Fechar
|
153
|
+
# CTA for dismissing the unsaved changes
|
154
|
+
metadataEditor.unsavedChangesModal.dismissCTA = Cancelar
|
155
|
+
# Header for the unsaved changes modal
|
156
|
+
metadataEditor.unsavedChangesModal.header = Alterações não salvas
|
157
|
+
# CTA for saving the unsaved changes and continuing
|
158
|
+
metadataEditor.unsavedChangesModal.saveAndContinueCTA = Salvar e continuar
|
159
|
+
# Call to action to hide all empty values
|
160
|
+
metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA = Ocultar valores vazios
|
161
|
+
# Call to action to show hidden empty values
|
162
|
+
metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA = Mostrar valores vazios
|
163
|
+
# Header with Custom Metadata template name
|
164
|
+
metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle = Metadados personalizados
|
package/i18n/ru-RU.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": "Загрузка...",
|
7
|
+
"comboboxWithApiPagination.loadingMoreAriaLabel": "Загрузка больше...",
|
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": "В этом шаблоне нет атрибутов.",
|
18
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.openCalendarLabel": "Открыть календарь, чтобы выбрать дату",
|
19
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.removeEntered": "Удалить введенное",
|
20
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.replaceEntered": "Заменить введенное",
|
21
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.selectDate": "Выбрать дату",
|
22
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.selectValuePlaceholder": "Выбрать значение",
|
23
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.setValuePlaceholder": "Установить значение",
|
24
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth": "Перейти на следующий месяц",
|
25
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth": "Перейти на предыдущий месяц",
|
26
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "Переключение выбора режима обновления",
|
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": "Выбрать шаблон метаданных",
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputClearAriaLabel": "Очистить",
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputIconAriaLabel": "Поиск всех шаблонов",
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder": "Поиск всех шаблонов",
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Выбрать шаблон",
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Не удалось загрузить шаблоны. Повторите попытку позже",
|
37
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Настраиваемые метаданные",
|
38
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Шаблоны для поиска",
|
39
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Добавить шаблон",
|
40
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph": "Удалить шаблон метаданных „{templateName}“ и все его значения из этого файла?",
|
41
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel": "Введите „{templateName}“ для подтверждения",
|
42
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.secondParagraph": "После удаления значения метаданных не могут быть восстановлены.",
|
43
|
+
"metadataEditor.editInstance.deleteConfirmationModal.cancelButton": "Отмена",
|
44
|
+
"metadataEditor.editInstance.deleteConfirmationModal.confirmButton": "Подтвердить",
|
45
|
+
"metadataEditor.editInstance.deleteConfirmationModal.customMedatata": "Настраиваемые метаданные",
|
46
|
+
"metadataEditor.editInstance.deleteConfirmationModal.dismissButton": "Закрыть",
|
47
|
+
"metadataEditor.editInstance.deleteConfirmationModal.header": "Удалить „{templateName}“",
|
48
|
+
"metadataEditor.fileLevel.emptyState.boxAiEnabled.body": "Используйте возможности ИИ Box для быстрого извлечения метаданных документа с постоянно растущей точностью.",
|
49
|
+
"metadataEditor.fileLevel.emptyState.boxAiEnabled.heading": "Заполняйте метаданные с помощью ИИ Box",
|
50
|
+
"metadataEditor.fileLevel.emptyState.default.body": "Добавьте метаданные в файл для поддержки бизнес-операций, рабочих процессов и многого другого.",
|
51
|
+
"metadataEditor.fileLevel.emptyState.default.heading": "Добавить шаблоны метаданных",
|
52
|
+
"metadataEditor.filterDropdownMenuSearch.iconButtonAriaLabel": "Очистить поле поиска",
|
53
|
+
"metadataEditor.filterDropdownMenuSearch.noResultsFound": "Результаты не найдены",
|
54
|
+
"metadataEditor.instanceLevel.emptyState.emptyValues.Cta": "Посмотреть пустые значения",
|
55
|
+
"metadataEditor.instanceLevel.emptyState.heading": "У этого шаблона нет значений",
|
56
|
+
"metadataEditor.instanceLevel.emptyState.noAttributes.heading": "Этот шаблон не имеет атрибутов",
|
57
|
+
"metadataEditor.instanceLevel.emptyState.noEmptyValues.body": "У этого шаблона нет значений",
|
58
|
+
"metadataEditor.managerLevel.emptyState.body": "Выполните просмотр или поиск элементов для применения и редактирования метаданных",
|
59
|
+
"metadataEditor.managerLevel.emptyState.heading": "Применить шаблоны метаданных",
|
60
|
+
"metadataEditor.metadataEditor.customIntanceNewField.addNewFieldCTA": "Добавить",
|
61
|
+
"metadataEditor.metadataEditor.customIntanceNewField.attributeNameLabel": "Название атрибута",
|
62
|
+
"metadataEditor.metadataEditor.customIntanceNewField.cancelCTA": "Отмена",
|
63
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customErrorDuplicateKey": "Ключ уже существует.",
|
64
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customErrorInternalKey": "Ключи не могут начинаться с $.",
|
65
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customKeyPlaceholder": "например, номер заказа",
|
66
|
+
"metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired": "Требуется ключ",
|
67
|
+
"metadataEditor.metadataEditor.customIntanceNewField.valueLabel": "Значение",
|
68
|
+
"metadataEditor.metadataEditor.customIntanceNewField.valuePlaceholder": "например, 42",
|
69
|
+
"metadataEditor.metadataInstanceEditor.customInstance.addAttribute": "Добавить атрибут",
|
70
|
+
"metadataEditor.metadataInstanceEditor.customInstance.removeAttribute": "Удалить",
|
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": "Настраиваемые метаданные",
|
78
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.loadingButtonAriaLabel": "Загрузка...",
|
79
|
+
"metadataEditor.unsavedChangesModal.body": "Шаблон(ы) метаданных имеет(-ют) несохраненные изменения. Как бы вы хотели продолжить?",
|
80
|
+
"metadataEditor.unsavedChangesModal.closeLabel": "Закрыть",
|
81
|
+
"metadataEditor.unsavedChangesModal.dismissCTA": "Отмена",
|
82
|
+
"metadataEditor.unsavedChangesModal.header": "Несохраненные изменения",
|
83
|
+
"metadataEditor.unsavedChangesModal.saveAndContinueCTA": "Сохранить и продолжить",
|
84
|
+
"metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA": "Скрыть пустые значения",
|
85
|
+
"metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA": "Показать пустые значения",
|
86
|
+
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Настраиваемые метаданные",
|
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 = Загрузка больше...
|
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 = В этом шаблоне нет атрибутов.
|
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 = Удалить введенное
|
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 = Установить значение
|
39
|
+
# Aria label for switching to the next month in the calendar
|
40
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth = Перейти на следующий месяц
|
41
|
+
# Aria label for switching to the previous month in the calendar
|
42
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth = Перейти на предыдущий месяц
|
43
|
+
# aria-label for an icon button that toggles visiblity of update mode slection radio control.
|
44
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel = Переключение выбора режима обновления
|
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 = Выбрать шаблон метаданных
|
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 = Поиск всех шаблонов
|
59
|
+
# Placeholder text for the search input in the metadata template selector modal
|
60
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder = Поиск всех шаблонов
|
61
|
+
# Placeholder text prompting the user to select a template
|
62
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate = Выбрать шаблон
|
63
|
+
# Error message displayed when templates fail to load
|
64
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError = Не удалось загрузить шаблоны. Повторите попытку позже
|
65
|
+
# Display name for custom metadata templates
|
66
|
+
metadataEditor.addMetadataTemplate.customMetadataName = Настраиваемые метаданные
|
67
|
+
# Description for the search input field in the metadata editor
|
68
|
+
metadataEditor.addMetadataTemplate.search.placeholder = Шаблоны для поиска
|
69
|
+
# Call to encourage user to add metadata templates
|
70
|
+
metadataEditor.addMetadataTemplate.trigger.label = Добавить шаблон
|
71
|
+
# Paragraph asking user are they sure that they want to delete the template
|
72
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph = Удалить шаблон метаданных „{templateName}“ и все его значения из этого файла?
|
73
|
+
# Label informing how to confirm deletion of the template
|
74
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel = Введите „{templateName}“ для подтверждения
|
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 = Подтвердить
|
81
|
+
# Template named used when user created custom metadata template
|
82
|
+
metadataEditor.editInstance.deleteConfirmationModal.customMedatata = Настраиваемые метаданные
|
83
|
+
# Aria label for Dismiss (x) button
|
84
|
+
metadataEditor.editInstance.deleteConfirmationModal.dismissButton = Закрыть
|
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 = Используйте возможности ИИ Box для быстрого извлечения метаданных документа с постоянно растущей точностью.
|
89
|
+
# Call to encourage user to use Box AI to autofill metadata fields
|
90
|
+
metadataEditor.fileLevel.emptyState.boxAiEnabled.heading = Заполняйте метаданные с помощью ИИ Box
|
91
|
+
# Description of metadata features
|
92
|
+
metadataEditor.fileLevel.emptyState.default.body = Добавьте метаданные в файл для поддержки бизнес-операций, рабочих процессов и многого другого.
|
93
|
+
# Call to encourage user to add metadata templates
|
94
|
+
metadataEditor.fileLevel.emptyState.default.heading = Добавить шаблоны метаданных
|
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 = Посмотреть пустые значения
|
101
|
+
# Header informing user that there are no values in the template
|
102
|
+
metadataEditor.instanceLevel.emptyState.heading = У этого шаблона нет значений
|
103
|
+
# Header informing user that there are no attributes in the template
|
104
|
+
metadataEditor.instanceLevel.emptyState.noAttributes.heading = Этот шаблон не имеет атрибутов
|
105
|
+
# Caption about no empty values to be shown
|
106
|
+
metadataEditor.instanceLevel.emptyState.noEmptyValues.body = У этого шаблона нет значений
|
107
|
+
# Description how metadata can be added
|
108
|
+
metadataEditor.managerLevel.emptyState.body = Выполните просмотр или поиск элементов для применения и редактирования метаданных
|
109
|
+
# Call to encourage user apply metadata templates
|
110
|
+
metadataEditor.managerLevel.emptyState.heading = Применить шаблоны метаданных
|
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 = Название атрибута
|
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 = например, номер заказа
|
123
|
+
# Error enforcing required key for custom metadata
|
124
|
+
metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired = Требуется ключ
|
125
|
+
# Label for the value input field
|
126
|
+
metadataEditor.metadataEditor.customIntanceNewField.valueLabel = Значение
|
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 = Удалить
|
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 = Настраиваемые метаданные
|
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 = Шаблон(ы) метаданных имеет(-ют) несохраненные изменения. Как бы вы хотели продолжить?
|
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 = Скрыть пустые значения
|
161
|
+
# Call to action to show hidden empty values
|
162
|
+
metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA = Показать пустые значения
|
163
|
+
# Header with Custom Metadata template name
|
164
|
+
metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle = Настраиваемые метаданные
|
package/i18n/sv-SE.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": "Läser in...",
|
7
|
+
"comboboxWithApiPagination.loadingMoreAriaLabel": "Läser in mer...",
|
8
|
+
"comboboxWithApiPagination.noResults": "Inga träffar hittades",
|
9
|
+
"groupSharedFeatures.metadataEditor.loading": "läser in",
|
10
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Ange ett datum efter {date}",
|
11
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.append": "Lägg till",
|
12
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.beforeDateValidationError": "Ange ett datum före {date}",
|
13
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.clearAndReplace": "Rensa allt och ersätt",
|
14
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.clearSelectedDate": "Rensa valt datum",
|
15
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.floatFieldInvalidValue": "Ogiltigt fältvärde",
|
16
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.multiselectPlaceholder": "Välj värde(n)",
|
17
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.noTemplateAtributesError": "Det finns inga attribut i den här mallen.",
|
18
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.openCalendarLabel": "Öppna kalendern och välj ett datum",
|
19
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.removeEntered": "Ta bort inmatat",
|
20
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.replaceEntered": "Ersätt inmatat",
|
21
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.selectDate": "Välj datum",
|
22
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.selectValuePlaceholder": "Välj ett värde",
|
23
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.setValuePlaceholder": "Ange värde",
|
24
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth": "Byt till nästa månad",
|
25
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth": "Byt till föregående månad",
|
26
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "Växla väljare för uppdateringsläge",
|
27
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.with": "Med",
|
28
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "Lägg till",
|
29
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "Avbryt",
|
30
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "Stäng",
|
31
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.header": "Välj metadatamall",
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputClearAriaLabel": "Rensa",
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputIconAriaLabel": "Sök efter alla mallar",
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder": "Sök efter alla mallar",
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Välj en mall",
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Det gick inte att läsa in mallar. Försök igen senare",
|
37
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Anpassade metadata",
|
38
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Sökmallar",
|
39
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Lägg till mall",
|
40
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph": "Är du säker på att du vill radera metadatamallen \"{templateName}\" och alla dess värden från den här filen?",
|
41
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel": "Skriv \"{templateName}\" för att bekräfta",
|
42
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.secondParagraph": "När de har raderats kan metadatavärden inte återställas.",
|
43
|
+
"metadataEditor.editInstance.deleteConfirmationModal.cancelButton": "Avbryt",
|
44
|
+
"metadataEditor.editInstance.deleteConfirmationModal.confirmButton": "Bekräfta",
|
45
|
+
"metadataEditor.editInstance.deleteConfirmationModal.customMedatata": "Anpassade metadata",
|
46
|
+
"metadataEditor.editInstance.deleteConfirmationModal.dismissButton": "Avfärda",
|
47
|
+
"metadataEditor.editInstance.deleteConfirmationModal.header": "Radera \"{templateName}\"",
|
48
|
+
"metadataEditor.fileLevel.emptyState.boxAiEnabled.body": "Använd styrkan i Box AI för att snabbt fånga metadata om dokument, med ständigt ökande noggrannhet.",
|
49
|
+
"metadataEditor.fileLevel.emptyState.boxAiEnabled.heading": "Autofyll metadata med Box AI",
|
50
|
+
"metadataEditor.fileLevel.emptyState.default.body": "Lägg till metadata i din fil för att stödja affärsverksamhet, arbetsflöden och mer!",
|
51
|
+
"metadataEditor.fileLevel.emptyState.default.heading": "Lägg till mallar för metadata",
|
52
|
+
"metadataEditor.filterDropdownMenuSearch.iconButtonAriaLabel": "Rensa sökning",
|
53
|
+
"metadataEditor.filterDropdownMenuSearch.noResultsFound": "Inga träffar hittades",
|
54
|
+
"metadataEditor.instanceLevel.emptyState.emptyValues.Cta": "Se tomma värden",
|
55
|
+
"metadataEditor.instanceLevel.emptyState.heading": "Den här mallen har inga värden",
|
56
|
+
"metadataEditor.instanceLevel.emptyState.noAttributes.heading": "Den här mallen har inga attribut",
|
57
|
+
"metadataEditor.instanceLevel.emptyState.noEmptyValues.body": "Den här mallen har inga värden",
|
58
|
+
"metadataEditor.managerLevel.emptyState.body": "Bläddra eller sök efter dina objekt för att tillämpa och redigera metadata",
|
59
|
+
"metadataEditor.managerLevel.emptyState.heading": "Tillämpa mallar för metadata",
|
60
|
+
"metadataEditor.metadataEditor.customIntanceNewField.addNewFieldCTA": "Lägg till",
|
61
|
+
"metadataEditor.metadataEditor.customIntanceNewField.attributeNameLabel": "Attributnamn",
|
62
|
+
"metadataEditor.metadataEditor.customIntanceNewField.cancelCTA": "Avbryt",
|
63
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customErrorDuplicateKey": "Nyckel finns redan.",
|
64
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customErrorInternalKey": "Nycklar kan inte börja med en $.",
|
65
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customKeyPlaceholder": "t.ex. ordernummer",
|
66
|
+
"metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired": "Nyckel är obligatoriskt",
|
67
|
+
"metadataEditor.metadataEditor.customIntanceNewField.valueLabel": "Värde",
|
68
|
+
"metadataEditor.metadataEditor.customIntanceNewField.valuePlaceholder": "t.ex. 42",
|
69
|
+
"metadataEditor.metadataInstanceEditor.customInstance.addAttribute": "+ Lägg till attribut",
|
70
|
+
"metadataEditor.metadataInstanceEditor.customInstance.removeAttribute": "Radera",
|
71
|
+
"metadataEditor.metadataInstanceEditor.customInstance.setValuePlaceholder": "Ställ in värde",
|
72
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.cancelButton": "Avbryt",
|
73
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.deleteButton": "Radera",
|
74
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.loadingAriaLabel": "Läser in...",
|
75
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.saveButton": "Spara",
|
76
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.autofillButton": "Autofyll",
|
77
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.customInstanceTitle": "Anpassade metadata",
|
78
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.loadingButtonAriaLabel": "Läser in...",
|
79
|
+
"metadataEditor.unsavedChangesModal.body": "Metadatamall(ar) har osparade ändringar. Hur vill du fortsätta?",
|
80
|
+
"metadataEditor.unsavedChangesModal.closeLabel": "Stäng",
|
81
|
+
"metadataEditor.unsavedChangesModal.dismissCTA": "Avbryt",
|
82
|
+
"metadataEditor.unsavedChangesModal.header": "Osparade ändringar",
|
83
|
+
"metadataEditor.unsavedChangesModal.saveAndContinueCTA": "Spara och fortsätt",
|
84
|
+
"metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA": "Dölj tomma värden",
|
85
|
+
"metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA": "Visa tomma värden",
|
86
|
+
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Anpassade metadata",
|
87
|
+
"comboboxWithApiPagination.apiError": "Det gick inte att läsa in resultat. Klicka för att försöka igen."
|
88
|
+
}
|