@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,196 @@
|
|
|
1
|
+
# Label for the section that shows all taxonomies
|
|
2
|
+
groupSharedFeatures.metadataTemplateEditor.allTaxonomies = Tüm taksonomiler
|
|
3
|
+
# Label for the cancel button in the confirmation modal
|
|
4
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.cancelDeleteField = İptal et
|
|
5
|
+
# Label for the confirm button in the confirmation modal
|
|
6
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.confirmDeleteField = Onayla
|
|
7
|
+
# Aria label for the context menu of the field configurator
|
|
8
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.contextMenuAriaLabel = Alan yapılandırıcı bağlam menüsü
|
|
9
|
+
# Label for the button to delete a field
|
|
10
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.deleteField = Kaldır
|
|
11
|
+
# Aria label for the button to delete a field
|
|
12
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldAriaLabel = Alanı sil
|
|
13
|
+
# Description for the delete field confirmation modal
|
|
14
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldDescription = Bu alanla ilişkili tüm dosyalar veya klasörler artık atanmamış bir değer taşıyacaktır. Bu işlem, şablon kaydedildikten sonra geri alınamaz.
|
|
15
|
+
# Title for the delete field confirmation modal
|
|
16
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.deleteFieldTitle = "{fieldName}" Alanını Sil
|
|
17
|
+
# Description of the inline notice that explains the purpose of the description field.
|
|
18
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.descriptionInfoTooltip = Açıklama, şablona erişen herkes tarafından görüntülenebilir. Ayrıca Box AI’ın Meta Verileri sizin için bulup otomatik olarak doldurmasına yardımcı olur.
|
|
19
|
+
# Aria label for the info badge that provides more information about the description field.
|
|
20
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.descriptionLearnMoreBadgeAriaLabel = Açıklama alanı hakkında daha fazla bilgi edinin
|
|
21
|
+
# Aria label for the button to drag and drop a field to reorder it
|
|
22
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.dragAndDropFieldAriaLabel = Alanı yeniden sıralamak için sürükleyip bırakın
|
|
23
|
+
# Placeholder text for the input to add a new dropdown option
|
|
24
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.addAnOptionOptionPlaceholder = Bir seçenek ekleyin
|
|
25
|
+
# Label for the button to add a new dropdown option
|
|
26
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.addOption = + Seçenek Ekle
|
|
27
|
+
# Label for the checkbox to allow multiple selections in a dropdown
|
|
28
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.allowMultipleSelection = Çoklu Seçime İzin Verin
|
|
29
|
+
# Label for the button to delete a dropdown option
|
|
30
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteDropdownOptionAriaLabel = Seçeneği sil
|
|
31
|
+
# Description for the delete option confirmation modal
|
|
32
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteOptionDescription = Bu alanla ilişkili tüm dosyalar veya klasörler artık atanmamış bir değer taşıyacaktır. Bu işlem, şablon kaydedildikten sonra geri alınamaz.
|
|
33
|
+
# Title for the delete option confirmation modal
|
|
34
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.deleteOptionTitle = "{optionName}" Seçeneğini Silin
|
|
35
|
+
# Aria label for the button to drag and drop a dropdown option to reorder it
|
|
36
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.dragAndDropOptionAriaLabel = Seçenekleri yeniden sıralamak için sürükleyip bırakın
|
|
37
|
+
# Generic error shown above the option list when any dropdown option has a validation error
|
|
38
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.dropdown.optionListValidationError = Bu listedeki bazı seçenekler doğrulama hataları içeriyor.
|
|
39
|
+
# Aria label for the Edit tab button in the field configurator extension tab switcher
|
|
40
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.editTabAriaLabel = Alanı düzenleyin
|
|
41
|
+
# Placeholder for a text input allowing the description of a field in templates.
|
|
42
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.fieldDescriptionInputPlaceholder = Kullanıcılar için bir araç ipucunda görünen özel yardım metni ekleyin
|
|
43
|
+
# Label for a text input allowing the description of a field name in templates.
|
|
44
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.fieldDescriptionLabel = Alan Açıklaması
|
|
45
|
+
# Placeholder for a text input allowing the specification of a field name in templates.
|
|
46
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.fieldNameInputPlaceholder = Bir alan adı/etiket adı ekleyin
|
|
47
|
+
# Label for a text input allowing the specification of a field name in templates.
|
|
48
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.fieldNameLabel = Alan Adı
|
|
49
|
+
# Label for a dropdown allowing the selection of a field type in templates.
|
|
50
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.fieldTypeLabel = Alan Türü
|
|
51
|
+
# Placeholder for a dropdown allowing the selection of a field type in templates.
|
|
52
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.fieldTypePlaceholder = Tür Seçin
|
|
53
|
+
# Label for the status badge indicating that a field is hidden
|
|
54
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.hiddenStatus = Gizli
|
|
55
|
+
# Text for the button to hide a field
|
|
56
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.hideField = Alanı Gizle
|
|
57
|
+
# Accessibility label indicating that a taxonomy level chip is not selected.
|
|
58
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.levelsChain.chipNotSelected = seçilmedi
|
|
59
|
+
# Accessibility label indicating that a taxonomy level chip is selected.
|
|
60
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.levelsChain.chipSelected = seçildi
|
|
61
|
+
# Message displayed when there are no levels to display in the levels chain.
|
|
62
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.levelsChain.noLevels = Görüntülenecek düzey yok.
|
|
63
|
+
# Label for the button to move a field down in the list
|
|
64
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.moveDown = Aşağı Taşı
|
|
65
|
+
# Aria label for the button to move a field down in the list
|
|
66
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.moveDownAriaLabel = Alanı aşağı taşı
|
|
67
|
+
# Label for the button to move a field up in the list
|
|
68
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.moveUp = Yukarı Taşı
|
|
69
|
+
# Aria label for the button to move a field up in the list
|
|
70
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.moveUpAriaLabel = Alanı yukarı taşı
|
|
71
|
+
# Text for the button to show a field
|
|
72
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.showField = Görünür Kıl
|
|
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 = Kullanıcılar birçok değer seçebilir
|
|
75
|
+
# Call to action header
|
|
76
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.callToActionHeader = Taksonomi Seçin veya Oluşturun
|
|
77
|
+
# Call to action subheader
|
|
78
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.callToActionSubheader = Taksonomiler açılır liste alanları için dinamik, yeniden kullanılabilir seçenekler ayarlamanızı sağlar.
|
|
79
|
+
# Error message shown when no taxonomy has been selected
|
|
80
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.noTaxonomySelectedError = Lütfen bir taksonomi seçin
|
|
81
|
+
# Label in taxonomy template field defining the selection policy
|
|
82
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection = Kullanıcılar hangi seviyelerden bir değer seçebilir?
|
|
83
|
+
# Radio button label for any level selection
|
|
84
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.anyLevelSelection = Kullanıcılar listedeki herhangi bir seviyeden seçim yapabilir
|
|
85
|
+
# Label for the dropdown to choose the taxonomy level
|
|
86
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.chooseTaxonomyLevel = Taksonomi düzeyini seçin
|
|
87
|
+
# Radio button label for required selection
|
|
88
|
+
groupSharedFeatures.metadataTemplateEditor.configurator.taxonomy.selection.requiredSelection = Kullanıcılar aşağıdaki seviyeden seçim yapmalıdır:
|
|
89
|
+
# Text for the cancel button in the confirmation modal
|
|
90
|
+
groupSharedFeatures.metadataTemplateEditor.confirmationModal.cancelButtonText = İptal et
|
|
91
|
+
# Aria label for the close button ("x") in the modal
|
|
92
|
+
groupSharedFeatures.metadataTemplateEditor.confirmationModal.closeButtonAriaLabel = Kapat
|
|
93
|
+
# Text for the confirm button in the confirmation modal
|
|
94
|
+
groupSharedFeatures.metadataTemplateEditor.confirmationModal.confirmButtonText = Onayla
|
|
95
|
+
# Heading for the empty state when no fields exist yet
|
|
96
|
+
groupSharedFeatures.metadataTemplateEditor.emptyState.heading = İlk alanınızı ekleyin
|
|
97
|
+
# Aria label for the field type picker tiles.
|
|
98
|
+
groupSharedFeatures.metadataTemplateEditor.emptyState.selectFieldTypeAriaLabel = Alan türünü seçin.
|
|
99
|
+
# Field type description for date input
|
|
100
|
+
groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.date = Takvim seçici bulunan tarih alanı
|
|
101
|
+
# Field type description for dropdown selection
|
|
102
|
+
groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.dropdown = Tek ve çoklu seçimleri destekler
|
|
103
|
+
# Field type description for numerical input
|
|
104
|
+
groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.number = Tüm sayısal değerleri destekler
|
|
105
|
+
# Field type description for taxonomy selection
|
|
106
|
+
groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.taxonomy = Belirlenebilir seçeneklerin hiyerarşik listesi
|
|
107
|
+
# Field type description for text input
|
|
108
|
+
groupSharedFeatures.metadataTemplateEditor.fieldTypeDescriptions.text = 10,000 karaktere kadar serbest metin girdisi
|
|
109
|
+
# Label for the add field dropdown trigger button
|
|
110
|
+
groupSharedFeatures.metadataTemplateEditor.fieldTypeDropdown.addField = Alan ekle
|
|
111
|
+
# Aria label for the add field button
|
|
112
|
+
groupSharedFeatures.metadataTemplateEditor.fieldTypeDropdown.addFieldAriaLabel = Alan ekle
|
|
113
|
+
# Field type for date input
|
|
114
|
+
groupSharedFeatures.metadataTemplateEditor.fieldTypes.date = Tarih
|
|
115
|
+
# Field type for dropdown selection
|
|
116
|
+
groupSharedFeatures.metadataTemplateEditor.fieldTypes.dropdown = Açılır Liste
|
|
117
|
+
# Field type for numerical input
|
|
118
|
+
groupSharedFeatures.metadataTemplateEditor.fieldTypes.number = Sayı
|
|
119
|
+
# Field type for taxonomy selection
|
|
120
|
+
groupSharedFeatures.metadataTemplateEditor.fieldTypes.taxonomy = Taksonomi
|
|
121
|
+
# Field type for text input
|
|
122
|
+
groupSharedFeatures.metadataTemplateEditor.fieldTypes.text = Metin
|
|
123
|
+
# Error message for duplicate option labels
|
|
124
|
+
groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.duplicateOption = Seçenek etiketi benzersiz olmalıdır.
|
|
125
|
+
# Error message displayed when a required field is not filled out in templates.
|
|
126
|
+
groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.fieldNameCannotBeEmpty = Alan adı boş olamaz.
|
|
127
|
+
# Error message for field name length
|
|
128
|
+
groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.fieldNameTooLong = Alan adı çok uzun.
|
|
129
|
+
# Error message for empty option labels
|
|
130
|
+
groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.optionKeyCannotBeEmpty = Seçenek boş olamaz.
|
|
131
|
+
# Error message for missing selected level in taxonomy
|
|
132
|
+
groupSharedFeatures.metadataTemplateEditor.fields.validationErrors.selectedLevelRequired = Lütfen bir düzey seçin.
|
|
133
|
+
# Error message shown when the taxonomy fetch fails
|
|
134
|
+
groupSharedFeatures.metadataTemplateEditor.loadTaxonomiesError = Taksonomiler yüklenemedi.
|
|
135
|
+
# Accessible label shown while taxonomy options are being fetched
|
|
136
|
+
groupSharedFeatures.metadataTemplateEditor.loadingTaxonomies = Taksonomiler yükleniyor…
|
|
137
|
+
# Label for the section that shows recently used taxonomies
|
|
138
|
+
groupSharedFeatures.metadataTemplateEditor.recentlyUsedTaxonomies = Son Kullanılanlar
|
|
139
|
+
# Button label to retry a failed taxonomy fetch
|
|
140
|
+
groupSharedFeatures.metadataTemplateEditor.retryLoadTaxonomies = Tekrar deneyin
|
|
141
|
+
# Placeholder text for the search input in the taxonomy selector
|
|
142
|
+
groupSharedFeatures.metadataTemplateEditor.searchTaxonomiesInputPlaceholder = Taksonomilerde arama yapın
|
|
143
|
+
# Text for the button that opens the taxonomy selector
|
|
144
|
+
groupSharedFeatures.metadataTemplateEditor.taxonomySelector = Bir Taksonomi seç
|
|
145
|
+
# Aria label for the button that opens the taxonomy selector
|
|
146
|
+
groupSharedFeatures.metadataTemplateEditor.taxonomySelectorAriaLabel = Taksonomi seçiciyi aç
|
|
147
|
+
# Cancel button
|
|
148
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.cancel = İptal et
|
|
149
|
+
# Accessible label for the close (×) button on the metadata template editor modal
|
|
150
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.closeAriaLabel = Meta veri şablonu düzenleyicisini kapatın
|
|
151
|
+
# Default title displayed in the metadata template editor header
|
|
152
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.createTitle = Yeni Meta Veri Şablonu
|
|
153
|
+
# Error message for display name already used before.
|
|
154
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.displayNameUsedBefore = Bu görünen ad daha önce kullanılmış. Lütfen başka bir ad seçin.
|
|
155
|
+
# Title displayed in the metadata template editor header for editing an existing template
|
|
156
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.editTitle = “{templateName}” Meta Veri Şablonunu düzenleyin
|
|
157
|
+
# Error message shown when the template data could not be fetched
|
|
158
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.fetchError = Bir hata oluştu. Tekrar denemek için lütfen yeniden yükleyin.
|
|
159
|
+
# Error message for field name too long
|
|
160
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.fieldNameTooLong = Alan adı çok uzun.
|
|
161
|
+
# Error message for required fields
|
|
162
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.fieldRequired = Bu alan gereklidir
|
|
163
|
+
# Description for the fields section
|
|
164
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.fields.description = Şablona ilk alanınızı ekleyin:
|
|
165
|
+
# Label for the fields section
|
|
166
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.fields.label = Alanlar
|
|
167
|
+
# Link to more information about metadata field types
|
|
168
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.fields.learnMore = Meta Veri Alan Türleri hakkında daha fazla bilgi edinin
|
|
169
|
+
# Error message for forbidden display name
|
|
170
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.forbiddenDisplayName = Bu görünen ad yasaklanmıştır. Lütfen başka bir ad seçin.
|
|
171
|
+
# Error message for invalid characters
|
|
172
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.invalidCharacters = Alan geçersiz karakterler içeriyor.
|
|
173
|
+
# Aria label for the loading indicator shown while template data is being fetched
|
|
174
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.loading = Şablon yükleniyor…
|
|
175
|
+
# Accessible label for the close button on save notifications
|
|
176
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.notificationCloseButtonAriaLabel = Bildirimi kapatın
|
|
177
|
+
# Accessible label for the error icon in the save notification
|
|
178
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.notificationErrorIconAriaLabel = Hata
|
|
179
|
+
# Accessible label for the success icon in the save notification
|
|
180
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.notificationSuccessIconAriaLabel = Başarılı
|
|
181
|
+
# Label for the reload button shown when template loading fails
|
|
182
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.reload = Yeniden Yükle
|
|
183
|
+
# Save button
|
|
184
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.save = Kaydet
|
|
185
|
+
# Error notification message shown when the template fails to save
|
|
186
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.saveErrorNotification = Şablon kaydedilemedi. Lütfen tekrar deneyin.
|
|
187
|
+
# Success notification message shown after the template is saved
|
|
188
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.saveSuccessNotification = Şablon başarıyla kaydedildi.
|
|
189
|
+
# Aria Label for the save changes button in metadata template
|
|
190
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.submitting = Gönderiliyor…
|
|
191
|
+
# Description for the template name field
|
|
192
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.templateName.description = Şablonun kullanıcıların gördüğü adı
|
|
193
|
+
# Label for the template name field
|
|
194
|
+
groupSharedFeatures.metadataTemplateEditor.templateForm.templateName.label = Şablon Adı
|
|
195
|
+
# Message to show that the collapsed field configurator contains errors
|
|
196
|
+
groupSharedFeatures.metadataTemplateEditor.templates.details.fields.thisFieldContainsErrors = Bu alan doğrulama hataları içeriyor.
|
|
@@ -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 = 此字段存在验证错误。
|