@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 = Impossibile caricare i risultati. Fai clic per riprovare.
|
3
|
+
# Visually hidden aria-label text for the loading spinner
|
4
|
+
comboboxWithApiPagination.loadingAriaLabel = Caricamento in corso...
|
5
|
+
# Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
|
6
|
+
comboboxWithApiPagination.loadingMoreAriaLabel = Caricamento altri risultati in corso…
|
7
|
+
# Message displayed when no results are found in the combobox
|
8
|
+
comboboxWithApiPagination.noResults = Nessun risultato trovato
|
9
|
+
# Aria label indicating that content is loading or in progress
|
10
|
+
groupSharedFeatures.metadataEditor.loading = Caricamento in corso…
|
11
|
+
# Error message shown if an invalid after date is entered. {date} represents the date entered by the user.
|
12
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError = Inserisci una data dopo il {date}
|
13
|
+
# Label for the append radio button in the update mode selector
|
14
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.append = Accoda
|
15
|
+
# Error message shown if an invalid before date is entered. {date} represents the date entered by the user.
|
16
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.beforeDateValidationError = Inserisci una data precedente al giorno {date}
|
17
|
+
# Label for the Clear All & Replace radio button in the update mode selector
|
18
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.clearAndReplace = Cancella tutto e sostituisci
|
19
|
+
# Aria label for clearing the selected date
|
20
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.clearSelectedDate = Annulla la data selezionata
|
21
|
+
# Error message shown for an invalid field value
|
22
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.floatFieldInvalidValue = Valore campo non valido
|
23
|
+
# Placeholder text for the multiselect field
|
24
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.multiselectPlaceholder = Seleziona valore/i
|
25
|
+
# Error message shown if no attributes are available in the template
|
26
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.noTemplateAtributesError = Non sono presenti attributi in questo modello.
|
27
|
+
# Aria label for opening the calendar to pick a date
|
28
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.openCalendarLabel = Apri il calendario per selezionare una data
|
29
|
+
# Label for the remove entered radio button in the update mode selector
|
30
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.removeEntered = Rimuovi inserito
|
31
|
+
# Label for the replace entered radio button in the update mode selector
|
32
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.replaceEntered = Sostituisci inserito
|
33
|
+
# Aria label for selecting the date
|
34
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.selectDate = Seleziona la data
|
35
|
+
# Placeholder text for selecting a value
|
36
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.selectValuePlaceholder = Seleziona un valore
|
37
|
+
# Placeholder text for setting a value
|
38
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.setValuePlaceholder = Imposta valore
|
39
|
+
# Aria label for switching to the next month in the calendar
|
40
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth = Passa al mese successivo
|
41
|
+
# Aria label for switching to the previous month in the calendar
|
42
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth = Passa al mese precedente
|
43
|
+
# aria-label for an icon button that toggles visiblity of update mode slection radio control.
|
44
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel = Attiva/disattiva il selettore della modalità di aggiornamento
|
45
|
+
# Label for the additional input field that appears when the selected update mode is "Replace Entered"
|
46
|
+
groupSharedFeatures.metadataEditor.metadataEditorFields.with = Con
|
47
|
+
# Label for the button that applies the selection and closes the template selection dialog
|
48
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.add = Aggiungi
|
49
|
+
# Label for the button that dismisses the template selection dialog
|
50
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel = Annulla
|
51
|
+
# Aria label for the button that closes the template selection dialog
|
52
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.close = Chiudi
|
53
|
+
# Title for the metadata template selection dialog
|
54
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.header = Seleziona modello metadati
|
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 = Annulla
|
57
|
+
# Accessibility label for icon inside the search input that filters the templates in the metadata template selection dialog
|
58
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputIconAriaLabel = Cerca in tutti i modelli
|
59
|
+
# Placeholder text for the search input in the metadata template selector modal
|
60
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder = Cerca in tutti i modelli
|
61
|
+
# Placeholder text prompting the user to select a template
|
62
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate = Seleziona un modello
|
63
|
+
# Error message displayed when templates fail to load
|
64
|
+
groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError = Impossibile caricare i modelli. Riprova più tardi
|
65
|
+
# Display name for custom metadata templates
|
66
|
+
metadataEditor.addMetadataTemplate.customMetadataName = Metadati personalizzati
|
67
|
+
# Description for the search input field in the metadata editor
|
68
|
+
metadataEditor.addMetadataTemplate.search.placeholder = Cerca modelli
|
69
|
+
# Call to encourage user to add metadata templates
|
70
|
+
metadataEditor.addMetadataTemplate.trigger.label = Aggiungi modello
|
71
|
+
# Paragraph asking user are they sure that they want to delete the template
|
72
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph = Confermi di voler eliminare il modello di metadati "{templateName}" e tutti i suoi valori da questo file?
|
73
|
+
# Label informing how to confirm deletion of the template
|
74
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel = Digita "{templateName}" per confermare
|
75
|
+
# Paragraph informing that data cannot be restored
|
76
|
+
metadataEditor.editInstance.deleteConfirmationModal.body.secondParagraph = Una volta eliminati, i valori dei metadati non possono essere ripristinati.
|
77
|
+
# CTA to cancel deletion of the template
|
78
|
+
metadataEditor.editInstance.deleteConfirmationModal.cancelButton = Annulla
|
79
|
+
# CTA to confirm deletion of the template
|
80
|
+
metadataEditor.editInstance.deleteConfirmationModal.confirmButton = Conferma
|
81
|
+
# Template named used when user created custom metadata template
|
82
|
+
metadataEditor.editInstance.deleteConfirmationModal.customMedatata = Metadati personalizzati
|
83
|
+
# Aria label for Dismiss (x) button
|
84
|
+
metadataEditor.editInstance.deleteConfirmationModal.dismissButton = Chiudi
|
85
|
+
# Header informing that template will be deleted
|
86
|
+
metadataEditor.editInstance.deleteConfirmationModal.header = Elimina "{templateName}"
|
87
|
+
# Description of Box AI features
|
88
|
+
metadataEditor.fileLevel.emptyState.boxAiEnabled.body = Usa la potenza di Box AI per acquisire rapidamente i metadati dei documenti, con una precisione sempre maggiore.
|
89
|
+
# Call to encourage user to use Box AI to autofill metadata fields
|
90
|
+
metadataEditor.fileLevel.emptyState.boxAiEnabled.heading = Riempimento automatico dei metadati con Box AI
|
91
|
+
# Description of metadata features
|
92
|
+
metadataEditor.fileLevel.emptyState.default.body = Aggiungi metadati al file per supportare le operazioni aziendali, i flussi di lavoro e altro ancora
|
93
|
+
# Call to encourage user to add metadata templates
|
94
|
+
metadataEditor.fileLevel.emptyState.default.heading = Aggiungi modelli di metadati
|
95
|
+
# Aria label used to clear search input
|
96
|
+
metadataEditor.filterDropdownMenuSearch.iconButtonAriaLabel = Annulla la ricerca
|
97
|
+
# Message displayed when there is no matching option in filter dropdown menu
|
98
|
+
metadataEditor.filterDropdownMenuSearch.noResultsFound = Nessun risultato trovato
|
99
|
+
# Call to show empty values
|
100
|
+
metadataEditor.instanceLevel.emptyState.emptyValues.Cta = Visualizza i valori vuoti
|
101
|
+
# Header informing user that there are no values in the template
|
102
|
+
metadataEditor.instanceLevel.emptyState.heading = Per questo modello non è disponibile nessun valore
|
103
|
+
# Header informing user that there are no attributes in the template
|
104
|
+
metadataEditor.instanceLevel.emptyState.noAttributes.heading = Questo modello non ha attributi
|
105
|
+
# Caption about no empty values to be shown
|
106
|
+
metadataEditor.instanceLevel.emptyState.noEmptyValues.body = Per questo modello non è disponibile nessun valore
|
107
|
+
# Description how metadata can be added
|
108
|
+
metadataEditor.managerLevel.emptyState.body = Sfoglia o cerca i tuoi elementi da applicare e modifica i metadati
|
109
|
+
# Call to encourage user apply metadata templates
|
110
|
+
metadataEditor.managerLevel.emptyState.heading = Applica i modelli di metadati
|
111
|
+
# Primary CTA button to add new field to cutom meatdata instance
|
112
|
+
metadataEditor.metadataEditor.customIntanceNewField.addNewFieldCTA = Aggiungi
|
113
|
+
# Label for the attribute name input field
|
114
|
+
metadataEditor.metadataEditor.customIntanceNewField.attributeNameLabel = Nome attributo
|
115
|
+
# Cancel button text
|
116
|
+
metadataEditor.metadataEditor.customIntanceNewField.cancelCTA = Annulla
|
117
|
+
# Error enforcing unique key for custom metadata
|
118
|
+
metadataEditor.metadataEditor.customIntanceNewField.customErrorDuplicateKey = La chiave esiste già.
|
119
|
+
# Error enforcing non internal key for custom metadata
|
120
|
+
metadataEditor.metadataEditor.customIntanceNewField.customErrorInternalKey = Le chiavi non possono iniziare con un $.
|
121
|
+
# Placeholder for the key field for custom metadata
|
122
|
+
metadataEditor.metadataEditor.customIntanceNewField.customKeyPlaceholder = es. Numero ordine
|
123
|
+
# Error enforcing required key for custom metadata
|
124
|
+
metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired = La chiave è obbligatoria
|
125
|
+
# Label for the value input field
|
126
|
+
metadataEditor.metadataEditor.customIntanceNewField.valueLabel = Valore
|
127
|
+
# Placeholder for the value field for custom metadata
|
128
|
+
metadataEditor.metadataEditor.customIntanceNewField.valuePlaceholder = es. 42
|
129
|
+
# Button that allow to add new attribute to metadata custom instance
|
130
|
+
metadataEditor.metadataInstanceEditor.customInstance.addAttribute = + Aggiungi attributo
|
131
|
+
# Aria label for button that allow to remove attribute from metadata custom instance
|
132
|
+
metadataEditor.metadataInstanceEditor.customInstance.removeAttribute = Rimuovi
|
133
|
+
# Placeholder for the value field for custom metadata
|
134
|
+
metadataEditor.metadataInstanceEditor.customInstance.setValuePlaceholder = Imposta valore
|
135
|
+
# Call to action to cancel and dismiss changes in Metadata Instance.
|
136
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.cancelButton = Annulla
|
137
|
+
# Call to action to delete Metadata Instance.
|
138
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.deleteButton = Elimina
|
139
|
+
# Aria label used to indicate that the button is currently loading.
|
140
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.loadingAriaLabel = Caricamento in corso...
|
141
|
+
# Call to action to save Metadata Instance.
|
142
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.saveButton = Salva
|
143
|
+
# Button with "Autofill" text. Call to action to automatically fill in form fields based on AI information
|
144
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.autofillButton = Riempimento automatico
|
145
|
+
# Header with Custom Metadata template name
|
146
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.customInstanceTitle = Metadati personalizzati
|
147
|
+
# Aria label used to indicate that the button is currently loading.
|
148
|
+
metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.loadingButtonAriaLabel = Caricamento in corso...
|
149
|
+
# Body for the unsaved changes modal
|
150
|
+
metadataEditor.unsavedChangesModal.body = Gli uno o più modelli di metadati hanno delle modifiche non salvate. Come vuoi procedere?
|
151
|
+
# Label for close (x) button
|
152
|
+
metadataEditor.unsavedChangesModal.closeLabel = Chiudi
|
153
|
+
# CTA for dismissing the unsaved changes
|
154
|
+
metadataEditor.unsavedChangesModal.dismissCTA = Annulla
|
155
|
+
# Header for the unsaved changes modal
|
156
|
+
metadataEditor.unsavedChangesModal.header = Modifiche non salvate
|
157
|
+
# CTA for saving the unsaved changes and continuing
|
158
|
+
metadataEditor.unsavedChangesModal.saveAndContinueCTA = Salva e continua
|
159
|
+
# Call to action to hide all empty values
|
160
|
+
metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA = Nascondi valori vuoti
|
161
|
+
# Call to action to show hidden empty values
|
162
|
+
metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA = Mostra valori vuoti
|
163
|
+
# Header with Custom Metadata template name
|
164
|
+
metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle = Metadati personalizzati
|
package/i18n/ja-JP.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 AIを活用して、向上し続ける精度でドキュメントのメタデータをすばやくキャプチャします。",
|
49
|
+
"metadataEditor.fileLevel.emptyState.boxAiEnabled.heading": "Box AIでメタデータを自動入力",
|
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 AIを活用して、向上し続ける精度でドキュメントのメタデータをすばやくキャプチャします。
|
89
|
+
# Call to encourage user to use Box AI to autofill metadata fields
|
90
|
+
metadataEditor.fileLevel.emptyState.boxAiEnabled.heading = Box AIでメタデータを自動入力
|
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 = カスタムメタデータ
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"id":"metadataEditor.addMetadataTemplate.customMetadataName","description":"Display name for custom metadata templates","defaultMessage":"Custom Metadata"},{"id":"metadataEditor.addMetadataTemplate.search.placeholder","description":"Description for the search input field in the metadata editor","defaultMessage":"Search templates"},{"id":"metadataEditor.addMetadataTemplate.trigger.label","description":"Call to encourage user to add metadata templates","defaultMessage":"Add template"}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"id":"metadataEditor.filterDropdownMenuSearch.iconButtonAriaLabel","description":"Aria label used to clear search input","defaultMessage":"Clear search"},{"id":"metadataEditor.filterDropdownMenuSearch.noResultsFound","description":"Message displayed when there is no matching option in filter dropdown menu","defaultMessage":"No results found"}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"id":"groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel","description":"aria-label for an icon button that toggles visiblity of update mode slection radio control.","defaultMessage":"Toggle update mode selector"},{"id":"groupSharedFeatures.metadataEditor.metadataEditorFields.append","description":"Label for the append radio button in the update mode selector","defaultMessage":"Append"},{"id":"groupSharedFeatures.metadataEditor.metadataEditorFields.clearAndReplace","description":"Label for the Clear All & Replace radio button in the update mode selector","defaultMessage":"Clear All & Replace"},{"id":"groupSharedFeatures.metadataEditor.metadataEditorFields.removeEntered","description":"Label for the remove entered radio button in the update mode selector","defaultMessage":"Remove Entered"},{"id":"groupSharedFeatures.metadataEditor.metadataEditorFields.replaceEntered","description":"Label for the replace entered radio button in the update mode selector","defaultMessage":"Replace Entered"},{"id":"groupSharedFeatures.metadataEditor.metadataEditorFields.with","description":"Label for the additional input field that appears when the selected update mode is \"Replace Entered\"","defaultMessage":"With"}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"id":"metadataEditor.managerLevel.emptyState.heading","description":"Call to encourage user apply metadata templates","defaultMessage":"Apply Metadata Templates"},{"id":"metadataEditor.managerLevel.emptyState.body","description":"Description how metadata can be added","defaultMessage":"Browse or search for your items to apply and edit metadata"},{"id":"metadataEditor.fileLevel.emptyState.boxAiEnabled.heading","description":"Call to encourage user to use Box AI to autofill metadata fields","defaultMessage":"Autofill Metadata with Box AI"},{"id":"metadataEditor.fileLevel.emptyState.boxAiEnabled.body","description":"Description of Box AI features","defaultMessage":"Use the power of Box AI to quickly capture document metadata, with ever-increasing accuracy."},{"id":"metadataEditor.fileLevel.emptyState.default.heading","description":"Call to encourage user to add metadata templates","defaultMessage":"Add Metadata Templates"},{"id":"metadataEditor.fileLevel.emptyState.default.body","description":"Description of metadata features","defaultMessage":"Add Metadata to your file to support business operations, workflows, and more!"},{"id":"metadataEditor.instanceLevel.emptyState.heading","description":"Header informing user that there are no values in the template","defaultMessage":"This template has no values"},{"id":"metadataEditor.instanceLevel.emptyState.noAttributes.heading","description":"Header informing user that there are no attributes in the template","defaultMessage":"This template has no attributes"},{"id":"metadataEditor.instanceLevel.emptyState.noEmptyValues.body","description":"Caption about no empty values to be shown","defaultMessage":"This template has no values"},{"id":"metadataEditor.instanceLevel.emptyState.emptyValues.Cta","description":"Call to show empty values","defaultMessage":"See empty values"}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"id":"metadataEditor.metadataInstanceEditor.customInstance.addAttribute","description":"Button that allow to add new attribute to metadata custom instance","defaultMessage":"+ Add Attribute"},{"id":"metadataEditor.metadataInstanceEditor.customInstance.removeAttribute","description":"Aria label for button that allow to remove attribute from metadata custom instance","defaultMessage":"Remove"},{"id":"metadataEditor.metadataInstanceEditor.customInstance.setValuePlaceholder","description":"Placeholder for the value field for custom metadata","defaultMessage":"Set value"}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"id":"metadataEditor.metadataEditor.customIntanceNewField.addNewFieldCTA","description":"Primary CTA button to add new field to cutom meatdata instance","defaultMessage":"Add"},{"id":"metadataEditor.metadataEditor.customIntanceNewField.cancelCTA","description":"Cancel button text","defaultMessage":"Cancel"},{"id":"metadataEditor.metadataEditor.customIntanceNewField.customErrorInternalKey","description":"Error enforcing non internal key for custom metadata","defaultMessage":"Keys cannot begin with a $."},{"id":"metadataEditor.metadataEditor.customIntanceNewField.customErrorDuplicateKey","description":"Error enforcing unique key for custom metadata","defaultMessage":"Key already exists."},{"id":"metadataEditor.metadataEditor.customIntanceNewField.attributeNameLabel","description":"Label for the attribute name input field","defaultMessage":"Attribute Name"},{"id":"metadataEditor.metadataEditor.customIntanceNewField.customKeyPlaceholder","description":"Placeholder for the key field for custom metadata","defaultMessage":"e.g. Order Number"},{"id":"metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired","description":"Error enforcing required key for custom metadata","defaultMessage":"Key is required"},{"id":"metadataEditor.metadataEditor.customIntanceNewField.valueLabel","description":"Label for the value input field","defaultMessage":"Value"},{"id":"metadataEditor.metadataEditor.customIntanceNewField.valuePlaceholder","description":"Placeholder for the value field for custom metadata","defaultMessage":"e.g. 42"}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"id":"metadataEditor.editInstance.deleteConfirmationModal.customMedatata","description":"Template named used when user created custom metadata template","defaultMessage":"Custom Metadata"},{"id":"metadataEditor.editInstance.deleteConfirmationModal.header","description":"Header informing that template will be deleted","defaultMessage":"Delete \"{templateName}\""},{"id":"metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph","description":"Paragraph asking user are they sure that they want to delete the template","defaultMessage":"Are you sure you want to delete the \"{templateName}\" Metadata template, and all of its values from this file?"},{"id":"metadataEditor.editInstance.deleteConfirmationModal.body.secondParagraph","description":"Paragraph informing that data cannot be restored","defaultMessage":"Once deleted, Metadata values cannot be restored."},{"id":"metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel","description":"Label informing how to confirm deletion of the template","defaultMessage":"Type \"{templateName}\" to confirm"},{"id":"metadataEditor.editInstance.deleteConfirmationModal.cancelButton","description":"CTA to cancel deletion of the template","defaultMessage":"Cancel"},{"id":"metadataEditor.editInstance.deleteConfirmationModal.confirmButton","description":"CTA to confirm deletion of the template","defaultMessage":"Confirm"},{"id":"metadataEditor.editInstance.deleteConfirmationModal.dismissButton","description":"Aria label for Dismiss (x) button","defaultMessage":"Dismiss"}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"id":"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.cancelButton","description":"Call to action to cancel and dismiss changes in Metadata Instance.","defaultMessage":"Cancel"},{"id":"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.deleteButton","description":"Call to action to delete Metadata Instance.","defaultMessage":"Delete"},{"id":"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.loadingAriaLabel","description":"Aria label used to indicate that the button is currently loading.","defaultMessage":"Loading..."},{"id":"metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.saveButton","description":"Call to action to save Metadata Instance.","defaultMessage":"Save"}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"id":"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.autofillButton","description":"Button with \"Autofill\" text. Call to action to automatically fill in form fields based on AI information","defaultMessage":"Autofill"},{"id":"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.customInstanceTitle","description":"Header with Custom Metadata template name","defaultMessage":"Custom Metadata"},{"id":"metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.loadingButtonAriaLabel","description":"Aria label used to indicate that the button is currently loading.","defaultMessage":"Loading..."}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"id":"metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA","description":"Call to action to show hidden empty values","defaultMessage":"Show empty values"},{"id":"metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA","description":"Call to action to hide all empty values","defaultMessage":"Hide empty values"}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"id":"metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle","description":"Header with Custom Metadata template name","defaultMessage":"Custom Metadata"}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"id":"comboboxWithApiPagination.errorAction","description":"Error message displayed resembling button that calls to action to reload the results","defaultMessage":"Reload"},{"id":"comboboxWithApiPagination.errorMessage","description":"Error message displayed as inline notice that informs the user that the options failed to load","defaultMessage":"Failed to load options"},{"id":"comboboxWithApiPagination.errorIconLabel","description":"Aria-label text for the error icon in the loading results error message","defaultMessage":"Error"},{"id":"comboboxWithApiPagination.loadingAriaLabel","description":"Visually hidden aria-label text for the loading spinner","defaultMessage":"Loading..."},{"id":"comboboxWithApiPagination.loadingMoreAriaLabel","description":"Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list","defaultMessage":"Loading more..."},{"id":"comboboxWithApiPagination.noResults","description":"Message displayed when no results are found in the combobox","defaultMessage":"No results found"},{"id":"comboboxWithApiPagination.clearButtonAriaLabel","description":"Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.","defaultMessage":"Clear input and selection"}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"id":"metadataEditor.unsavedChangesModal.header","description":"Header for the unsaved changes modal","defaultMessage":"Unsaved Changes"},{"id":"metadataEditor.unsavedChangesModal.body","description":"Body for the unsaved changes modal","defaultMessage":"Metadata template(s) have unsaved changes. How would you like to proceed?"},{"id":"metadataEditor.unsavedChangesModal.dismissCTA","description":"CTA for dismissing the unsaved changes","defaultMessage":"Cancel"},{"id":"metadataEditor.unsavedChangesModal.saveAndContinueCTA","description":"CTA for saving the unsaved changes and continuing","defaultMessage":"Save and Continue"},{"id":"metadataEditor.unsavedChangesModal.closeLabel","description":"Label for close (x) button","defaultMessage":"Close"}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"id":"groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError","description":"Error message shown if an invalid after date is entered. {date} represents the date entered by the user.","defaultMessage":"Enter a date after {date}"},{"id":"groupSharedFeatures.metadataEditor.metadataEditorFields.beforeDateValidationError","description":"Error message shown if an invalid before date is entered. {date} represents the date entered by the user.","defaultMessage":"Enter a date before {date}"},{"id":"groupSharedFeatures.metadataEditor.metadataEditorFields.clearSelectedDate","description":"Aria label for clearing the selected date","defaultMessage":"Clear selected date"},{"id":"groupSharedFeatures.metadataEditor.metadataEditorFields.floatFieldInvalidValue","description":"Error message shown for an invalid field value","defaultMessage":"Invalid field value"},{"id":"groupSharedFeatures.metadataEditor.loading","description":"Aria label indicating that content is loading or in progress","defaultMessage":"loading"},{"id":"groupSharedFeatures.metadataEditor.metadataEditorFields.multiselectPlaceholder","description":"Placeholder text for the multiselect field","defaultMessage":"Select value(s)"},{"id":"groupSharedFeatures.metadataEditor.metadataEditorFields.noTemplateAtributesError","description":"Error message shown if no attributes are available in the template","defaultMessage":"There are no attributes in this template."},{"id":"groupSharedFeatures.metadataEditor.metadataEditorFields.openCalendarLabel","description":"Aria label for opening the calendar to pick a date","defaultMessage":"Open calendar to pick a date"},{"id":"groupSharedFeatures.metadataEditor.metadataEditorFields.selectDate","description":"Aria label for selecting the date","defaultMessage":"Select the date"},{"id":"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate","description":"Placeholder text prompting the user to select a template","defaultMessage":"Select a Template"},{"id":"groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError","description":"Error message displayed when templates fail to load","defaultMessage":"Could not load templates. Try again later"},{"id":"groupSharedFeatures.metadataEditor.metadataEditorFields.selectValuePlaceholder","description":"Placeholder text for selecting a value","defaultMessage":"Select a value"},{"id":"groupSharedFeatures.metadataEditor.metadataEditorFields.setValuePlaceholder","description":"Placeholder text for setting a value","defaultMessage":"Set Value"},{"id":"groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth","description":"Aria label for switching to the next month in the calendar","defaultMessage":"Switch to next month"},{"id":"groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth","description":"Aria label for switching to the previous month in the calendar","defaultMessage":"Switch to previous month"},{"id":"groupSharedFeatures.metadataEditor.metadataTemplateSelector.header","description":"Title for the metadata template selection dialog","defaultMessage":"Select Metadata Template"},{"id":"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder","description":"Placeholder text for the search input in the metadata template selector modal","defaultMessage":"Search all templates"},{"id":"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputIconAriaLabel","description":"Accessibility label for icon inside the search input that filters the templates in the metadata template selection dialog","defaultMessage":"Search all templates"},{"id":"groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputClearAriaLabel","description":"Accessibility label for the button that clears the value of the search input that filters the templates in the metadata template selection dialog","defaultMessage":"Clear"},{"id":"groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel","description":"Label for the button that dismisses the template selection dialog","defaultMessage":"Cancel"},{"id":"groupSharedFeatures.metadataEditor.metadataTemplateSelector.add","description":"Label for the button that applies the selection and closes the template selection dialog","defaultMessage":"Add"},{"id":"groupSharedFeatures.metadataEditor.metadataTemplateSelector.close","description":"Aria label for the button that closes the template selection dialog","defaultMessage":"Close"}]
|
package/i18n/ko-KR.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 AI의 기능을 사용하여 정확도가 지속적으로 높아지는 동시에 문서 메타데이터를 빠르게 캡처합니다.",
|
49
|
+
"metadataEditor.fileLevel.emptyState.boxAiEnabled.heading": "Box AI를 사용한 자동 입력 메타데이터",
|
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
|
+
}
|