@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 = Tuloksia ei voitu ladata. Yritä uudelleen napsauttamalla.
|
3
|
+
# Visually hidden aria-label text for the loading spinner
|
4
|
+
comboboxWithApiPagination.loadingAriaLabel = Ladataan...
|
5
|
+
# Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
|
6
|
+
comboboxWithApiPagination.loadingMoreAriaLabel = Ladataan Lisää...
|
7
|
+
# Message displayed when no results are found in the combobox
|
8
|
+
comboboxWithApiPagination.noResults = Ei tuloksia
|
9
|
+
# Aria label indicating that content is loading or in progress
|
10
|
+
groupSharedFeatures.metadataEditor.loading = ladataan
|
11
|
+
# Error message shown if an invalid after date is entered. {date} represents the date entered by the user.
|
12
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError = Anna päiväys {date} jälkeen
|
13
|
+
# Label for the append radio button in the update mode selector
|
14
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.append = Liitä
|
15
|
+
# Error message shown if an invalid before date is entered. {date} represents the date entered by the user.
|
16
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.beforeDateValidationError = Anna päiväys ennen {date}
|
17
|
+
# Label for the Clear All & Replace radio button in the update mode selector
|
18
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.clearAndReplace = Poista kaikki ja korvaa
|
19
|
+
# Aria label for clearing the selected date
|
20
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.clearSelectedDate = Tyhjennä valittu päiväys
|
21
|
+
# Error message shown for an invalid field value
|
22
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.floatFieldInvalidValue = Virheellinen kenttäarvo
|
23
|
+
# Placeholder text for the multiselect field
|
24
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.multiselectPlaceholder = Valitse arvot
|
25
|
+
# Error message shown if no attributes are available in the template
|
26
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.noTemplateAtributesError = Tässä mallissa ei ole määritteitä.
|
27
|
+
# Aria label for opening the calendar to pick a date
|
28
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.openCalendarLabel = Valitse päiväys avaamalla kalenteri
|
29
|
+
# Label for the remove entered radio button in the update mode selector
|
30
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.removeEntered = Poista syötetty
|
31
|
+
# Label for the replace entered radio button in the update mode selector
|
32
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.replaceEntered = Korvaa syötetty
|
33
|
+
# Aria label for selecting the date
|
34
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.selectDate = Valitse päiväys
|
35
|
+
# Placeholder text for selecting a value
|
36
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.selectValuePlaceholder = Valitse arvo
|
37
|
+
# Placeholder text for setting a value
|
38
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.setValuePlaceholder = Aseta arvo
|
39
|
+
# Aria label for switching to the next month in the calendar
|
40
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth = Vaihda seuraavaan kuukauteen
|
41
|
+
# Aria label for switching to the previous month in the calendar
|
42
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth = Vaihda edelliseen kuukauteen
|
43
|
+
# aria-label for an icon button that toggles visiblity of update mode slection radio control.
|
44
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel = Vaihda päivityksen muodon valitsinta
|
45
|
+
# Label for the additional input field that appears when the selected update mode is "Replace Entered"
|
46
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.with = Korvaava syöte
|
47
|
+
# Label for the button that applies the selection and closes the template selection dialog
|
48
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.add = Lisää
|
49
|
+
# Label for the button that dismisses the template selection dialog
|
50
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel = Peruuta
|
51
|
+
# Aria label for the button that closes the template selection dialog
|
52
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.close = Sulje
|
53
|
+
# Title for the metadata template selection dialog
|
54
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.header = Valitse metatietomalli
|
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 = Tyhjennä
|
57
|
+
# Accessibility label for icon inside the search input that filters the templates in the metadata template selection dialog
|
58
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputIconAriaLabel = Hae kaikki mallit
|
59
|
+
# Placeholder text for the search input in the metadata template selector modal
|
60
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder = Hae kaikki mallit
|
61
|
+
# Placeholder text prompting the user to select a template
|
62
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate = Valitse malli
|
63
|
+
# Error message displayed when templates fail to load
|
64
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError = Malleja ei voitu ladata. Yritä myöhemmin uudelleen
|
65
|
+
# Display name for custom metadata templates
|
66
|
+
metadataEditor.addMetadataTemplate.customMetadataName = Mukautetut metatiedot
|
67
|
+
# Description for the search input field in the metadata editor
|
68
|
+
metadataEditor.addMetadataTemplate.search.placeholder = Hae malleja
|
69
|
+
# Call to encourage user to add metadata templates
|
70
|
+
metadataEditor.addMetadataTemplate.trigger.label = Lisää malli
|
71
|
+
# Paragraph asking user are they sure that they want to delete the template
|
72
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph = Oletko varma, että haluat poistaa "{templateName}" Metatietomallin ja kaikki sen arvot tästä tiedostosta?
|
73
|
+
# Label informing how to confirm deletion of the template
|
74
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel = Kirjoita "{templateName}" vahvistaaksesi.
|
75
|
+
# Paragraph informing that data cannot be restored
|
76
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.secondParagraph = Metatietoarvoja ei voi palauttaa, kun ne on poistettu.
|
77
|
+
# CTA to cancel deletion of the template
|
78
|
+
metadataEditor.editInstance.deleteConfirmationModal.cancelButton = Peruuta
|
79
|
+
# CTA to confirm deletion of the template
|
80
|
+
metadataEditor.editInstance.deleteConfirmationModal.confirmButton = Vahvista
|
81
|
+
# Template named used when user created custom metadata template
|
82
|
+
metadataEditor.editInstance.deleteConfirmationModal.customMedatata = Mukautetut metatiedot
|
83
|
+
# Aria label for Dismiss (x) button
|
84
|
+
metadataEditor.editInstance.deleteConfirmationModal.dismissButton = Hylkää
|
85
|
+
# Header informing that template will be deleted
|
86
|
+
metadataEditor.editInstance.deleteConfirmationModal.header = Poista "{templateName}"
|
87
|
+
# Description of Box AI features
|
88
|
+
metadataEditor.fileLevel.emptyState.boxAiEnabled.body = Box AI:n tehon avulla voit nopeasti tallentaa asiakirjan metatiedot yhä suuremmalla tarkkuudella.
|
89
|
+
# Call to encourage user to use Box AI to autofill metadata fields
|
90
|
+
metadataEditor.fileLevel.emptyState.boxAiEnabled.heading = Täytä metatiedot automaattisesti Box AI:n avulla
|
91
|
+
# Description of metadata features
|
92
|
+
metadataEditor.fileLevel.emptyState.default.body = Lisää metatiedot tiedostoon tukemaan muun muassa liiketoimintoja ja työnkulkuja.
|
93
|
+
# Call to encourage user to add metadata templates
|
94
|
+
metadataEditor.fileLevel.emptyState.default.heading = Lisää metatietomallit
|
95
|
+
# Aria label used to clear search input
|
96
|
+
metadataEditor.filterDropdownMenuSearch.iconButtonAriaLabel = Tyhjennä haku
|
97
|
+
# Message displayed when there is no matching option in filter dropdown menu
|
98
|
+
metadataEditor.filterDropdownMenuSearch.noResultsFound = Ei tuloksia
|
99
|
+
# Call to show empty values
|
100
|
+
metadataEditor.instanceLevel.emptyState.emptyValues.Cta = Näytä tyhjät arvot
|
101
|
+
# Header informing user that there are no values in the template
|
102
|
+
metadataEditor.instanceLevel.emptyState.heading = Tässä mallissa ei ole arvoja
|
103
|
+
# Header informing user that there are no attributes in the template
|
104
|
+
metadataEditor.instanceLevel.emptyState.noAttributes.heading = Tässä mallissa ei ole määritteitä
|
105
|
+
# Caption about no empty values to be shown
|
106
|
+
metadataEditor.instanceLevel.emptyState.noEmptyValues.body = Tässä mallissa ei ole arvoja
|
107
|
+
# Description how metadata can be added
|
108
|
+
metadataEditor.managerLevel.emptyState.body = Selaa tai hae kohteita käyttääksesi ja muokataksesi metatietoja
|
109
|
+
# Call to encourage user apply metadata templates
|
110
|
+
metadataEditor.managerLevel.emptyState.heading = Käytä metatietomalleja
|
111
|
+
# Primary CTA button to add new field to cutom meatdata instance
|
112
|
+
metadataEditor.metadataEditor.customIntanceNewField.addNewFieldCTA = Lisää
|
113
|
+
# Label for the attribute name input field
|
114
|
+
metadataEditor.metadataEditor.customIntanceNewField.attributeNameLabel = Määritteen nimi
|
115
|
+
# Cancel button text
|
116
|
+
metadataEditor.metadataEditor.customIntanceNewField.cancelCTA = Peruuta
|
117
|
+
# Error enforcing unique key for custom metadata
|
118
|
+
metadataEditor.metadataEditor.customIntanceNewField.customErrorDuplicateKey = Avain on jo olemassa.
|
119
|
+
# Error enforcing non internal key for custom metadata
|
120
|
+
metadataEditor.metadataEditor.customIntanceNewField.customErrorInternalKey = Avaimet eivät voi alkaa merkillä $.
|
121
|
+
# Placeholder for the key field for custom metadata
|
122
|
+
metadataEditor.metadataEditor.customIntanceNewField.customKeyPlaceholder = esim. tilausnumero
|
123
|
+
# Error enforcing required key for custom metadata
|
124
|
+
metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired = Avain on pakollinen
|
125
|
+
# Label for the value input field
|
126
|
+
metadataEditor.metadataEditor.customIntanceNewField.valueLabel = Arvo
|
127
|
+
# Placeholder for the value field for custom metadata
|
128
|
+
metadataEditor.metadataEditor.customIntanceNewField.valuePlaceholder = esim. 42
|
129
|
+
# Button that allow to add new attribute to metadata custom instance
|
130
|
+
metadataEditor.metadataInstanceEditor.customInstance.addAttribute = + Lisää attribuutti
|
131
|
+
# Aria label for button that allow to remove attribute from metadata custom instance
|
132
|
+
metadataEditor.metadataInstanceEditor.customInstance.removeAttribute = Poista
|
133
|
+
# Placeholder for the value field for custom metadata
|
134
|
+
metadataEditor.metadataInstanceEditor.customInstance.setValuePlaceholder = Aseta arvo
|
135
|
+
# Call to action to cancel and dismiss changes in Metadata Instance.
|
136
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.cancelButton = Peruuta
|
137
|
+
# Call to action to delete Metadata Instance.
|
138
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.deleteButton = Poista
|
139
|
+
# Aria label used to indicate that the button is currently loading.
|
140
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.loadingAriaLabel = Ladataan...
|
141
|
+
# Call to action to save Metadata Instance.
|
142
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.saveButton = Tallenna
|
143
|
+
# Button with "Autofill" text. Call to action to automatically fill in form fields based on AI information
|
144
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.autofillButton = Automaattinen täyttö
|
145
|
+
# Header with Custom Metadata template name
|
146
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.customInstanceTitle = Mukautetut metatiedot
|
147
|
+
# Aria label used to indicate that the button is currently loading.
|
148
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.loadingButtonAriaLabel = Ladataan...
|
149
|
+
# Body for the unsaved changes modal
|
150
|
+
metadataEditor.unsavedChangesModal.body = Metatietomalleissa on tallentamattomia muutoksia. Miten haluat jatkaa?
|
151
|
+
# Label for close (x) button
|
152
|
+
metadataEditor.unsavedChangesModal.closeLabel = Sulje
|
153
|
+
# CTA for dismissing the unsaved changes
|
154
|
+
metadataEditor.unsavedChangesModal.dismissCTA = Peruuta
|
155
|
+
# Header for the unsaved changes modal
|
156
|
+
metadataEditor.unsavedChangesModal.header = Tallentamattomia muutoksia
|
157
|
+
# CTA for saving the unsaved changes and continuing
|
158
|
+
metadataEditor.unsavedChangesModal.saveAndContinueCTA = Tallenna ja jatka
|
159
|
+
# Call to action to hide all empty values
|
160
|
+
metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA = Piilota tyhjät arvot
|
161
|
+
# Call to action to show hidden empty values
|
162
|
+
metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA = Näytä tyhjät arvot
|
163
|
+
# Header with Custom Metadata template name
|
164
|
+
metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle = Mukautetut metatiedot
|
package/i18n/fr-CA.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": "Chargement en cours...",
|
7
|
+
"comboboxWithApiPagination.loadingMoreAriaLabel": "Plus de chargement en cours...",
|
8
|
+
"comboboxWithApiPagination.noResults": "Aucun résultat trouvé",
|
9
|
+
"groupSharedFeatures.metadataEditor.loading": "en chargement",
|
10
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Saisissez une date après {date}",
|
11
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.append": "Ajouter",
|
12
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.beforeDateValidationError": "Saisissez une date avant {date}",
|
13
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.clearAndReplace": "Tout effacer et remplacer",
|
14
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.clearSelectedDate": "Effacer la date sélectionnée",
|
15
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.floatFieldInvalidValue": "Valeur du champ non valide",
|
16
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.multiselectPlaceholder": "Sélectionner une/plusieurs valeur(s)",
|
17
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.noTemplateAtributesError": "Il n’y a aucun attribut dans ce modèle.",
|
18
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.openCalendarLabel": "Ouvrez le calendrier pour choisir une date",
|
19
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.removeEntered": "Supprimer l'entré",
|
20
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.replaceEntered": "Remplacer l'entré",
|
21
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.selectDate": "Sélectionner la date",
|
22
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.selectValuePlaceholder": "Sélectionner une valeur",
|
23
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.setValuePlaceholder": "Définir la valeur",
|
24
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth": "Passer au mois suivant",
|
25
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth": "Passer au mois précédent",
|
26
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "Basculer le sélecteur de mode de mise à jour",
|
27
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.with": "Avec",
|
28
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "Ajouter",
|
29
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "Annuler",
|
30
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "Fermer",
|
31
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.header": "Sélectionner un modèle de métadonnées",
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputClearAriaLabel": "Effacer",
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputIconAriaLabel": "Rechercher tous les modèles",
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder": "Rechercher tous les modèles",
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Sélectionner un modèle",
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Impossible de charger les modèles. Réessayer plus tard",
|
37
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Métadonnées personnalisées",
|
38
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Modèles de recherche",
|
39
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Ajouter un modèle",
|
40
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph": "Êtes-vous sûr de vouloir supprimer le modèle de métadonnées « {templateName} » et toutes ses valeurs contenues dans ce fichier ?",
|
41
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel": "Saisissez « {templateName} » pour confirmer",
|
42
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.secondParagraph": "Une fois supprimées, les valeurs de métadonnées ne peuvent pas être restaurées.",
|
43
|
+
"metadataEditor.editInstance.deleteConfirmationModal.cancelButton": "Annuler",
|
44
|
+
"metadataEditor.editInstance.deleteConfirmationModal.confirmButton": "Confirmer",
|
45
|
+
"metadataEditor.editInstance.deleteConfirmationModal.customMedatata": "Métadonnées personnalisées",
|
46
|
+
"metadataEditor.editInstance.deleteConfirmationModal.dismissButton": "Ignorer",
|
47
|
+
"metadataEditor.editInstance.deleteConfirmationModal.header": "Supprimer « {templateName} »",
|
48
|
+
"metadataEditor.fileLevel.emptyState.boxAiEnabled.body": "Utilisez la puissance de Box AI pour capturer rapidement les métadonnées de vos documents avec toujours plus de précision.",
|
49
|
+
"metadataEditor.fileLevel.emptyState.boxAiEnabled.heading": "Remplissez automatiquement vos métadonnées avec Box AI",
|
50
|
+
"metadataEditor.fileLevel.emptyState.default.body": "Ajoutez des métadonnées à votre fichier pour prendre en charge les opérations commerciales, les flux de travail, et plus encore",
|
51
|
+
"metadataEditor.fileLevel.emptyState.default.heading": "Ajoutez des modèles de métadonnées",
|
52
|
+
"metadataEditor.filterDropdownMenuSearch.iconButtonAriaLabel": "Supprimer la recherche",
|
53
|
+
"metadataEditor.filterDropdownMenuSearch.noResultsFound": "Aucun résultat trouvé",
|
54
|
+
"metadataEditor.instanceLevel.emptyState.emptyValues.Cta": "Affichez les valeurs vides",
|
55
|
+
"metadataEditor.instanceLevel.emptyState.heading": "Ce modèle ne contient valeur",
|
56
|
+
"metadataEditor.instanceLevel.emptyState.noAttributes.heading": "Ce modèle n'a aucun attribut",
|
57
|
+
"metadataEditor.instanceLevel.emptyState.noEmptyValues.body": "Ce modèle ne contient valeur",
|
58
|
+
"metadataEditor.managerLevel.emptyState.body": "Parcourez ou recherchez vos éléments à appliquer et à modifier des métadonnées",
|
59
|
+
"metadataEditor.managerLevel.emptyState.heading": "Appliquer des modèles de métadonnées",
|
60
|
+
"metadataEditor.metadataEditor.customIntanceNewField.addNewFieldCTA": "Ajouter",
|
61
|
+
"metadataEditor.metadataEditor.customIntanceNewField.attributeNameLabel": "Nom de l'attribut",
|
62
|
+
"metadataEditor.metadataEditor.customIntanceNewField.cancelCTA": "Annuler",
|
63
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customErrorDuplicateKey": "La clé existe déjà.",
|
64
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customErrorInternalKey": "Les clés ne peuvent pas commencer par un $.",
|
65
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customKeyPlaceholder": "par exemple, numéro de commande",
|
66
|
+
"metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired": "La clé est obligatoire",
|
67
|
+
"metadataEditor.metadataEditor.customIntanceNewField.valueLabel": "Valeur",
|
68
|
+
"metadataEditor.metadataEditor.customIntanceNewField.valuePlaceholder": "par exemple 42",
|
69
|
+
"metadataEditor.metadataInstanceEditor.customInstance.addAttribute": "+ Ajouter un attribut",
|
70
|
+
"metadataEditor.metadataInstanceEditor.customInstance.removeAttribute": "Supprimer",
|
71
|
+
"metadataEditor.metadataInstanceEditor.customInstance.setValuePlaceholder": "Définir la valeur",
|
72
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.cancelButton": "Annuler",
|
73
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.deleteButton": "Supprimer",
|
74
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.loadingAriaLabel": "Chargement en cours...",
|
75
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.saveButton": "Mettre à jour la balise",
|
76
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.autofillButton": "Remplissage automatique",
|
77
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.customInstanceTitle": "Métadonnées personnalisées",
|
78
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.loadingButtonAriaLabel": "Chargement en cours...",
|
79
|
+
"metadataEditor.unsavedChangesModal.body": "Le(s) modèle(s) de métadonnées ont des modifications non enregistrées. Comment souhaitez-vous procéder ?",
|
80
|
+
"metadataEditor.unsavedChangesModal.closeLabel": "Fermer",
|
81
|
+
"metadataEditor.unsavedChangesModal.dismissCTA": "Annuler",
|
82
|
+
"metadataEditor.unsavedChangesModal.header": "Modifications non enregistrées",
|
83
|
+
"metadataEditor.unsavedChangesModal.saveAndContinueCTA": "Enregistrer et continuer",
|
84
|
+
"metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA": "Masquer les valeurs vides",
|
85
|
+
"metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA": "Afficher les valeurs vides",
|
86
|
+
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Métadonnées personnalisées",
|
87
|
+
"comboboxWithApiPagination.apiError": "Impossible de charger les résultats. Cliquez pour réessayer."
|
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 = Impossible de charger les résultats. Cliquez pour réessayer.
|
3
|
+
# Visually hidden aria-label text for the loading spinner
|
4
|
+
comboboxWithApiPagination.loadingAriaLabel = Chargement en cours...
|
5
|
+
# Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
|
6
|
+
comboboxWithApiPagination.loadingMoreAriaLabel = Plus de chargement en cours...
|
7
|
+
# Message displayed when no results are found in the combobox
|
8
|
+
comboboxWithApiPagination.noResults = Aucun résultat trouvé
|
9
|
+
# Aria label indicating that content is loading or in progress
|
10
|
+
groupSharedFeatures.metadataEditor.loading = en chargement
|
11
|
+
# Error message shown if an invalid after date is entered. {date} represents the date entered by the user.
|
12
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError = Saisissez une date après {date}
|
13
|
+
# Label for the append radio button in the update mode selector
|
14
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.append = Ajouter
|
15
|
+
# Error message shown if an invalid before date is entered. {date} represents the date entered by the user.
|
16
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.beforeDateValidationError = Saisissez une date avant {date}
|
17
|
+
# Label for the Clear All & Replace radio button in the update mode selector
|
18
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.clearAndReplace = Tout effacer et remplacer
|
19
|
+
# Aria label for clearing the selected date
|
20
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.clearSelectedDate = Effacer la date sélectionnée
|
21
|
+
# Error message shown for an invalid field value
|
22
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.floatFieldInvalidValue = Valeur du champ non valide
|
23
|
+
# Placeholder text for the multiselect field
|
24
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.multiselectPlaceholder = Sélectionner une/plusieurs valeur(s)
|
25
|
+
# Error message shown if no attributes are available in the template
|
26
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.noTemplateAtributesError = Il n’y a aucun attribut dans ce modèle.
|
27
|
+
# Aria label for opening the calendar to pick a date
|
28
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.openCalendarLabel = Ouvrez le calendrier pour choisir une date
|
29
|
+
# Label for the remove entered radio button in the update mode selector
|
30
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.removeEntered = Supprimer l'entré
|
31
|
+
# Label for the replace entered radio button in the update mode selector
|
32
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.replaceEntered = Remplacer l'entré
|
33
|
+
# Aria label for selecting the date
|
34
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.selectDate = Sélectionner la date
|
35
|
+
# Placeholder text for selecting a value
|
36
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.selectValuePlaceholder = Sélectionner une valeur
|
37
|
+
# Placeholder text for setting a value
|
38
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.setValuePlaceholder = Définir la valeur
|
39
|
+
# Aria label for switching to the next month in the calendar
|
40
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth = Passer au mois suivant
|
41
|
+
# Aria label for switching to the previous month in the calendar
|
42
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth = Passer au mois précédent
|
43
|
+
# aria-label for an icon button that toggles visiblity of update mode slection radio control.
|
44
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel = Basculer le sélecteur de mode de mise à jour
|
45
|
+
# Label for the additional input field that appears when the selected update mode is "Replace Entered"
|
46
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.with = Avec
|
47
|
+
# Label for the button that applies the selection and closes the template selection dialog
|
48
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.add = Ajouter
|
49
|
+
# Label for the button that dismisses the template selection dialog
|
50
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel = Annuler
|
51
|
+
# Aria label for the button that closes the template selection dialog
|
52
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.close = Fermer
|
53
|
+
# Title for the metadata template selection dialog
|
54
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.header = Sélectionner un modèle de métadonnées
|
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 = Effacer
|
57
|
+
# Accessibility label for icon inside the search input that filters the templates in the metadata template selection dialog
|
58
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputIconAriaLabel = Rechercher tous les modèles
|
59
|
+
# Placeholder text for the search input in the metadata template selector modal
|
60
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder = Rechercher tous les modèles
|
61
|
+
# Placeholder text prompting the user to select a template
|
62
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate = Sélectionner un modèle
|
63
|
+
# Error message displayed when templates fail to load
|
64
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError = Impossible de charger les modèles. Réessayer plus tard
|
65
|
+
# Display name for custom metadata templates
|
66
|
+
metadataEditor.addMetadataTemplate.customMetadataName = Métadonnées personnalisées
|
67
|
+
# Description for the search input field in the metadata editor
|
68
|
+
metadataEditor.addMetadataTemplate.search.placeholder = Modèles de recherche
|
69
|
+
# Call to encourage user to add metadata templates
|
70
|
+
metadataEditor.addMetadataTemplate.trigger.label = Ajouter un modèle
|
71
|
+
# Paragraph asking user are they sure that they want to delete the template
|
72
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph = Êtes-vous sûr de vouloir supprimer le modèle de métadonnées « {templateName} » et toutes ses valeurs contenues dans ce fichier ?
|
73
|
+
# Label informing how to confirm deletion of the template
|
74
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel = Saisissez « {templateName} » pour confirmer
|
75
|
+
# Paragraph informing that data cannot be restored
|
76
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.secondParagraph = Une fois supprimées, les valeurs de métadonnées ne peuvent pas être restaurées.
|
77
|
+
# CTA to cancel deletion of the template
|
78
|
+
metadataEditor.editInstance.deleteConfirmationModal.cancelButton = Annuler
|
79
|
+
# CTA to confirm deletion of the template
|
80
|
+
metadataEditor.editInstance.deleteConfirmationModal.confirmButton = Confirmer
|
81
|
+
# Template named used when user created custom metadata template
|
82
|
+
metadataEditor.editInstance.deleteConfirmationModal.customMedatata = Métadonnées personnalisées
|
83
|
+
# Aria label for Dismiss (x) button
|
84
|
+
metadataEditor.editInstance.deleteConfirmationModal.dismissButton = Ignorer
|
85
|
+
# Header informing that template will be deleted
|
86
|
+
metadataEditor.editInstance.deleteConfirmationModal.header = Supprimer « {templateName} »
|
87
|
+
# Description of Box AI features
|
88
|
+
metadataEditor.fileLevel.emptyState.boxAiEnabled.body = Utilisez la puissance de Box AI pour capturer rapidement les métadonnées de vos documents avec toujours plus de précision.
|
89
|
+
# Call to encourage user to use Box AI to autofill metadata fields
|
90
|
+
metadataEditor.fileLevel.emptyState.boxAiEnabled.heading = Remplissez automatiquement vos métadonnées avec Box AI
|
91
|
+
# Description of metadata features
|
92
|
+
metadataEditor.fileLevel.emptyState.default.body = Ajoutez des métadonnées à votre fichier pour prendre en charge les opérations commerciales, les flux de travail, et plus encore
|
93
|
+
# Call to encourage user to add metadata templates
|
94
|
+
metadataEditor.fileLevel.emptyState.default.heading = Ajoutez des modèles de métadonnées
|
95
|
+
# Aria label used to clear search input
|
96
|
+
metadataEditor.filterDropdownMenuSearch.iconButtonAriaLabel = Supprimer la recherche
|
97
|
+
# Message displayed when there is no matching option in filter dropdown menu
|
98
|
+
metadataEditor.filterDropdownMenuSearch.noResultsFound = Aucun résultat trouvé
|
99
|
+
# Call to show empty values
|
100
|
+
metadataEditor.instanceLevel.emptyState.emptyValues.Cta = Affichez les valeurs vides
|
101
|
+
# Header informing user that there are no values in the template
|
102
|
+
metadataEditor.instanceLevel.emptyState.heading = Ce modèle ne contient valeur
|
103
|
+
# Header informing user that there are no attributes in the template
|
104
|
+
metadataEditor.instanceLevel.emptyState.noAttributes.heading = Ce modèle n'a aucun attribut
|
105
|
+
# Caption about no empty values to be shown
|
106
|
+
metadataEditor.instanceLevel.emptyState.noEmptyValues.body = Ce modèle ne contient valeur
|
107
|
+
# Description how metadata can be added
|
108
|
+
metadataEditor.managerLevel.emptyState.body = Parcourez ou recherchez vos éléments à appliquer et à modifier des métadonnées
|
109
|
+
# Call to encourage user apply metadata templates
|
110
|
+
metadataEditor.managerLevel.emptyState.heading = Appliquer des modèles de métadonnées
|
111
|
+
# Primary CTA button to add new field to cutom meatdata instance
|
112
|
+
metadataEditor.metadataEditor.customIntanceNewField.addNewFieldCTA = Ajouter
|
113
|
+
# Label for the attribute name input field
|
114
|
+
metadataEditor.metadataEditor.customIntanceNewField.attributeNameLabel = Nom de l'attribut
|
115
|
+
# Cancel button text
|
116
|
+
metadataEditor.metadataEditor.customIntanceNewField.cancelCTA = Annuler
|
117
|
+
# Error enforcing unique key for custom metadata
|
118
|
+
metadataEditor.metadataEditor.customIntanceNewField.customErrorDuplicateKey = La clé existe déjà.
|
119
|
+
# Error enforcing non internal key for custom metadata
|
120
|
+
metadataEditor.metadataEditor.customIntanceNewField.customErrorInternalKey = Les clés ne peuvent pas commencer par un $.
|
121
|
+
# Placeholder for the key field for custom metadata
|
122
|
+
metadataEditor.metadataEditor.customIntanceNewField.customKeyPlaceholder = par exemple, numéro de commande
|
123
|
+
# Error enforcing required key for custom metadata
|
124
|
+
metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired = La clé est obligatoire
|
125
|
+
# Label for the value input field
|
126
|
+
metadataEditor.metadataEditor.customIntanceNewField.valueLabel = Valeur
|
127
|
+
# Placeholder for the value field for custom metadata
|
128
|
+
metadataEditor.metadataEditor.customIntanceNewField.valuePlaceholder = par exemple 42
|
129
|
+
# Button that allow to add new attribute to metadata custom instance
|
130
|
+
metadataEditor.metadataInstanceEditor.customInstance.addAttribute = + Ajouter un attribut
|
131
|
+
# Aria label for button that allow to remove attribute from metadata custom instance
|
132
|
+
metadataEditor.metadataInstanceEditor.customInstance.removeAttribute = Supprimer
|
133
|
+
# Placeholder for the value field for custom metadata
|
134
|
+
metadataEditor.metadataInstanceEditor.customInstance.setValuePlaceholder = Définir la valeur
|
135
|
+
# Call to action to cancel and dismiss changes in Metadata Instance.
|
136
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.cancelButton = Annuler
|
137
|
+
# Call to action to delete Metadata Instance.
|
138
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.deleteButton = Supprimer
|
139
|
+
# Aria label used to indicate that the button is currently loading.
|
140
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.loadingAriaLabel = Chargement en cours...
|
141
|
+
# Call to action to save Metadata Instance.
|
142
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.saveButton = Mettre à jour la balise
|
143
|
+
# Button with "Autofill" text. Call to action to automatically fill in form fields based on AI information
|
144
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.autofillButton = Remplissage automatique
|
145
|
+
# Header with Custom Metadata template name
|
146
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.customInstanceTitle = Métadonnées personnalisées
|
147
|
+
# Aria label used to indicate that the button is currently loading.
|
148
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.loadingButtonAriaLabel = Chargement en cours...
|
149
|
+
# Body for the unsaved changes modal
|
150
|
+
metadataEditor.unsavedChangesModal.body = Le(s) modèle(s) de métadonnées ont des modifications non enregistrées. Comment souhaitez-vous procéder ?
|
151
|
+
# Label for close (x) button
|
152
|
+
metadataEditor.unsavedChangesModal.closeLabel = Fermer
|
153
|
+
# CTA for dismissing the unsaved changes
|
154
|
+
metadataEditor.unsavedChangesModal.dismissCTA = Annuler
|
155
|
+
# Header for the unsaved changes modal
|
156
|
+
metadataEditor.unsavedChangesModal.header = Modifications non enregistrées
|
157
|
+
# CTA for saving the unsaved changes and continuing
|
158
|
+
metadataEditor.unsavedChangesModal.saveAndContinueCTA = Enregistrer et continuer
|
159
|
+
# Call to action to hide all empty values
|
160
|
+
metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA = Masquer les valeurs vides
|
161
|
+
# Call to action to show hidden empty values
|
162
|
+
metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA = Afficher les valeurs vides
|
163
|
+
# Header with Custom Metadata template name
|
164
|
+
metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle = Métadonnées personnalisées
|
package/i18n/fr-FR.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": "Chargement en cours...",
|
7
|
+
"comboboxWithApiPagination.loadingMoreAriaLabel": "Plus de chargement en cours...",
|
8
|
+
"comboboxWithApiPagination.noResults": "Aucun résultat trouvé",
|
9
|
+
"groupSharedFeatures.metadataEditor.loading": "en chargement",
|
10
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "Saisissez une date après {date}",
|
11
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.append": "Ajouter",
|
12
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.beforeDateValidationError": "Saisissez une date avant {date}",
|
13
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.clearAndReplace": "Tout effacer et remplacer",
|
14
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.clearSelectedDate": "Effacer la date sélectionnée",
|
15
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.floatFieldInvalidValue": "Valeur du champ non valide",
|
16
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.multiselectPlaceholder": "Sélectionner une/plusieurs valeur(s)",
|
17
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.noTemplateAtributesError": "Il n’y a aucun attribut dans ce modèle.",
|
18
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.openCalendarLabel": "Ouvrez le calendrier pour choisir une date",
|
19
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.removeEntered": "Supprimer l'entré",
|
20
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.replaceEntered": "Remplacer l'entré",
|
21
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.selectDate": "Sélectionner la date",
|
22
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.selectValuePlaceholder": "Sélectionner une valeur",
|
23
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.setValuePlaceholder": "Définir la valeur",
|
24
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth": "Passer au mois suivant",
|
25
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth": "Passer au mois précédent",
|
26
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "Basculer le sélecteur de mode de mise à jour",
|
27
|
+
"groupSharedFeatures.metadataEditor.metadataEditorFields.with": "Avec",
|
28
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "Ajouter",
|
29
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "Annuler",
|
30
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "Fermer",
|
31
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.header": "Sélectionner un modèle de métadonnées",
|
32
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputClearAriaLabel": "Effacer",
|
33
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputIconAriaLabel": "Rechercher tous les modèles",
|
34
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder": "Rechercher tous les modèles",
|
35
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "Sélectionner un modèle",
|
36
|
+
"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "Impossible de charger les modèles. Réessayer plus tard",
|
37
|
+
"metadataEditor.addMetadataTemplate.customMetadataName": "Métadonnées personnalisées",
|
38
|
+
"metadataEditor.addMetadataTemplate.search.placeholder": "Modèles de recherche",
|
39
|
+
"metadataEditor.addMetadataTemplate.trigger.label": "Ajouter un modèle",
|
40
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph": "Êtes-vous sûr de vouloir supprimer le modèle de métadonnées « {templateName} » et toutes ses valeurs contenues dans ce fichier ?",
|
41
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel": "Saisissez « {templateName} » pour confirmer",
|
42
|
+
"metadataEditor.editInstance.deleteConfirmationModal.body.secondParagraph": "Une fois supprimées, les valeurs de métadonnées ne peuvent pas être restaurées.",
|
43
|
+
"metadataEditor.editInstance.deleteConfirmationModal.cancelButton": "Annuler",
|
44
|
+
"metadataEditor.editInstance.deleteConfirmationModal.confirmButton": "Confirmer",
|
45
|
+
"metadataEditor.editInstance.deleteConfirmationModal.customMedatata": "Métadonnées personnalisées",
|
46
|
+
"metadataEditor.editInstance.deleteConfirmationModal.dismissButton": "Ignorer",
|
47
|
+
"metadataEditor.editInstance.deleteConfirmationModal.header": "Supprimer « {templateName} »",
|
48
|
+
"metadataEditor.fileLevel.emptyState.boxAiEnabled.body": "Utilisez la puissance de Box AI pour capturer rapidement les métadonnées de vos documents avec toujours plus de précision.",
|
49
|
+
"metadataEditor.fileLevel.emptyState.boxAiEnabled.heading": "Remplissez automatiquement vos métadonnées avec Box AI",
|
50
|
+
"metadataEditor.fileLevel.emptyState.default.body": "Ajoutez des métadonnées à votre fichier pour prendre en charge les opérations commerciales, les flux de travail, et plus encore",
|
51
|
+
"metadataEditor.fileLevel.emptyState.default.heading": "Ajoutez des modèles de métadonnées",
|
52
|
+
"metadataEditor.filterDropdownMenuSearch.iconButtonAriaLabel": "Supprimer la recherche",
|
53
|
+
"metadataEditor.filterDropdownMenuSearch.noResultsFound": "Aucun résultat trouvé",
|
54
|
+
"metadataEditor.instanceLevel.emptyState.emptyValues.Cta": "Affichez les valeurs vides",
|
55
|
+
"metadataEditor.instanceLevel.emptyState.heading": "Ce modèle ne contient valeur",
|
56
|
+
"metadataEditor.instanceLevel.emptyState.noAttributes.heading": "Ce modèle n'a aucun attribut",
|
57
|
+
"metadataEditor.instanceLevel.emptyState.noEmptyValues.body": "Ce modèle ne contient valeur",
|
58
|
+
"metadataEditor.managerLevel.emptyState.body": "Parcourez ou recherchez vos éléments à appliquer et à modifier des métadonnées",
|
59
|
+
"metadataEditor.managerLevel.emptyState.heading": "Appliquer des modèles de métadonnées",
|
60
|
+
"metadataEditor.metadataEditor.customIntanceNewField.addNewFieldCTA": "Ajouter",
|
61
|
+
"metadataEditor.metadataEditor.customIntanceNewField.attributeNameLabel": "Nom de l'attribut",
|
62
|
+
"metadataEditor.metadataEditor.customIntanceNewField.cancelCTA": "Annuler",
|
63
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customErrorDuplicateKey": "La clé existe déjà.",
|
64
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customErrorInternalKey": "Les clés ne peuvent pas commencer par un $.",
|
65
|
+
"metadataEditor.metadataEditor.customIntanceNewField.customKeyPlaceholder": "par exemple, numéro de commande",
|
66
|
+
"metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired": "La clé est obligatoire",
|
67
|
+
"metadataEditor.metadataEditor.customIntanceNewField.valueLabel": "Valeur",
|
68
|
+
"metadataEditor.metadataEditor.customIntanceNewField.valuePlaceholder": "par exemple 42",
|
69
|
+
"metadataEditor.metadataInstanceEditor.customInstance.addAttribute": "+ Ajouter un attribut",
|
70
|
+
"metadataEditor.metadataInstanceEditor.customInstance.removeAttribute": "Supprimer",
|
71
|
+
"metadataEditor.metadataInstanceEditor.customInstance.setValuePlaceholder": "Définir la valeur",
|
72
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.cancelButton": "Annuler",
|
73
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.deleteButton": "Supprimer",
|
74
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.loadingAriaLabel": "Chargement en cours...",
|
75
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.saveButton": "Mettre à jour la balise",
|
76
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.autofillButton": "Remplissage automatique",
|
77
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.customInstanceTitle": "Métadonnées personnalisées",
|
78
|
+
"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.loadingButtonAriaLabel": "Chargement en cours...",
|
79
|
+
"metadataEditor.unsavedChangesModal.body": "Le(s) modèle(s) de métadonnées ont des modifications non enregistrées. Comment souhaitez-vous procéder ?",
|
80
|
+
"metadataEditor.unsavedChangesModal.closeLabel": "Fermer",
|
81
|
+
"metadataEditor.unsavedChangesModal.dismissCTA": "Annuler",
|
82
|
+
"metadataEditor.unsavedChangesModal.header": "Modifications non enregistrées",
|
83
|
+
"metadataEditor.unsavedChangesModal.saveAndContinueCTA": "Enregistrer et continuer",
|
84
|
+
"metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA": "Masquer les valeurs vides",
|
85
|
+
"metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA": "Afficher les valeurs vides",
|
86
|
+
"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Métadonnées personnalisées",
|
87
|
+
"comboboxWithApiPagination.apiError": "Impossible de charger les résultats. Cliquez pour réessayer."
|
88
|
+
}
|