utils.ts 528 B

123456789101112131415161718192021
  1. import { FormTypeEnum } from '@/app/components/header/account-setting/model-provider-page/declarations'
  2. export const NAME_FIELD = {
  3. type: FormTypeEnum.textInput,
  4. name: 'name',
  5. label: {
  6. en_US: 'Endpoint Name',
  7. zh_Hans: '端点名称',
  8. ja_JP: 'エンドポイント名',
  9. pt_BR: 'Nome do ponto final',
  10. },
  11. placeholder: {
  12. en_US: 'Endpoint Name',
  13. zh_Hans: '端点名称',
  14. ja_JP: 'エンドポイント名',
  15. pt_BR: 'Nome do ponto final',
  16. },
  17. required: true,
  18. default: '',
  19. help: null,
  20. }