@box/metadata-template-editor 1.19.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.
Files changed (215) hide show
  1. package/LICENSE +379 -0
  2. package/README.md +57 -0
  3. package/dist/chunks/metadata-field-configurator.module.js +17 -0
  4. package/dist/chunks/types.js +34 -0
  5. package/dist/esm/index.js +34 -0
  6. package/dist/esm/lib/components/field-selector/field-selector.js +39 -0
  7. package/dist/esm/lib/components/field-selector/index.js +4 -0
  8. package/dist/esm/lib/components/field-selector/messages.js +14 -0
  9. package/dist/esm/lib/components/field-type-dropdown/field-type-dropdown.js +47 -0
  10. package/dist/esm/lib/components/field-type-dropdown/index.js +4 -0
  11. package/dist/esm/lib/components/field-type-dropdown/messages.js +14 -0
  12. package/dist/esm/lib/components/field-type-tiles/field-type-tiles.js +40 -0
  13. package/dist/esm/lib/components/field-type-tiles/index.js +4 -0
  14. package/dist/esm/lib/components/field-type-tiles/messages.js +14 -0
  15. package/dist/esm/lib/components/metadata-field-configurator/components/confirmation-modal/confirmation-modal.js +46 -0
  16. package/dist/esm/lib/components/metadata-field-configurator/components/confirmation-modal/messages.js +18 -0
  17. package/dist/esm/lib/components/metadata-field-configurator/components/field-action-slot/field-action-slot.js +80 -0
  18. package/dist/esm/lib/components/metadata-field-configurator/components/field-context-menu/field-context-menu.js +115 -0
  19. package/dist/esm/lib/components/metadata-field-configurator/components/field-edit-content/field-edit-content.js +101 -0
  20. package/dist/esm/lib/components/metadata-field-configurator/components/levels-chain/chip.js +33 -0
  21. package/dist/esm/lib/components/metadata-field-configurator/components/levels-chain/index.js +4 -0
  22. package/dist/esm/lib/components/metadata-field-configurator/components/levels-chain/levels-chain.js +118 -0
  23. package/dist/esm/lib/components/metadata-field-configurator/components/levels-chain/utils.js +34 -0
  24. package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/dropdown/__mocks__/getInitialValues.js +33 -0
  25. package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/dropdown/dropdown-default-values.js +15 -0
  26. package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/dropdown/dropdown-field-configuration.js +66 -0
  27. package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/dropdown/sortable-option-list.js +294 -0
  28. package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/index.js +6 -0
  29. package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-default-values.js +15 -0
  30. package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-field-configuration.js +149 -0
  31. package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-field-configurator-initial-state.js +54 -0
  32. package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-selector-messages.js +38 -0
  33. package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-selector.js +103 -0
  34. package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/useTaxonomySelect.js +19 -0
  35. package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/utils.js +4 -0
  36. package/dist/esm/lib/components/metadata-field-configurator/context/field-configurator-context.js +68 -0
  37. package/dist/esm/lib/components/metadata-field-configurator/context/field-extensions-context.js +9 -0
  38. package/dist/esm/lib/components/metadata-field-configurator/context/taxonomy-options-context.js +23 -0
  39. package/dist/esm/lib/components/metadata-field-configurator/hooks/useFieldConfiguratorBehavior.js +119 -0
  40. package/dist/esm/lib/components/metadata-field-configurator/hooks/useFieldValidation.js +68 -0
  41. package/dist/esm/lib/components/metadata-field-configurator/hooks/useTaxonomyFetch.js +27 -0
  42. package/dist/esm/lib/components/metadata-field-configurator/hooks/useTemplateFieldSchema.js +44 -0
  43. package/dist/esm/lib/components/metadata-field-configurator/index.js +11 -0
  44. package/dist/esm/lib/components/metadata-field-configurator/messages/configurator-messages.js +136 -0
  45. package/dist/esm/lib/components/metadata-field-configurator/messages/dropdown-messages.js +38 -0
  46. package/dist/esm/lib/components/metadata-field-configurator/messages/levels-chain-messages.js +18 -0
  47. package/dist/esm/lib/components/metadata-field-configurator/messages/taxonomy-messages.js +38 -0
  48. package/dist/esm/lib/components/metadata-field-configurator/metadata-field-configurator.js +154 -0
  49. package/dist/esm/lib/components/metadata-field-configurator/utils.js +53 -0
  50. package/dist/esm/lib/components/metadata-field-list/index.js +5 -0
  51. package/dist/esm/lib/components/metadata-field-list/metadata-field-list.js +279 -0
  52. package/dist/esm/lib/components/metadata-template-editor-form/metadata-template-editor-form.js +137 -0
  53. package/dist/esm/lib/components/metadata-template-editor-modal/index.js +4 -0
  54. package/dist/esm/lib/components/metadata-template-editor-modal/metadata-template-editor-modal.js +103 -0
  55. package/dist/esm/lib/hooks/useMetadataTemplateFormSchema.js +16 -0
  56. package/dist/esm/lib/hooks/useTemplateNameSchema.js +12 -0
  57. package/dist/esm/lib/index.js +14 -0
  58. package/dist/esm/lib/messages.js +118 -0
  59. package/dist/esm/lib/metadata-template-editor.js +179 -0
  60. package/dist/esm/lib/utils/constants.js +8 -0
  61. package/dist/esm/lib/utils/field-options/field-type-icon.js +34 -0
  62. package/dist/esm/lib/utils/field-options/index.js +9 -0
  63. package/dist/esm/lib/utils/field-options/messages.js +48 -0
  64. package/dist/esm/lib/utils/field-options/useFieldOptions.js +19 -0
  65. package/dist/esm/lib/utils/key-generation.js +29 -0
  66. package/dist/esm/lib/utils/template-type-conversion/convertLocalConfiguratorToTemplateField.js +78 -0
  67. package/dist/esm/lib/utils/template-type-conversion/convertTemplateFieldToLocalConfigurator.js +90 -0
  68. package/dist/esm/lib/utils/template-type-conversion/generateJSONPatchTemplateOperations.js +179 -0
  69. package/dist/esm/lib/utils/template-type-conversion/mapFieldsWithUniqueKeys.js +14 -0
  70. package/dist/i18n/bn-IN.js +108 -0
  71. package/dist/i18n/bn-IN.properties +196 -0
  72. package/dist/i18n/da-DK.js +108 -0
  73. package/dist/i18n/da-DK.properties +196 -0
  74. package/dist/i18n/de-DE.js +108 -0
  75. package/dist/i18n/de-DE.properties +196 -0
  76. package/dist/i18n/en-AU.js +108 -0
  77. package/dist/i18n/en-AU.properties +196 -0
  78. package/dist/i18n/en-CA.js +108 -0
  79. package/dist/i18n/en-CA.properties +196 -0
  80. package/dist/i18n/en-GB.js +108 -0
  81. package/dist/i18n/en-GB.properties +196 -0
  82. package/dist/i18n/en-US.js +108 -0
  83. package/dist/i18n/en-US.properties +212 -0
  84. package/dist/i18n/en-x-pseudo.js +108 -0
  85. package/dist/i18n/en-x-pseudo.properties +196 -0
  86. package/dist/i18n/es-419.js +108 -0
  87. package/dist/i18n/es-419.properties +196 -0
  88. package/dist/i18n/es-ES.js +108 -0
  89. package/dist/i18n/es-ES.properties +196 -0
  90. package/dist/i18n/fi-FI.js +108 -0
  91. package/dist/i18n/fi-FI.properties +196 -0
  92. package/dist/i18n/fr-CA.js +108 -0
  93. package/dist/i18n/fr-CA.properties +196 -0
  94. package/dist/i18n/fr-FR.js +108 -0
  95. package/dist/i18n/fr-FR.properties +196 -0
  96. package/dist/i18n/hi-IN.js +108 -0
  97. package/dist/i18n/hi-IN.properties +196 -0
  98. package/dist/i18n/it-IT.js +108 -0
  99. package/dist/i18n/it-IT.properties +196 -0
  100. package/dist/i18n/ja-JP.js +108 -0
  101. package/dist/i18n/ja-JP.properties +196 -0
  102. package/dist/i18n/json/src/lib/components/field-selector/messages.json +1 -0
  103. package/dist/i18n/json/src/lib/components/field-type-dropdown/messages.json +1 -0
  104. package/dist/i18n/json/src/lib/components/field-type-tiles/messages.json +1 -0
  105. package/dist/i18n/json/src/lib/components/metadata-field-configurator/components/confirmation-modal/messages.json +1 -0
  106. package/dist/i18n/json/src/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-selector-messages.json +1 -0
  107. package/dist/i18n/json/src/lib/components/metadata-field-configurator/messages/configurator-messages.json +1 -0
  108. package/dist/i18n/json/src/lib/components/metadata-field-configurator/messages/dropdown-messages.json +1 -0
  109. package/dist/i18n/json/src/lib/components/metadata-field-configurator/messages/levels-chain-messages.json +1 -0
  110. package/dist/i18n/json/src/lib/components/metadata-field-configurator/messages/taxonomy-messages.json +1 -0
  111. package/dist/i18n/json/src/lib/messages.json +1 -0
  112. package/dist/i18n/json/src/lib/utils/field-options/messages.json +1 -0
  113. package/dist/i18n/ko-KR.js +108 -0
  114. package/dist/i18n/ko-KR.properties +196 -0
  115. package/dist/i18n/nb-NO.js +108 -0
  116. package/dist/i18n/nb-NO.properties +196 -0
  117. package/dist/i18n/nl-NL.js +108 -0
  118. package/dist/i18n/nl-NL.properties +196 -0
  119. package/dist/i18n/pl-PL.js +108 -0
  120. package/dist/i18n/pl-PL.properties +196 -0
  121. package/dist/i18n/pt-BR.js +108 -0
  122. package/dist/i18n/pt-BR.properties +196 -0
  123. package/dist/i18n/ru-RU.js +108 -0
  124. package/dist/i18n/ru-RU.properties +196 -0
  125. package/dist/i18n/sv-SE.js +108 -0
  126. package/dist/i18n/sv-SE.properties +196 -0
  127. package/dist/i18n/tr-TR.js +108 -0
  128. package/dist/i18n/tr-TR.properties +196 -0
  129. package/dist/i18n/zh-CN.js +108 -0
  130. package/dist/i18n/zh-CN.properties +196 -0
  131. package/dist/i18n/zh-TW.js +108 -0
  132. package/dist/i18n/zh-TW.properties +196 -0
  133. package/dist/styles/chip.css +1 -0
  134. package/dist/styles/dropdown-field-configuration.css +1 -0
  135. package/dist/styles/field-context-menu.css +1 -0
  136. package/dist/styles/field-selector.css +1 -0
  137. package/dist/styles/field-type-dropdown.css +1 -0
  138. package/dist/styles/levels-chain.css +1 -0
  139. package/dist/styles/metadata-field-configurator.css +1 -0
  140. package/dist/styles/metadata-field-list.css +1 -0
  141. package/dist/styles/metadata-template-editor-form.css +1 -0
  142. package/dist/styles/metadata-template-editor-modal.css +1 -0
  143. package/dist/styles/metadata-template-editor.css +1 -0
  144. package/dist/styles/sortable-option-list.css +1 -0
  145. package/dist/styles/taxonomy-field-configuration.css +1 -0
  146. package/dist/styles/taxonomy-field-configurator-initial-state.css +1 -0
  147. package/dist/styles/taxonomy-selector.css +1 -0
  148. package/dist/types/index.d.ts +8 -0
  149. package/dist/types/lib/components/field-selector/field-selector.d.ts +16 -0
  150. package/dist/types/lib/components/field-selector/index.d.ts +1 -0
  151. package/dist/types/lib/components/field-selector/messages.d.ts +13 -0
  152. package/dist/types/lib/components/field-type-dropdown/field-type-dropdown.d.ts +15 -0
  153. package/dist/types/lib/components/field-type-dropdown/index.d.ts +2 -0
  154. package/dist/types/lib/components/field-type-dropdown/messages.d.ts +12 -0
  155. package/dist/types/lib/components/field-type-tiles/field-type-tiles.d.ts +12 -0
  156. package/dist/types/lib/components/field-type-tiles/index.d.ts +2 -0
  157. package/dist/types/lib/components/field-type-tiles/messages.d.ts +12 -0
  158. package/dist/types/lib/components/metadata-field-configurator/components/confirmation-modal/confirmation-modal.d.ts +31 -0
  159. package/dist/types/lib/components/metadata-field-configurator/components/confirmation-modal/messages.d.ts +18 -0
  160. package/dist/types/lib/components/metadata-field-configurator/components/field-action-slot/field-action-slot.d.ts +30 -0
  161. package/dist/types/lib/components/metadata-field-configurator/components/field-context-menu/field-context-menu.d.ts +23 -0
  162. package/dist/types/lib/components/metadata-field-configurator/components/field-edit-content/field-edit-content.d.ts +20 -0
  163. package/dist/types/lib/components/metadata-field-configurator/components/levels-chain/chip.d.ts +17 -0
  164. package/dist/types/lib/components/metadata-field-configurator/components/levels-chain/index.d.ts +1 -0
  165. package/dist/types/lib/components/metadata-field-configurator/components/levels-chain/levels-chain.d.ts +31 -0
  166. package/dist/types/lib/components/metadata-field-configurator/components/levels-chain/utils.d.ts +10 -0
  167. package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/dropdown/__mocks__/getInitialValues.d.ts +2 -0
  168. package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/dropdown/dropdown-default-values.d.ts +2 -0
  169. package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/dropdown/dropdown-field-configuration.d.ts +1 -0
  170. package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/dropdown/sortable-option-list.d.ts +6 -0
  171. package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/index.d.ts +2 -0
  172. package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-default-values.d.ts +2 -0
  173. package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-field-configuration.d.ts +1 -0
  174. package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-field-configurator-initial-state.d.ts +1 -0
  175. package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-selector-messages.d.ts +43 -0
  176. package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-selector.d.ts +12 -0
  177. package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/useTaxonomySelect.d.ts +5 -0
  178. package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/utils.d.ts +2 -0
  179. package/dist/types/lib/components/metadata-field-configurator/context/field-configurator-context.d.ts +57 -0
  180. package/dist/types/lib/components/metadata-field-configurator/context/field-extensions-context.d.ts +52 -0
  181. package/dist/types/lib/components/metadata-field-configurator/context/taxonomy-options-context.d.ts +21 -0
  182. package/dist/types/lib/components/metadata-field-configurator/hooks/useFieldConfiguratorBehavior.d.ts +57 -0
  183. package/dist/types/lib/components/metadata-field-configurator/hooks/useFieldValidation.d.ts +27 -0
  184. package/dist/types/lib/components/metadata-field-configurator/hooks/useTaxonomyFetch.d.ts +19 -0
  185. package/dist/types/lib/components/metadata-field-configurator/hooks/useTemplateFieldSchema.d.ts +15 -0
  186. package/dist/types/lib/components/metadata-field-configurator/index.d.ts +6 -0
  187. package/dist/types/lib/components/metadata-field-configurator/messages/configurator-messages.d.ts +164 -0
  188. package/dist/types/lib/components/metadata-field-configurator/messages/dropdown-messages.d.ts +43 -0
  189. package/dist/types/lib/components/metadata-field-configurator/messages/levels-chain-messages.d.ts +18 -0
  190. package/dist/types/lib/components/metadata-field-configurator/messages/taxonomy-messages.d.ts +43 -0
  191. package/dist/types/lib/components/metadata-field-configurator/metadata-field-configurator.d.ts +191 -0
  192. package/dist/types/lib/components/metadata-field-configurator/stories/story-fixtures.d.ts +5 -0
  193. package/dist/types/lib/components/metadata-field-configurator/utils.d.ts +24 -0
  194. package/dist/types/lib/components/metadata-field-list/index.d.ts +2 -0
  195. package/dist/types/lib/components/metadata-field-list/metadata-field-list.d.ts +109 -0
  196. package/dist/types/lib/components/metadata-template-editor-form/metadata-template-editor-form.d.ts +20 -0
  197. package/dist/types/lib/components/metadata-template-editor-modal/index.d.ts +1 -0
  198. package/dist/types/lib/components/metadata-template-editor-modal/metadata-template-editor-modal.d.ts +56 -0
  199. package/dist/types/lib/hooks/useMetadataTemplateFormSchema.d.ts +17 -0
  200. package/dist/types/lib/hooks/useTemplateNameSchema.d.ts +2 -0
  201. package/dist/types/lib/index.d.ts +7 -0
  202. package/dist/types/lib/messages.d.ts +143 -0
  203. package/dist/types/lib/metadata-template-editor.d.ts +290 -0
  204. package/dist/types/lib/types.d.ts +311 -0
  205. package/dist/types/lib/utils/constants.d.ts +9 -0
  206. package/dist/types/lib/utils/field-options/field-type-icon.d.ts +6 -0
  207. package/dist/types/lib/utils/field-options/index.d.ts +4 -0
  208. package/dist/types/lib/utils/field-options/messages.d.ts +60 -0
  209. package/dist/types/lib/utils/field-options/useFieldOptions.d.ts +34 -0
  210. package/dist/types/lib/utils/key-generation.d.ts +24 -0
  211. package/dist/types/lib/utils/template-type-conversion/convertLocalConfiguratorToTemplateField.d.ts +25 -0
  212. package/dist/types/lib/utils/template-type-conversion/convertTemplateFieldToLocalConfigurator.d.ts +8 -0
  213. package/dist/types/lib/utils/template-type-conversion/generateJSONPatchTemplateOperations.d.ts +16 -0
  214. package/dist/types/lib/utils/template-type-conversion/mapFieldsWithUniqueKeys.d.ts +8 -0
  215. package/package.json +61 -0
