@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.
- package/LICENSE +379 -0
- package/README.md +57 -0
- package/dist/chunks/metadata-field-configurator.module.js +17 -0
- package/dist/chunks/types.js +34 -0
- package/dist/esm/index.js +34 -0
- package/dist/esm/lib/components/field-selector/field-selector.js +39 -0
- package/dist/esm/lib/components/field-selector/index.js +4 -0
- package/dist/esm/lib/components/field-selector/messages.js +14 -0
- package/dist/esm/lib/components/field-type-dropdown/field-type-dropdown.js +47 -0
- package/dist/esm/lib/components/field-type-dropdown/index.js +4 -0
- package/dist/esm/lib/components/field-type-dropdown/messages.js +14 -0
- package/dist/esm/lib/components/field-type-tiles/field-type-tiles.js +40 -0
- package/dist/esm/lib/components/field-type-tiles/index.js +4 -0
- package/dist/esm/lib/components/field-type-tiles/messages.js +14 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/confirmation-modal/confirmation-modal.js +46 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/confirmation-modal/messages.js +18 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/field-action-slot/field-action-slot.js +80 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/field-context-menu/field-context-menu.js +115 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/field-edit-content/field-edit-content.js +101 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/levels-chain/chip.js +33 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/levels-chain/index.js +4 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/levels-chain/levels-chain.js +118 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/levels-chain/utils.js +34 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/dropdown/__mocks__/getInitialValues.js +33 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/dropdown/dropdown-default-values.js +15 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/dropdown/dropdown-field-configuration.js +66 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/dropdown/sortable-option-list.js +294 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/index.js +6 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-default-values.js +15 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-field-configuration.js +149 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-field-configurator-initial-state.js +54 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-selector-messages.js +38 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-selector.js +103 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/useTaxonomySelect.js +19 -0
- package/dist/esm/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/utils.js +4 -0
- package/dist/esm/lib/components/metadata-field-configurator/context/field-configurator-context.js +68 -0
- package/dist/esm/lib/components/metadata-field-configurator/context/field-extensions-context.js +9 -0
- package/dist/esm/lib/components/metadata-field-configurator/context/taxonomy-options-context.js +23 -0
- package/dist/esm/lib/components/metadata-field-configurator/hooks/useFieldConfiguratorBehavior.js +119 -0
- package/dist/esm/lib/components/metadata-field-configurator/hooks/useFieldValidation.js +68 -0
- package/dist/esm/lib/components/metadata-field-configurator/hooks/useTaxonomyFetch.js +27 -0
- package/dist/esm/lib/components/metadata-field-configurator/hooks/useTemplateFieldSchema.js +44 -0
- package/dist/esm/lib/components/metadata-field-configurator/index.js +11 -0
- package/dist/esm/lib/components/metadata-field-configurator/messages/configurator-messages.js +136 -0
- package/dist/esm/lib/components/metadata-field-configurator/messages/dropdown-messages.js +38 -0
- package/dist/esm/lib/components/metadata-field-configurator/messages/levels-chain-messages.js +18 -0
- package/dist/esm/lib/components/metadata-field-configurator/messages/taxonomy-messages.js +38 -0
- package/dist/esm/lib/components/metadata-field-configurator/metadata-field-configurator.js +154 -0
- package/dist/esm/lib/components/metadata-field-configurator/utils.js +53 -0
- package/dist/esm/lib/components/metadata-field-list/index.js +5 -0
- package/dist/esm/lib/components/metadata-field-list/metadata-field-list.js +279 -0
- package/dist/esm/lib/components/metadata-template-editor-form/metadata-template-editor-form.js +137 -0
- package/dist/esm/lib/components/metadata-template-editor-modal/index.js +4 -0
- package/dist/esm/lib/components/metadata-template-editor-modal/metadata-template-editor-modal.js +103 -0
- package/dist/esm/lib/hooks/useMetadataTemplateFormSchema.js +16 -0
- package/dist/esm/lib/hooks/useTemplateNameSchema.js +12 -0
- package/dist/esm/lib/index.js +14 -0
- package/dist/esm/lib/messages.js +118 -0
- package/dist/esm/lib/metadata-template-editor.js +179 -0
- package/dist/esm/lib/utils/constants.js +8 -0
- package/dist/esm/lib/utils/field-options/field-type-icon.js +34 -0
- package/dist/esm/lib/utils/field-options/index.js +9 -0
- package/dist/esm/lib/utils/field-options/messages.js +48 -0
- package/dist/esm/lib/utils/field-options/useFieldOptions.js +19 -0
- package/dist/esm/lib/utils/key-generation.js +29 -0
- package/dist/esm/lib/utils/template-type-conversion/convertLocalConfiguratorToTemplateField.js +78 -0
- package/dist/esm/lib/utils/template-type-conversion/convertTemplateFieldToLocalConfigurator.js +90 -0
- package/dist/esm/lib/utils/template-type-conversion/generateJSONPatchTemplateOperations.js +179 -0
- package/dist/esm/lib/utils/template-type-conversion/mapFieldsWithUniqueKeys.js +14 -0
- package/dist/i18n/bn-IN.js +108 -0
- package/dist/i18n/bn-IN.properties +196 -0
- package/dist/i18n/da-DK.js +108 -0
- package/dist/i18n/da-DK.properties +196 -0
- package/dist/i18n/de-DE.js +108 -0
- package/dist/i18n/de-DE.properties +196 -0
- package/dist/i18n/en-AU.js +108 -0
- package/dist/i18n/en-AU.properties +196 -0
- package/dist/i18n/en-CA.js +108 -0
- package/dist/i18n/en-CA.properties +196 -0
- package/dist/i18n/en-GB.js +108 -0
- package/dist/i18n/en-GB.properties +196 -0
- package/dist/i18n/en-US.js +108 -0
- package/dist/i18n/en-US.properties +212 -0
- package/dist/i18n/en-x-pseudo.js +108 -0
- package/dist/i18n/en-x-pseudo.properties +196 -0
- package/dist/i18n/es-419.js +108 -0
- package/dist/i18n/es-419.properties +196 -0
- package/dist/i18n/es-ES.js +108 -0
- package/dist/i18n/es-ES.properties +196 -0
- package/dist/i18n/fi-FI.js +108 -0
- package/dist/i18n/fi-FI.properties +196 -0
- package/dist/i18n/fr-CA.js +108 -0
- package/dist/i18n/fr-CA.properties +196 -0
- package/dist/i18n/fr-FR.js +108 -0
- package/dist/i18n/fr-FR.properties +196 -0
- package/dist/i18n/hi-IN.js +108 -0
- package/dist/i18n/hi-IN.properties +196 -0
- package/dist/i18n/it-IT.js +108 -0
- package/dist/i18n/it-IT.properties +196 -0
- package/dist/i18n/ja-JP.js +108 -0
- package/dist/i18n/ja-JP.properties +196 -0
- package/dist/i18n/json/src/lib/components/field-selector/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/field-type-dropdown/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/field-type-tiles/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/metadata-field-configurator/components/confirmation-modal/messages.json +1 -0
- package/dist/i18n/json/src/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-selector-messages.json +1 -0
- package/dist/i18n/json/src/lib/components/metadata-field-configurator/messages/configurator-messages.json +1 -0
- package/dist/i18n/json/src/lib/components/metadata-field-configurator/messages/dropdown-messages.json +1 -0
- package/dist/i18n/json/src/lib/components/metadata-field-configurator/messages/levels-chain-messages.json +1 -0
- package/dist/i18n/json/src/lib/components/metadata-field-configurator/messages/taxonomy-messages.json +1 -0
- package/dist/i18n/json/src/lib/messages.json +1 -0
- package/dist/i18n/json/src/lib/utils/field-options/messages.json +1 -0
- package/dist/i18n/ko-KR.js +108 -0
- package/dist/i18n/ko-KR.properties +196 -0
- package/dist/i18n/nb-NO.js +108 -0
- package/dist/i18n/nb-NO.properties +196 -0
- package/dist/i18n/nl-NL.js +108 -0
- package/dist/i18n/nl-NL.properties +196 -0
- package/dist/i18n/pl-PL.js +108 -0
- package/dist/i18n/pl-PL.properties +196 -0
- package/dist/i18n/pt-BR.js +108 -0
- package/dist/i18n/pt-BR.properties +196 -0
- package/dist/i18n/ru-RU.js +108 -0
- package/dist/i18n/ru-RU.properties +196 -0
- package/dist/i18n/sv-SE.js +108 -0
- package/dist/i18n/sv-SE.properties +196 -0
- package/dist/i18n/tr-TR.js +108 -0
- package/dist/i18n/tr-TR.properties +196 -0
- package/dist/i18n/zh-CN.js +108 -0
- package/dist/i18n/zh-CN.properties +196 -0
- package/dist/i18n/zh-TW.js +108 -0
- package/dist/i18n/zh-TW.properties +196 -0
- package/dist/styles/chip.css +1 -0
- package/dist/styles/dropdown-field-configuration.css +1 -0
- package/dist/styles/field-context-menu.css +1 -0
- package/dist/styles/field-selector.css +1 -0
- package/dist/styles/field-type-dropdown.css +1 -0
- package/dist/styles/levels-chain.css +1 -0
- package/dist/styles/metadata-field-configurator.css +1 -0
- package/dist/styles/metadata-field-list.css +1 -0
- package/dist/styles/metadata-template-editor-form.css +1 -0
- package/dist/styles/metadata-template-editor-modal.css +1 -0
- package/dist/styles/metadata-template-editor.css +1 -0
- package/dist/styles/sortable-option-list.css +1 -0
- package/dist/styles/taxonomy-field-configuration.css +1 -0
- package/dist/styles/taxonomy-field-configurator-initial-state.css +1 -0
- package/dist/styles/taxonomy-selector.css +1 -0
- package/dist/types/index.d.ts +8 -0
- package/dist/types/lib/components/field-selector/field-selector.d.ts +16 -0
- package/dist/types/lib/components/field-selector/index.d.ts +1 -0
- package/dist/types/lib/components/field-selector/messages.d.ts +13 -0
- package/dist/types/lib/components/field-type-dropdown/field-type-dropdown.d.ts +15 -0
- package/dist/types/lib/components/field-type-dropdown/index.d.ts +2 -0
- package/dist/types/lib/components/field-type-dropdown/messages.d.ts +12 -0
- package/dist/types/lib/components/field-type-tiles/field-type-tiles.d.ts +12 -0
- package/dist/types/lib/components/field-type-tiles/index.d.ts +2 -0
- package/dist/types/lib/components/field-type-tiles/messages.d.ts +12 -0
- package/dist/types/lib/components/metadata-field-configurator/components/confirmation-modal/confirmation-modal.d.ts +31 -0
- package/dist/types/lib/components/metadata-field-configurator/components/confirmation-modal/messages.d.ts +18 -0
- package/dist/types/lib/components/metadata-field-configurator/components/field-action-slot/field-action-slot.d.ts +30 -0
- package/dist/types/lib/components/metadata-field-configurator/components/field-context-menu/field-context-menu.d.ts +23 -0
- package/dist/types/lib/components/metadata-field-configurator/components/field-edit-content/field-edit-content.d.ts +20 -0
- package/dist/types/lib/components/metadata-field-configurator/components/levels-chain/chip.d.ts +17 -0
- package/dist/types/lib/components/metadata-field-configurator/components/levels-chain/index.d.ts +1 -0
- package/dist/types/lib/components/metadata-field-configurator/components/levels-chain/levels-chain.d.ts +31 -0
- package/dist/types/lib/components/metadata-field-configurator/components/levels-chain/utils.d.ts +10 -0
- package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/dropdown/__mocks__/getInitialValues.d.ts +2 -0
- package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/dropdown/dropdown-default-values.d.ts +2 -0
- package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/dropdown/dropdown-field-configuration.d.ts +1 -0
- package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/dropdown/sortable-option-list.d.ts +6 -0
- package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/index.d.ts +2 -0
- package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-default-values.d.ts +2 -0
- package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-field-configuration.d.ts +1 -0
- package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-field-configurator-initial-state.d.ts +1 -0
- package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-selector-messages.d.ts +43 -0
- package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/taxonomy-selector.d.ts +12 -0
- package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/useTaxonomySelect.d.ts +5 -0
- package/dist/types/lib/components/metadata-field-configurator/components/type-specific-configuration/taxonomy/utils.d.ts +2 -0
- package/dist/types/lib/components/metadata-field-configurator/context/field-configurator-context.d.ts +57 -0
- package/dist/types/lib/components/metadata-field-configurator/context/field-extensions-context.d.ts +52 -0
- package/dist/types/lib/components/metadata-field-configurator/context/taxonomy-options-context.d.ts +21 -0
- package/dist/types/lib/components/metadata-field-configurator/hooks/useFieldConfiguratorBehavior.d.ts +57 -0
- package/dist/types/lib/components/metadata-field-configurator/hooks/useFieldValidation.d.ts +27 -0
- package/dist/types/lib/components/metadata-field-configurator/hooks/useTaxonomyFetch.d.ts +19 -0
- package/dist/types/lib/components/metadata-field-configurator/hooks/useTemplateFieldSchema.d.ts +15 -0
- package/dist/types/lib/components/metadata-field-configurator/index.d.ts +6 -0
- package/dist/types/lib/components/metadata-field-configurator/messages/configurator-messages.d.ts +164 -0
- package/dist/types/lib/components/metadata-field-configurator/messages/dropdown-messages.d.ts +43 -0
- package/dist/types/lib/components/metadata-field-configurator/messages/levels-chain-messages.d.ts +18 -0
- package/dist/types/lib/components/metadata-field-configurator/messages/taxonomy-messages.d.ts +43 -0
- package/dist/types/lib/components/metadata-field-configurator/metadata-field-configurator.d.ts +191 -0
- package/dist/types/lib/components/metadata-field-configurator/stories/story-fixtures.d.ts +5 -0
- package/dist/types/lib/components/metadata-field-configurator/utils.d.ts +24 -0
- package/dist/types/lib/components/metadata-field-list/index.d.ts +2 -0
- package/dist/types/lib/components/metadata-field-list/metadata-field-list.d.ts +109 -0
- package/dist/types/lib/components/metadata-template-editor-form/metadata-template-editor-form.d.ts +20 -0
- package/dist/types/lib/components/metadata-template-editor-modal/index.d.ts +1 -0
- package/dist/types/lib/components/metadata-template-editor-modal/metadata-template-editor-modal.d.ts +56 -0
- package/dist/types/lib/hooks/useMetadataTemplateFormSchema.d.ts +17 -0
- package/dist/types/lib/hooks/useTemplateNameSchema.d.ts +2 -0
- package/dist/types/lib/index.d.ts +7 -0
- package/dist/types/lib/messages.d.ts +143 -0
- package/dist/types/lib/metadata-template-editor.d.ts +290 -0
- package/dist/types/lib/types.d.ts +311 -0
- package/dist/types/lib/utils/constants.d.ts +9 -0
- package/dist/types/lib/utils/field-options/field-type-icon.d.ts +6 -0
- package/dist/types/lib/utils/field-options/index.d.ts +4 -0
- package/dist/types/lib/utils/field-options/messages.d.ts +60 -0
- package/dist/types/lib/utils/field-options/useFieldOptions.d.ts +34 -0
- package/dist/types/lib/utils/key-generation.d.ts +24 -0
- package/dist/types/lib/utils/template-type-conversion/convertLocalConfiguratorToTemplateField.d.ts +25 -0
- package/dist/types/lib/utils/template-type-conversion/convertTemplateFieldToLocalConfigurator.d.ts +8 -0
- package/dist/types/lib/utils/template-type-conversion/generateJSONPatchTemplateOperations.d.ts +16 -0
- package/dist/types/lib/utils/template-type-conversion/mapFieldsWithUniqueKeys.d.ts +8 -0
- package/package.json +61 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.metadataTemplateEditor.allTaxonomies": "⟦萬萬萬萬 Ǻĺĺ ťǻхŏʼnõmіëş 國國國國⟧",
|
|
3
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.cancelDeleteField": "⟦萬 Ĉãлċέľ 國⟧",
|
|
4
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.confirmDeleteField": "⟦萬萬 Ćŏňƒìґm 國國⟧",
|
|
5
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.contextMenuAriaLabel": "⟦萬萬萬萬萬萬萬萬萬 ₣īеĺď çŏʼnƒιġüŕăţòя ĉøητě×ţ mėήμ 國國國國國國國國國⟧",
|
|
6
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.deleteField": "⟦萬 Ŗěmøνę 國⟧",
|
|
7
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldAriaLabel": "⟦萬萬萬 Ðêļετё ƒіεĺď 國國國⟧",
|
|
8
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldDescription": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Àľļ ƒĭľεś öг ƒοļďёґѕ áѕѕő¢įάŧêď ŵíťĥ ťĥίş ƒîеļď щîĺĺ ŋòŵ ħǻνέ αň úиäѕşīğńèď νąĺűέ. Ťнїş äĉťįοň çâņйøţ вё μηďοηě őлċē ťħĕ ŧėmΡĺāťε ιѕ şανėď. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
|
|
9
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldTitle": "⟦萬萬萬萬萬 Ðєĺėτë \"{fieldName}\" ₣įëĺď 國國國國國⟧",
|
|
10
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.descriptionInfoTooltip": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Τĥē ďéŝĉґīΡŧïóη ϊś νîŝϊьļë τő ąлўŏňę ąććêşѕїŋġ ťнê ťёmΡļǻťε. Ĭτ åĺşо ĥèļΡş Бох ÅĨ ƒĩиď ãňď ǻúŧōƒįľĺ Меťαďαţä ƒοґ ýóμ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
|
|
11
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.descriptionLearnMoreBadgeAriaLabel": "⟦萬萬萬萬萬萬萬萬萬萬萬 Ļěāřή mōгė άьôűţ ţĥę ďëѕсŗìΡŧїōи ƒîęĺď 國國國國國國國國國國國⟧",
|
|
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": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Áĺļ ƒíļєş øŗ ƒŏļďέŕѕ āşѕоċíāţêď ŵϊţħ ţнīś ẁîĺļ иôẃ ħανε åň μиǻşşĩĝήéď νăĺūė. Τĥīŝ ά¢ŧĭόň ¢ąлиõŧ вė µňďŏńë ōńćє τĥé ţĕmΡļάŧë ïѕ ŝąνέď. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
|
|
18
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteOptionTitle": "⟦萬萬萬萬萬萬 Ðеļĕŧè \"{optionName}\" ŐΡŧìòʼn 國國國國國國⟧",
|
|
19
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.dragAndDropOptionAriaLabel": "⟦萬萬萬萬萬萬萬萬萬 Ðřáġ àлď ďѓοΡ ŧó ŗĕőѓďĕѓ øΡτϊōʼn 國國國國國國國國國⟧",
|
|
20
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.optionListValidationError": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Śòmё öΡţìóňѕ ιņ ťнìş ļїśτ çöňŧàϊл νăľîďαţïõй ęŕяõřş. 國國國國國國國國國國國國國國國⟧",
|
|
21
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.duplicateField": "Duplicate",
|
|
22
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.duplicateFieldAriaLabel": "Duplicate field",
|
|
23
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.editTabAriaLabel": "⟦萬萬 Ĕďĩţ ƒιèľď 國國⟧",
|
|
24
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.fieldDescriptionInputPlaceholder": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Àďď ćùѕτσm ħêļΡ ťё×ŧ ŧнǻť áΡΡěãгŝ ϊʼn â ťоòľťĭΡ ƒöř ŭѕеѓş 國國國國國國國國國國國國國國國國⟧",
|
|
25
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.fieldDescriptionLabel": "⟦萬萬萬萬萬 ₣ϊеľď Ðèş¢ŕĭΡťіоή 國國國國國⟧",
|
|
26
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.fieldNameInputPlaceholder": "⟦萬萬萬萬萬萬 Ǻďď ǻ ƒîėļď ŋãmё/ľáьêļ 國國國國國國⟧",
|
|
27
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.fieldNameLabel": "⟦萬萬 ₣īěĺď Ņαmê 國國⟧",
|
|
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": "⟦萬萬萬 Μâķĕ Vїѕĩвļе 國國國⟧",
|
|
40
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.allowMultipleTaxonomySelections": "⟦萬萬萬萬萬萬萬萬 Ûşέгѕ ćàņ Ρіск mцĺτїΡļе ναĺμëş 國國國國國國國國⟧",
|
|
41
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.callToActionHeader": "⟦萬萬萬萬萬萬萬萬 Čнσôśĕ ŏř Ĉґёâťë ă Ťä×øлőmý 國國國國國國國國⟧",
|
|
42
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.callToActionSubheader": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ťãхöŋσmïêѕ âľĺōẁ ўøŭ ťø şετ ďýηâmįĉ, яεūŝáьļě ōΡŧìŏлş ƒóя ďŗοΡďôщп ƒĩёľďŝ. 國國國國國國國國國國國國國國國國國國國國國國⟧",
|
|
43
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.noTaxonomySelectedError": "⟦萬萬萬萬萬萬萬 Pĺєäŝë ŝεĺĕĉτ ä ţăхόňõmỳ 國國國國國國國⟧",
|
|
44
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Ẁħăτ ļёνęļ(ŝ) čáи űŝêяŝ ѕеļεçţ α νāĺцέ ƒŕоm? 國國國國國國國國國國國國國⟧",
|
|
45
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.anyLevelSelection": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ųśёřŝ сàй Ρїĉĸ ƒгοm åŋỳ ĺèνèĺ ĩл ŧнέ ĺîśŧ 國國國國國國國國國國國國⟧",
|
|
46
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.chooseTaxonomyLevel": "⟦萬萬萬萬萬萬萬 Ĉĥôôѕĕ ťĥė ţá×σηōmÿ ļěνęĺ 國國國國國國國⟧",
|
|
47
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.requiredSelection": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ůѕеґś mûŝť Ρíĉκ ƒŕоm ŧнĕ ƒõľľôẃîπğ ĺενėľ: 國國國國國國國國國國國國⟧",
|
|
48
|
+
"groupSharedFeatures.metadataTemplateEditor.confirmationModal.cancelButtonText": "⟦萬 Ċàňĉęľ 國⟧",
|
|
49
|
+
"groupSharedFeatures.metadataTemplateEditor.confirmationModal.closeButtonAriaLabel": "⟦萬 Ċľóśé 國⟧",
|
|
50
|
+
"groupSharedFeatures.metadataTemplateEditor.confirmationModal.confirmButtonText": "⟦萬萬 Çоήƒίŕm 國國⟧",
|
|
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": "⟦萬萬萬萬萬萬萬萬萬萬萬 ŞüΡΡõѓŧś śіňğľē åйď mŭľťιΡľέ ŝёľέçτіōпş 國國國國國國國國國國國⟧",
|
|
57
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.number": "⟦萬萬萬萬萬萬萬萬 ŞũΡΡöѓţŝ áľļ πũměřĩĉ νáļũėѕ 國國國國國國國國⟧",
|
|
58
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.taxonomy": "⟦萬萬萬萬萬萬萬萬萬萬萬 Ηιěгäѓćħīċǻļ ļîşť σƒ ŝέĺеčŧãьĺè öΡţìõпş 國國國國國國國國國國國⟧",
|
|
59
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.text": "⟦萬萬萬萬萬萬萬萬萬萬萬 ₣гëê ťêхŧ îʼnΡцŧ ũΡ ŧó 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": "⟦萬 Иμmьεґ 國⟧",
|
|
65
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldTypes.taxonomy": "⟦萬萬 Ŧăхóʼnömŷ 國國⟧",
|
|
66
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldTypes.text": "⟦萬 Ŧęхτ 國⟧",
|
|
67
|
+
"groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.duplicateOption": "⟦萬萬萬萬萬萬萬萬萬 Ŧħę øΡťĭõη ļåвεļ mµŝť ьє ûηιqůě. 國國國國國國國國國⟧",
|
|
68
|
+
"groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.fieldNameCannotBeEmpty": "⟦萬萬萬萬萬萬萬萬 ₣īēļď йámė ¢ăŋлõţ ьė ęmΡťγ. 國國國國國國國國⟧",
|
|
69
|
+
"groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.fieldNameTooLong": "⟦萬萬萬萬萬萬萬萬 Ťĥē ƒĭεľď ηàmė ιś τσō ļόйġ. 國國國國國國國國⟧",
|
|
70
|
+
"groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.optionKeyCannotBeEmpty": "⟦萬萬萬萬萬萬 ŎΡτĩõп ćâήπøţ вε ёmΡťУ. 國國國國國國⟧",
|
|
71
|
+
"groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.selectedLevelRequired": "⟦萬萬萬萬萬萬 Pĺėãѕе śεĺёćτ ă ļеνéļ. 國國國國國國⟧",
|
|
72
|
+
"groupSharedFeatures.metadataTemplateEditor.loadTaxonomiesError": "⟦萬萬萬萬萬萬萬 ₣ąįĺęď ťô ĺόãď ťàхôиσmĩεş. 國國國國國國國⟧",
|
|
73
|
+
"groupSharedFeatures.metadataTemplateEditor.loadingTaxonomies": "⟦萬萬萬萬萬 Ļòąďïʼnĝ ťą×оńômíёş… 國國國國國⟧",
|
|
74
|
+
"groupSharedFeatures.metadataTemplateEditor.recentlyUsedTaxonomies": "⟦萬萬 Γėċєиτѕ 國國⟧",
|
|
75
|
+
"groupSharedFeatures.metadataTemplateEditor.retryLoadTaxonomies": "⟦萬 Řêťяŷ 國⟧",
|
|
76
|
+
"groupSharedFeatures.metadataTemplateEditor.searchTaxonomiesInputPlaceholder": "⟦萬萬萬萬萬 Śеαгсн τäхόлòmîεѕ 國國國國國⟧",
|
|
77
|
+
"groupSharedFeatures.metadataTemplateEditor.taxonomySelector": "⟦萬萬萬萬萬 Ċĥоóşĕ å Τă×óпŏmγ 國國國國國⟧",
|
|
78
|
+
"groupSharedFeatures.metadataTemplateEditor.taxonomySelectorAriaLabel": "⟦萬萬萬萬萬萬 ÔΡéи τàхøňοmŷ ѕεĺêçŧόя 國國國國國國⟧",
|
|
79
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.cancel": "⟦萬 Čαйćëļ 國⟧",
|
|
80
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.closeAriaLabel": "⟦萬萬萬萬萬萬萬萬 Ċľòѕє mеťāďãţą ţēmΡĺãŧë èďĩŧŏг 國國國國國國國國⟧",
|
|
81
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.createTitle": "⟦萬萬萬萬萬萬 Ńēщ Мєţąďāţå ŢémΡľαţë 國國國國國國⟧",
|
|
82
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.displayNameUsedBefore": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Τніѕ ďįśΡĺãÿ ήąmě нăş äļřέǻďŷ ьééй ũśęď ьéƒøгě. Pĺєåѕė ĉħοôѕé âņŏŧĥėŗ öπę. 國國國國國國國國國國國國國國國國國國國國國國⟧",
|
|
83
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.editTitle": "⟦萬萬萬萬萬萬萬萬 Еďĩŧ \"{templateName}\" Мēţąďâτà ŤєmΡľåŧέ 國國國國國國國國⟧",
|
|
84
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.fetchError": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ѕοmĕτħіпġ ẁēʼnţ ωяôήġ. Pļęαśė ŗëĺőάď ŧо τѓỳ ăğǻїή. 國國國國國國國國國國國國國國⟧",
|
|
85
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.fieldNameTooLong": "⟦萬萬萬萬萬萬萬萬 Ťнé ƒîęĺď лαmε ĭѕ τŏó ľσήġ. 國國國國國國國國⟧",
|
|
86
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.fieldRequired": "⟦萬萬萬萬萬萬 Ţĥιŝ ƒϊéľď įś řėqµίŕеď 國國國國國國⟧",
|
|
87
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.fields.description": "⟦萬萬萬萬萬萬萬萬萬萬萬 Άďď ýóųŕ ƒįŕŝţ ƒîëľď τò ťнë ŢēmΡļαţė: 國國國國國國國國國國國⟧",
|
|
88
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.fields.label": "⟦萬 ₣ïĕĺďş 國⟧",
|
|
89
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.fields.learnMore": "⟦萬萬萬萬萬萬萬萬萬萬萬 Ľěåѓň mόřё ãвóŭť Мєτãďåţă ₣îêļď ŤУΡêś 國國國國國國國國國國國⟧",
|
|
90
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.forbiddenDisplayName": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ťħίş ďíѕΡļäў пämê ιѕ ƒøŕьĩďďěń. Pľėäŝе čħőőѕё ǻйøτнêѓ òňè. 國國國國國國國國國國國國國國國國國⟧",
|
|
91
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.invalidCharacters": "⟦萬萬萬萬萬萬萬萬萬萬萬 Τħĕ ƒϊέļď ¢òήţáίńŝ ιļľęġâĺ çħàяåçτëŗś. 國國國國國國國國國國國⟧",
|
|
92
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.loading": "⟦萬萬萬萬萬 Ļõάďїʼnĝ ťĕmΡļâτё… 國國國國國⟧",
|
|
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": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 ₣άïĺėď ŧо ŝäνē ŧєmΡļάţē. Pļёåśέ ţґỳ áğǻìň. 國國國國國國國國國國國國⟧",
|
|
99
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.saveSuccessNotification": "⟦萬萬萬萬萬萬萬萬 ŦέmΡľąťĕ ѕǻνėď śúćčëśşƒüĺľỳ. 國國國國國國國國⟧",
|
|
100
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.submitting": "⟦萬萬萬 Śůьmĩťţίʼnġ... 國國國⟧",
|
|
101
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.templateName.description": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 ĎīśΡľăў йåmë øƒ ŧнè ťεmΡļãţé ŝħόŵп ŧò μşєгş 國國國國國國國國國國國國⟧",
|
|
102
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.templateName.label": "⟦萬萬萬 ŦêmΡĺâťê Ńαmе 國國國⟧",
|
|
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": "⟦萬萬萬萬萬萬萬萬萬萬萬 Ťħїś ƒįėĺď çøʼnţáíлѕ νāĺĩďăťìōπ єŗřøгś. 國國國國國國國國國國國⟧"
|
|
108
|
+
}
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
# Label for the section that shows all taxonomies
|
|
2
|
+
groupSharedFeatures.metadataTemplateEditor.allTaxonomies = ⟦萬萬萬萬 Ǻĺĺ ťǻхŏʼnõmіëş 國國國國⟧
|
|
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 = ⟦萬萬 Ćŏňƒìґm 國國⟧
|
|
7
|
+
# Aria label for the context menu of the field configurator
|
|
8
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.contextMenuAriaLabel = ⟦萬萬萬萬萬萬萬萬萬 ₣īеĺď çŏʼnƒιġüŕăţòя ĉøητě×ţ mėήμ 國國國國國國國國國⟧
|
|
9
|
+
# Label for the button to delete a field
|
|
10
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.deleteField = ⟦萬 Ŗěmøνę 國⟧
|
|
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 = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Àľļ ƒĭľεś öг ƒοļďёґѕ áѕѕő¢įάŧêď ŵíťĥ ťĥίş ƒîеļď щîĺĺ ŋòŵ ħǻνέ αň úиäѕşīğńèď νąĺűέ. Ťнїş äĉťįοň çâņйøţ вё μηďοηě őлċē ťħĕ ŧėmΡĺāťε ιѕ şανėď. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
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 = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Τĥē ďéŝĉґīΡŧïóη ϊś νîŝϊьļë τő ąлўŏňę ąććêşѕїŋġ ťнê ťёmΡļǻťε. Ĭτ åĺşо ĥèļΡş Бох ÅĨ ƒĩиď ãňď ǻúŧōƒįľĺ Меťαďαţä ƒοґ ýóμ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
19
|
+
# Aria label for the info badge that provides more information about the description field.
|
|
20
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.descriptionLearnMoreBadgeAriaLabel = ⟦萬萬萬萬萬萬萬萬萬萬萬 Ļěāřή mōгė άьôűţ ţĥę ďëѕсŗìΡŧїōи ƒîęĺď 國國國國國國國國國國國⟧
|
|
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 = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Áĺļ ƒíļєş øŗ ƒŏļďέŕѕ āşѕоċíāţêď ŵϊţħ ţнīś ẁîĺļ иôẃ ħανε åň μиǻşşĩĝήéď νăĺūė. Τĥīŝ ά¢ŧĭόň ¢ąлиõŧ вė µňďŏńë ōńćє τĥé ţĕmΡļάŧë ïѕ ŝąνέď. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
33
|
+
# Title for the delete option confirmation modal
|
|
34
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteOptionTitle = ⟦萬萬萬萬萬萬 Ðеļĕŧè "{optionName}" ŐΡŧìòʼn 國國國國國國⟧
|
|
35
|
+
# Aria label for the button to drag and drop a dropdown option to reorder it
|
|
36
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.dragAndDropOptionAriaLabel = ⟦萬萬萬萬萬萬萬萬萬 Ðřáġ àлď ďѓοΡ ŧó ŗĕőѓďĕѓ øΡτϊōʼn 國國國國國國國國國⟧
|
|
37
|
+
# Generic error shown above the option list when any dropdown option has a validation error
|
|
38
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.optionListValidationError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Śòmё öΡţìóňѕ ιņ ťнìş ļїśτ çöňŧàϊл νăľîďαţïõй ęŕяõřş. 國國國國國國國國國國國國國國國⟧
|
|
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 = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Àďď ćùѕτσm ħêļΡ ťё×ŧ ŧнǻť áΡΡěãгŝ ϊʼn â ťоòľťĭΡ ƒöř ŭѕеѓş 國國國國國國國國國國國國國國國國⟧
|
|
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 = ⟦萬萬萬萬萬萬 Ǻďď ǻ ƒîėļď ŋãmё/ľáьêļ 國國國國國國⟧
|
|
47
|
+
# Label for a text input allowing the specification of a field name in templates.
|
|
48
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.fieldNameLabel = ⟦萬萬 ₣īěĺď Ņαmê 國國⟧
|
|
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 = ⟦萬萬萬 Μâķĕ Vїѕĩвļе 國國國⟧
|
|
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 = ⟦萬萬萬萬萬萬萬萬 Ûşέгѕ ćàņ Ρіск mцĺτїΡļе ναĺμëş 國國國國國國國國⟧
|
|
75
|
+
# Call to action header
|
|
76
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.callToActionHeader = ⟦萬萬萬萬萬萬萬萬 Čнσôśĕ ŏř Ĉґёâťë ă Ťä×øлőmý 國國國國國國國國⟧
|
|
77
|
+
# Call to action subheader
|
|
78
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.callToActionSubheader = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ťãхöŋσmïêѕ âľĺōẁ ўøŭ ťø şετ ďýηâmįĉ, яεūŝáьļě ōΡŧìŏлş ƒóя ďŗοΡďôщп ƒĩёľďŝ. 國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
79
|
+
# Error message shown when no taxonomy has been selected
|
|
80
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.noTaxonomySelectedError = ⟦萬萬萬萬萬萬萬 Pĺєäŝë ŝεĺĕĉτ ä ţăхόňõmỳ 國國國國國國國⟧
|
|
81
|
+
# Label in taxonomy template field defining the selection policy
|
|
82
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 Ẁħăτ ļёνęļ(ŝ) čáи űŝêяŝ ѕеļεçţ α νāĺцέ ƒŕоm? 國國國國國國國國國國國國國⟧
|
|
83
|
+
# Radio button label for any level selection
|
|
84
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.anyLevelSelection = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ųśёřŝ сàй Ρїĉĸ ƒгοm åŋỳ ĺèνèĺ ĩл ŧнέ ĺîśŧ 國國國國國國國國國國國國⟧
|
|
85
|
+
# Label for the dropdown to choose the taxonomy level
|
|
86
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.chooseTaxonomyLevel = ⟦萬萬萬萬萬萬萬 Ĉĥôôѕĕ ťĥė ţá×σηōmÿ ļěνęĺ 國國國國國國國⟧
|
|
87
|
+
# Radio button label for required selection
|
|
88
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.requiredSelection = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ůѕеґś mûŝť Ρíĉκ ƒŕоm ŧнĕ ƒõľľôẃîπğ ĺενėľ: 國國國國國國國國國國國國⟧
|
|
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 = ⟦萬萬 Çоήƒίŕm 國國⟧
|
|
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 = ⟦萬萬萬萬萬萬萬萬萬萬萬 ŞüΡΡõѓŧś śіňğľē åйď mŭľťιΡľέ ŝёľέçτіōпş 國國國國國國國國國國國⟧
|
|
103
|
+
# Field type description for numerical input
|
|
104
|
+
groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.number = ⟦萬萬萬萬萬萬萬萬 ŞũΡΡöѓţŝ áľļ πũměřĩĉ νáļũėѕ 國國國國國國國國⟧
|
|
105
|
+
# Field type description for taxonomy selection
|
|
106
|
+
groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.taxonomy = ⟦萬萬萬萬萬萬萬萬萬萬萬 Ηιěгäѓćħīċǻļ ļîşť σƒ ŝέĺеčŧãьĺè öΡţìõпş 國國國國國國國國國國國⟧
|
|
107
|
+
# Field type description for text input
|
|
108
|
+
groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.text = ⟦萬萬萬萬萬萬萬萬萬萬萬 ₣гëê ťêхŧ îʼnΡцŧ ũΡ ŧó 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 = ⟦萬 Иμmьεґ 國⟧
|
|
119
|
+
# Field type for taxonomy selection
|
|
120
|
+
groupSharedFeatures.metadataTemplateEditor.fieldTypes.taxonomy = ⟦萬萬 Ŧăхóʼnömŷ 國國⟧
|
|
121
|
+
# Field type for text input
|
|
122
|
+
groupSharedFeatures.metadataTemplateEditor.fieldTypes.text = ⟦萬 Ŧęхτ 國⟧
|
|
123
|
+
# Error message for duplicate option labels
|
|
124
|
+
groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.duplicateOption = ⟦萬萬萬萬萬萬萬萬萬 Ŧħę øΡťĭõη ļåвεļ mµŝť ьє ûηιqůě. 國國國國國國國國國⟧
|
|
125
|
+
# Error message displayed when a required field is not filled out in templates.
|
|
126
|
+
groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.fieldNameCannotBeEmpty = ⟦萬萬萬萬萬萬萬萬 ₣īēļď йámė ¢ăŋлõţ ьė ęmΡťγ. 國國國國國國國國⟧
|
|
127
|
+
# Error message for field name length
|
|
128
|
+
groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.fieldNameTooLong = ⟦萬萬萬萬萬萬萬萬 Ťĥē ƒĭεľď ηàmė ιś τσō ļόйġ. 國國國國國國國國⟧
|
|
129
|
+
# Error message for empty option labels
|
|
130
|
+
groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.optionKeyCannotBeEmpty = ⟦萬萬萬萬萬萬 ŎΡτĩõп ćâήπøţ вε ёmΡťУ. 國國國國國國⟧
|
|
131
|
+
# Error message for missing selected level in taxonomy
|
|
132
|
+
groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.selectedLevelRequired = ⟦萬萬萬萬萬萬 Pĺėãѕе śεĺёćτ ă ļеνéļ. 國國國國國國⟧
|
|
133
|
+
# Error message shown when the taxonomy fetch fails
|
|
134
|
+
groupSharedFeatures.metadataTemplateEditor.loadTaxonomiesError = ⟦萬萬萬萬萬萬萬 ₣ąįĺęď ťô ĺόãď ťàхôиσmĩεş. 國國國國國國國⟧
|
|
135
|
+
# Accessible label shown while taxonomy options are being fetched
|
|
136
|
+
groupSharedFeatures.metadataTemplateEditor.loadingTaxonomies = ⟦萬萬萬萬萬 Ļòąďïʼnĝ ťą×оńômíёş… 國國國國國⟧
|
|
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 = ⟦萬萬萬萬萬 Śеαгсн τäхόлòmîεѕ 國國國國國⟧
|
|
143
|
+
# Text for the button that opens the taxonomy selector
|
|
144
|
+
groupSharedFeatures.metadataTemplateEditor.taxonomySelector = ⟦萬萬萬萬萬 Ċĥоóşĕ å Τă×óпŏmγ 國國國國國⟧
|
|
145
|
+
# Aria label for the button that opens the taxonomy selector
|
|
146
|
+
groupSharedFeatures.metadataTemplateEditor.taxonomySelectorAriaLabel = ⟦萬萬萬萬萬萬 ÔΡéи τàхøňοmŷ ѕεĺêçŧόя 國國國國國國⟧
|
|
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 = ⟦萬萬萬萬萬萬萬萬 Ċľòѕє mеťāďãţą ţēmΡĺãŧë èďĩŧŏг 國國國國國國國國⟧
|
|
151
|
+
# Default title displayed in the metadata template editor header
|
|
152
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.createTitle = ⟦萬萬萬萬萬萬 Ńēщ Мєţąďāţå ŢémΡľαţë 國國國國國國⟧
|
|
153
|
+
# Error message for display name already used before.
|
|
154
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.displayNameUsedBefore = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Τніѕ ďįśΡĺãÿ ήąmě нăş äļřέǻďŷ ьééй ũśęď ьéƒøгě. Pĺєåѕė ĉħοôѕé âņŏŧĥėŗ öπę. 國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
155
|
+
# Title displayed in the metadata template editor header for editing an existing template
|
|
156
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.editTitle = ⟦萬萬萬萬萬萬萬萬 Еďĩŧ "{templateName}" Мēţąďâτà ŤєmΡľåŧέ 國國國國國國國國⟧
|
|
157
|
+
# Error message shown when the template data could not be fetched
|
|
158
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.fetchError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ѕοmĕτħіпġ ẁēʼnţ ωяôήġ. Pļęαśė ŗëĺőάď ŧо τѓỳ ăğǻїή. 國國國國國國國國國國國國國國⟧
|
|
159
|
+
# Error message for field name too long
|
|
160
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.fieldNameTooLong = ⟦萬萬萬萬萬萬萬萬 Ťнé ƒîęĺď лαmε ĭѕ τŏó ľσήġ. 國國國國國國國國⟧
|
|
161
|
+
# Error message for required fields
|
|
162
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.fieldRequired = ⟦萬萬萬萬萬萬 Ţĥιŝ ƒϊéľď įś řėqµίŕеď 國國國國國國⟧
|
|
163
|
+
# Description for the fields section
|
|
164
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.fields.description = ⟦萬萬萬萬萬萬萬萬萬萬萬 Άďď ýóųŕ ƒįŕŝţ ƒîëľď τò ťнë ŢēmΡļαţė: 國國國國國國國國國國國⟧
|
|
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 = ⟦萬萬萬萬萬萬萬萬萬萬萬 Ľěåѓň mόřё ãвóŭť Мєτãďåţă ₣îêļď ŤУΡêś 國國國國國國國國國國國⟧
|
|
169
|
+
# Error message for forbidden display name
|
|
170
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.forbiddenDisplayName = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ťħίş ďíѕΡļäў пämê ιѕ ƒøŕьĩďďěń. Pľėäŝе čħőőѕё ǻйøτнêѓ òňè. 國國國國國國國國國國國國國國國國國⟧
|
|
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 = ⟦萬萬萬萬萬 Ļõάďїʼnĝ ťĕmΡļâτё… 國國國國國⟧
|
|
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 = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 ₣άïĺėď ŧо ŝäνē ŧєmΡļάţē. Pļёåśέ ţґỳ áğǻìň. 國國國國國國國國國國國國⟧
|
|
187
|
+
# Success notification message shown after the template is saved
|
|
188
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.saveSuccessNotification = ⟦萬萬萬萬萬萬萬萬 ŦέmΡľąťĕ ѕǻνėď śúćčëśşƒüĺľỳ. 國國國國國國國國⟧
|
|
189
|
+
# Aria Label for the save changes button in metadata template
|
|
190
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.submitting = ⟦萬萬萬 Śůьmĩťţίʼnġ... 國國國⟧
|
|
191
|
+
# Description for the template name field
|
|
192
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.templateName.description = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 ĎīśΡľăў йåmë øƒ ŧнè ťεmΡļãţé ŝħόŵп ŧò μşєгş 國國國國國國國國國國國國⟧
|
|
193
|
+
# Label for the template name field
|
|
194
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.templateName.label = ⟦萬萬萬 ŦêmΡĺâťê Ńαmе 國國國⟧
|
|
195
|
+
# Message to show that the collapsed field configurator contains errors
|
|
196
|
+
groupSharedFeatures.metadataTemplateEditor.templates.details.fields.thisFieldContainsErrors = ⟦萬萬萬萬萬萬萬萬萬萬萬 Ťħїś ƒįėĺď çøʼnţáíлѕ νāĺĩďăťìōπ єŗřøгś. 國國國國國國國國國國國⟧
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.metadataTemplateEditor.allTaxonomies": "Todas las taxonomías",
|
|
3
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.cancelDeleteField": "CANCELAR",
|
|
4
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.confirmDeleteField": "Confirmar",
|
|
5
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.contextMenuAriaLabel": "Menú de contexto del configurador de campo",
|
|
6
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.deleteField": "Eliminar",
|
|
7
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldAriaLabel": "Eliminar campo",
|
|
8
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldDescription": "Todos los archivos o carpetas asociados con este campo ahora tendrán un valor no asignado. Esta acción no se puede deshacer una vez que se guarda la plantilla.",
|
|
9
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldTitle": "Eliminar campo \"{fieldName}\"",
|
|
10
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.descriptionInfoTooltip": "La descripción puede verla cualquier persona que acceda a la plantilla. De esta forma, Box AI puede encontrar y rellenar automáticamente los metadatos por usted.",
|
|
11
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.descriptionLearnMoreBadgeAriaLabel": "Más información sobre el campo de descripción",
|
|
12
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.dragAndDropFieldAriaLabel": "Arrastrar y soltar para reordenar el campo",
|
|
13
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.addAnOptionOptionPlaceholder": "Añadir una opción",
|
|
14
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.addOption": "+ Agregar opción",
|
|
15
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.allowMultipleSelection": "Permitir selecciones múltiples",
|
|
16
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteDropdownOptionAriaLabel": "Eliminar opción",
|
|
17
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteOptionDescription": "Todos los archivos o carpetas asociados con esto ahora tendrán un valor no asignado. Esta acción no se puede deshacer una vez que se guarda la plantilla.",
|
|
18
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteOptionTitle": "Eliminar opción \"{optionName}\"",
|
|
19
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.dragAndDropOptionAriaLabel": "Arrastrar y soltar para reordenar opción",
|
|
20
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.optionListValidationError": "Algunas opciones de esta lista contienen errores de validación.",
|
|
21
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.duplicateField": "Duplicate",
|
|
22
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.duplicateFieldAriaLabel": "Duplicate field",
|
|
23
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.editTabAriaLabel": "Edit field",
|
|
24
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.fieldDescriptionInputPlaceholder": "Añadir texto de ayuda personalizado que aparece en un mensaje emergente para los usuarios",
|
|
25
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.fieldDescriptionLabel": "Descripción de campo",
|
|
26
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.fieldNameInputPlaceholder": "Añadir un nombre/etiqueta de campo",
|
|
27
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.fieldNameLabel": "Nombre del campo",
|
|
28
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.fieldTypeLabel": "Tipo de campo",
|
|
29
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.fieldTypePlaceholder": "Seleccionar tipo",
|
|
30
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.hiddenStatus": "Oculta",
|
|
31
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.hideField": "Ocultar campo",
|
|
32
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.levelsChain.chipNotSelected": "no seleccionado",
|
|
33
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.levelsChain.chipSelected": "seleccionado",
|
|
34
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.levelsChain.noLevels": "No hay niveles para mostrar.",
|
|
35
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.moveDown": "Bajar",
|
|
36
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.moveDownAriaLabel": "Mover campo hacia abajo",
|
|
37
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.moveUp": "Subir",
|
|
38
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.moveUpAriaLabel": "Mover campo hacia arriba",
|
|
39
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.showField": "Mostrar",
|
|
40
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.allowMultipleTaxonomySelections": "Los usuarios pueden elegir varios valores",
|
|
41
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.callToActionHeader": "Elegir o crear una taxonomía",
|
|
42
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.callToActionSubheader": "Las taxonomías le permiten establecer opciones dinámicas y reutilizables para los campos desplegables.",
|
|
43
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.noTaxonomySelectedError": "Seleccione una taxonomía",
|
|
44
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection": "¿De qué niveles pueden seleccionar un valor los usuarios?",
|
|
45
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.anyLevelSelection": "Los usuarios pueden elegir cualquier nivel de la lista",
|
|
46
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.chooseTaxonomyLevel": "Elegir el nivel de taxonomía",
|
|
47
|
+
"groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.requiredSelection": "Los usuarios deben elegir del siguiente nivel:",
|
|
48
|
+
"groupSharedFeatures.metadataTemplateEditor.confirmationModal.cancelButtonText": "CANCELAR",
|
|
49
|
+
"groupSharedFeatures.metadataTemplateEditor.confirmationModal.closeButtonAriaLabel": "Cerrar",
|
|
50
|
+
"groupSharedFeatures.metadataTemplateEditor.confirmationModal.confirmButtonText": "Confirmar",
|
|
51
|
+
"groupSharedFeatures.metadataTemplateEditor.emptyState.heading": "Agregue su primer campo",
|
|
52
|
+
"groupSharedFeatures.metadataTemplateEditor.emptyState.selectFieldTypeAriaLabel": "Seleccionar el tipo de campo.",
|
|
53
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldSelector.selectField": "Select a Field",
|
|
54
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldSelector.unnamedField": "(Unnamed field)",
|
|
55
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.date": "Campo de fecha con selector de calendario",
|
|
56
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.dropdown": "Admite selecciones únicas y múltiples",
|
|
57
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.number": "Admite todos los valores numéricos",
|
|
58
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.taxonomy": "Lista jerárquica de opciones seleccionables",
|
|
59
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.text": "Entrada de texto libre de hasta 10000 caracteres",
|
|
60
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldTypeDropdown.addField": "Agregar campo",
|
|
61
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldTypeDropdown.addFieldAriaLabel": "Agregar campo",
|
|
62
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldTypes.date": "Fecha",
|
|
63
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldTypes.dropdown": "Desplegable",
|
|
64
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldTypes.number": "Número",
|
|
65
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldTypes.taxonomy": "Taxonomía",
|
|
66
|
+
"groupSharedFeatures.metadataTemplateEditor.fieldTypes.text": "Texto",
|
|
67
|
+
"groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.duplicateOption": "La etiqueta de opción debe ser única.",
|
|
68
|
+
"groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.fieldNameCannotBeEmpty": "El nombre de campo no puede estar vacío.",
|
|
69
|
+
"groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.fieldNameTooLong": "El nombre de campo es demasiado largo.",
|
|
70
|
+
"groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.optionKeyCannotBeEmpty": "La opción no puede estar vacía.",
|
|
71
|
+
"groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.selectedLevelRequired": "Seleccione un nivel.",
|
|
72
|
+
"groupSharedFeatures.metadataTemplateEditor.loadTaxonomiesError": "Error al cargar las taxonomías.",
|
|
73
|
+
"groupSharedFeatures.metadataTemplateEditor.loadingTaxonomies": "Cargando taxonomías…",
|
|
74
|
+
"groupSharedFeatures.metadataTemplateEditor.recentlyUsedTaxonomies": "Recientes",
|
|
75
|
+
"groupSharedFeatures.metadataTemplateEditor.retryLoadTaxonomies": "Volver a intentarlo",
|
|
76
|
+
"groupSharedFeatures.metadataTemplateEditor.searchTaxonomiesInputPlaceholder": "Buscar taxonomías",
|
|
77
|
+
"groupSharedFeatures.metadataTemplateEditor.taxonomySelector": "Elegir una taxonomía",
|
|
78
|
+
"groupSharedFeatures.metadataTemplateEditor.taxonomySelectorAriaLabel": "Abrir selector de taxonomía",
|
|
79
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.cancel": "Anular",
|
|
80
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.closeAriaLabel": "Cerrar el editor de plantillas de metadatos",
|
|
81
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.createTitle": "Nueva plantilla de metadatos",
|
|
82
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.displayNameUsedBefore": "Este nombre para mostrar ya se ha utilizado anteriormente. Seleccione otro.",
|
|
83
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.editTitle": "Editar plantilla de metadatos “{templateName}”",
|
|
84
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.fetchError": "Se ha producido un error. Vuelva a cargar para intentarlo de nuevo.",
|
|
85
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.fieldNameTooLong": "El nombre de campo es demasiado largo.",
|
|
86
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.fieldRequired": "El campo es obligatorio",
|
|
87
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.fields.description": "Añada su primer campo a la plantilla:",
|
|
88
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.fields.label": "Campos",
|
|
89
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.fields.learnMore": "Más información sobre los tipos de campos de metadatos",
|
|
90
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.forbiddenDisplayName": "Este nombre para mostrar está prohibido. Seleccione otro.",
|
|
91
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.invalidCharacters": "El campo contiene caracteres no permitidos.",
|
|
92
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.loading": "Cargando plantilla…",
|
|
93
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.notificationCloseButtonAriaLabel": "Cerrar notificación",
|
|
94
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.notificationErrorIconAriaLabel": "Error",
|
|
95
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.notificationSuccessIconAriaLabel": "Realizado correctamente",
|
|
96
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.reload": "Volver a cargar",
|
|
97
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.save": "Guardar",
|
|
98
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.saveErrorNotification": "Error al guardar la plantilla. Inténtelo de nuevo.",
|
|
99
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.saveSuccessNotification": "La plantilla se ha guardado correctamente.",
|
|
100
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.submitting": "Enviando…",
|
|
101
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.templateName.description": "Nombre para mostrar de la plantilla que se muestra a los usuarios",
|
|
102
|
+
"groupSharedFeatures.metadataTemplateEditor.templateForm.templateName.label": "Nombre de plantilla",
|
|
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": "Este campo contiene errores de validación."
|
|
108
|
+
}
|