2022-03-04 09:02:13 +00:00
|
|
|
//
|
|
|
|
// Copyright © 2022 Hardcore Engineering Inc.
|
|
|
|
//
|
|
|
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License. You may
|
|
|
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
//
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
|
2022-09-21 08:08:25 +00:00
|
|
|
import type { IntlString } from '@hcengineering/platform'
|
|
|
|
import { mergeIds } from '@hcengineering/platform'
|
|
|
|
import setting, { settingId } from '@hcengineering/setting'
|
|
|
|
import { AnyComponent } from '@hcengineering/ui'
|
2022-03-04 09:02:13 +00:00
|
|
|
|
|
|
|
export default mergeIds(settingId, setting, {
|
2022-05-29 04:56:06 +00:00
|
|
|
component: {
|
|
|
|
EditEnum: '' as AnyComponent
|
|
|
|
},
|
2022-03-04 09:02:13 +00:00
|
|
|
string: {
|
2022-03-16 09:02:57 +00:00
|
|
|
IntegrationDisabled: '' as IntlString,
|
|
|
|
IntegrationWith: '' as IntlString,
|
2022-03-04 09:02:13 +00:00
|
|
|
DeleteStatus: '' as IntlString,
|
2022-05-28 04:05:36 +00:00
|
|
|
DeleteStatusConfirm: '' as IntlString,
|
|
|
|
DeleteAttribute: '' as IntlString,
|
|
|
|
DeleteAttributeConfirm: '' as IntlString,
|
|
|
|
DeleteAttributeExistConfirm: '' as IntlString,
|
2022-08-05 07:48:31 +00:00
|
|
|
DeleteMixin: '' as IntlString,
|
|
|
|
DeleteMixinConfirm: '' as IntlString,
|
|
|
|
DeleteMixinExistConfirm: '' as IntlString,
|
2022-05-28 04:05:36 +00:00
|
|
|
Attribute: '' as IntlString,
|
|
|
|
Attributes: '' as IntlString,
|
|
|
|
Custom: '' as IntlString,
|
|
|
|
WithTime: '' as IntlString,
|
2023-02-03 05:47:25 +00:00
|
|
|
DateMode: '' as IntlString,
|
2022-05-28 04:05:36 +00:00
|
|
|
Type: '' as IntlString,
|
|
|
|
CreatingAttribute: '' as IntlString,
|
2022-05-29 04:56:06 +00:00
|
|
|
EditAttribute: '' as IntlString,
|
|
|
|
CreateEnum: '' as IntlString,
|
|
|
|
Enums: '' as IntlString,
|
2022-06-29 05:51:29 +00:00
|
|
|
NewValue: '' as IntlString,
|
|
|
|
Leave: '' as IntlString,
|
2022-07-01 15:22:58 +00:00
|
|
|
LeaveDescr: '' as IntlString,
|
|
|
|
Select: '' as IntlString,
|
|
|
|
AddOwner: '' as IntlString,
|
|
|
|
User: '' as IntlString,
|
|
|
|
Maintainer: '' as IntlString,
|
|
|
|
Owner: '' as IntlString,
|
2022-07-14 02:45:51 +00:00
|
|
|
Role: '' as IntlString,
|
2022-07-19 02:06:15 +00:00
|
|
|
FailedToSave: '' as IntlString,
|
|
|
|
ImportEnum: '' as IntlString,
|
2022-08-05 07:48:31 +00:00
|
|
|
ImportEnumCopy: '' as IntlString,
|
|
|
|
CreateMixin: '' as IntlString,
|
|
|
|
OldNames: '' as IntlString,
|
2022-12-05 16:27:49 +00:00
|
|
|
NewClassName: '' as IntlString,
|
|
|
|
HideAttribute: '' as IntlString,
|
|
|
|
ShowAttribute: '' as IntlString,
|
|
|
|
Visibility: '' as IntlString,
|
2023-02-07 18:00:56 +00:00
|
|
|
Hidden: '' as IntlString,
|
2023-03-21 16:08:45 +00:00
|
|
|
InviteSettings: '' as IntlString,
|
2023-03-24 04:54:56 +00:00
|
|
|
DefaultValue: '' as IntlString,
|
|
|
|
SelectAValue: '' as IntlString,
|
|
|
|
DateOnly: '' as IntlString,
|
|
|
|
OnlyTime: '' as IntlString,
|
2023-04-25 07:34:10 +00:00
|
|
|
DateAndTime: '' as IntlString,
|
|
|
|
Configuration: '' as IntlString,
|
|
|
|
ConfigurationEnabled: '' as IntlString,
|
|
|
|
ConfigurationDisabled: '' as IntlString,
|
|
|
|
ConfigDisable: '' as IntlString,
|
2023-04-28 08:22:25 +00:00
|
|
|
ConfigEnable: '' as IntlString,
|
|
|
|
ConfigBeta: '' as IntlString
|
2022-03-04 09:02:13 +00:00
|
|
|
}
|
|
|
|
})
|