@@ -0,0 +1,196 @@
1
+ # Label for the section that shows all taxonomies
2
+ groupSharedFeatures.metadataTemplateEditor.allTaxonomies = Tutte le tassonomie
3
+ # Label for the cancel button in the confirmation modal
4
+ groupSharedFeatures.metadataTemplateEditor.configurator.cancelDeleteField = Annulla
5
+ # Label for the confirm button in the confirmation modal
6
+ groupSharedFeatures.metadataTemplateEditor.configurator.confirmDeleteField = Conferma
7
+ # Aria label for the context menu of the field configurator
8
+ groupSharedFeatures.metadataTemplateEditor.configurator.contextMenuAriaLabel = Menu contestuale del configuratore di campi
9
+ # Label for the button to delete a field
10
+ groupSharedFeatures.metadataTemplateEditor.configurator.deleteField = Rimuovi
11
+ # Aria label for the button to delete a field
12
+ groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldAriaLabel = Elimina campo
13
+ # Description for the delete field confirmation modal
14
+ groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldDescription = Tutti i file o tutte le cartelle associati a questo campo ora avranno un valore non assegnato. Una volta salvato il modello, l’azione non può essere annullata.
15
+ # Title for the delete field confirmation modal
16
+ groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldTitle = Elimina il campo {fieldName}
17
+ # Description of the inline notice that explains the purpose of the description field.
18
+ groupSharedFeatures.metadataTemplateEditor.configurator.descriptionInfoTooltip = La descrizione è visibile a chiunque acceda al modello. Consente anche a Box AI di trovare e compilare automaticamente i metadati.
19
+ # Aria label for the info badge that provides more information about the description field.
20
+ groupSharedFeatures.metadataTemplateEditor.configurator.descriptionLearnMoreBadgeAriaLabel = Ulteriori informazioni sul campo descrizione
21
+ # Aria label for the button to drag and drop a field to reorder it
22
+ groupSharedFeatures.metadataTemplateEditor.configurator.dragAndDropFieldAriaLabel = Trascina e rilascia per riordinare il campo
23
+ # Placeholder text for the input to add a new dropdown option
24
+ groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.addAnOptionOptionPlaceholder = Aggiungi un’opzione
25
+ # Label for the button to add a new dropdown option
26
+ groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.addOption = + Aggiungi opzione
27
+ # Label for the checkbox to allow multiple selections in a dropdown
28
+ groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.allowMultipleSelection = Consenti selezioni multiple
29
+ # Label for the button to delete a dropdown option
30
+ groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteDropdownOptionAriaLabel = Elimina opzione
31
+ # Description for the delete option confirmation modal
32
+ groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteOptionDescription = Tutti i file o tutte le cartelle associati a questo elemento ora avranno un valore non assegnato. Una volta salvato il modello, l’azione non può essere annullata.
33
+ # Title for the delete option confirmation modal
34
+ groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteOptionTitle = Elimina l’opzione {optionName}
35
+ # Aria label for the button to drag and drop a dropdown option to reorder it
36
+ groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.dragAndDropOptionAriaLabel = Trascina e rilascia per riordinare l’opzione
37
+ # Generic error shown above the option list when any dropdown option has a validation error
38
+ groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.optionListValidationError = Alcune opzioni dell’elenco contengono errori di convalida.
39
+ # Aria label for the Edit tab button in the field configurator extension tab switcher
40
+ groupSharedFeatures.metadataTemplateEditor.configurator.editTabAriaLabel = Modifica campo
41
+ # Placeholder for a text input allowing the description of a field in templates.
42
+ groupSharedFeatures.metadataTemplateEditor.configurator.fieldDescriptionInputPlaceholder = Aggiungi testo di assistenza personalizzato che appare in una descrizione comandi per gli utenti
43
+ # Label for a text input allowing the description of a field name in templates.
44
+ groupSharedFeatures.metadataTemplateEditor.configurator.fieldDescriptionLabel = Descrizione del campo
45
+ # Placeholder for a text input allowing the specification of a field name in templates.
46
+ groupSharedFeatures.metadataTemplateEditor.configurator.fieldNameInputPlaceholder = Aggiungi un’etichetta/un nome del campo
47
+ # Label for a text input allowing the specification of a field name in templates.
48
+ groupSharedFeatures.metadataTemplateEditor.configurator.fieldNameLabel = Nome campo
49
+ # Label for a dropdown allowing the selection of a field type in templates.
50
+ groupSharedFeatures.metadataTemplateEditor.configurator.fieldTypeLabel = Tipo di campo
51
+ # Placeholder for a dropdown allowing the selection of a field type in templates.
52
+ groupSharedFeatures.metadataTemplateEditor.configurator.fieldTypePlaceholder = Seleziona tipo
53
+ # Label for the status badge indicating that a field is hidden
54
+ groupSharedFeatures.metadataTemplateEditor.configurator.hiddenStatus = Nascosto
55
+ # Text for the button to hide a field
56
+ groupSharedFeatures.metadataTemplateEditor.configurator.hideField = Nascondi campo
57
+ # Accessibility label indicating that a taxonomy level chip is not selected.
58
+ groupSharedFeatures.metadataTemplateEditor.configurator.levelsChain.chipNotSelected = non selezionato
59
+ # Accessibility label indicating that a taxonomy level chip is selected.
60
+ groupSharedFeatures.metadataTemplateEditor.configurator.levelsChain.chipSelected = selezionato
61
+ # Message displayed when there are no levels to display in the levels chain.
62
+ groupSharedFeatures.metadataTemplateEditor.configurator.levelsChain.noLevels = Non ci sono livelli da visualizzare.
63
+ # Label for the button to move a field down in the list
64
+ groupSharedFeatures.metadataTemplateEditor.configurator.moveDown = Sposta giù
65
+ # Aria label for the button to move a field down in the list
66
+ groupSharedFeatures.metadataTemplateEditor.configurator.moveDownAriaLabel = Sposta campo in basso
67
+ # Label for the button to move a field up in the list
68
+ groupSharedFeatures.metadataTemplateEditor.configurator.moveUp = Sposta su
69
+ # Aria label for the button to move a field up in the list
70
+ groupSharedFeatures.metadataTemplateEditor.configurator.moveUpAriaLabel = Sposta campo in alto
71
+ # Text for the button to show a field
72
+ groupSharedFeatures.metadataTemplateEditor.configurator.showField = Rendi visibile
73
+ # Label for the toggle that allows you to set the taxonomy field in the template as multiple selection.
74
+ groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.allowMultipleTaxonomySelections = Gli utenti possono scegliere più valori
75
+ # Call to action header
76
+ groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.callToActionHeader = Scegli o crea una tassonomia
77
+ # Call to action subheader
78
+ groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.callToActionSubheader = Le tassonomie ti consentono di impostare opzioni dinamiche e riutilizzabili per i menu a discesa.
79
+ # Error message shown when no taxonomy has been selected
80
+ groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.noTaxonomySelectedError = Seleziona una tassonomia
81
+ # Label in taxonomy template field defining the selection policy
82
+ groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection = Da quali livelli possono selezionare un valore gli utenti?
83
+ # Radio button label for any level selection
84
+ groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.anyLevelSelection = Gli utenti possono scegliere da qualsiasi livello dell’elenco
85
+ # Label for the dropdown to choose the taxonomy level
86
+ groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.chooseTaxonomyLevel = Scegli il livello della tassonomia
87
+ # Radio button label for required selection
88
+ groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.requiredSelection = Gli utenti devono scegliere dal seguente livello:
89
+ # Text for the cancel button in the confirmation modal
90
+ groupSharedFeatures.metadataTemplateEditor.confirmationModal.cancelButtonText = Annulla
91
+ # Aria label for the close button ("x") in the modal
92
+ groupSharedFeatures.metadataTemplateEditor.confirmationModal.closeButtonAriaLabel = Chiudi
93
+ # Text for the confirm button in the confirmation modal
94
+ groupSharedFeatures.metadataTemplateEditor.confirmationModal.confirmButtonText = Conferma
95
+ # Heading for the empty state when no fields exist yet
96
+ groupSharedFeatures.metadataTemplateEditor.emptyState.heading = Aggiungi il tuo primo campo
97
+ # Aria label for the field type picker tiles.
98
+ groupSharedFeatures.metadataTemplateEditor.emptyState.selectFieldTypeAriaLabel = Seleziona il tipo di campo.
99
+ # Field type description for date input
100
+ groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.date = Campo data con selezione del calendario
101
+ # Field type description for dropdown selection
102
+ groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.dropdown = Supporta selezioni singole e multiple
103
+ # Field type description for numerical input
104
+ groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.number = Supporta tutti i valori numerici
105
+ # Field type description for taxonomy selection
106
+ groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.taxonomy = Elenco gerarchico delle opzioni selezionabili
107
+ # Field type description for text input
108
+ groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.text = Input di testo libero fino a 10.000 caratteri
109
+ # Label for the add field dropdown trigger button
110
+ groupSharedFeatures.metadataTemplateEditor.fieldTypeDropdown.addField = Aggiungi campo
111
+ # Aria label for the add field button
112
+ groupSharedFeatures.metadataTemplateEditor.fieldTypeDropdown.addFieldAriaLabel = Aggiungi campo
113
+ # Field type for date input
114
+ groupSharedFeatures.metadataTemplateEditor.fieldTypes.date = Data
115
+ # Field type for dropdown selection
116
+ groupSharedFeatures.metadataTemplateEditor.fieldTypes.dropdown = Menu a discesa
117
+ # Field type for numerical input
118
+ groupSharedFeatures.metadataTemplateEditor.fieldTypes.number = Numero
119
+ # Field type for taxonomy selection
120
+ groupSharedFeatures.metadataTemplateEditor.fieldTypes.taxonomy = Tassonomia
121
+ # Field type for text input
122
+ groupSharedFeatures.metadataTemplateEditor.fieldTypes.text = Testo
123
+ # Error message for duplicate option labels
124
+ groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.duplicateOption = L’etichetta dell’opzione deve essere univoca.
125
+ # Error message displayed when a required field is not filled out in templates.
126
+ groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.fieldNameCannotBeEmpty = Il nome del campo non può essere vuoto.
127
+ # Error message for field name length
128
+ groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.fieldNameTooLong = Il nome del campo è troppo lungo.
129
+ # Error message for empty option labels
130
+ groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.optionKeyCannotBeEmpty = L’opzione non può essere vuota.
131
+ # Error message for missing selected level in taxonomy
132
+ groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.selectedLevelRequired = Seleziona un livello.
133
+ # Error message shown when the taxonomy fetch fails
134
+ groupSharedFeatures.metadataTemplateEditor.loadTaxonomiesError = Impossibile caricare le tassonomie.
135
+ # Accessible label shown while taxonomy options are being fetched
136
+ groupSharedFeatures.metadataTemplateEditor.loadingTaxonomies = Caricamento delle tassonomie in corso…
137
+ # Label for the section that shows recently used taxonomies
138
+ groupSharedFeatures.metadataTemplateEditor.recentlyUsedTaxonomies = Recenti
139
+ # Button label to retry a failed taxonomy fetch
140
+ groupSharedFeatures.metadataTemplateEditor.retryLoadTaxonomies = Riprova
141
+ # Placeholder text for the search input in the taxonomy selector
142
+ groupSharedFeatures.metadataTemplateEditor.searchTaxonomiesInputPlaceholder = Cerca tassonomie
143
+ # Text for the button that opens the taxonomy selector
144
+ groupSharedFeatures.metadataTemplateEditor.taxonomySelector = Scegli una tassonomia
145
+ # Aria label for the button that opens the taxonomy selector
146
+ groupSharedFeatures.metadataTemplateEditor.taxonomySelectorAriaLabel = Apri selettore di tassonomia
147
+ # Cancel button
148
+ groupSharedFeatures.metadataTemplateEditor.templateForm.cancel = Annulla
149
+ # Accessible label for the close (×) button on the metadata template editor modal
150
+ groupSharedFeatures.metadataTemplateEditor.templateForm.closeAriaLabel = Chiudi l’editor del modello di metadati
151
+ # Default title displayed in the metadata template editor header
152
+ groupSharedFeatures.metadataTemplateEditor.templateForm.createTitle = Nuovo modello di metadati
153
+ # Error message for display name already used before.
154
+ groupSharedFeatures.metadataTemplateEditor.templateForm.displayNameUsedBefore = Il nome visualizzato è già stato utilizzato in precedenza. Scegline un altro.
155
+ # Title displayed in the metadata template editor header for editing an existing template
156
+ groupSharedFeatures.metadataTemplateEditor.templateForm.editTitle = Modifica modello di metadati {templateName}
157
+ # Error message shown when the template data could not be fetched
158
+ groupSharedFeatures.metadataTemplateEditor.templateForm.fetchError = Si è verificato un errore. Ricarica per riprovare.
159
+ # Error message for field name too long
160
+ groupSharedFeatures.metadataTemplateEditor.templateForm.fieldNameTooLong = Il nome del campo è troppo lungo.
161
+ # Error message for required fields
162
+ groupSharedFeatures.metadataTemplateEditor.templateForm.fieldRequired = Campo obbligatorio
163
+ # Description for the fields section
164
+ groupSharedFeatures.metadataTemplateEditor.templateForm.fields.description = Aggiungi il primo campo al modello:
165
+ # Label for the fields section
166
+ groupSharedFeatures.metadataTemplateEditor.templateForm.fields.label = Campi
167
+ # Link to more information about metadata field types
168
+ groupSharedFeatures.metadataTemplateEditor.templateForm.fields.learnMore = Ulteriori informazioni sui tipi di campo per i metadati
169
+ # Error message for forbidden display name
170
+ groupSharedFeatures.metadataTemplateEditor.templateForm.forbiddenDisplayName = Il nome visualizzato è vietato. Scegline un altro.
171
+ # Error message for invalid characters
172
+ groupSharedFeatures.metadataTemplateEditor.templateForm.invalidCharacters = Il campo contiene caratteri non consentiti.
173
+ # Aria label for the loading indicator shown while template data is being fetched
174
+ groupSharedFeatures.metadataTemplateEditor.templateForm.loading = Caricamento del modello…
175
+ # Accessible label for the close button on save notifications
176
+ groupSharedFeatures.metadataTemplateEditor.templateForm.notificationCloseButtonAriaLabel = Chiudi notifica
177
+ # Accessible label for the error icon in the save notification
178
+ groupSharedFeatures.metadataTemplateEditor.templateForm.notificationErrorIconAriaLabel = Errore
179
+ # Accessible label for the success icon in the save notification
180
+ groupSharedFeatures.metadataTemplateEditor.templateForm.notificationSuccessIconAriaLabel = Eseguito correttamente
181
+ # Label for the reload button shown when template loading fails
182
+ groupSharedFeatures.metadataTemplateEditor.templateForm.reload = Ricarica
183
+ # Save button
184
+ groupSharedFeatures.metadataTemplateEditor.templateForm.save = Salva
185
+ # Error notification message shown when the template fails to save
186
+ groupSharedFeatures.metadataTemplateEditor.templateForm.saveErrorNotification = Impossibile salvare il modello. Riprova.
187
+ # Success notification message shown after the template is saved
188
+ groupSharedFeatures.metadataTemplateEditor.templateForm.saveSuccessNotification = Modello salvato correttamente.
189
+ # Aria Label for the save changes button in metadata template
190
+ groupSharedFeatures.metadataTemplateEditor.templateForm.submitting = Invio in corso…
191
+ # Description for the template name field
192
+ groupSharedFeatures.metadataTemplateEditor.templateForm.templateName.description = Nome del modello mostrato agli utenti
193
+ # Label for the template name field
194
+ groupSharedFeatures.metadataTemplateEditor.templateForm.templateName.label = Nome modello
195
+ # Message to show that the collapsed field configurator contains errors
196
+ groupSharedFeatures.metadataTemplateEditor.templates.details.fields.thisFieldContainsErrors = Questo campo contiene errori di convalida.
@@ -0,0 +1,108 @@
1
+ export default {
2
+ "groupSharedFeatures.metadataTemplateEditor.allTaxonomies": "すべてのメタデータ階層",
3
+ "groupSharedFeatures.metadataTemplateEditor.configurator.cancelDeleteField": "キャンセル",
4
+ "groupSharedFeatures.metadataTemplateEditor.configurator.confirmDeleteField": "確認",
5
+ "groupSharedFeatures.metadataTemplateEditor.configurator.contextMenuAriaLabel": "フィールドコンフィギュレータのコンテキストメニュー",
6
+ "groupSharedFeatures.metadataTemplateEditor.configurator.deleteField": "削除",
7
+ "groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldAriaLabel": "フィールドを削除",
8
+ "groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldDescription": "このフィールドに関連付けられているすべてのファイルまたはフォルダは、未割り当ての値を持つことになります。この操作は、テンプレートが保存されると元に戻すことはできません。",
9
+ "groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldTitle": "「{fieldName}」フィールドを削除",
10
+ "groupSharedFeatures.metadataTemplateEditor.configurator.descriptionInfoTooltip": "説明はテンプレートにアクセス可能なすべてのユーザーに表示されます。また、Box AIがメタデータを特定して自動入力する際にも役立ちます。",
11
+ "groupSharedFeatures.metadataTemplateEditor.configurator.descriptionLearnMoreBadgeAriaLabel": "説明フィールドの詳細を表示",
12
+ "groupSharedFeatures.metadataTemplateEditor.configurator.dragAndDropFieldAriaLabel": "ドラッグアンドドロップしてフィールドを並べ替え",
13
+ "groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.addAnOptionOptionPlaceholder": "オプションを追加",
14
+ "groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.addOption": "+ オプションを追加",
15
+ "groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.allowMultipleSelection": "複数選択を許可する",
16
+ "groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteDropdownOptionAriaLabel": "オプションを削除",
17
+ "groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteOptionDescription": "これに関連付けられているすべてのファイルまたはフォルダは、未割り当ての値を持つことになります。この操作は、テンプレートが保存されると元に戻すことはできません。",
18
+ "groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteOptionTitle": "「{optionName}」オプションを削除",
19
+ "groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.dragAndDropOptionAriaLabel": "ドラッグアンドドロップしてオプションを並べ替え",
20
+ "groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.optionListValidationError": "このリストにあるオプションの一部には検証エラーが含まれています。",
21
+ "groupSharedFeatures.metadataTemplateEditor.configurator.duplicateField": "Duplicate",
22
+ "groupSharedFeatures.metadataTemplateEditor.configurator.duplicateFieldAriaLabel": "Duplicate field",
23
+ "groupSharedFeatures.metadataTemplateEditor.configurator.editTabAriaLabel": "フィールドを編集",
24
+ "groupSharedFeatures.metadataTemplateEditor.configurator.fieldDescriptionInputPlaceholder": "ユーザーのツールチップに表示されるカスタムヘルプテキストを追加",
25
+ "groupSharedFeatures.metadataTemplateEditor.configurator.fieldDescriptionLabel": "フィールドの説明",
26
+ "groupSharedFeatures.metadataTemplateEditor.configurator.fieldNameInputPlaceholder": "フィールド名/ラベルを追加",
27
+ "groupSharedFeatures.metadataTemplateEditor.configurator.fieldNameLabel": "フィールド名",
28
+ "groupSharedFeatures.metadataTemplateEditor.configurator.fieldTypeLabel": "フィールドタイプ",
29
+ "groupSharedFeatures.metadataTemplateEditor.configurator.fieldTypePlaceholder": "種類を選択",
30
+ "groupSharedFeatures.metadataTemplateEditor.configurator.hiddenStatus": "非表示",
31
+ "groupSharedFeatures.metadataTemplateEditor.configurator.hideField": "フィールドを隠す",
32
+ "groupSharedFeatures.metadataTemplateEditor.configurator.levelsChain.chipNotSelected": "未選択",
33
+ "groupSharedFeatures.metadataTemplateEditor.configurator.levelsChain.chipSelected": "選択済み",
34
+ "groupSharedFeatures.metadataTemplateEditor.configurator.levelsChain.noLevels": "表示するレベルがありません。",
35
+ "groupSharedFeatures.metadataTemplateEditor.configurator.moveDown": "下へ移動",
36
+ "groupSharedFeatures.metadataTemplateEditor.configurator.moveDownAriaLabel": "フィールドを下へ移動",
37
+ "groupSharedFeatures.metadataTemplateEditor.configurator.moveUp": "上へ移動",
38
+ "groupSharedFeatures.metadataTemplateEditor.configurator.moveUpAriaLabel": "フィールドを上へ移動",
39
+ "groupSharedFeatures.metadataTemplateEditor.configurator.showField": "表示",
40
+ "groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.allowMultipleTaxonomySelections": "ユーザーは複数の値を選択可能",
41
+ "groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.callToActionHeader": "メタデータ階層を選択または作成",
42
+ "groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.callToActionSubheader": "メタデータ階層を使用すると、ドロップダウンフィールドに動的で再利用可能なオプションを設定できます。",
43
+ "groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.noTaxonomySelectedError": "メタデータ階層を選択してください",
44
+ "groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection": "ユーザーが値を選択できるレベル",
45
+ "groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.anyLevelSelection": "ユーザーはリスト内の任意のレベルから選択可能",
46
+ "groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.chooseTaxonomyLevel": "メタデータ階層レベルを選択",
47
+ "groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.requiredSelection": "ユーザーは次のレベルから選択可能:",
48
+ "groupSharedFeatures.metadataTemplateEditor.confirmationModal.cancelButtonText": "キャンセル",
49
+ "groupSharedFeatures.metadataTemplateEditor.confirmationModal.closeButtonAriaLabel": "閉じる",
50
+ "groupSharedFeatures.metadataTemplateEditor.confirmationModal.confirmButtonText": "確認",
51
+ "groupSharedFeatures.metadataTemplateEditor.emptyState.heading": "最初のフィールドを追加",
52
+ "groupSharedFeatures.metadataTemplateEditor.emptyState.selectFieldTypeAriaLabel": "フィールドタイプを選択します。",
53
+ "groupSharedFeatures.metadataTemplateEditor.fieldSelector.selectField": "Select a Field",
54
+ "groupSharedFeatures.metadataTemplateEditor.fieldSelector.unnamedField": "(Unnamed field)",
55
+ "groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.date": "カレンダー選択機能を含む日付フィールド",
56
+ "groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.dropdown": "単一と複数の選択をサポート",
57
+ "groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.number": "すべての数値をサポート",
58
+ "groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.taxonomy": "選択可能なオプションの階層リスト",
59
+ "groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.text": "最大10,000文字の自由形式のテキスト入力",
60
+ "groupSharedFeatures.metadataTemplateEditor.fieldTypeDropdown.addField": "フィールドを追加",
61
+ "groupSharedFeatures.metadataTemplateEditor.fieldTypeDropdown.addFieldAriaLabel": "フィールドを追加",
62
+ "groupSharedFeatures.metadataTemplateEditor.fieldTypes.date": "日付",
63
+ "groupSharedFeatures.metadataTemplateEditor.fieldTypes.dropdown": "ドロップダウン",
64
+ "groupSharedFeatures.metadataTemplateEditor.fieldTypes.number": "数字",
65
+ "groupSharedFeatures.metadataTemplateEditor.fieldTypes.taxonomy": "メタデータ階層",
66
+ "groupSharedFeatures.metadataTemplateEditor.fieldTypes.text": "テキスト",
67
+ "groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.duplicateOption": "オプションラベルは一意である必要があります。",
68
+ "groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.fieldNameCannotBeEmpty": "フィールド名を空にすることはできません。",
69
+ "groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.fieldNameTooLong": "フィールド名が長すぎます。",
70
+ "groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.optionKeyCannotBeEmpty": "オプションを空にすることはできません。",
71
+ "groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.selectedLevelRequired": "レベルを選択してください。",
72
+ "groupSharedFeatures.metadataTemplateEditor.loadTaxonomiesError": "メタデータ階層の読み込みに失敗しました。",
73
+ "groupSharedFeatures.metadataTemplateEditor.loadingTaxonomies": "メタデータ階層を読み込み中…",
74
+ "groupSharedFeatures.metadataTemplateEditor.recentlyUsedTaxonomies": "履歴",
75
+ "groupSharedFeatures.metadataTemplateEditor.retryLoadTaxonomies": "再試行",
76
+ "groupSharedFeatures.metadataTemplateEditor.searchTaxonomiesInputPlaceholder": "メタデータ階層を検索",
77
+ "groupSharedFeatures.metadataTemplateEditor.taxonomySelector": "メタデータ階層を選択",
78
+ "groupSharedFeatures.metadataTemplateEditor.taxonomySelectorAriaLabel": "メタデータ階層セレクタを開く",
79
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.cancel": "キャンセル",
80
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.closeAriaLabel": "メタデータテンプレートエディタを閉じる",
81
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.createTitle": "新しいメタデータテンプレート",
82
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.displayNameUsedBefore": "この表示名はすでに使用されています。別の表示名を選択してください。",
83
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.editTitle": "「{templateName}」メタデータテンプレートの編集",
84
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.fetchError": "問題が発生しました。再読み込みしてやり直してください。",
85
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.fieldNameTooLong": "フィールド名が長すぎます。",
86
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.fieldRequired": "このフィールドは必須です",
87
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.fields.description": "テンプレートに最初のフィールドを追加します:",
88
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.fields.label": "フィールド",
89
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.fields.learnMore": "メタデータフィールドタイプの詳細を表示",
90
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.forbiddenDisplayName": "この表示名は禁止されています。別の表示名を選択してください。",
91
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.invalidCharacters": "フィールドに無効な文字が含まれています。",
92
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.loading": "テンプレートを読み込み中…",
93
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.notificationCloseButtonAriaLabel": "通知を閉じる",
94
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.notificationErrorIconAriaLabel": "エラー",
95
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.notificationSuccessIconAriaLabel": "成功",
96
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.reload": "再読み込み",
97
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.save": "保存",
98
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.saveErrorNotification": "テンプレートを保存できませんでした。もう一度やり直してください。",
99
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.saveSuccessNotification": "テンプレートを保存しました。",
100
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.submitting": "送信中…",
101
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.templateName.description": "ユーザーに表示されるテンプレートの表示名",
102
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.templateName.label": "テンプレート名",
103
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.unsavedChangesBody": "You have unsaved changes. If you leave now, your changes will be lost.",
104
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.unsavedChangesDiscard": "Leave Without Saving",
105
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.unsavedChangesKeepEditing": "Keep Editing",
106
+ "groupSharedFeatures.metadataTemplateEditor.templateForm.unsavedChangesTitle": "Unsaved Changes",
107
+ "groupSharedFeatures.metadataTemplateEditor.templates.details.fields.thisFieldContainsErrors": "このフィールドには検証エラーが含まれています。"
108
+ }
@@ -0,0 +1,196 @@
1
+ # Label for the section that shows all taxonomies
2
+ groupSharedFeatures.metadataTemplateEditor.allTaxonomies = すべてのメタデータ階層
3
+ # Label for the cancel button in the confirmation modal
4
+ groupSharedFeatures.metadataTemplateEditor.configurator.cancelDeleteField = キャンセル
5
+ # Label for the confirm button in the confirmation modal
6
+ groupSharedFeatures.metadataTemplateEditor.configurator.confirmDeleteField = 確認
7
+ # Aria label for the context menu of the field configurator
8
+ groupSharedFeatures.metadataTemplateEditor.configurator.contextMenuAriaLabel = フィールドコンフィギュレータのコンテキストメニュー
9
+ # Label for the button to delete a field
10
+ groupSharedFeatures.metadataTemplateEditor.configurator.deleteField = 削除
11
+ # Aria label for the button to delete a field
12
+ groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldAriaLabel = フィールドを削除
13
+ # Description for the delete field confirmation modal
14
+ groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldDescription = このフィールドに関連付けられているすべてのファイルまたはフォルダは、未割り当ての値を持つことになります。この操作は、テンプレートが保存されると元に戻すことはできません。
15
+ # Title for the delete field confirmation modal
16
+ groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldTitle = 「{fieldName}」フィールドを削除
17
+ # Description of the inline notice that explains the purpose of the description field.
18
+ groupSharedFeatures.metadataTemplateEditor.configurator.descriptionInfoTooltip = 説明はテンプレートにアクセス可能なすべてのユーザーに表示されます。また、Box AIがメタデータを特定して自動入力する際にも役立ちます。
19
+ # Aria label for the info badge that provides more information about the description field.
20
+ groupSharedFeatures.metadataTemplateEditor.configurator.descriptionLearnMoreBadgeAriaLabel = 説明フィールドの詳細を表示
21
+ # Aria label for the button to drag and drop a field to reorder it
22
+ groupSharedFeatures.metadataTemplateEditor.configurator.dragAndDropFieldAriaLabel = ドラッグアンドドロップしてフィールドを並べ替え
23
+ # Placeholder text for the input to add a new dropdown option
24
+ groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.addAnOptionOptionPlaceholder = オプションを追加
25
+ # Label for the button to add a new dropdown option
26
+ groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.addOption = + オプションを追加
27
+ # Label for the checkbox to allow multiple selections in a dropdown
28
+ groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.allowMultipleSelection = 複数選択を許可する
29
+ # Label for the button to delete a dropdown option
30
+ groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteDropdownOptionAriaLabel = オプションを削除
31
+ # Description for the delete option confirmation modal
32
+ groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteOptionDescription = これに関連付けられているすべてのファイルまたはフォルダは、未割り当ての値を持つことになります。この操作は、テンプレートが保存されると元に戻すことはできません。
33
+ # Title for the delete option confirmation modal
34
+ groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteOptionTitle = 「{optionName}」オプションを削除
35
+ # Aria label for the button to drag and drop a dropdown option to reorder it
36
+ groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.dragAndDropOptionAriaLabel = ドラッグアンドドロップしてオプションを並べ替え
37
+ # Generic error shown above the option list when any dropdown option has a validation error
38
+ groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.optionListValidationError = このリストにあるオプションの一部には検証エラーが含まれています。
39
+ # Aria label for the Edit tab button in the field configurator extension tab switcher
40
+ groupSharedFeatures.metadataTemplateEditor.configurator.editTabAriaLabel = フィールドを編集
41
+ # Placeholder for a text input allowing the description of a field in templates.
42
+ groupSharedFeatures.metadataTemplateEditor.configurator.fieldDescriptionInputPlaceholder = ユーザーのツールチップに表示されるカスタムヘルプテキストを追加
43
+ # Label for a text input allowing the description of a field name in templates.
44
+ groupSharedFeatures.metadataTemplateEditor.configurator.fieldDescriptionLabel = フィールドの説明
45
+ # Placeholder for a text input allowing the specification of a field name in templates.
46
+ groupSharedFeatures.metadataTemplateEditor.configurator.fieldNameInputPlaceholder = フィールド名/ラベルを追加
47
+ # Label for a text input allowing the specification of a field name in templates.
48
+ groupSharedFeatures.metadataTemplateEditor.configurator.fieldNameLabel = フィールド名
49
+ # Label for a dropdown allowing the selection of a field type in templates.
50
+ groupSharedFeatures.metadataTemplateEditor.configurator.fieldTypeLabel = フィールドタイプ
51
+ # Placeholder for a dropdown allowing the selection of a field type in templates.
52
+ groupSharedFeatures.metadataTemplateEditor.configurator.fieldTypePlaceholder = 種類を選択
53
+ # Label for the status badge indicating that a field is hidden
54
+ groupSharedFeatures.metadataTemplateEditor.configurator.hiddenStatus = 非表示
55
+ # Text for the button to hide a field
56
+ groupSharedFeatures.metadataTemplateEditor.configurator.hideField = フィールドを隠す
57
+ # Accessibility label indicating that a taxonomy level chip is not selected.
58
+ groupSharedFeatures.metadataTemplateEditor.configurator.levelsChain.chipNotSelected = 未選択
59
+ # Accessibility label indicating that a taxonomy level chip is selected.
60
+ groupSharedFeatures.metadataTemplateEditor.configurator.levelsChain.chipSelected = 選択済み
61
+ # Message displayed when there are no levels to display in the levels chain.
62
+ groupSharedFeatures.metadataTemplateEditor.configurator.levelsChain.noLevels = 表示するレベルがありません。
63
+ # Label for the button to move a field down in the list
64
+ groupSharedFeatures.metadataTemplateEditor.configurator.moveDown = 下へ移動
65
+ # Aria label for the button to move a field down in the list
66
+ groupSharedFeatures.metadataTemplateEditor.configurator.moveDownAriaLabel = フィールドを下へ移動
67
+ # Label for the button to move a field up in the list
68
+ groupSharedFeatures.metadataTemplateEditor.configurator.moveUp = 上へ移動
69
+ # Aria label for the button to move a field up in the list
70
+ groupSharedFeatures.metadataTemplateEditor.configurator.moveUpAriaLabel = フィールドを上へ移動
71
+ # Text for the button to show a field
72
+ groupSharedFeatures.metadataTemplateEditor.configurator.showField = 表示
73
+ # Label for the toggle that allows you to set the taxonomy field in the template as multiple selection.
74
+ groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.allowMultipleTaxonomySelections = ユーザーは複数の値を選択可能
75
+ # Call to action header
76
+ groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.callToActionHeader = メタデータ階層を選択または作成
77
+ # Call to action subheader
78
+ groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.callToActionSubheader = メタデータ階層を使用すると、ドロップダウンフィールドに動的で再利用可能なオプションを設定できます。
79
+ # Error message shown when no taxonomy has been selected
80
+ groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.noTaxonomySelectedError = メタデータ階層を選択してください
81
+ # Label in taxonomy template field defining the selection policy
82
+ groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection = ユーザーが値を選択できるレベル
83
+ # Radio button label for any level selection
84
+ groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.anyLevelSelection = ユーザーはリスト内の任意のレベルから選択可能
85
+ # Label for the dropdown to choose the taxonomy level
86
+ groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.chooseTaxonomyLevel = メタデータ階層レベルを選択
87
+ # Radio button label for required selection
88
+ groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.requiredSelection = ユーザーは次のレベルから選択可能:
89
+ # Text for the cancel button in the confirmation modal
90
+ groupSharedFeatures.metadataTemplateEditor.confirmationModal.cancelButtonText = キャンセル
91
+ # Aria label for the close button ("x") in the modal
92
+ groupSharedFeatures.metadataTemplateEditor.confirmationModal.closeButtonAriaLabel = 閉じる
93
+ # Text for the confirm button in the confirmation modal
94
+ groupSharedFeatures.metadataTemplateEditor.confirmationModal.confirmButtonText = 確認
95
+ # Heading for the empty state when no fields exist yet
96
+ groupSharedFeatures.metadataTemplateEditor.emptyState.heading = 最初のフィールドを追加
97
+ # Aria label for the field type picker tiles.
98
+ groupSharedFeatures.metadataTemplateEditor.emptyState.selectFieldTypeAriaLabel = フィールドタイプを選択します。
99
+ # Field type description for date input
100
+ groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.date = カレンダー選択機能を含む日付フィールド
101
+ # Field type description for dropdown selection
102
+ groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.dropdown = 単一と複数の選択をサポート
103
+ # Field type description for numerical input
104
+ groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.number = すべての数値をサポート
105
+ # Field type description for taxonomy selection
106
+ groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.taxonomy = 選択可能なオプションの階層リスト
107
+ # Field type description for text input
108
+ groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.text = 最大10,000文字の自由形式のテキスト入力
109
+ # Label for the add field dropdown trigger button
110
+ groupSharedFeatures.metadataTemplateEditor.fieldTypeDropdown.addField = フィールドを追加
111
+ # Aria label for the add field button
112
+ groupSharedFeatures.metadataTemplateEditor.fieldTypeDropdown.addFieldAriaLabel = フィールドを追加
113
+ # Field type for date input
114
+ groupSharedFeatures.metadataTemplateEditor.fieldTypes.date = 日付
115
+ # Field type for dropdown selection
116
+ groupSharedFeatures.metadataTemplateEditor.fieldTypes.dropdown = ドロップダウン
117
+ # Field type for numerical input
118
+ groupSharedFeatures.metadataTemplateEditor.fieldTypes.number = 数字
119
+ # Field type for taxonomy selection
120
+ groupSharedFeatures.metadataTemplateEditor.fieldTypes.taxonomy = メタデータ階層
121
+ # Field type for text input
122
+ groupSharedFeatures.metadataTemplateEditor.fieldTypes.text = テキスト
123
+ # Error message for duplicate option labels
124
+ groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.duplicateOption = オプションラベルは一意である必要があります。
125
+ # Error message displayed when a required field is not filled out in templates.
126
+ groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.fieldNameCannotBeEmpty = フィールド名を空にすることはできません。
127
+ # Error message for field name length
128
+ groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.fieldNameTooLong = フィールド名が長すぎます。
129
+ # Error message for empty option labels
130
+ groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.optionKeyCannotBeEmpty = オプションを空にすることはできません。
131
+ # Error message for missing selected level in taxonomy
132
+ groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.selectedLevelRequired = レベルを選択してください。
133
+ # Error message shown when the taxonomy fetch fails
134
+ groupSharedFeatures.metadataTemplateEditor.loadTaxonomiesError = メタデータ階層の読み込みに失敗しました。
135
+ # Accessible label shown while taxonomy options are being fetched
136
+ groupSharedFeatures.metadataTemplateEditor.loadingTaxonomies = メタデータ階層を読み込み中…
137
+ # Label for the section that shows recently used taxonomies
138
+ groupSharedFeatures.metadataTemplateEditor.recentlyUsedTaxonomies = 履歴
139
+ # Button label to retry a failed taxonomy fetch
140
+ groupSharedFeatures.metadataTemplateEditor.retryLoadTaxonomies = 再試行
141
+ # Placeholder text for the search input in the taxonomy selector
142
+ groupSharedFeatures.metadataTemplateEditor.searchTaxonomiesInputPlaceholder = メタデータ階層を検索
143
+ # Text for the button that opens the taxonomy selector
144
+ groupSharedFeatures.metadataTemplateEditor.taxonomySelector = メタデータ階層を選択
145
+ # Aria label for the button that opens the taxonomy selector
146
+ groupSharedFeatures.metadataTemplateEditor.taxonomySelectorAriaLabel = メタデータ階層セレクタを開く
147
+ # Cancel button
148
+ groupSharedFeatures.metadataTemplateEditor.templateForm.cancel = キャンセル
149
+ # Accessible label for the close (×) button on the metadata template editor modal
150
+ groupSharedFeatures.metadataTemplateEditor.templateForm.closeAriaLabel = メタデータテンプレートエディタを閉じる
151
+ # Default title displayed in the metadata template editor header
152
+ groupSharedFeatures.metadataTemplateEditor.templateForm.createTitle = 新しいメタデータテンプレート
153
+ # Error message for display name already used before.
154
+ groupSharedFeatures.metadataTemplateEditor.templateForm.displayNameUsedBefore = この表示名はすでに使用されています。別の表示名を選択してください。
155
+ # Title displayed in the metadata template editor header for editing an existing template
156
+ groupSharedFeatures.metadataTemplateEditor.templateForm.editTitle = 「{templateName}」メタデータテンプレートの編集
157
+ # Error message shown when the template data could not be fetched
158
+ groupSharedFeatures.metadataTemplateEditor.templateForm.fetchError = 問題が発生しました。再読み込みしてやり直してください。
159
+ # Error message for field name too long
160
+ groupSharedFeatures.metadataTemplateEditor.templateForm.fieldNameTooLong = フィールド名が長すぎます。
161
+ # Error message for required fields
162
+ groupSharedFeatures.metadataTemplateEditor.templateForm.fieldRequired = このフィールドは必須です
163
+ # Description for the fields section
164
+ groupSharedFeatures.metadataTemplateEditor.templateForm.fields.description = テンプレートに最初のフィールドを追加します:
165
+ # Label for the fields section
166
+ groupSharedFeatures.metadataTemplateEditor.templateForm.fields.label = フィールド
167
+ # Link to more information about metadata field types
168
+ groupSharedFeatures.metadataTemplateEditor.templateForm.fields.learnMore = メタデータフィールドタイプの詳細を表示
169
+ # Error message for forbidden display name
170
+ groupSharedFeatures.metadataTemplateEditor.templateForm.forbiddenDisplayName = この表示名は禁止されています。別の表示名を選択してください。
171
+ # Error message for invalid characters
172
+ groupSharedFeatures.metadataTemplateEditor.templateForm.invalidCharacters = フィールドに無効な文字が含まれています。
173
+ # Aria label for the loading indicator shown while template data is being fetched
174
+ groupSharedFeatures.metadataTemplateEditor.templateForm.loading = テンプレートを読み込み中…
175
+ # Accessible label for the close button on save notifications
176
+ groupSharedFeatures.metadataTemplateEditor.templateForm.notificationCloseButtonAriaLabel = 通知を閉じる
177
+ # Accessible label for the error icon in the save notification
178
+ groupSharedFeatures.metadataTemplateEditor.templateForm.notificationErrorIconAriaLabel = エラー
179
+ # Accessible label for the success icon in the save notification
180
+ groupSharedFeatures.metadataTemplateEditor.templateForm.notificationSuccessIconAriaLabel = 成功
181
+ # Label for the reload button shown when template loading fails
182
+ groupSharedFeatures.metadataTemplateEditor.templateForm.reload = 再読み込み
183
+ # Save button
184
+ groupSharedFeatures.metadataTemplateEditor.templateForm.save = 保存
185
+ # Error notification message shown when the template fails to save
186
+ groupSharedFeatures.metadataTemplateEditor.templateForm.saveErrorNotification = テンプレートを保存できませんでした。もう一度やり直してください。
187
+ # Success notification message shown after the template is saved
188
+ groupSharedFeatures.metadataTemplateEditor.templateForm.saveSuccessNotification = テンプレートを保存しました。
189
+ # Aria Label for the save changes button in metadata template
190
+ groupSharedFeatures.metadataTemplateEditor.templateForm.submitting = 送信中…
191
+ # Description for the template name field
192
+ groupSharedFeatures.metadataTemplateEditor.templateForm.templateName.description = ユーザーに表示されるテンプレートの表示名
193
+ # Label for the template name field
194
+ groupSharedFeatures.metadataTemplateEditor.templateForm.templateName.label = テンプレート名
195
+ # Message to show that the collapsed field configurator contains errors
196
+ groupSharedFeatures.metadataTemplateEditor.templates.details.fields.thisFieldContainsErrors = このフィールドには検証エラーが含まれています。
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.metadataTemplateEditor.fieldSelector.selectField","description":"Label for the field selector dropdown button that scrolls to a specific field","defaultMessage":"Select a Field"},{"id":"groupSharedFeatures.metadataTemplateEditor.fieldSelector.unnamedField","description":"Placeholder label shown for fields that have no display name yet","defaultMessage":"(Unnamed field)"}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.metadataTemplateEditor.fieldTypeDropdown.addField","description":"Label for the add field dropdown trigger button","defaultMessage":"Add field"},{"id":"groupSharedFeatures.metadataTemplateEditor.fieldTypeDropdown.addFieldAriaLabel","description":"Aria label for the add field button","defaultMessage":"Add field"}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.metadataTemplateEditor.emptyState.heading","description":"Heading for the empty state when no fields exist yet","defaultMessage":"Add your first field"},{"id":"groupSharedFeatures.metadataTemplateEditor.emptyState.selectFieldTypeAriaLabel","description":"Aria label for the field type picker tiles.","defaultMessage":"Select the field type."}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.metadataTemplateEditor.confirmationModal.cancelButtonText","description":"Text for the cancel button in the confirmation modal","defaultMessage":"Cancel"},{"id":"groupSharedFeatures.metadataTemplateEditor.confirmationModal.closeButtonAriaLabel","description":"Aria label for the close button (\"x\") in the modal","defaultMessage":"Close"},{"id":"groupSharedFeatures.metadataTemplateEditor.confirmationModal.confirmButtonText","description":"Text for the confirm button in the confirmation modal","defaultMessage":"Confirm"}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.metadataTemplateEditor.taxonomySelectorAriaLabel","description":"Aria label for the button that opens the taxonomy selector","defaultMessage":"Open taxonomy selector"},{"id":"groupSharedFeatures.metadataTemplateEditor.taxonomySelector","description":"Text for the button that opens the taxonomy selector","defaultMessage":"Choose a Taxonomy"},{"id":"groupSharedFeatures.metadataTemplateEditor.recentlyUsedTaxonomies","description":"Label for the section that shows recently used taxonomies","defaultMessage":"Recents"},{"id":"groupSharedFeatures.metadataTemplateEditor.allTaxonomies","description":"Label for the section that shows all taxonomies","defaultMessage":"All taxonomies"},{"id":"groupSharedFeatures.metadataTemplateEditor.searchTaxonomiesInputPlaceholder","description":"Placeholder text for the search input in the taxonomy selector","defaultMessage":"Search taxonomies"},{"id":"groupSharedFeatures.metadataTemplateEditor.loadingTaxonomies","description":"Accessible label shown while taxonomy options are being fetched","defaultMessage":"Loading taxonomies…"},{"id":"groupSharedFeatures.metadataTemplateEditor.loadTaxonomiesError","description":"Error message shown when the taxonomy fetch fails","defaultMessage":"Failed to load taxonomies."},{"id":"groupSharedFeatures.metadataTemplateEditor.retryLoadTaxonomies","description":"Button label to retry a failed taxonomy fetch","defaultMessage":"Retry"}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.fieldTypeLabel","description":"Label for a dropdown allowing the selection of a field type in templates.","defaultMessage":"Field Type"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.fieldTypePlaceholder","description":"Placeholder for a dropdown allowing the selection of a field type in templates.","defaultMessage":"Select Type"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.fieldNameLabel","description":"Label for a text input allowing the specification of a field name in templates.","defaultMessage":"Field Name"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.fieldNameInputPlaceholder","description":"Placeholder for a text input allowing the specification of a field name in templates.","defaultMessage":"Add a field name/label"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.fieldDescriptionLabel","description":"Label for a text input allowing the description of a field in templates.","defaultMessage":"Field Description"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.fieldDescriptionInputPlaceholder","description":"Placeholder for a text input allowing the description of a field in templates.","defaultMessage":"Add custom help text that appears in a tooltip for users"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.descriptionInfoTooltip","description":"Description of the inline notice that explains the purpose of the description field.","defaultMessage":"The description is visible to anyone accessing the template. It also helps Box AI find and autofill Metadata for you."},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.descriptionLearnMoreBadgeAriaLabel","description":"Aria label for the info badge that provides more information about the description field.","defaultMessage":"Learn more about the description field"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.dragAndDropFieldAriaLabel","description":"Aria label for the button to drag and drop a field to reorder it","defaultMessage":"Drag and drop to reorder field"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.hideField","description":"Text for the button to hide a field","defaultMessage":"Hide Field"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.showField","description":"Text for the button to show a field","defaultMessage":"Make Visible"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.hiddenStatus","description":"Label for the status badge indicating that a field is hidden","defaultMessage":"Hidden"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldTitle","description":"Title for the delete field confirmation modal","defaultMessage":"Delete \"{fieldName}\" Field"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldDescription","description":"Description for the delete field confirmation modal","defaultMessage":"All files or folders associated with this field will now have an unassigned value. This action cannot be undone once the template is saved."},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.cancelDeleteField","description":"Label for the cancel button in the confirmation modal","defaultMessage":"Cancel"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.confirmDeleteField","description":"Label for the confirm button in the confirmation modal","defaultMessage":"Confirm"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.moveUp","description":"Label for the button to move a field up in the list","defaultMessage":"Move Up"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.moveUpAriaLabel","description":"Aria label for the button to move a field up in the list","defaultMessage":"Move field up"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.moveDown","description":"Label for the button to move a field down in the list","defaultMessage":"Move Down"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.moveDownAriaLabel","description":"Aria label for the button to move a field down in the list","defaultMessage":"Move field down"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.deleteField","description":"Label for the button to delete a field","defaultMessage":"Remove"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldAriaLabel","description":"Aria label for the button to delete a field","defaultMessage":"Delete field"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.contextMenuAriaLabel","description":"Aria label for the context menu of the field configurator","defaultMessage":"Field configurator context menu"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.editTabAriaLabel","description":"Aria label for the Edit tab button in the field configurator extension tab switcher","defaultMessage":"Edit field"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.duplicateField","description":"Label for the button to duplicate a field","defaultMessage":"Duplicate"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.duplicateFieldAriaLabel","description":"Aria label for the button to duplicate a field","defaultMessage":"Duplicate field"},{"id":"groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.fieldNameCannotBeEmpty","description":"Error message displayed when a required field is not filled out in templates.","defaultMessage":"Field name cannot be empty."},{"id":"groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.fieldNameTooLong","description":"Error message for field name length","defaultMessage":"The field name is too long."},{"id":"groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.duplicateOption","description":"Error message for duplicate option labels","defaultMessage":"The option label must be unique."},{"id":"groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.optionKeyCannotBeEmpty","description":"Error message for empty option labels","defaultMessage":"Option cannot be empty."},{"id":"groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.selectedLevelRequired","description":"Error message for missing selected level in taxonomy","defaultMessage":"Please select a level."},{"id":"groupSharedFeatures.metadataTemplateEditor.templates.details.fields.thisFieldContainsErrors","description":"Message to show that the collapsed field configurator contains errors","defaultMessage":"This field contains validation errors."}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.addOption","description":"Label for the button to add a new dropdown option","defaultMessage":"+ Add Option"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteDropdownOptionAriaLabel","description":"Label for the button to delete a dropdown option","defaultMessage":"Delete option"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.dragAndDropOptionAriaLabel","description":"Aria label for the button to drag and drop a dropdown option to reorder it","defaultMessage":"Drag and drop to reorder option"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.allowMultipleSelection","description":"Label for the checkbox to allow multiple selections in a dropdown","defaultMessage":"Allow Multiple Selections"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.addAnOptionOptionPlaceholder","description":"Placeholder text for the input to add a new dropdown option","defaultMessage":"Add an option"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteOptionTitle","description":"Title for the delete option confirmation modal","defaultMessage":"Delete \"{optionName}\" Option"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteOptionDescription","description":"Description for the delete option confirmation modal","defaultMessage":"All files or folders associated with this will now have an unassigned value. This action cannot be undone once the template is saved."},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.optionListValidationError","description":"Generic error shown above the option list when any dropdown option has a validation error","defaultMessage":"Some options in this list contain validation errors."}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.levelsChain.noLevels","description":"Message displayed when there are no levels to display in the levels chain.","defaultMessage":"There are no levels to display."},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.levelsChain.chipSelected","description":"Accessibility label indicating that a taxonomy level chip is selected.","defaultMessage":"selected"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.levelsChain.chipNotSelected","description":"Accessibility label indicating that a taxonomy level chip is not selected.","defaultMessage":"not selected"}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.callToActionHeader","description":"Call to action header","defaultMessage":"Choose or Create a Taxonomy"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.callToActionSubheader","description":"Call to action subheader","defaultMessage":"Taxonomies allow you to set dynamic, reusable options for dropdown fields."},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.allowMultipleTaxonomySelections","description":"Label for the toggle that allows you to set the taxonomy field in the template as multiple selection.","defaultMessage":"Users can pick multiple values"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection","description":"Label in taxonomy template field defining the selection policy","defaultMessage":"What level(s) can users select a value from?"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.requiredSelection","description":"Radio button label for required selection","defaultMessage":"Users must pick from the following level:"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.anyLevelSelection","description":"Radio button label for any level selection","defaultMessage":"Users can pick from any level in the list"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.chooseTaxonomyLevel","description":"Label for the dropdown to choose the taxonomy level","defaultMessage":"Choose the taxonomy level"},{"id":"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.noTaxonomySelectedError","description":"Error message shown when no taxonomy has been selected","defaultMessage":"Please select a taxonomy"}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.createTitle","description":"Default title displayed in the metadata template editor header","defaultMessage":"New Metadata Template"},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.editTitle","description":"Title displayed in the metadata template editor header for editing an existing template","defaultMessage":"Edit \"{templateName}\" Metadata Template"},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.templateName.label","description":"Label for the template name field","defaultMessage":"Template Name"},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.templateName.description","description":"Description for the template name field","defaultMessage":"Display name of the template shown to users"},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.cancel","description":"Cancel button","defaultMessage":"Cancel"},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.save","description":"Save button","defaultMessage":"Save"},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.fields.label","description":"Label for the fields section","defaultMessage":"Fields"},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.fields.description","description":"Description for the fields section","defaultMessage":"Add your first field to the Template:"},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.fields.learnMore","description":"Link to more information about metadata field types","defaultMessage":"Learn more about Metadata Field Types"},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.fieldRequired","description":"Error message for required fields","defaultMessage":"This field is required"},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.forbiddenDisplayName","description":"Error message for forbidden display name","defaultMessage":"This display name is forbidden. Please choose another one."},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.invalidCharacters","description":"Error message for invalid characters","defaultMessage":"The field contains illegal characters."},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.fieldNameTooLong","description":"Error message for field name too long","defaultMessage":"The field name is too long."},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.displayNameUsedBefore","description":"Error message for display name already used before.","defaultMessage":"This display name has already been used before. Please choose another one."},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.submitting","description":"Aria Label for the save changes button in metadata template","defaultMessage":"Submitting..."},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.closeAriaLabel","description":"Accessible label for the close (×) button on the metadata template editor modal","defaultMessage":"Close metadata template editor"},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.saveSuccessNotification","description":"Success notification message shown after the template is saved","defaultMessage":"Template saved successfully."},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.saveErrorNotification","description":"Error notification message shown when the template fails to save","defaultMessage":"Failed to save template. Please try again."},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.notificationSuccessIconAriaLabel","description":"Accessible label for the success icon in the save notification","defaultMessage":"Success"},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.notificationErrorIconAriaLabel","description":"Accessible label for the error icon in the save notification","defaultMessage":"Error"},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.notificationCloseButtonAriaLabel","description":"Accessible label for the close button on save notifications","defaultMessage":"Close notification"},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.loading","description":"Aria label for the loading indicator shown while template data is being fetched","defaultMessage":"Loading template…"},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.fetchError","description":"Error message shown when the template data could not be fetched","defaultMessage":"Something went wrong. Please reload to try again."},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.reload","description":"Label for the reload button shown when template loading fails","defaultMessage":"Reload"},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.unsavedChangesTitle","description":"Title for the unsaved changes confirmation modal","defaultMessage":"Unsaved Changes"},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.unsavedChangesBody","description":"Body text for the unsaved changes confirmation modal","defaultMessage":"You have unsaved changes. If you leave now, your changes will be lost."},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.unsavedChangesDiscard","description":"Confirm button label for the unsaved changes modal — discards changes and closes","defaultMessage":"Leave Without Saving"},{"id":"groupSharedFeatures.metadataTemplateEditor.templateForm.unsavedChangesKeepEditing","description":"Cancel button label for the unsaved changes modal — returns to the editor","defaultMessage":"Keep Editing"}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.metadataTemplateEditor.fieldTypes.text","description":"Field type for text input","defaultMessage":"Text"},{"id":"groupSharedFeatures.metadataTemplateEditor.fieldTypes.number","description":"Field type for numerical input","defaultMessage":"Number"},{"id":"groupSharedFeatures.metadataTemplateEditor.fieldTypes.date","description":"Field type for date input","defaultMessage":"Date"},{"id":"groupSharedFeatures.metadataTemplateEditor.fieldTypes.dropdown","description":"Field type for dropdown selection","defaultMessage":"Dropdown"},{"id":"groupSharedFeatures.metadataTemplateEditor.fieldTypes.taxonomy","description":"Field type for taxonomy selection","defaultMessage":"Taxonomy"},{"id":"groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.text","description":"Field type description for text input","defaultMessage":"Free text input up to 10,000 characters"},{"id":"groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.number","description":"Field type description for numerical input","defaultMessage":"Supports all numeric values"},{"id":"groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.date","description":"Field type description for date input","defaultMessage":"Date field with calendar picker"},{"id":"groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.dropdown","description":"Field type description for dropdown selection","defaultMessage":"Supports single and multiple selections"},{"id":"groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.taxonomy","description":"Field type description for taxonomy selection","defaultMessage":"Hierarchical list of selectable options"}]