1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import { useMemo } from 'react';
export default (t) => useMemo(() => ({
title: {
name: t('serverName'),
type: 'string',
},
description: {
name: t('serverDescription'),
type: 'string',
},
colorPrimary: {
name: t('serverColorPrimary'),
type: 'string',
subtype: 'color',
},
colorSecondary: {
name: t('serverColorSecondary'),
type: 'string',
subtype: 'color',
},
'ui.disableLoginLanguage': {
name: t('attributeUiDisableLoginLanguage'),
type: 'boolean',
},
}), [t]);
|